mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-04 22:31:44 +00:00
[EH] Fix the LSDA that we emit for unknown EH personalities
We should have a single call site entry with no landing pad. This indicates that no EH action should be taken and the unwinder should unwind to the next frame. We currently don't recognize __gxx_personality_seh0 as a known personality, so we forcibly emit a table, and that table was wrong. This was filed as PR33220. Now we emit a correct table for that personality. The next step is to recognize that we can completely skip the table for this personality. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304363 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b2ab273ef3
commit
c2094c16f9
@ -949,6 +949,18 @@ void AsmPrinter::emitFrameAlloc(const MachineInstr &MI) {
|
|||||||
MCConstantExpr::create(FrameOffset, OutContext));
|
MCConstantExpr::create(FrameOffset, OutContext));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool needFuncLabelsForEHOrDebugInfo(const MachineFunction &MF,
|
||||||
|
MachineModuleInfo *MMI) {
|
||||||
|
if (!MF.getLandingPads().empty() || MF.hasEHFunclets() || MMI->hasDebugInfo())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
// We might emit an LSDA anyway if we have an EH personality.
|
||||||
|
const Constant *PerFn = MF.getFunction()->getPersonalityFn();
|
||||||
|
if (!PerFn)
|
||||||
|
return false;
|
||||||
|
return !isNoOpWithoutInvoke(classifyEHPersonality(PerFn));
|
||||||
|
}
|
||||||
|
|
||||||
/// EmitFunctionBody - This method emits the body and trailer for a
|
/// EmitFunctionBody - This method emits the body and trailer for a
|
||||||
/// function.
|
/// function.
|
||||||
void AsmPrinter::EmitFunctionBody() {
|
void AsmPrinter::EmitFunctionBody() {
|
||||||
@ -1076,8 +1088,8 @@ void AsmPrinter::EmitFunctionBody() {
|
|||||||
// Emit target-specific gunk after the function body.
|
// Emit target-specific gunk after the function body.
|
||||||
EmitFunctionBodyEnd();
|
EmitFunctionBodyEnd();
|
||||||
|
|
||||||
if (!MF->getLandingPads().empty() || MMI->hasDebugInfo() ||
|
if (needFuncLabelsForEHOrDebugInfo(*MF, MMI) ||
|
||||||
MF->hasEHFunclets() || MAI->hasDotTypeDotSizeDirective()) {
|
MAI->hasDotTypeDotSizeDirective()) {
|
||||||
// Create a symbol for the end of function.
|
// Create a symbol for the end of function.
|
||||||
CurrentFnEnd = createTempSymbol("func_end");
|
CurrentFnEnd = createTempSymbol("func_end");
|
||||||
OutStreamer->EmitLabel(CurrentFnEnd);
|
OutStreamer->EmitLabel(CurrentFnEnd);
|
||||||
@ -1402,8 +1414,7 @@ void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
|
|||||||
CurrentFnBegin = nullptr;
|
CurrentFnBegin = nullptr;
|
||||||
CurExceptionSym = nullptr;
|
CurExceptionSym = nullptr;
|
||||||
bool NeedsLocalForSize = MAI->needsLocalForSize();
|
bool NeedsLocalForSize = MAI->needsLocalForSize();
|
||||||
if (!MF.getLandingPads().empty() || MMI->hasDebugInfo() ||
|
if (needFuncLabelsForEHOrDebugInfo(MF, MMI) || NeedsLocalForSize) {
|
||||||
MF.hasEHFunclets() || NeedsLocalForSize) {
|
|
||||||
CurrentFnBegin = createTempSymbol("func_begin");
|
CurrentFnBegin = createTempSymbol("func_begin");
|
||||||
if (NeedsLocalForSize)
|
if (NeedsLocalForSize)
|
||||||
CurrentFnSymForSize = CurrentFnBegin;
|
CurrentFnSymForSize = CurrentFnBegin;
|
||||||
|
@ -309,7 +309,7 @@ computeCallSiteTable(SmallVectorImpl<CallSiteEntry> &CallSites,
|
|||||||
// If some instruction between the previous try-range and the end of the
|
// If some instruction between the previous try-range and the end of the
|
||||||
// function may throw, create a call-site entry with no landing pad for the
|
// function may throw, create a call-site entry with no landing pad for the
|
||||||
// region following the try-range.
|
// region following the try-range.
|
||||||
if (SawPotentiallyThrowing && !IsSJLJ && LastLabel != nullptr) {
|
if (SawPotentiallyThrowing && !IsSJLJ) {
|
||||||
CallSiteEntry Site = { LastLabel, nullptr, nullptr, 0 };
|
CallSiteEntry Site = { LastLabel, nullptr, nullptr, 0 };
|
||||||
CallSites.push_back(Site);
|
CallSites.push_back(Site);
|
||||||
}
|
}
|
||||||
|
32
test/CodeGen/X86/eh-unknown.ll
Normal file
32
test/CodeGen/X86/eh-unknown.ll
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
; RUN: llc -mtriple=x86_64-windows-msvc < %s | FileCheck %s
|
||||||
|
|
||||||
|
; An unknown personality forces us to emit an Itanium LSDA. Make sure that the
|
||||||
|
; Itanium call site table actually tells the personality to keep unwinding,
|
||||||
|
; i.e. we have an entry and it says "has no landing pad".
|
||||||
|
|
||||||
|
declare void @throwit()
|
||||||
|
declare void @__unknown_ehpersonality(...)
|
||||||
|
|
||||||
|
define void @use_unknown_ehpersonality()
|
||||||
|
personality void (...)* @__unknown_ehpersonality {
|
||||||
|
entry:
|
||||||
|
call void @throwit()
|
||||||
|
unreachable
|
||||||
|
}
|
||||||
|
|
||||||
|
; CHECK-LABEL: use_unknown_ehpersonality:
|
||||||
|
; CHECK: .Lfunc_begin0:
|
||||||
|
; CHECK: .seh_handler __unknown_ehpersonality, @unwind, @except
|
||||||
|
; CHECK: callq throwit
|
||||||
|
; CHECK: .Lfunc_end0:
|
||||||
|
; CHECK: .seh_handlerdata
|
||||||
|
; CHECK: .Lexception0:
|
||||||
|
; CHECK: .byte 255 # @LPStart Encoding = omit
|
||||||
|
; CHECK: .byte 0 # @TType Encoding = absptr
|
||||||
|
; CHECK: .asciz "\217\200" # @TType base offset
|
||||||
|
; CHECK: .byte 3 # Call site Encoding = udata4
|
||||||
|
; CHECK: .byte 13 # Call site table length
|
||||||
|
; CHECK: .long .Lfunc_begin0-.Lfunc_begin0 # >> Call Site 1 <<
|
||||||
|
; CHECK: .long .Lfunc_end0-.Lfunc_begin0 # Call between .Lfunc_begin0 and .Lfunc_end0
|
||||||
|
; CHECK: .long 0 # has no landing pad
|
||||||
|
; CHECK: .byte 0 # On action: cleanup
|
Loading…
x
Reference in New Issue
Block a user