-
Notifications
You must be signed in to change notification settings - Fork 14.3k
-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 all commits
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
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,6 +927,27 @@ void AsmPrinter::emitDebugValue(const MCExpr *Value, unsigned Size) const { | |
|
||
void AsmPrinter::emitFunctionHeaderComment() {} | ||
|
||
void AsmPrinter::emitFunctionPrefix(ArrayRef<const Constant *> Prefix) { | ||
const Function &F = MF->getFunction(); | ||
if (!MAI->hasSubsectionsViaSymbols()) { | ||
for (auto &C : Prefix) | ||
emitGlobalConstant(F.getParent()->getDataLayout(), C); | ||
return; | ||
} | ||
// 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 symbol that precedes the function.. | ||
OutStreamer->emitLabel(OutContext.createLinkerPrivateTempSymbol()); | ||
|
||
for (auto &C : Prefix) { | ||
emitGlobalConstant(F.getParent()->getDataLayout(), C); | ||
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. 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 |
||
} | ||
|
||
// Emit an .alt_entry directive for the actual function symbol. | ||
OutStreamer->emitSymbolAttribute(CurrentFnSym, MCSA_AltEntry); | ||
} | ||
|
||
/// EmitFunctionHeader - This method emits the header for the current | ||
/// function. | ||
void AsmPrinter::emitFunctionHeader() { | ||
|
@@ -966,23 +987,8 @@ void AsmPrinter::emitFunctionHeader() { | |
OutStreamer->emitSymbolAttribute(CurrentFnSym, MCSA_Cold); | ||
|
||
// Emit the prefix data. | ||
if (F.hasPrefixData()) { | ||
if (MAI->hasSubsectionsViaSymbols()) { | ||
// Preserving prefix data on platforms which use subsections-via-symbols | ||
// is a bit tricky. Here we introduce a symbol for the prefix 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); | ||
|
||
emitGlobalConstant(F.getParent()->getDataLayout(), F.getPrefixData()); | ||
|
||
// Emit an .alt_entry directive for the actual function symbol. | ||
OutStreamer->emitSymbolAttribute(CurrentFnSym, MCSA_AltEntry); | ||
} else { | ||
emitGlobalConstant(F.getParent()->getDataLayout(), F.getPrefixData()); | ||
} | ||
} | ||
if (F.hasPrefixData()) | ||
emitFunctionPrefix({F.getPrefixData()}); | ||
|
||
// Emit KCFI type information before patchable-function-prefix nops. | ||
emitKCFITypeId(*MF); | ||
|
@@ -1014,8 +1020,7 @@ void AsmPrinter::emitFunctionHeader() { | |
|
||
auto *PrologueSig = mdconst::extract<Constant>(MD->getOperand(0)); | ||
auto *TypeHash = mdconst::extract<Constant>(MD->getOperand(1)); | ||
emitGlobalConstant(F.getParent()->getDataLayout(), PrologueSig); | ||
emitGlobalConstant(F.getParent()->getDataLayout(), TypeHash); | ||
emitFunctionPrefix({PrologueSig, TypeHash}); | ||
} | ||
|
||
if (isVerbose()) { | ||
|
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