1 //===-- CodeGen/AsmPrinter/DwarfException.cpp - Dwarf Exception Impl ------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file contains support for writing DWARF exception info into asm files. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "DwarfException.h" 15 #include "llvm/ADT/SmallString.h" 16 #include "llvm/ADT/StringExtras.h" 17 #include "llvm/ADT/Twine.h" 18 #include "llvm/CodeGen/AsmPrinter.h" 19 #include "llvm/CodeGen/MachineFrameInfo.h" 20 #include "llvm/CodeGen/MachineFunction.h" 21 #include "llvm/CodeGen/MachineModuleInfo.h" 22 #include "llvm/IR/DataLayout.h" 23 #include "llvm/IR/Mangler.h" 24 #include "llvm/IR/Module.h" 25 #include "llvm/MC/MCAsmInfo.h" 26 #include "llvm/MC/MCContext.h" 27 #include "llvm/MC/MCExpr.h" 28 #include "llvm/MC/MCSection.h" 29 #include "llvm/MC/MCStreamer.h" 30 #include "llvm/MC/MCSymbol.h" 31 #include "llvm/MC/MachineLocation.h" 32 #include "llvm/Support/Dwarf.h" 33 #include "llvm/Support/ErrorHandling.h" 34 #include "llvm/Support/FormattedStream.h" 35 #include "llvm/Target/TargetFrameLowering.h" 36 #include "llvm/Target/TargetLoweringObjectFile.h" 37 #include "llvm/Target/TargetMachine.h" 38 #include "llvm/Target/TargetOptions.h" 39 #include "llvm/Target/TargetRegisterInfo.h" 40 using namespace llvm; 41 42 DwarfCFIExceptionBase::DwarfCFIExceptionBase(AsmPrinter *A) 43 : EHStreamer(A), shouldEmitCFI(false) {} 44 45 void DwarfCFIExceptionBase::markFunctionEnd() { 46 if (shouldEmitCFI) 47 Asm->OutStreamer->EmitCFIEndProc(); 48 49 if (MMI->getLandingPads().empty()) 50 return; 51 52 // Map all labels and get rid of any dead landing pads. 53 MMI->TidyLandingPads(); 54 } 55 56 DwarfCFIException::DwarfCFIException(AsmPrinter *A) 57 : DwarfCFIExceptionBase(A), shouldEmitPersonality(false), 58 shouldEmitLSDA(false), shouldEmitMoves(false), 59 moveTypeModule(AsmPrinter::CFI_M_None) {} 60 61 DwarfCFIException::~DwarfCFIException() {} 62 63 /// endModule - Emit all exception information that should come after the 64 /// content. 65 void DwarfCFIException::endModule() { 66 if (moveTypeModule == AsmPrinter::CFI_M_Debug) 67 Asm->OutStreamer->EmitCFISections(false, true); 68 69 // SjLj uses this pass and it doesn't need this info. 70 if (!Asm->MAI->usesCFIForEH()) 71 return; 72 73 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); 74 75 unsigned PerEncoding = TLOF.getPersonalityEncoding(); 76 77 if ((PerEncoding & 0x80) != dwarf::DW_EH_PE_indirect) 78 return; 79 80 // Emit references to all used personality functions 81 const std::vector<const Function*> &Personalities = MMI->getPersonalities(); 82 for (size_t i = 0, e = Personalities.size(); i != e; ++i) { 83 if (!Personalities[i]) 84 continue; 85 MCSymbol *Sym = Asm->getSymbol(Personalities[i]); 86 TLOF.emitPersonalityValue(*Asm->OutStreamer, Asm->TM, Sym); 87 } 88 } 89 90 void DwarfCFIException::beginFunction(const MachineFunction *MF) { 91 shouldEmitMoves = shouldEmitPersonality = shouldEmitLSDA = false; 92 93 // If any landing pads survive, we need an EH table. 94 bool hasLandingPads = !MMI->getLandingPads().empty(); 95 96 // See if we need frame move info. 97 AsmPrinter::CFIMoveType MoveType = Asm->needsCFIMoves(); 98 if (MoveType == AsmPrinter::CFI_M_EH || 99 (MoveType == AsmPrinter::CFI_M_Debug && 100 moveTypeModule == AsmPrinter::CFI_M_None)) 101 moveTypeModule = MoveType; 102 103 shouldEmitMoves = MoveType != AsmPrinter::CFI_M_None; 104 105 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); 106 unsigned PerEncoding = TLOF.getPersonalityEncoding(); 107 const Function *Per = MMI->getPersonality(); 108 109 shouldEmitPersonality = hasLandingPads && 110 PerEncoding != dwarf::DW_EH_PE_omit && Per; 111 112 unsigned LSDAEncoding = TLOF.getLSDAEncoding(); 113 shouldEmitLSDA = shouldEmitPersonality && 114 LSDAEncoding != dwarf::DW_EH_PE_omit; 115 116 shouldEmitCFI = shouldEmitPersonality || shouldEmitMoves; 117 if (!shouldEmitCFI) 118 return; 119 120 Asm->OutStreamer->EmitCFIStartProc(/*IsSimple=*/false); 121 122 // Indicate personality routine, if any. 123 if (!shouldEmitPersonality) 124 return; 125 126 const MCSymbol *Sym = 127 TLOF.getCFIPersonalitySymbol(Per, *Asm->Mang, Asm->TM, MMI); 128 Asm->OutStreamer->EmitCFIPersonality(Sym, PerEncoding); 129 130 // Provide LSDA information. 131 if (!shouldEmitLSDA) 132 return; 133 134 Asm->OutStreamer->EmitCFILsda(Asm->getCurExceptionSym(), LSDAEncoding); 135 } 136 137 /// endFunction - Gather and emit post-function exception information. 138 /// 139 void DwarfCFIException::endFunction(const MachineFunction *) { 140 if (!shouldEmitPersonality) 141 return; 142 143 emitExceptionTable(); 144 } 145