-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Clang: Putting a function in a special __TEXT,__foo
section results in underalignment
#90358
Comments
This fixes the immediate issue:
but I don't know if this is quite the right place for the fix. |
__TEXT,__foo
section results in underalignment__TEXT,__foo
section results in underalignment
Comparing the cases of 2 C++ methods, one with an explicit section attribute, one without:
Because (in
Since the GV here is not necessarily code, it's probably not the right place for a fix. The place I outlined in the earlier seems correct, unless there is a legitimate case where text should be aligned to something less than the I considered not looking at
|
smaller alignment of the GlobalObject to reduce a function's alignment below the target's minimum function alignment. (llvm#90358)
This addresses an issue where the explicit alignment of 2 (for C++ ABI reasons) was being propagated to the back end and causing under-aligned functions (in special sections). (llvm#90358)
@llvm/issue-subscribers-backend-aarch64 Author: Doug Wyatt (dougsonos)
To reproduce (on macOS):
Output is:
I would have hoped for an alignment of 4 because that is the (sub)target's Analysis so far:
This seems like a catch-22: the Interestingly, a function that is not a C++ method declared inline in its class, if it has a section attribute, is aligned correctly. |
…lignment of 4. (llvm#90702) This addresses an issue where the explicit alignment of 2 (for C++ ABI reasons) was being propagated to the back end and causing under-aligned functions (in special sections). This is an alternate approach suggested by @efriedma-quic in PR llvm#90415. Fixes llvm#90358 (cherry picked from commit ddecada)
…lignment of 4. (llvm#90702) This addresses an issue where the explicit alignment of 2 (for C++ ABI reasons) was being propagated to the back end and causing under-aligned functions (in special sections). This is an alternate approach suggested by @efriedma-quic in PR llvm#90415. Fixes llvm#90358
To reproduce (on macOS):
Output is:
I would have hoped for an alignment of 4 because that is the (sub)target's
getMinFunctionAlignment()
.Analysis so far:
llvm::Function
has an alignment of 2 (comments say: for C++ ABI reasons)MachineFunction
has an alignment of 4 (for arm64)MachineFunction
's alignment is used, but becausehasSection()
is true for the Function, the alignment of 2 wins (logic inAsmPrinter::getGVAlignment
)MCSection
remains aligned to 2 because all of its functions are aligned to 2MachineFunction
s are 4-byte-aligned and not overridden by AsmPrinterThis seems like a catch-22: the
MachineFunction
alignment should win, but is getting overridden by the section's alignment, yet the section's alignment comes from the llvm::Function, which doesn't know anything at all (would use 1 except for a C++ ABI reason making it 2).Interestingly, a function that is not a C++ method declared inline in its class, if it has a section attribute, is aligned correctly.
The text was updated successfully, but these errors were encountered: