50047c1ab7127606c4c32cd261b913102da301ec
[oota-llvm.git] / lib / CodeGen / AsmPrinter / AsmPrinterDwarf.cpp
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, OutStreamer);
154     OutStreamer.EmitValue(Exp, GetSizeOfEncodedValue(Encoding));
155   } else
156     OutStreamer.EmitIntValue(0, GetSizeOfEncodedValue(Encoding));
157 }
158
159 /// EmitSectionOffset - Emit the 4-byte offset of Label from the start of its
160 /// section.  This can be done with a special directive if the target supports
161 /// it (e.g. cygwin) or by emitting it as an offset from a label at the start
162 /// of the section.
163 ///
164 /// SectionLabel is a temporary label emitted at the start of the section that
165 /// Label lives in.
166 void AsmPrinter::EmitSectionOffset(const MCSymbol *Label,
167                                    const MCSymbol *SectionLabel) 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   // Get the section that we're referring to, based on SectionLabel.
175   const MCSection &Section = SectionLabel->getSection();
176
177   // If Label has already been emitted, verify that it is in the same section as
178   // section label for sanity.
179   assert((!Label->isInSection() || &Label->getSection() == &Section) &&
180          "Section offset using wrong section base for label");
181
182   // If the format uses relocations with dwarf, refer to the symbol directly.
183   if (MAI->doesDwarfUseRelocationsAcrossSections()) {
184     OutStreamer.EmitSymbolValue(Label, 4);
185     return;
186   }
187
188   // Otherwise, emit it as a label difference from the start of the section.
189   EmitLabelDifference(Label, SectionLabel, 4);
190 }
191
192 /// EmitDwarfRegOp - Emit dwarf register operation.
193 void AsmPrinter::EmitDwarfRegOp(ByteStreamer &Streamer,
194                                 const MachineLocation &MLoc) const {
195   DebugLocDwarfExpression Expr(*MF->getSubtarget().getRegisterInfo(),
196                                getDwarfDebug()->getDwarfVersion(), Streamer);
197   const MCRegisterInfo *MRI = MMI->getContext().getRegisterInfo();
198   int Reg = MRI->getDwarfRegNum(MLoc.getReg(), false);
199   if (Reg < 0) {
200     // We assume that pointers are always in an addressable register.
201     if (MLoc.isIndirect())
202       // FIXME: We have no reasonable way of handling errors in here. The
203       // caller might be in the middle of a dwarf expression. We should
204       // probably assert that Reg >= 0 once debug info generation is more
205       // mature.
206       return Expr.EmitOp(dwarf::DW_OP_nop,
207                          "nop (could not find a dwarf register number)");
208
209     // Attempt to find a valid super- or sub-register.
210     if (!Expr.AddMachineRegPiece(MLoc.getReg()))
211       Expr.EmitOp(dwarf::DW_OP_nop,
212                   "nop (could not find a dwarf register number)");
213     return;
214   }
215
216   if (MLoc.isIndirect())
217     Expr.AddRegIndirect(Reg, MLoc.getOffset());
218   else
219     Expr.AddReg(Reg);
220 }
221
222 //===----------------------------------------------------------------------===//
223 // Dwarf Lowering Routines
224 //===----------------------------------------------------------------------===//
225
226 void AsmPrinter::emitCFIInstruction(const MCCFIInstruction &Inst) const {
227   switch (Inst.getOperation()) {
228   default:
229     llvm_unreachable("Unexpected instruction");
230   case MCCFIInstruction::OpDefCfaOffset:
231     OutStreamer.EmitCFIDefCfaOffset(Inst.getOffset());
232     break;
233   case MCCFIInstruction::OpDefCfa:
234     OutStreamer.EmitCFIDefCfa(Inst.getRegister(), Inst.getOffset());
235     break;
236   case MCCFIInstruction::OpDefCfaRegister:
237     OutStreamer.EmitCFIDefCfaRegister(Inst.getRegister());
238     break;
239   case MCCFIInstruction::OpOffset:
240     OutStreamer.EmitCFIOffset(Inst.getRegister(), Inst.getOffset());
241     break;
242   case MCCFIInstruction::OpRegister:
243     OutStreamer.EmitCFIRegister(Inst.getRegister(), Inst.getRegister2());
244     break;
245   case MCCFIInstruction::OpWindowSave:
246     OutStreamer.EmitCFIWindowSave();
247     break;
248   case MCCFIInstruction::OpSameValue:
249     OutStreamer.EmitCFISameValue(Inst.getRegister());
250     break;
251   }
252 }
253
254 void AsmPrinter::emitDwarfDIE(const DIE &Die) const {
255   // Get the abbreviation for this DIE.
256   const DIEAbbrev &Abbrev = Die.getAbbrev();
257
258   // Emit the code (index) for the abbreviation.
259   if (isVerbose())
260     OutStreamer.AddComment("Abbrev [" + Twine(Abbrev.getNumber()) +
261                            "] 0x" + Twine::utohexstr(Die.getOffset()) +
262                            ":0x" + Twine::utohexstr(Die.getSize()) + " " +
263                            dwarf::TagString(Abbrev.getTag()));
264   EmitULEB128(Abbrev.getNumber());
265
266   const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
267   const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData();
268
269   // Emit the DIE attribute values.
270   for (unsigned i = 0, N = Values.size(); i < N; ++i) {
271     dwarf::Attribute Attr = AbbrevData[i].getAttribute();
272     dwarf::Form Form = AbbrevData[i].getForm();
273     assert(Form && "Too many attributes for DIE (check abbreviation)");
274
275     if (isVerbose()) {
276       OutStreamer.AddComment(dwarf::AttributeString(Attr));
277       if (Attr == dwarf::DW_AT_accessibility)
278         OutStreamer.AddComment(dwarf::AccessibilityString(
279             cast<DIEInteger>(Values[i])->getValue()));
280     }
281
282     // Emit an attribute using the defined form.
283     Values[i]->EmitValue(this, Form);
284   }
285
286   // Emit the DIE children if any.
287   if (Abbrev.hasChildren()) {
288     for (auto &Child : Die.getChildren())
289       emitDwarfDIE(*Child);
290
291     OutStreamer.AddComment("End Of Children Mark");
292     EmitInt8(0);
293   }
294 }
295
296 void
297 AsmPrinter::emitDwarfAbbrevs(const std::vector<DIEAbbrev *>& Abbrevs) const {
298   // For each abbrevation.
299   for (const DIEAbbrev *Abbrev : Abbrevs) {
300     // Emit the abbrevations code (base 1 index.)
301     EmitULEB128(Abbrev->getNumber(), "Abbreviation Code");
302
303     // Emit the abbreviations data.
304     Abbrev->Emit(this);
305   }
306
307   // Mark end of abbreviations.
308   EmitULEB128(0, "EOM(3)");
309 }