-
Notifications
You must be signed in to change notification settings - Fork 15.5k
-fsanitize=function: fix .subsections_via_symbols #87527
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
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
Prev
Previous commit
Use ArrayRef; style
- Loading branch information
commit 90db989814f94a4da8f34bd09c3838c91a0d0679
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -927,21 +927,18 @@ void AsmPrinter::emitDebugValue(const MCExpr *Value, unsigned Size) const { | |
|
|
||
| void AsmPrinter::emitFunctionHeaderComment() {} | ||
|
|
||
| void AsmPrinter::emitFunctionPrefix( | ||
| const SmallVector<const Constant *, 1> &Prefix) { | ||
| void AsmPrinter::emitFunctionPrefix(ArrayRef<const Constant *> Prefix) { | ||
| const Function &F = MF->getFunction(); | ||
| if (!MAI->hasSubsectionsViaSymbols()) { | ||
| for (auto &C : Prefix) { | ||
| for (auto &C : Prefix) | ||
| emitGlobalConstant(F.getParent()->getDataLayout(), C); | ||
| } | ||
| return; | ||
| } | ||
| // Preserving prefix data on platforms which use subsections-via-symbols | ||
| // is a bit tricky. Here we introduce a symbol for the prefix data | ||
| // Preserving prefix-like data on platforms which use subsections-via-symbols | ||
| // is a bit tricky. Here we introduce a symbol for the prefix-like data | ||
| // and use the .alt_entry attribute to mark the function's real entry point | ||
| // as an alternative entry point to the prefix-data symbol. | ||
| MCSymbol *PrefixSym = OutContext.createLinkerPrivateTempSymbol(); | ||
| OutStreamer->emitLabel(PrefixSym); | ||
| // as an alternative entry point to the symbol that precedes the function.. | ||
| OutStreamer->emitLabel(OutContext.createLinkerPrivateTempSymbol()); | ||
|
|
||
| for (auto &C : Prefix) { | ||
| emitGlobalConstant(F.getParent()->getDataLayout(), C); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
|
@@ -990,9 +987,8 @@ void AsmPrinter::emitFunctionHeader() { | |
| OutStreamer->emitSymbolAttribute(CurrentFnSym, MCSA_Cold); | ||
|
|
||
| // Emit the prefix data. | ||
| if (F.hasPrefixData()) { | ||
| if (F.hasPrefixData()) | ||
| emitFunctionPrefix({F.getPrefixData()}); | ||
| } | ||
|
|
||
| // Emit KCFI type information before patchable-function-prefix nops. | ||
| emitKCFITypeId(*MF); | ||
|
|
||
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
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.
omit braces https://llvm.org/docs/CodingStandards.html#don-t-use-braces-on-simple-single-statement-bodies-of-if-else-loop-statements
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.
Done