LLVM 19.0.0git
DwarfCFIException.cpp
Go to the documentation of this file.
1//===-- CodeGen/AsmPrinter/DwarfException.cpp - Dwarf Exception Impl ------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains support for writing DWARF exception info into asm files.
10//
11//===----------------------------------------------------------------------===//
12
13#include "DwarfException.h"
18#include "llvm/IR/Function.h"
19#include "llvm/MC/MCAsmInfo.h"
20#include "llvm/MC/MCContext.h"
21#include "llvm/MC/MCStreamer.h"
25using namespace llvm;
26
28
30
31void DwarfCFIException::addPersonality(const GlobalValue *Personality) {
32 if (!llvm::is_contained(Personalities, Personality))
33 Personalities.push_back(Personality);
34}
35
36/// endModule - Emit all exception information that should come after the
37/// content.
39 // SjLj uses this pass and it doesn't need this info.
40 if (!Asm->MAI->usesCFIForEH())
41 return;
42
44
45 unsigned PerEncoding = TLOF.getPersonalityEncoding();
46
47 if ((PerEncoding & 0x80) != dwarf::DW_EH_PE_indirect)
48 return;
49
50 // Emit indirect reference table for all used personality functions
51 for (const GlobalValue *Personality : Personalities) {
52 MCSymbol *Sym = Asm->getSymbol(Personality);
54 }
55 Personalities.clear();
56}
57
59 shouldEmitPersonality = shouldEmitLSDA = false;
60 const Function &F = MF->getFunction();
61
62 // If any landing pads survive, we need an EH table.
63 bool hasLandingPads = !MF->getLandingPads().empty();
64
65 // See if we need frame move info.
66 bool shouldEmitMoves =
68
70 unsigned PerEncoding = TLOF.getPersonalityEncoding();
71 const GlobalValue *Per = nullptr;
72 if (F.hasPersonalityFn())
73 Per = dyn_cast<GlobalValue>(F.getPersonalityFn()->stripPointerCasts());
74
75 // Emit a personality function even when there are no landing pads
76 forceEmitPersonality =
77 // ...if a personality function is explicitly specified
78 F.hasPersonalityFn() &&
79 // ... and it's not known to be a noop in the absence of invokes
81 // ... and we're not explicitly asked not to emit it
82 F.needsUnwindTableEntry();
83
84 shouldEmitPersonality =
85 (forceEmitPersonality ||
86 (hasLandingPads && PerEncoding != dwarf::DW_EH_PE_omit)) &&
87 Per;
88
89 unsigned LSDAEncoding = TLOF.getLSDAEncoding();
90 shouldEmitLSDA = shouldEmitPersonality &&
91 LSDAEncoding != dwarf::DW_EH_PE_omit;
92
93 const MCAsmInfo &MAI = *MF->getMMI().getContext().getAsmInfo();
95 shouldEmitCFI =
96 MAI.usesCFIForEH() && (shouldEmitPersonality || shouldEmitMoves);
97 else
98 shouldEmitCFI = Asm->usesCFIWithoutEH() && shouldEmitMoves;
99}
100
102 if (!shouldEmitCFI)
103 return;
104
105 if (!hasEmittedCFISections) {
107 // If we don't say anything it implies `.cfi_sections .eh_frame`, so we
108 // chose not to be verbose in that case. And with `ForceDwarfFrameSection`,
109 // we should always emit .debug_frame.
110 if (CFISecType == AsmPrinter::CFISection::Debug ||
112 Asm->OutStreamer->emitCFISections(
113 CFISecType == AsmPrinter::CFISection::EH, true);
114 hasEmittedCFISections = true;
115 }
116
117 Asm->OutStreamer->emitCFIStartProc(/*IsSimple=*/false);
118
119 // Indicate personality routine, if any.
120 if (!shouldEmitPersonality)
121 return;
122
123 auto &F = MBB.getParent()->getFunction();
124 auto *P = dyn_cast<GlobalValue>(F.getPersonalityFn()->stripPointerCasts());
125 assert(P && "Expected personality function");
126 // Record the personality function.
127 addPersonality(P);
128
130 unsigned PerEncoding = TLOF.getPersonalityEncoding();
131 const MCSymbol *Sym = TLOF.getCFIPersonalitySymbol(P, Asm->TM, MMI);
132 Asm->OutStreamer->emitCFIPersonality(Sym, PerEncoding);
133
134 // Provide LSDA information.
135 if (shouldEmitLSDA)
136 Asm->OutStreamer->emitCFILsda(Asm->getMBBExceptionSym(MBB),
137 TLOF.getLSDAEncoding());
138}
139
141 if (shouldEmitCFI)
142 Asm->OutStreamer->emitCFIEndProc();
143}
144
145/// endFunction - Gather and emit post-function exception information.
146///
148 if (!shouldEmitPersonality)
149 return;
150
152}
MachineBasicBlock & MBB
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
This file contains constants used for implementing Dwarf debug support.
Symbol * Sym
Definition: ELF_riscv.cpp:479
#define F(x, y, z)
Definition: MD5.cpp:55
#define P(N)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:85
const TargetLoweringObjectFile & getObjFileLowering() const
Return information about object file lowering.
Definition: AsmPrinter.cpp:399
MCSymbol * getSymbol(const GlobalValue *GV) const
Definition: AsmPrinter.cpp:706
CFISection getModuleCFISectionType() const
Get the CFISection type for the module.
Definition: AsmPrinter.h:443
TargetMachine & TM
Target machine description.
Definition: AsmPrinter.h:88
MCSymbol * getMBBExceptionSym(const MachineBasicBlock &MBB)
const MCAsmInfo * MAI
Target Asm Printer information.
Definition: AsmPrinter.h:91
CFISection getFunctionCFISectionType(const Function &F) const
Get the CFISection type for a function.
std::unique_ptr< MCStreamer > OutStreamer
This is the MCStreamer object for the file we are generating.
Definition: AsmPrinter.h:100
const DataLayout & getDataLayout() const
Return information about data layout.
Definition: AsmPrinter.cpp:403
bool usesCFIWithoutEH() const
Since emitting CFI unwind information is entangled with supporting the exceptions,...
@ None
Do not emit either .eh_frame or .debug_frame.
@ Debug
Emit .debug_frame.
void endBasicBlockSection(const MachineBasicBlock &MBB) override
Process the end of a basic-block-section within a function.
~DwarfCFIException() override
void beginBasicBlockSection(const MachineBasicBlock &MBB) override
Process the beginning of a new basic-block-section within a function.
void endFunction(const MachineFunction *) override
Gather and emit post-function exception information.
void endModule() override
Emit all exception information that should come after the content.
DwarfCFIException(AsmPrinter *A)
void beginFunction(const MachineFunction *MF) override
Gather pre-function exception information.
Emits exception handling directives.
Definition: EHStreamer.h:30
AsmPrinter * Asm
Target of directive emission.
Definition: EHStreamer.h:33
MCSymbol * emitExceptionTable()
Emit landing pads and actions.
Definition: EHStreamer.cpp:380
MachineModuleInfo * MMI
Collected machine module information.
Definition: EHStreamer.h:36
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
bool usesCFIForEH() const
Returns true if the exception handling method for the platform uses call frame information to unwind.
Definition: MCAsmInfo.h:793
ExceptionHandling getExceptionHandlingType() const
Definition: MCAsmInfo.h:780
const MCAsmInfo * getAsmInfo() const
Definition: MCContext.h:412
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:41
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
Function & getFunction()
Return the LLVM function that this machine code represents.
const std::vector< LandingPadInfo > & getLandingPads() const
Return a reference to the landing pad info for the current function.
MachineModuleInfo & getMMI() const
const MCContext & getContext() const
virtual void emitPersonalityValue(MCStreamer &Streamer, const DataLayout &TM, const MCSymbol *Sym) const
virtual MCSymbol * getCFIPersonalitySymbol(const GlobalValue *GV, const TargetMachine &TM, MachineModuleInfo *MMI) const
TargetOptions Options
unsigned ForceDwarfFrameSection
Emit DWARF debug frame section.
@ DW_EH_PE_indirect
Definition: Dwarf.h:856
@ DW_EH_PE_omit
Definition: Dwarf.h:841
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ None
No exception support.
bool isNoOpWithoutInvoke(EHPersonality Pers)
Return true if this personality may be safely removed if there are no invoke instructions remaining i...
EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition: STLExtras.h:1879