-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into users/vikramRH/enable_opt
- Loading branch information
Showing
663 changed files
with
98,741 additions
and
100,390 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# REQUIRES: system-linux,target=aarch64{{.*}} | ||
|
||
# RUN: llvm-mc -filetype=obj -triple aarch64-unknown-unknown %s -o %t.o | ||
# RUN: %clang %cflags %t.o -o %t.exe -Wl,-q -static | ||
# RUN: llvm-bolt -instrument -instrumentation-sleep-time=1 %t.exe \ | ||
# RUN: -o %t.instr 2>&1 | FileCheck %s | ||
# RUN: llvm-objdump --disassemble-symbols=__bolt_fini_trampoline %t.instr -D \ | ||
# RUN: | FileCheck %s -check-prefix=CHECK-ASM | ||
|
||
# CHECK: BOLT-INFO: output linked against instrumentation runtime library | ||
# CHECK-ASM: <__bolt_fini_trampoline>: | ||
# CHECK-ASM-NEXT: ret | ||
|
||
.text | ||
.align 4 | ||
.global _start | ||
.type _start, %function | ||
_start: | ||
bl foo | ||
ret | ||
.size _start, .-_start | ||
|
||
.global foo | ||
.type foo, %function | ||
foo: | ||
mov w0, wzr | ||
ret | ||
.size foo, .-foo |
Oops, something went wrong.