1 //===-- CodeGen/AsmPrinter/ARMException.cpp - ARM EHABI 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/StringExtras.h" 16 #include "llvm/ADT/Twine.h" 17 #include "llvm/BinaryFormat/Dwarf.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/CodeGen/TargetFrameLowering.h" 23 #include "llvm/CodeGen/TargetRegisterInfo.h" 24 #include "llvm/IR/DataLayout.h" 25 #include "llvm/IR/Mangler.h" 26 #include "llvm/IR/Module.h" 27 #include "llvm/MC/MCAsmInfo.h" 28 #include "llvm/MC/MCContext.h" 29 #include "llvm/MC/MCExpr.h" 30 #include "llvm/MC/MCSection.h" 31 #include "llvm/MC/MCStreamer.h" 32 #include "llvm/MC/MCSymbol.h" 33 #include "llvm/Support/FormattedStream.h" 34 #include "llvm/Target/TargetOptions.h" 35 using namespace llvm; 36 37 ARMException::ARMException(AsmPrinter *A) : DwarfCFIExceptionBase(A) {} 38 39 ARMException::~ARMException() {} 40 41 ARMTargetStreamer &ARMException::getTargetStreamer() { 42 MCTargetStreamer &TS = *Asm->OutStreamer->getTargetStreamer(); 43 return static_cast<ARMTargetStreamer &>(TS); 44 } 45 46 void ARMException::beginFunction(const MachineFunction *MF) { 47 if (Asm->MAI->getExceptionHandlingType() == ExceptionHandling::ARM) 48 getTargetStreamer().emitFnStart(); 49 // See if we need call frame info. 50 AsmPrinter::CFIMoveType MoveType = Asm->needsCFIMoves(); 51 assert(MoveType != AsmPrinter::CFI_M_EH && 52 "non-EH CFI not yet supported in prologue with EHABI lowering"); 53 54 if (MoveType == AsmPrinter::CFI_M_Debug) { 55 if (!hasEmittedCFISections) { 56 if (Asm->needsOnlyDebugCFIMoves()) 57 Asm->OutStreamer->EmitCFISections(false, true); 58 hasEmittedCFISections = true; 59 } 60 61 shouldEmitCFI = true; 62 Asm->OutStreamer->EmitCFIStartProc(false); 63 } 64 } 65 66 /// endFunction - Gather and emit post-function exception information. 67 /// 68 void ARMException::endFunction(const MachineFunction *MF) { 69 ARMTargetStreamer &ATS = getTargetStreamer(); 70 const Function *F = MF->getFunction(); 71 const Function *Per = nullptr; 72 if (F->hasPersonalityFn()) 73 Per = dyn_cast<Function>(F->getPersonalityFn()->stripPointerCasts()); 74 bool forceEmitPersonality = 75 F->hasPersonalityFn() && !isNoOpWithoutInvoke(classifyEHPersonality(Per)) && 76 F->needsUnwindTableEntry(); 77 bool shouldEmitPersonality = forceEmitPersonality || 78 !MF->getLandingPads().empty(); 79 if (!Asm->MF->getFunction()->needsUnwindTableEntry() && 80 !shouldEmitPersonality) 81 ATS.emitCantUnwind(); 82 else if (shouldEmitPersonality) { 83 // Emit references to personality. 84 if (Per) { 85 MCSymbol *PerSym = Asm->getSymbol(Per); 86 Asm->OutStreamer->EmitSymbolAttribute(PerSym, MCSA_Global); 87 ATS.emitPersonality(PerSym); 88 } 89 90 // Emit .handlerdata directive. 91 ATS.emitHandlerData(); 92 93 // Emit actual exception table 94 emitExceptionTable(); 95 } 96 97 if (Asm->MAI->getExceptionHandlingType() == ExceptionHandling::ARM) 98 ATS.emitFnEnd(); 99 } 100 101 void ARMException::emitTypeInfos(unsigned TTypeEncoding) { 102 const MachineFunction *MF = Asm->MF; 103 const std::vector<const GlobalValue *> &TypeInfos = MF->getTypeInfos(); 104 const std::vector<unsigned> &FilterIds = MF->getFilterIds(); 105 106 bool VerboseAsm = Asm->OutStreamer->isVerboseAsm(); 107 108 int Entry = 0; 109 // Emit the Catch TypeInfos. 110 if (VerboseAsm && !TypeInfos.empty()) { 111 Asm->OutStreamer->AddComment(">> Catch TypeInfos <<"); 112 Asm->OutStreamer->AddBlankLine(); 113 Entry = TypeInfos.size(); 114 } 115 116 for (const GlobalValue *GV : reverse(TypeInfos)) { 117 if (VerboseAsm) 118 Asm->OutStreamer->AddComment("TypeInfo " + Twine(Entry--)); 119 Asm->EmitTTypeReference(GV, TTypeEncoding); 120 } 121 122 // Emit the Exception Specifications. 123 if (VerboseAsm && !FilterIds.empty()) { 124 Asm->OutStreamer->AddComment(">> Filter TypeInfos <<"); 125 Asm->OutStreamer->AddBlankLine(); 126 Entry = 0; 127 } 128 for (std::vector<unsigned>::const_iterator 129 I = FilterIds.begin(), E = FilterIds.end(); I < E; ++I) { 130 unsigned TypeID = *I; 131 if (VerboseAsm) { 132 --Entry; 133 if (TypeID != 0) 134 Asm->OutStreamer->AddComment("FilterInfo " + Twine(Entry)); 135 } 136 137 Asm->EmitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]), 138 TTypeEncoding); 139 } 140 } 141