1 //===-- AsmPrinterDwarf.cpp - AsmPrinter Dwarf Support --------------------===// 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 implements the Dwarf emissions parts of AsmPrinter. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "ByteStreamer.h" 15 #include "DwarfDebug.h" 16 #include "DwarfExpression.h" 17 #include "llvm/ADT/Twine.h" 18 #include "llvm/CodeGen/AsmPrinter.h" 19 #include "llvm/CodeGen/DIE.h" 20 #include "llvm/CodeGen/MachineFunction.h" 21 #include "llvm/CodeGen/MachineModuleInfo.h" 22 #include "llvm/IR/DataLayout.h" 23 #include "llvm/MC/MCAsmInfo.h" 24 #include "llvm/MC/MCRegisterInfo.h" 25 #include "llvm/MC/MCSection.h" 26 #include "llvm/MC/MCStreamer.h" 27 #include "llvm/MC/MCSymbol.h" 28 #include "llvm/MC/MachineLocation.h" 29 #include "llvm/Support/Dwarf.h" 30 #include "llvm/Support/ErrorHandling.h" 31 #include "llvm/Target/TargetLoweringObjectFile.h" 32 #include "llvm/Target/TargetMachine.h" 33 #include "llvm/Target/TargetSubtargetInfo.h" 34 using namespace llvm; 35 36 #define DEBUG_TYPE "asm-printer" 37 38 //===----------------------------------------------------------------------===// 39 // Dwarf Emission Helper Routines 40 //===----------------------------------------------------------------------===// 41 42 /// EmitSLEB128 - emit the specified signed leb128 value. 43 void AsmPrinter::EmitSLEB128(int64_t Value, const char *Desc) const { 44 if (isVerbose() && Desc) 45 OutStreamer->AddComment(Desc); 46 47 OutStreamer->EmitSLEB128IntValue(Value); 48 } 49 50 /// EmitULEB128 - emit the specified signed leb128 value. 51 void AsmPrinter::EmitULEB128(uint64_t Value, const char *Desc, 52 unsigned PadTo) const { 53 if (isVerbose() && Desc) 54 OutStreamer->AddComment(Desc); 55 56 OutStreamer->EmitULEB128IntValue(Value, PadTo); 57 } 58 59 /// EmitCFAByte - Emit a .byte 42 directive for a DW_CFA_xxx value. 60 void AsmPrinter::EmitCFAByte(unsigned Val) const { 61 if (isVerbose()) { 62 if (Val >= dwarf::DW_CFA_offset && Val < dwarf::DW_CFA_offset + 64) 63 OutStreamer->AddComment("DW_CFA_offset + Reg (" + 64 Twine(Val - dwarf::DW_CFA_offset) + ")"); 65 else 66 OutStreamer->AddComment(dwarf::CallFrameString(Val)); 67 } 68 OutStreamer->EmitIntValue(Val, 1); 69 } 70 71 static const char *DecodeDWARFEncoding(unsigned Encoding) { 72 switch (Encoding) { 73 case dwarf::DW_EH_PE_absptr: 74 return "absptr"; 75 case dwarf::DW_EH_PE_omit: 76 return "omit"; 77 case dwarf::DW_EH_PE_pcrel: 78 return "pcrel"; 79 case dwarf::DW_EH_PE_udata4: 80 return "udata4"; 81 case dwarf::DW_EH_PE_udata8: 82 return "udata8"; 83 case dwarf::DW_EH_PE_sdata4: 84 return "sdata4"; 85 case dwarf::DW_EH_PE_sdata8: 86 return "sdata8"; 87 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata4: 88 return "pcrel udata4"; 89 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4: 90 return "pcrel sdata4"; 91 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata8: 92 return "pcrel udata8"; 93 case dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata8: 94 return "pcrel sdata8"; 95 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata4 96 : 97 return "indirect pcrel udata4"; 98 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata4 99 : 100 return "indirect pcrel sdata4"; 101 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_udata8 102 : 103 return "indirect pcrel udata8"; 104 case dwarf::DW_EH_PE_indirect | dwarf::DW_EH_PE_pcrel | dwarf::DW_EH_PE_sdata8 105 : 106 return "indirect pcrel sdata8"; 107 } 108 109 return "<unknown encoding>"; 110 } 111 112 /// EmitEncodingByte - Emit a .byte 42 directive that corresponds to an 113 /// encoding. If verbose assembly output is enabled, we output comments 114 /// describing the encoding. Desc is an optional string saying what the 115 /// encoding is specifying (e.g. "LSDA"). 116 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const { 117 if (isVerbose()) { 118 if (Desc) 119 OutStreamer->AddComment(Twine(Desc) + " Encoding = " + 120 Twine(DecodeDWARFEncoding(Val))); 121 else 122 OutStreamer->AddComment(Twine("Encoding = ") + DecodeDWARFEncoding(Val)); 123 } 124 125 OutStreamer->EmitIntValue(Val, 1); 126 } 127 128 /// GetSizeOfEncodedValue - Return the size of the encoding in bytes. 129 unsigned AsmPrinter::GetSizeOfEncodedValue(unsigned Encoding) const { 130 if (Encoding == dwarf::DW_EH_PE_omit) 131 return 0; 132 133 switch (Encoding & 0x07) { 134 default: 135 llvm_unreachable("Invalid encoded value."); 136 case dwarf::DW_EH_PE_absptr: 137 return TM.getDataLayout()->getPointerSize(); 138 case dwarf::DW_EH_PE_udata2: 139 return 2; 140 case dwarf::DW_EH_PE_udata4: 141 return 4; 142 case dwarf::DW_EH_PE_udata8: 143 return 8; 144 } 145 } 146 147 void AsmPrinter::EmitTTypeReference(const GlobalValue *GV, 148 unsigned Encoding) const { 149 if (GV) { 150 const TargetLoweringObjectFile &TLOF = getObjFileLowering(); 151 152 const MCExpr *Exp = 153 TLOF.getTTypeGlobalReference(GV, Encoding, *Mang, TM, MMI, 154 *OutStreamer); 155 OutStreamer->EmitValue(Exp, GetSizeOfEncodedValue(Encoding)); 156 } else 157 OutStreamer->EmitIntValue(0, GetSizeOfEncodedValue(Encoding)); 158 } 159 160 /// EmitSectionOffset - Emit the 4-byte offset of Label from the start of its 161 /// section. This can be done with a special directive if the target supports 162 /// it (e.g. cygwin) or by emitting it as an offset from a label at the start 163 /// of the section. 164 /// 165 /// SectionLabel is a temporary label emitted at the start of the section that 166 /// Label lives in. 167 void AsmPrinter::emitSectionOffset(const MCSymbol *Label) const { 168 // On COFF targets, we have to emit the special .secrel32 directive. 169 if (MAI->needsDwarfSectionOffsetDirective()) { 170 OutStreamer->EmitCOFFSecRel32(Label); 171 return; 172 } 173 174 // If the format uses relocations with dwarf, refer to the symbol directly. 175 if (MAI->doesDwarfUseRelocationsAcrossSections()) { 176 OutStreamer->EmitSymbolValue(Label, 4); 177 return; 178 } 179 180 // Otherwise, emit it as a label difference from the start of the section. 181 EmitLabelDifference(Label, Label->getSection().getBeginSymbol(), 4); 182 } 183 184 /// EmitDwarfRegOp - Emit dwarf register operation. 185 void AsmPrinter::EmitDwarfRegOp(ByteStreamer &Streamer, 186 const MachineLocation &MLoc) const { 187 DebugLocDwarfExpression Expr(*MF->getSubtarget().getRegisterInfo(), 188 getDwarfDebug()->getDwarfVersion(), Streamer); 189 const MCRegisterInfo *MRI = MMI->getContext().getRegisterInfo(); 190 int Reg = MRI->getDwarfRegNum(MLoc.getReg(), false); 191 if (Reg < 0) { 192 // We assume that pointers are always in an addressable register. 193 if (MLoc.isIndirect()) 194 // FIXME: We have no reasonable way of handling errors in here. The 195 // caller might be in the middle of a dwarf expression. We should 196 // probably assert that Reg >= 0 once debug info generation is more 197 // mature. 198 return Expr.EmitOp(dwarf::DW_OP_nop, 199 "nop (could not find a dwarf register number)"); 200 201 // Attempt to find a valid super- or sub-register. 202 if (!Expr.AddMachineRegPiece(MLoc.getReg())) 203 Expr.EmitOp(dwarf::DW_OP_nop, 204 "nop (could not find a dwarf register number)"); 205 return; 206 } 207 208 if (MLoc.isIndirect()) 209 Expr.AddRegIndirect(Reg, MLoc.getOffset()); 210 else 211 Expr.AddReg(Reg); 212 } 213 214 //===----------------------------------------------------------------------===// 215 // Dwarf Lowering Routines 216 //===----------------------------------------------------------------------===// 217 218 void AsmPrinter::emitCFIInstruction(const MCCFIInstruction &Inst) const { 219 switch (Inst.getOperation()) { 220 default: 221 llvm_unreachable("Unexpected instruction"); 222 case MCCFIInstruction::OpDefCfaOffset: 223 OutStreamer->EmitCFIDefCfaOffset(Inst.getOffset()); 224 break; 225 case MCCFIInstruction::OpDefCfa: 226 OutStreamer->EmitCFIDefCfa(Inst.getRegister(), Inst.getOffset()); 227 break; 228 case MCCFIInstruction::OpDefCfaRegister: 229 OutStreamer->EmitCFIDefCfaRegister(Inst.getRegister()); 230 break; 231 case MCCFIInstruction::OpOffset: 232 OutStreamer->EmitCFIOffset(Inst.getRegister(), Inst.getOffset()); 233 break; 234 case MCCFIInstruction::OpRegister: 235 OutStreamer->EmitCFIRegister(Inst.getRegister(), Inst.getRegister2()); 236 break; 237 case MCCFIInstruction::OpWindowSave: 238 OutStreamer->EmitCFIWindowSave(); 239 break; 240 case MCCFIInstruction::OpSameValue: 241 OutStreamer->EmitCFISameValue(Inst.getRegister()); 242 break; 243 } 244 } 245 246 void AsmPrinter::emitDwarfDIE(const DIE &Die) const { 247 // Get the abbreviation for this DIE. 248 const DIEAbbrev &Abbrev = Die.getAbbrev(); 249 250 // Emit the code (index) for the abbreviation. 251 if (isVerbose()) 252 OutStreamer->AddComment("Abbrev [" + Twine(Abbrev.getNumber()) + 253 "] 0x" + Twine::utohexstr(Die.getOffset()) + 254 ":0x" + Twine::utohexstr(Die.getSize()) + " " + 255 dwarf::TagString(Abbrev.getTag())); 256 EmitULEB128(Abbrev.getNumber()); 257 258 const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); 259 const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); 260 261 // Emit the DIE attribute values. 262 for (unsigned i = 0, N = Values.size(); i < N; ++i) { 263 dwarf::Attribute Attr = AbbrevData[i].getAttribute(); 264 dwarf::Form Form = AbbrevData[i].getForm(); 265 assert(Form && "Too many attributes for DIE (check abbreviation)"); 266 267 if (isVerbose()) { 268 OutStreamer->AddComment(dwarf::AttributeString(Attr)); 269 if (Attr == dwarf::DW_AT_accessibility) 270 OutStreamer->AddComment(dwarf::AccessibilityString( 271 cast<DIEInteger>(Values[i])->getValue())); 272 } 273 274 // Emit an attribute using the defined form. 275 Values[i]->EmitValue(this, Form); 276 } 277 278 // Emit the DIE children if any. 279 if (Abbrev.hasChildren()) { 280 for (auto &Child : Die.getChildren()) 281 emitDwarfDIE(*Child); 282 283 OutStreamer->AddComment("End Of Children Mark"); 284 EmitInt8(0); 285 } 286 } 287 288 void 289 AsmPrinter::emitDwarfAbbrevs(const std::vector<DIEAbbrev *>& Abbrevs) const { 290 // For each abbrevation. 291 for (const DIEAbbrev *Abbrev : Abbrevs) { 292 // Emit the abbrevations code (base 1 index.) 293 EmitULEB128(Abbrev->getNumber(), "Abbreviation Code"); 294 295 // Emit the abbreviations data. 296 Abbrev->Emit(this); 297 } 298 299 // Mark end of abbreviations. 300 EmitULEB128(0, "EOM(3)"); 301 } 302