Skip to content
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

Merged
merged 1 commit into from
Dec 2, 2024

Conversation

Lancern
Copy link
Member

@Lancern Lancern commented Nov 26, 2024

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.

Copy link
Collaborator

@smeenai smeenai left a 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?

@Lancern Lancern force-pushed the codegen-options-in-lowering branch from aaae2e5 to 9edc30a Compare November 27, 2024 14:58
Copy link
Member

@bcardosolopes bcardosolopes left a 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

@Lancern Lancern closed this Nov 28, 2024
@Lancern Lancern force-pushed the codegen-options-in-lowering branch from 9edc30a to 41078e9 Compare November 28, 2024 06:27
@Lancern Lancern reopened this Nov 28, 2024
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.
@Lancern Lancern force-pushed the codegen-options-in-lowering branch from 1d23da2 to c1c2ccc Compare November 28, 2024 06:33
| `-O2` | 2 | 0 |
| `-O3` | 3 | 0 |
| `-Os` | 2 | 1 |
| `-Oz` | 2 | 2 |
Copy link
Member

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!

@bcardosolopes bcardosolopes merged commit 7cbfe8e into llvm:main Dec 2, 2024
6 checks passed
@Lancern Lancern deleted the codegen-options-in-lowering branch December 3, 2024 04:54
lanza pushed a commit that referenced this pull request Mar 18, 2025
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants