-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Add ifunc support for Windows on AArch64. #111962
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1228641
Add ifuncs support for Windows.
DanielKristofKiss c9a7993
reword the attribute documentation
DanielKristofKiss 9e0b509
drop codegen dependency on santizer patch
DanielKristofKiss e416733
fix doc gen
DanielKristofKiss bf549d6
Merge remote-tracking branch 'origin/main' into HEAD
DanielKristofKiss 9489668
Add AVR to the docs
DanielKristofKiss 7793cf3
rebase sideeffect
DanielKristofKiss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,65 @@ | ||
// RUN: %clang_cc1 -triple aarch64-pc-windows-msvc -emit-llvm -o - %s | FileCheck %s | ||
labrinea marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// RUN: %clang_cc1 -triple aarch64-pc-windows-msvc -O2 -emit-llvm -o - %s | FileCheck %s | ||
// RUN: %clang_cc1 -triple aarch64-pc-windows-msvc -fsanitize=thread -O2 -emit-llvm -o - %s | FileCheck %s --check-prefix=SAN | ||
// RUN: %clang_cc1 -triple aarch64-pc-windows-msvc -fsanitize=address -O2 -emit-llvm -o - %s | FileCheck %s --check-prefix=SAN | ||
|
||
int foo(int) __attribute__ ((ifunc("foo_ifunc"))); | ||
|
||
static int f1(int i) { | ||
return i + 1; | ||
} | ||
|
||
static int f2(int i) { | ||
return i + 2; | ||
} | ||
|
||
typedef int (*foo_t)(int); | ||
|
||
volatile int global; | ||
|
||
static foo_t foo_ifunc(void) { | ||
return global ? f1 : f2; | ||
} | ||
|
||
int bar(void) { | ||
return foo(1); | ||
} | ||
|
||
extern void goo(void); | ||
|
||
void bar2(void) { | ||
goo(); | ||
} | ||
|
||
extern void goo(void) __attribute__ ((ifunc("goo_ifunc"))); | ||
|
||
void* goo_ifunc(void) { | ||
return 0; | ||
} | ||
|
||
/// The ifunc is emitted after its resolver. | ||
void *hoo_ifunc(void) { return 0; } | ||
extern void hoo(int) __attribute__ ((ifunc("hoo_ifunc"))); | ||
|
||
/// ifunc on Windows is lowered to global pointers and an indirect call. | ||
// CHECK: @global = dso_local global i32 0, align 4 | ||
// CHECK: {{.*}} = internal{{.*}}global{{.*}}poison, align 8 | ||
/// Register the constructor for initialisation. | ||
// CHECK: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 10, ptr @{{.*}}, ptr null }] | ||
|
||
// CHECK-LABEL: @bar() | ||
// CHECK %0 = load ptr, ptr @0, align 8 | ||
// CHECK %call = call i32 %0(i32 noundef 1) | ||
|
||
// CHECK-LABEL: @bar2() | ||
// CHECK %0 = load ptr, ptr getelementptr inbounds ([3 x ptr], ptr @0, i32 0, i32 1), align 8 | ||
// CHECK call void %0() | ||
|
||
// CHECK: define internal void @{{.*}}() | ||
|
||
// SAN: define {{(dso_local )?}}noalias {{(noundef )?}}ptr @goo_ifunc() {{(local_unnamed_addr )?}} | ||
|
||
// SAN: define {{(dso_local )?}}noalias {{(noundef )?}}ptr @hoo_ifunc() {{(local_unnamed_addr )?}} | ||
|
||
// SAN: define internal {{(fastcc )?}}{{(noundef )?}}nonnull ptr @foo_ifunc() {{(unnamed_addr )?}} | ||
|
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.