-
Notifications
You must be signed in to change notification settings - Fork 138
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
[CIR] Add code generation options to lowering context #1171
Conversation
dfc37d8
to
aaae2e5
Compare
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.
Neat. This'll also let us attach the optsize
and minsize
attributes to functions for -Os
and -Oz
in the future, right?
Should we have an IR test for invalid attribute values?
clang/lib/CIR/Dialect/Transforms/TargetLowering/CIRLowerContext.cpp
Outdated
Show resolved
Hide resolved
clang/lib/CIR/Dialect/Transforms/TargetLowering/LowerModule.cpp
Outdated
Show resolved
Hide resolved
aaae2e5
to
9edc30a
Compare
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.
LGTM after addressing few more nits
9edc30a
to
41078e9
Compare
This PR adds `clang::CodeGenOptions` to the lowering context. Similar to `clang::LangOptions`, the code generation options are currently set to the default values when initializing the lowering context. Besides, this PR also adds a new attribute `#cir.opt_info`. The attribute is a module-level attribute and it holds optimization information such as the optimization level. The attribute is consumed when initializing the lowering context to populate the code generation options. CIRGen is updated to generate and attach this attribute to the module op.
1d23da2
to
c1c2ccc
Compare
| `-O2` | 2 | 0 | | ||
| `-O3` | 3 | 0 | | ||
| `-Os` | 2 | 1 | | ||
| `-Oz` | 2 | 2 | |
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.
This is super neat, thank you!
This PR adds `clang::CodeGenOptions` to the lowering context. Similar to `clang::LangOptions`, the code generation options are currently set to the default values when initializing the lowering context. Besides, this PR also adds a new attribute `#cir.opt_level`. The attribute is a module-level attribute and it holds the optimization level (e.g. -O1, -Oz, etc.). The attribute is consumed when initializing the lowering context to populate the `OptimizationLevel` and the `OptimizeSize` field in the code generation options. CIRGen is updated to attach this attribute to the module op.
This PR adds
clang::CodeGenOptions
to the lowering context. Similar toclang::LangOptions
, the code generation options are currently set to the default values when initializing the lowering context.Besides, this PR also adds a new attribute
#cir.opt_level
. The attribute is a module-level attribute and it holds the optimization level (e.g. -O1, -Oz, etc.). The attribute is consumed when initializing the lowering context to populate theOptimizationLevel
and theOptimizeSize
field in the code generation options. CIRGen is updated to attach this attribute to the module op.