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][Codegen][Bugfix] ensure proper tmp location for agg exprs #320

Merged
merged 2 commits into from
Nov 18, 2023

Conversation

gitoleg
Copy link
Collaborator

@gitoleg gitoleg commented Nov 17, 2023

This PR fixes a bug with wrong arguments passed into the call to buildAnyExpr. This function has args with default values, hence the bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for agg-init.cpp::usev() function looks like the following:

define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}

// CHECK: %0 = cir.alloca !ty_22B22, cir.ptr <!ty_22B22>, ["agg.tmp.ensured"] {alignment = 8 : i64}
// CHECK: %1 = cir.const(#cir.zero : ![[ClassB]]) : ![[ClassB]]
// CHECK: cir.store %1, %0 : ![[ClassB]], cir.ptr <![[ClassB]]>
// CHECK: cir.call @_ZN1BC2Ev(%0) : (!cir.ptr<![[ClassB]]>) -> ()
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 nice, the allocation becomes scope local, meaning it's easier to optimize out for some future cases :)

@bcardosolopes bcardosolopes merged commit fd59111 into llvm:main Nov 18, 2023
1 check passed
lanza pushed a commit that referenced this pull request Dec 20, 2023
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
lanza pushed a commit that referenced this pull request Jan 29, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
lanza pushed a commit that referenced this pull request Mar 23, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
eZWALT pushed a commit to eZWALT/clangir that referenced this pull request Mar 24, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
eZWALT pushed a commit to eZWALT/clangir that referenced this pull request Mar 24, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
lanza pushed a commit that referenced this pull request Apr 29, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
lanza pushed a commit that referenced this pull request Apr 29, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
eZWALT pushed a commit to eZWALT/clangir that referenced this pull request Apr 29, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
lanza pushed a commit that referenced this pull request Apr 29, 2024
This PR fixes a bug with wrong arguments passed into the call to
`buildAnyExpr`. This function has args with default values, hence the
bug occurred.
All the changes are even with the clang's original codegen.

For the reference, the LLVM IR code for `agg-init.cpp::usev()` function
looks like the following:
```
define dso_local void @_Z3usev() #0 {
entry:
  %agg.tmp.ensured = alloca %struct.yep_, align 4
  %Status = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 0
  store i32 0, ptr %Status, align 4
  %HC = getelementptr inbounds %struct.yep_, ptr %agg.tmp.ensured, i32 0, i32 1
  store i32 0, ptr %HC, align 4
  ret void
}
```
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.

None yet

2 participants