-
Notifications
You must be signed in to change notification settings - Fork 15.4k
[CIR] Add Function Argument Demotion support #170915
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
+119
−20
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
feee218
Add Function Argument Demotion support
adams381 0095019
Fix null pointer dereference in emitFunctionProlog
adams381 6818251
Address reviewer feedback for Function Argument Demotion PR
adams381 72b64d8
Fix formatting: wrap long comment line in CIRGenFunction.h
adams381 cbe65c2
Fix test: make pattern flexible to handle optional no_inline attribute
adams381 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c89 -fclangir -emit-cir %s -o %t.cir | ||
| // RUN: FileCheck --input-file=%t.cir %s -check-prefix=CIR | ||
| // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c89 -fclangir -emit-llvm %s -o %t-cir.ll | ||
| // RUN: FileCheck --input-file=%t-cir.ll %s -check-prefix=LLVM | ||
| // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c89 -emit-llvm %s -o %t.ll | ||
| // RUN: FileCheck --input-file=%t.ll %s -check-prefix=OGCG | ||
|
|
||
| // CIR: cir.func {{.*}}@foo(%arg0: !s32i | ||
| // CIR: %0 = cir.alloca !s16i, !cir.ptr<!s16i>, ["x", init] | ||
| // CIR: %1 = cir.cast integral %arg0 : !s32i -> !s16i | ||
| // CIR: cir.store %1, %0 : !s16i, !cir.ptr<!s16i> | ||
| // expected-warning@+1 {{a function definition without a prototype is deprecated}} | ||
| void foo(x) short x; {} | ||
|
|
||
| // LLVM: define{{.*}} void @foo(i32 %0) | ||
| // LLVM: %[[X_PTR:.*]] = alloca i16, i64 1, align 2 | ||
| // LLVM: %[[X:.*]] = trunc i32 %0 to i16 | ||
| // LLVM: store i16 %[[X]], ptr %[[X_PTR]], align 2 | ||
|
|
||
| // OGCG: define{{.*}} void @foo(i32 noundef %0) | ||
| // OGCG: entry: | ||
| // OGCG: %[[X_PTR:.*]] = alloca i16, align 2 | ||
| // OGCG: %[[X:.*]] = trunc i32 %0 to i16 | ||
| // OGCG: store i16 %[[X]], ptr %[[X_PTR]], align 2 | ||
|
|
||
| // CIR: cir.func{{.*}}no_proto dso_local @bar(%arg0: !cir.double | ||
| // CIR: %0 = cir.alloca !cir.float, !cir.ptr<!cir.float>, ["f", init] | ||
| // CIR: %1 = cir.cast floating %arg0 : !cir.double -> !cir.float | ||
| // CIR: cir.store %1, %0 : !cir.float, !cir.ptr<!cir.float> | ||
| // expected-warning@+1 {{a function definition without a prototype is deprecated}} | ||
| void bar(f) float f; {} | ||
|
|
||
| // LLVM: define{{.*}} void @bar(double %0) | ||
| // LLVM: %[[F_PTR:.*]] = alloca float, i64 1, align 4 | ||
| // LLVM: %[[F:.*]] = fptrunc double %0 to float | ||
| // LLVM: store float %[[F]], ptr %[[F_PTR]], align 4 | ||
|
|
||
| // OGCG: define{{.*}} void @bar(double noundef %0) | ||
| // OGCG: entry: | ||
| // OGCG: %[[F_PTR:.*]] = alloca float, align 4 | ||
| // OGCG: %[[F:.*]] = fptrunc double %0 to float | ||
| // OGCG: store float %[[F]], ptr %[[F_PTR]], align 4 |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Classic codegen starts this function by checking the FunctionDecl for
NakedAttrand returning immediately if it's present. We should have a check for that.