blob: 3176c38141db6c9db09f52c6f1d27595cea65120 [file] [log] [blame]
Jim Laskeye5032892005-12-21 19:48:16 +00001//===-- llvm/CodeGen/DwarfWriter.cpp - Dwarf Framework ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Jim Laskeye5032892005-12-21 19:48:16 +00007//
8//===----------------------------------------------------------------------===//
9//
Jim Laskey072200c2007-01-29 18:51:14 +000010// This file contains support for writing dwarf info into asm files.
Jim Laskeye5032892005-12-21 19:48:16 +000011//
12//===----------------------------------------------------------------------===//
Jim Laskey3ea0e0e2006-01-27 18:32:41 +000013
Jim Laskeyb2efb852006-01-04 22:28:25 +000014#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskeye5032892005-12-21 19:48:16 +000015
Duncan Sands53c3a332007-05-16 12:12:23 +000016#include "llvm/ADT/DenseMap.h"
Jim Laskeya9c83fe2006-10-30 15:59:54 +000017#include "llvm/ADT/FoldingSet.h"
Jim Laskey063e7652006-01-17 17:31:53 +000018#include "llvm/ADT/StringExtras.h"
Jim Laskey65195462006-10-30 13:35:07 +000019#include "llvm/ADT/UniqueVector.h"
Jim Laskey52060a02006-01-24 00:49:18 +000020#include "llvm/Module.h"
21#include "llvm/Type.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000022#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000023#include "llvm/CodeGen/MachineModuleInfo.h"
Jim Laskey41886992006-04-07 16:34:46 +000024#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyb8509c52006-03-23 18:07:55 +000025#include "llvm/CodeGen/MachineLocation.h"
Devang Patel08f053f2009-01-05 17:57:47 +000026#include "llvm/Analysis/DebugInfo.h"
Jim Laskey3f09fc22007-02-28 18:38:31 +000027#include "llvm/Support/Debug.h"
Jim Laskeyb3e789a2006-01-26 20:21:46 +000028#include "llvm/Support/Dwarf.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000029#include "llvm/Support/CommandLine.h"
Jim Laskey65195462006-10-30 13:35:07 +000030#include "llvm/Support/DataTypes.h"
Jim Laskey52060a02006-01-24 00:49:18 +000031#include "llvm/Support/Mangler.h"
Owen Andersoncb371882008-08-21 00:14:44 +000032#include "llvm/Support/raw_ostream.h"
Dan Gohman85496362007-09-24 21:32:18 +000033#include "llvm/System/Path.h"
Jim Laskey563321a2006-09-06 18:34:40 +000034#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000035#include "llvm/Target/TargetRegisterInfo.h"
Owen Anderson07000c62006-05-12 06:33:49 +000036#include "llvm/Target/TargetData.h"
Jim Laskey1069fbd2006-04-10 23:09:19 +000037#include "llvm/Target/TargetFrameInfo.h"
Duncan Sands53c3a332007-05-16 12:12:23 +000038#include "llvm/Target/TargetInstrInfo.h"
Jim Laskey1b340dc2007-01-29 20:48:32 +000039#include "llvm/Target/TargetMachine.h"
Jim Laskeyc1c47c32007-01-29 23:40:33 +000040#include "llvm/Target/TargetOptions.h"
Bill Wendlingbdc679d2006-11-29 00:39:47 +000041#include <ostream>
Jim Laskey65195462006-10-30 13:35:07 +000042#include <string>
Jim Laskeyb2efb852006-01-04 22:28:25 +000043using namespace llvm;
Jim Laskey9a777a32006-02-27 22:37:23 +000044using namespace llvm::dwarf;
Jim Laskeya7cea6f2006-01-04 13:52:30 +000045
Jim Laskey0d086af2006-02-27 12:43:29 +000046namespace llvm {
Anton Korobeynikovffe31d72008-08-16 12:57:46 +000047
Jim Laskey65195462006-10-30 13:35:07 +000048//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +000049
50/// Configuration values for initial hash set sizes (log2).
51///
52static const unsigned InitDiesSetSize = 9; // 512
53static const unsigned InitAbbreviationsSetSize = 9; // 512
54static const unsigned InitValuesSetSize = 9; // 512
55
56//===----------------------------------------------------------------------===//
57/// Forward declarations.
58///
59class DIE;
60class DIEValue;
61
62//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +000063/// DWLabel - Labels are used to track locations in the assembler file.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +000064/// Labels appear in the form @verbatim <prefix><Tag><Number> @endverbatim,
65/// where the tag is a category of label (Ex. location) and number is a value
Reid Spencer181b6c92007-08-05 20:06:04 +000066/// unique in that category.
Jim Laskey65195462006-10-30 13:35:07 +000067class DWLabel {
68public:
Jim Laskeyef42a012006-11-02 20:12:39 +000069 /// Tag - Label category tag. Should always be a staticly declared C string.
70 ///
71 const char *Tag;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +000072
Jim Laskeyef42a012006-11-02 20:12:39 +000073 /// Number - Value to make label unique.
74 ///
75 unsigned Number;
Jim Laskey65195462006-10-30 13:35:07 +000076
77 DWLabel(const char *T, unsigned N) : Tag(T), Number(N) {}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +000078
Jim Laskeyef42a012006-11-02 20:12:39 +000079 void Profile(FoldingSetNodeID &ID) const {
80 ID.AddString(std::string(Tag));
81 ID.AddInteger(Number);
Jim Laskey90c79d72006-03-23 23:02:34 +000082 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +000083
Jim Laskeyef42a012006-11-02 20:12:39 +000084#ifndef NDEBUG
Bill Wendling5c7e3262006-12-17 05:15:13 +000085 void print(std::ostream *O) const {
86 if (O) print(*O);
Bill Wendlingbdc679d2006-11-29 00:39:47 +000087 }
Jim Laskeyef42a012006-11-02 20:12:39 +000088 void print(std::ostream &O) const {
Jim Laskeybacd3042007-02-21 22:48:45 +000089 O << "." << Tag;
Jim Laskeyef42a012006-11-02 20:12:39 +000090 if (Number) O << Number;
91 }
92#endif
Jim Laskeybd761842006-02-27 17:27:12 +000093};
94
95//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +000096/// DIEAbbrevData - Dwarf abbreviation data, describes the one attribute of a
97/// Dwarf abbreviation.
Jim Laskey0d086af2006-02-27 12:43:29 +000098class DIEAbbrevData {
99private:
Jim Laskeyef42a012006-11-02 20:12:39 +0000100 /// Attribute - Dwarf attribute code.
101 ///
102 unsigned Attribute;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000103
Jim Laskeyef42a012006-11-02 20:12:39 +0000104 /// Form - Dwarf form code.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000105 ///
106 unsigned Form;
107
Jim Laskey0d086af2006-02-27 12:43:29 +0000108public:
109 DIEAbbrevData(unsigned A, unsigned F)
110 : Attribute(A)
111 , Form(F)
112 {}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000113
Jim Laskeybd761842006-02-27 17:27:12 +0000114 // Accessors.
Jim Laskey0d086af2006-02-27 12:43:29 +0000115 unsigned getAttribute() const { return Attribute; }
116 unsigned getForm() const { return Form; }
Jim Laskey063e7652006-01-17 17:31:53 +0000117
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000118 /// Profile - Used to gather unique data for the abbreviation folding set.
Jim Laskey0d086af2006-02-27 12:43:29 +0000119 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000120 void Profile(FoldingSetNodeID &ID)const {
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000121 ID.AddInteger(Attribute);
122 ID.AddInteger(Form);
Jim Laskey0d086af2006-02-27 12:43:29 +0000123 }
124};
Jim Laskey063e7652006-01-17 17:31:53 +0000125
Jim Laskey0d086af2006-02-27 12:43:29 +0000126//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000127/// DIEAbbrev - Dwarf abbreviation, describes the organization of a debug
128/// information object.
129class DIEAbbrev : public FoldingSetNode {
Jim Laskey0d086af2006-02-27 12:43:29 +0000130private:
Jim Laskeyef42a012006-11-02 20:12:39 +0000131 /// Tag - Dwarf tag code.
132 ///
133 unsigned Tag;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000134
Jim Laskeyef42a012006-11-02 20:12:39 +0000135 /// Unique number for node.
136 ///
137 unsigned Number;
138
139 /// ChildrenFlag - Dwarf children flag.
140 ///
141 unsigned ChildrenFlag;
142
143 /// Data - Raw data bytes for abbreviation.
144 ///
Owen Anderson873e1b52008-06-24 21:44:59 +0000145 SmallVector<DIEAbbrevData, 8> Data;
Jim Laskey063e7652006-01-17 17:31:53 +0000146
Jim Laskey0d086af2006-02-27 12:43:29 +0000147public:
Jim Laskey063e7652006-01-17 17:31:53 +0000148
Jim Laskey0d086af2006-02-27 12:43:29 +0000149 DIEAbbrev(unsigned T, unsigned C)
Jim Laskeyef42a012006-11-02 20:12:39 +0000150 : Tag(T)
Jim Laskey0d086af2006-02-27 12:43:29 +0000151 , ChildrenFlag(C)
152 , Data()
153 {}
154 ~DIEAbbrev() {}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000155
Jim Laskeybd761842006-02-27 17:27:12 +0000156 // Accessors.
Jim Laskey0d086af2006-02-27 12:43:29 +0000157 unsigned getTag() const { return Tag; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000158 unsigned getNumber() const { return Number; }
Jim Laskey0d086af2006-02-27 12:43:29 +0000159 unsigned getChildrenFlag() const { return ChildrenFlag; }
Owen Anderson873e1b52008-06-24 21:44:59 +0000160 const SmallVector<DIEAbbrevData, 8> &getData() const { return Data; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000161 void setTag(unsigned T) { Tag = T; }
Jim Laskey0d086af2006-02-27 12:43:29 +0000162 void setChildrenFlag(unsigned CF) { ChildrenFlag = CF; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000163 void setNumber(unsigned N) { Number = N; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000164
Jim Laskey0d086af2006-02-27 12:43:29 +0000165 /// AddAttribute - Adds another set of attribute information to the
166 /// abbreviation.
167 void AddAttribute(unsigned Attribute, unsigned Form) {
168 Data.push_back(DIEAbbrevData(Attribute, Form));
Jim Laskey063e7652006-01-17 17:31:53 +0000169 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000170
Jim Laskeyb8509c52006-03-23 18:07:55 +0000171 /// AddFirstAttribute - Adds a set of attribute information to the front
172 /// of the abbreviation.
173 void AddFirstAttribute(unsigned Attribute, unsigned Form) {
174 Data.insert(Data.begin(), DIEAbbrevData(Attribute, Form));
175 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000176
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000177 /// Profile - Used to gather unique data for the abbreviation folding set.
178 ///
179 void Profile(FoldingSetNodeID &ID) {
180 ID.AddInteger(Tag);
181 ID.AddInteger(ChildrenFlag);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000182
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000183 // For each attribute description.
184 for (unsigned i = 0, N = Data.size(); i < N; ++i)
185 Data[i].Profile(ID);
186 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000187
Jim Laskey0d086af2006-02-27 12:43:29 +0000188 /// Emit - Print the abbreviation using the specified Dwarf writer.
189 ///
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000190 void Emit(const DwarfDebug &DD) const;
191
Jim Laskey0d086af2006-02-27 12:43:29 +0000192#ifndef NDEBUG
Bill Wendling5c7e3262006-12-17 05:15:13 +0000193 void print(std::ostream *O) {
194 if (O) print(*O);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000195 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000196 void print(std::ostream &O);
197 void dump();
198#endif
199};
Jim Laskey063e7652006-01-17 17:31:53 +0000200
Jim Laskey0d086af2006-02-27 12:43:29 +0000201//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +0000202/// DIE - A structured debug information entry. Has an abbreviation which
203/// describes it's organization.
204class DIE : public FoldingSetNode {
205protected:
206 /// Abbrev - Buffer for constructing abbreviation.
207 ///
208 DIEAbbrev Abbrev;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000209
Jim Laskeyef42a012006-11-02 20:12:39 +0000210 /// Offset - Offset in debug info section.
211 ///
212 unsigned Offset;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000213
Jim Laskeyef42a012006-11-02 20:12:39 +0000214 /// Size - Size of instance + children.
215 ///
216 unsigned Size;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000217
Jim Laskeyef42a012006-11-02 20:12:39 +0000218 /// Children DIEs.
219 ///
220 std::vector<DIE *> Children;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000221
Jim Laskeyef42a012006-11-02 20:12:39 +0000222 /// Attributes values.
223 ///
Owen Anderson873e1b52008-06-24 21:44:59 +0000224 SmallVector<DIEValue*, 32> Values;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000225
Jim Laskeyef42a012006-11-02 20:12:39 +0000226public:
Dan Gohman81975f62007-08-27 14:50:10 +0000227 explicit DIE(unsigned Tag)
Jim Laskeyef42a012006-11-02 20:12:39 +0000228 : Abbrev(Tag, DW_CHILDREN_no)
229 , Offset(0)
230 , Size(0)
231 , Children()
232 , Values()
233 {}
234 virtual ~DIE();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000235
Jim Laskeyef42a012006-11-02 20:12:39 +0000236 // Accessors.
237 DIEAbbrev &getAbbrev() { return Abbrev; }
238 unsigned getAbbrevNumber() const {
239 return Abbrev.getNumber();
240 }
Jim Laskey85f419b2006-11-09 16:32:26 +0000241 unsigned getTag() const { return Abbrev.getTag(); }
Jim Laskeyef42a012006-11-02 20:12:39 +0000242 unsigned getOffset() const { return Offset; }
243 unsigned getSize() const { return Size; }
244 const std::vector<DIE *> &getChildren() const { return Children; }
Owen Anderson873e1b52008-06-24 21:44:59 +0000245 SmallVector<DIEValue*, 32> &getValues() { return Values; }
Jim Laskeyef42a012006-11-02 20:12:39 +0000246 void setTag(unsigned Tag) { Abbrev.setTag(Tag); }
247 void setOffset(unsigned O) { Offset = O; }
248 void setSize(unsigned S) { Size = S; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000249
Jim Laskeyef42a012006-11-02 20:12:39 +0000250 /// AddValue - Add a value and attributes to a DIE.
251 ///
252 void AddValue(unsigned Attribute, unsigned Form, DIEValue *Value) {
253 Abbrev.AddAttribute(Attribute, Form);
254 Values.push_back(Value);
255 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000256
Jim Laskeyef42a012006-11-02 20:12:39 +0000257 /// SiblingOffset - Return the offset of the debug information entry's
258 /// sibling.
259 unsigned SiblingOffset() const { return Offset + Size; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000260
Jim Laskeyef42a012006-11-02 20:12:39 +0000261 /// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
262 ///
263 void AddSiblingOffset();
264
265 /// AddChild - Add a child to the DIE.
266 ///
267 void AddChild(DIE *Child) {
268 Abbrev.setChildrenFlag(DW_CHILDREN_yes);
269 Children.push_back(Child);
270 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000271
Jim Laskeyef42a012006-11-02 20:12:39 +0000272 /// Detach - Detaches objects connected to it after copying.
273 ///
274 void Detach() {
275 Children.clear();
276 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000277
Jim Laskeyef42a012006-11-02 20:12:39 +0000278 /// Profile - Used to gather unique data for the value folding set.
279 ///
280 void Profile(FoldingSetNodeID &ID) ;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000281
Jim Laskeyef42a012006-11-02 20:12:39 +0000282#ifndef NDEBUG
Bill Wendling5c7e3262006-12-17 05:15:13 +0000283 void print(std::ostream *O, unsigned IncIndent = 0) {
284 if (O) print(*O, IncIndent);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000285 }
Jim Laskeyef42a012006-11-02 20:12:39 +0000286 void print(std::ostream &O, unsigned IncIndent = 0);
287 void dump();
288#endif
289};
290
291//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000292/// DIEValue - A debug information entry value.
Jim Laskeyef42a012006-11-02 20:12:39 +0000293///
294class DIEValue : public FoldingSetNode {
Jim Laskey0d086af2006-02-27 12:43:29 +0000295public:
296 enum {
297 isInteger,
298 isString,
299 isLabel,
300 isAsIsLabel,
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +0000301 isSectionOffset,
Jim Laskey0d086af2006-02-27 12:43:29 +0000302 isDelta,
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000303 isEntry,
304 isBlock
Jim Laskey0d086af2006-02-27 12:43:29 +0000305 };
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000306
Jim Laskeyef42a012006-11-02 20:12:39 +0000307 /// Type - Type of data stored in the value.
308 ///
309 unsigned Type;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000310
Dan Gohman81975f62007-08-27 14:50:10 +0000311 explicit DIEValue(unsigned T)
Jim Laskeyef42a012006-11-02 20:12:39 +0000312 : Type(T)
Jim Laskeyef42a012006-11-02 20:12:39 +0000313 {}
Jim Laskey0d086af2006-02-27 12:43:29 +0000314 virtual ~DIEValue() {}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000315
Jim Laskeyf6733882006-11-02 21:48:18 +0000316 // Accessors
Jim Laskeyef42a012006-11-02 20:12:39 +0000317 unsigned getType() const { return Type; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000318
Jim Laskey0d086af2006-02-27 12:43:29 +0000319 // Implement isa/cast/dyncast.
320 static bool classof(const DIEValue *) { return true; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000321
Jim Laskey0d086af2006-02-27 12:43:29 +0000322 /// EmitValue - Emit value via the Dwarf writer.
323 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000324 virtual void EmitValue(DwarfDebug &DD, unsigned Form) = 0;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000325
Jim Laskey0d086af2006-02-27 12:43:29 +0000326 /// SizeOf - Return the size of a value in bytes.
327 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000328 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const = 0;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000329
Jim Laskeyef42a012006-11-02 20:12:39 +0000330 /// Profile - Used to gather unique data for the value folding set.
331 ///
332 virtual void Profile(FoldingSetNodeID &ID) = 0;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000333
Jim Laskeyef42a012006-11-02 20:12:39 +0000334#ifndef NDEBUG
Bill Wendling5c7e3262006-12-17 05:15:13 +0000335 void print(std::ostream *O) {
336 if (O) print(*O);
Bill Wendlingbdc679d2006-11-29 00:39:47 +0000337 }
Jim Laskeyef42a012006-11-02 20:12:39 +0000338 virtual void print(std::ostream &O) = 0;
339 void dump();
340#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000341};
Jim Laskey063e7652006-01-17 17:31:53 +0000342
Jim Laskey0d086af2006-02-27 12:43:29 +0000343//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000344/// DWInteger - An integer value DIE.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000345///
Jim Laskey0d086af2006-02-27 12:43:29 +0000346class DIEInteger : public DIEValue {
347private:
348 uint64_t Integer;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000349
Jim Laskey0d086af2006-02-27 12:43:29 +0000350public:
Dan Gohman81975f62007-08-27 14:50:10 +0000351 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000352
Jim Laskey0d086af2006-02-27 12:43:29 +0000353 // Implement isa/cast/dyncast.
354 static bool classof(const DIEInteger *) { return true; }
355 static bool classof(const DIEValue *I) { return I->Type == isInteger; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000356
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000357 /// BestForm - Choose the best form for integer.
358 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000359 static unsigned BestForm(bool IsSigned, uint64_t Integer) {
360 if (IsSigned) {
361 if ((char)Integer == (signed)Integer) return DW_FORM_data1;
362 if ((short)Integer == (signed)Integer) return DW_FORM_data2;
363 if ((int)Integer == (signed)Integer) return DW_FORM_data4;
364 } else {
365 if ((unsigned char)Integer == Integer) return DW_FORM_data1;
366 if ((unsigned short)Integer == Integer) return DW_FORM_data2;
367 if ((unsigned int)Integer == Integer) return DW_FORM_data4;
368 }
369 return DW_FORM_data8;
370 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000371
Jim Laskey0d086af2006-02-27 12:43:29 +0000372 /// EmitValue - Emit integer of appropriate size.
373 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000374 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000375
Jim Laskey0d086af2006-02-27 12:43:29 +0000376 /// SizeOf - Determine size of integer value in bytes.
377 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000378 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000379
Jim Laskeyef42a012006-11-02 20:12:39 +0000380 /// Profile - Used to gather unique data for the value folding set.
381 ///
Jim Laskey5496f012006-11-09 14:52:14 +0000382 static void Profile(FoldingSetNodeID &ID, unsigned Integer) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000383 ID.AddInteger(isInteger);
Jim Laskeyef42a012006-11-02 20:12:39 +0000384 ID.AddInteger(Integer);
385 }
Jim Laskey5496f012006-11-09 14:52:14 +0000386 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Integer); }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000387
Jim Laskeyef42a012006-11-02 20:12:39 +0000388#ifndef NDEBUG
389 virtual void print(std::ostream &O) {
390 O << "Int: " << (int64_t)Integer
391 << " 0x" << std::hex << Integer << std::dec;
392 }
393#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000394};
Jim Laskey063e7652006-01-17 17:31:53 +0000395
Jim Laskey0d086af2006-02-27 12:43:29 +0000396//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000397/// DIEString - A string value DIE.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000398///
Jim Laskeyef42a012006-11-02 20:12:39 +0000399class DIEString : public DIEValue {
400public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000401 const std::string String;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000402
Dan Gohman81975f62007-08-27 14:50:10 +0000403 explicit DIEString(const std::string &S) : DIEValue(isString), String(S) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000404
Jim Laskey0d086af2006-02-27 12:43:29 +0000405 // Implement isa/cast/dyncast.
406 static bool classof(const DIEString *) { return true; }
407 static bool classof(const DIEValue *S) { return S->Type == isString; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000408
Jim Laskey0d086af2006-02-27 12:43:29 +0000409 /// EmitValue - Emit string value.
410 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000411 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000412
Jim Laskey0d086af2006-02-27 12:43:29 +0000413 /// SizeOf - Determine size of string value in bytes.
414 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000415 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
Jim Laskeyef42a012006-11-02 20:12:39 +0000416 return String.size() + sizeof(char); // sizeof('\0');
417 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000418
Jim Laskeyef42a012006-11-02 20:12:39 +0000419 /// Profile - Used to gather unique data for the value folding set.
420 ///
Jim Laskey5496f012006-11-09 14:52:14 +0000421 static void Profile(FoldingSetNodeID &ID, const std::string &String) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000422 ID.AddInteger(isString);
Jim Laskeyef42a012006-11-02 20:12:39 +0000423 ID.AddString(String);
424 }
Jim Laskey5496f012006-11-09 14:52:14 +0000425 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, String); }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000426
Jim Laskeyef42a012006-11-02 20:12:39 +0000427#ifndef NDEBUG
428 virtual void print(std::ostream &O) {
429 O << "Str: \"" << String << "\"";
430 }
431#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000432};
Jim Laskey063e7652006-01-17 17:31:53 +0000433
Jim Laskey0d086af2006-02-27 12:43:29 +0000434//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000435/// DIEDwarfLabel - A Dwarf internal label expression DIE.
Jim Laskey0d086af2006-02-27 12:43:29 +0000436//
Jim Laskeyef42a012006-11-02 20:12:39 +0000437class DIEDwarfLabel : public DIEValue {
438public:
439
Jim Laskey0d086af2006-02-27 12:43:29 +0000440 const DWLabel Label;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000441
Dan Gohman81975f62007-08-27 14:50:10 +0000442 explicit DIEDwarfLabel(const DWLabel &L) : DIEValue(isLabel), Label(L) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000443
Jim Laskey0d086af2006-02-27 12:43:29 +0000444 // Implement isa/cast/dyncast.
445 static bool classof(const DIEDwarfLabel *) { return true; }
446 static bool classof(const DIEValue *L) { return L->Type == isLabel; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000447
Jim Laskey0d086af2006-02-27 12:43:29 +0000448 /// EmitValue - Emit label value.
449 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000450 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000451
Jim Laskey0d086af2006-02-27 12:43:29 +0000452 /// SizeOf - Determine size of label value in bytes.
453 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000454 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000455
Jim Laskeyef42a012006-11-02 20:12:39 +0000456 /// Profile - Used to gather unique data for the value folding set.
457 ///
Jim Laskey5496f012006-11-09 14:52:14 +0000458 static void Profile(FoldingSetNodeID &ID, const DWLabel &Label) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000459 ID.AddInteger(isLabel);
Jim Laskeyef42a012006-11-02 20:12:39 +0000460 Label.Profile(ID);
461 }
Jim Laskey5496f012006-11-09 14:52:14 +0000462 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000463
Jim Laskeyef42a012006-11-02 20:12:39 +0000464#ifndef NDEBUG
465 virtual void print(std::ostream &O) {
466 O << "Lbl: ";
467 Label.print(O);
468 }
469#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000470};
Jim Laskey063e7652006-01-17 17:31:53 +0000471
Jim Laskey063e7652006-01-17 17:31:53 +0000472
Jim Laskey0d086af2006-02-27 12:43:29 +0000473//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000474/// DIEObjectLabel - A label to an object in code or data.
Jim Laskey0d086af2006-02-27 12:43:29 +0000475//
Jim Laskeyef42a012006-11-02 20:12:39 +0000476class DIEObjectLabel : public DIEValue {
477public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000478 const std::string Label;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000479
Dan Gohman81975f62007-08-27 14:50:10 +0000480 explicit DIEObjectLabel(const std::string &L)
481 : DIEValue(isAsIsLabel), Label(L) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000482
Jim Laskey0d086af2006-02-27 12:43:29 +0000483 // Implement isa/cast/dyncast.
484 static bool classof(const DIEObjectLabel *) { return true; }
485 static bool classof(const DIEValue *L) { return L->Type == isAsIsLabel; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000486
Jim Laskey0d086af2006-02-27 12:43:29 +0000487 /// EmitValue - Emit label value.
488 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000489 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000490
Jim Laskey0d086af2006-02-27 12:43:29 +0000491 /// SizeOf - Determine size of label value in bytes.
492 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000493 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000494
Jim Laskeyef42a012006-11-02 20:12:39 +0000495 /// Profile - Used to gather unique data for the value folding set.
496 ///
Jim Laskey5496f012006-11-09 14:52:14 +0000497 static void Profile(FoldingSetNodeID &ID, const std::string &Label) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000498 ID.AddInteger(isAsIsLabel);
Jim Laskeyef42a012006-11-02 20:12:39 +0000499 ID.AddString(Label);
500 }
Jim Laskey5496f012006-11-09 14:52:14 +0000501 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label); }
Jim Laskeyef42a012006-11-02 20:12:39 +0000502
503#ifndef NDEBUG
504 virtual void print(std::ostream &O) {
505 O << "Obj: " << Label;
506 }
507#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000508};
Jim Laskey063e7652006-01-17 17:31:53 +0000509
Jim Laskey0d086af2006-02-27 12:43:29 +0000510//===----------------------------------------------------------------------===//
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +0000511/// DIESectionOffset - A section offset DIE.
512//
513class DIESectionOffset : public DIEValue {
514public:
515 const DWLabel Label;
516 const DWLabel Section;
517 bool IsEH : 1;
518 bool UseSet : 1;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000519
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +0000520 DIESectionOffset(const DWLabel &Lab, const DWLabel &Sec,
521 bool isEH = false, bool useSet = true)
522 : DIEValue(isSectionOffset), Label(Lab), Section(Sec),
523 IsEH(isEH), UseSet(useSet) {}
524
525 // Implement isa/cast/dyncast.
526 static bool classof(const DIESectionOffset *) { return true; }
527 static bool classof(const DIEValue *D) { return D->Type == isSectionOffset; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000528
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +0000529 /// EmitValue - Emit section offset.
530 ///
531 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000532
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +0000533 /// SizeOf - Determine size of section offset value in bytes.
534 ///
535 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000536
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +0000537 /// Profile - Used to gather unique data for the value folding set.
538 ///
539 static void Profile(FoldingSetNodeID &ID, const DWLabel &Label,
540 const DWLabel &Section) {
541 ID.AddInteger(isSectionOffset);
542 Label.Profile(ID);
543 Section.Profile(ID);
544 // IsEH and UseSet are specific to the Label/Section that we will emit
545 // the offset for; so Label/Section are enough for uniqueness.
546 }
547 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, Label, Section); }
548
549#ifndef NDEBUG
550 virtual void print(std::ostream &O) {
551 O << "Off: ";
552 Label.print(O);
553 O << "-";
554 Section.print(O);
555 O << "-" << IsEH << "-" << UseSet;
556 }
557#endif
558};
559
560//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000561/// DIEDelta - A simple label difference DIE.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000562///
Jim Laskeyef42a012006-11-02 20:12:39 +0000563class DIEDelta : public DIEValue {
564public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000565 const DWLabel LabelHi;
566 const DWLabel LabelLo;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000567
Jim Laskey0d086af2006-02-27 12:43:29 +0000568 DIEDelta(const DWLabel &Hi, const DWLabel &Lo)
569 : DIEValue(isDelta), LabelHi(Hi), LabelLo(Lo) {}
Jim Laskey063e7652006-01-17 17:31:53 +0000570
Jim Laskey0d086af2006-02-27 12:43:29 +0000571 // Implement isa/cast/dyncast.
572 static bool classof(const DIEDelta *) { return true; }
573 static bool classof(const DIEValue *D) { return D->Type == isDelta; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000574
Jim Laskey0d086af2006-02-27 12:43:29 +0000575 /// EmitValue - Emit delta value.
576 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000577 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000578
Jim Laskey0d086af2006-02-27 12:43:29 +0000579 /// SizeOf - Determine size of delta value in bytes.
580 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000581 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000582
Jim Laskeyef42a012006-11-02 20:12:39 +0000583 /// Profile - Used to gather unique data for the value folding set.
584 ///
Jim Laskey5496f012006-11-09 14:52:14 +0000585 static void Profile(FoldingSetNodeID &ID, const DWLabel &LabelHi,
586 const DWLabel &LabelLo) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000587 ID.AddInteger(isDelta);
Jim Laskeyef42a012006-11-02 20:12:39 +0000588 LabelHi.Profile(ID);
589 LabelLo.Profile(ID);
590 }
Jim Laskey5496f012006-11-09 14:52:14 +0000591 virtual void Profile(FoldingSetNodeID &ID) { Profile(ID, LabelHi, LabelLo); }
Jim Laskeyef42a012006-11-02 20:12:39 +0000592
593#ifndef NDEBUG
594 virtual void print(std::ostream &O) {
595 O << "Del: ";
596 LabelHi.print(O);
597 O << "-";
598 LabelLo.print(O);
599 }
600#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000601};
Jim Laskey063e7652006-01-17 17:31:53 +0000602
Jim Laskey0d086af2006-02-27 12:43:29 +0000603//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +0000604/// DIEntry - A pointer to another debug information entry. An instance of this
605/// class can also be used as a proxy for a debug information entry not yet
606/// defined (ie. types.)
607class DIEntry : public DIEValue {
608public:
Jim Laskey0d086af2006-02-27 12:43:29 +0000609 DIE *Entry;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000610
Dan Gohman81975f62007-08-27 14:50:10 +0000611 explicit DIEntry(DIE *E) : DIEValue(isEntry), Entry(E) {}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000612
Jim Laskey0d086af2006-02-27 12:43:29 +0000613 // Implement isa/cast/dyncast.
614 static bool classof(const DIEntry *) { return true; }
615 static bool classof(const DIEValue *E) { return E->Type == isEntry; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000616
Jim Laskeyb8509c52006-03-23 18:07:55 +0000617 /// EmitValue - Emit debug information entry offset.
Jim Laskey0d086af2006-02-27 12:43:29 +0000618 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000619 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000620
Jim Laskeyb8509c52006-03-23 18:07:55 +0000621 /// SizeOf - Determine size of debug information entry in bytes.
Jim Laskey0d086af2006-02-27 12:43:29 +0000622 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000623 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const {
Jim Laskeyef42a012006-11-02 20:12:39 +0000624 return sizeof(int32_t);
625 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000626
Jim Laskeyef42a012006-11-02 20:12:39 +0000627 /// Profile - Used to gather unique data for the value folding set.
628 ///
Jim Laskey5496f012006-11-09 14:52:14 +0000629 static void Profile(FoldingSetNodeID &ID, DIE *Entry) {
630 ID.AddInteger(isEntry);
631 ID.AddPointer(Entry);
632 }
Jim Laskeyef42a012006-11-02 20:12:39 +0000633 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000634 ID.AddInteger(isEntry);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000635
Jim Laskeyef42a012006-11-02 20:12:39 +0000636 if (Entry) {
637 ID.AddPointer(Entry);
638 } else {
639 ID.AddPointer(this);
640 }
641 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000642
Jim Laskeyef42a012006-11-02 20:12:39 +0000643#ifndef NDEBUG
644 virtual void print(std::ostream &O) {
645 O << "Die: 0x" << std::hex << (intptr_t)Entry << std::dec;
646 }
647#endif
Jim Laskey0d086af2006-02-27 12:43:29 +0000648};
649
650//===----------------------------------------------------------------------===//
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000651/// DIEBlock - A block of values. Primarily used for location expressions.
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000652//
Jim Laskeyef42a012006-11-02 20:12:39 +0000653class DIEBlock : public DIEValue, public DIE {
654public:
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000655 unsigned Size; // Size in bytes excluding size header.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000656
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000657 DIEBlock()
658 : DIEValue(isBlock)
Jim Laskeyef42a012006-11-02 20:12:39 +0000659 , DIE(0)
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000660 , Size(0)
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000661 {}
Jim Laskeyef42a012006-11-02 20:12:39 +0000662 ~DIEBlock() {
663 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000664
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000665 // Implement isa/cast/dyncast.
666 static bool classof(const DIEBlock *) { return true; }
667 static bool classof(const DIEValue *E) { return E->Type == isBlock; }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000668
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000669 /// ComputeSize - calculate the size of the block.
670 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000671 unsigned ComputeSize(DwarfDebug &DD);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000672
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000673 /// BestForm - Choose the best form for data.
674 ///
Jim Laskeyef42a012006-11-02 20:12:39 +0000675 unsigned BestForm() const {
676 if ((unsigned char)Size == Size) return DW_FORM_block1;
677 if ((unsigned short)Size == Size) return DW_FORM_block2;
678 if ((unsigned int)Size == Size) return DW_FORM_block4;
679 return DW_FORM_block;
680 }
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000681
682 /// EmitValue - Emit block data.
683 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000684 virtual void EmitValue(DwarfDebug &DD, unsigned Form);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000685
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000686 /// SizeOf - Determine size of block data in bytes.
687 ///
Jim Laskey072200c2007-01-29 18:51:14 +0000688 virtual unsigned SizeOf(const DwarfDebug &DD, unsigned Form) const;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000689
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000690
Jim Laskeyef42a012006-11-02 20:12:39 +0000691 /// Profile - Used to gather unique data for the value folding set.
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000692 ///
Reid Spencer97821312006-11-02 23:56:21 +0000693 virtual void Profile(FoldingSetNodeID &ID) {
Jim Laskeyf6733882006-11-02 21:48:18 +0000694 ID.AddInteger(isBlock);
Jim Laskeyef42a012006-11-02 20:12:39 +0000695 DIE::Profile(ID);
696 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000697
Jim Laskeyef42a012006-11-02 20:12:39 +0000698#ifndef NDEBUG
699 virtual void print(std::ostream &O) {
700 O << "Blk: ";
701 DIE::print(O, 5);
702 }
703#endif
Jim Laskeyb80af6f2006-03-03 21:00:14 +0000704};
705
706//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +0000707/// CompileUnit - This dwarf writer support class manages information associate
708/// with a source file.
709class CompileUnit {
Jim Laskey0d086af2006-02-27 12:43:29 +0000710private:
Jim Laskeyef42a012006-11-02 20:12:39 +0000711 /// Desc - Compile unit debug descriptor.
712 ///
713 CompileUnitDesc *Desc;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000714
Jim Laskeyef42a012006-11-02 20:12:39 +0000715 /// ID - File identifier for source.
716 ///
717 unsigned ID;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000718
Jim Laskeyef42a012006-11-02 20:12:39 +0000719 /// Die - Compile unit debug information entry.
720 ///
721 DIE *Die;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000722
Jim Laskeyef42a012006-11-02 20:12:39 +0000723 /// DescToDieMap - Tracks the mapping of unit level debug informaton
724 /// descriptors to debug information entries.
725 std::map<DebugInfoDesc *, DIE *> DescToDieMap;
726
727 /// DescToDIEntryMap - Tracks the mapping of unit level debug informaton
728 /// descriptors to debug information entries using a DIEntry proxy.
729 std::map<DebugInfoDesc *, DIEntry *> DescToDIEntryMap;
730
731 /// Globals - A map of globally visible named entities for this unit.
732 ///
733 std::map<std::string, DIE *> Globals;
734
735 /// DiesSet - Used to uniquely define dies within the compile unit.
736 ///
737 FoldingSet<DIE> DiesSet;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000738
Jim Laskeyef42a012006-11-02 20:12:39 +0000739 /// Dies - List of all dies in the compile unit.
740 ///
741 std::vector<DIE *> Dies;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000742
Jim Laskey0d086af2006-02-27 12:43:29 +0000743public:
Jim Laskeyef42a012006-11-02 20:12:39 +0000744 CompileUnit(CompileUnitDesc *CUD, unsigned I, DIE *D)
745 : Desc(CUD)
746 , ID(I)
747 , Die(D)
748 , DescToDieMap()
749 , DescToDIEntryMap()
750 , Globals()
751 , DiesSet(InitDiesSetSize)
752 , Dies()
753 {}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000754
Jim Laskeyef42a012006-11-02 20:12:39 +0000755 ~CompileUnit() {
756 delete Die;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000757
Jim Laskeyef42a012006-11-02 20:12:39 +0000758 for (unsigned i = 0, N = Dies.size(); i < N; ++i)
759 delete Dies[i];
760 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000761
Jim Laskeybd761842006-02-27 17:27:12 +0000762 // Accessors.
Jim Laskeyef42a012006-11-02 20:12:39 +0000763 CompileUnitDesc *getDesc() const { return Desc; }
764 unsigned getID() const { return ID; }
765 DIE* getDie() const { return Die; }
766 std::map<std::string, DIE *> &getGlobals() { return Globals; }
767
768 /// hasContent - Return true if this compile unit has something to write out.
769 ///
770 bool hasContent() const {
771 return !Die->getChildren().empty();
Jim Laskeya9c83fe2006-10-30 15:59:54 +0000772 }
Jim Laskeyef42a012006-11-02 20:12:39 +0000773
774 /// AddGlobal - Add a new global entity to the compile unit.
775 ///
776 void AddGlobal(const std::string &Name, DIE *Die) {
777 Globals[Name] = Die;
778 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000779
Jim Laskeyef42a012006-11-02 20:12:39 +0000780 /// getDieMapSlotFor - Returns the debug information entry map slot for the
781 /// specified debug descriptor.
Jim Laskey072200c2007-01-29 18:51:14 +0000782 DIE *&getDieMapSlotFor(DebugInfoDesc *DID) {
783 return DescToDieMap[DID];
Jim Laskeyef42a012006-11-02 20:12:39 +0000784 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000785
Jim Laskeyef42a012006-11-02 20:12:39 +0000786 /// getDIEntrySlotFor - Returns the debug information entry proxy slot for the
787 /// specified debug descriptor.
Jim Laskey072200c2007-01-29 18:51:14 +0000788 DIEntry *&getDIEntrySlotFor(DebugInfoDesc *DID) {
789 return DescToDIEntryMap[DID];
Jim Laskeyef42a012006-11-02 20:12:39 +0000790 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000791
Jim Laskeyef42a012006-11-02 20:12:39 +0000792 /// AddDie - Adds or interns the DIE to the compile unit.
793 ///
794 DIE *AddDie(DIE &Buffer) {
795 FoldingSetNodeID ID;
796 Buffer.Profile(ID);
797 void *Where;
798 DIE *Die = DiesSet.FindNodeOrInsertPos(ID, Where);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000799
Jim Laskeyef42a012006-11-02 20:12:39 +0000800 if (!Die) {
801 Die = new DIE(Buffer);
802 DiesSet.InsertNode(Die, Where);
803 this->Die->AddChild(Die);
804 Buffer.Detach();
805 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000806
Jim Laskeyef42a012006-11-02 20:12:39 +0000807 return Die;
808 }
Jim Laskey0d086af2006-02-27 12:43:29 +0000809};
810
Jim Laskey65195462006-10-30 13:35:07 +0000811//===----------------------------------------------------------------------===//
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000812/// Dwarf - Emits general Dwarf directives.
Jim Laskeyef42a012006-11-02 20:12:39 +0000813///
Jim Laskey65195462006-10-30 13:35:07 +0000814class Dwarf {
815
Jim Laskey072200c2007-01-29 18:51:14 +0000816protected:
Jim Laskey65195462006-10-30 13:35:07 +0000817
818 //===--------------------------------------------------------------------===//
Jim Laskey072200c2007-01-29 18:51:14 +0000819 // Core attributes used by the Dwarf writer.
Jim Laskey65195462006-10-30 13:35:07 +0000820 //
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000821
Jim Laskey65195462006-10-30 13:35:07 +0000822 //
823 /// O - Stream to .s file.
824 ///
Owen Andersoncb371882008-08-21 00:14:44 +0000825 raw_ostream &O;
Jim Laskey65195462006-10-30 13:35:07 +0000826
827 /// Asm - Target of Dwarf emission.
828 ///
829 AsmPrinter *Asm;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000830
Bill Wendlingaa8f8882008-07-01 23:34:48 +0000831 /// TAI - Target asm information.
Jim Laskey65195462006-10-30 13:35:07 +0000832 const TargetAsmInfo *TAI;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000833
Jim Laskey65195462006-10-30 13:35:07 +0000834 /// TD - Target data.
835 const TargetData *TD;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000836
Jim Laskey65195462006-10-30 13:35:07 +0000837 /// RI - Register Information.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000838 const TargetRegisterInfo *RI;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000839
Jim Laskey65195462006-10-30 13:35:07 +0000840 /// M - Current module.
841 ///
842 Module *M;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000843
Jim Laskey65195462006-10-30 13:35:07 +0000844 /// MF - Current machine function.
845 ///
846 MachineFunction *MF;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000847
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000848 /// MMI - Collected machine module information.
Jim Laskey65195462006-10-30 13:35:07 +0000849 ///
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000850 MachineModuleInfo *MMI;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000851
Jim Laskey65195462006-10-30 13:35:07 +0000852 /// SubprogramCount - The running count of functions being compiled.
853 ///
854 unsigned SubprogramCount;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000855
Chris Lattner9251f132007-09-24 03:35:37 +0000856 /// Flavor - A unique string indicating what dwarf producer this is, used to
857 /// unique labels.
858 const char * const Flavor;
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000859
860 unsigned SetCounter;
Owen Andersoncb371882008-08-21 00:14:44 +0000861 Dwarf(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T,
Chris Lattner9251f132007-09-24 03:35:37 +0000862 const char *flavor)
Jim Laskey072200c2007-01-29 18:51:14 +0000863 : O(OS)
864 , Asm(A)
865 , TAI(T)
866 , TD(Asm->TM.getTargetData())
867 , RI(Asm->TM.getRegisterInfo())
868 , M(NULL)
869 , MF(NULL)
870 , MMI(NULL)
Jim Laskey072200c2007-01-29 18:51:14 +0000871 , SubprogramCount(0)
Chris Lattner9251f132007-09-24 03:35:37 +0000872 , Flavor(flavor)
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000873 , SetCounter(1)
Jim Laskey072200c2007-01-29 18:51:14 +0000874 {
875 }
876
877public:
878
879 //===--------------------------------------------------------------------===//
880 // Accessors.
881 //
882 AsmPrinter *getAsm() const { return Asm; }
Jim Laskeyb82313f2007-02-01 16:31:34 +0000883 MachineModuleInfo *getMMI() const { return MMI; }
Jim Laskey072200c2007-01-29 18:51:14 +0000884 const TargetAsmInfo *getTargetAsmInfo() const { return TAI; }
Dan Gohman82482942007-09-27 23:12:31 +0000885 const TargetData *getTargetData() const { return TD; }
Jim Laskey072200c2007-01-29 18:51:14 +0000886
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +0000887 void PrintRelDirective(bool Force32Bit = false, bool isInSection = false)
888 const {
889 if (isInSection && TAI->getDwarfSectionOffsetDirective())
890 O << TAI->getDwarfSectionOffsetDirective();
Dan Gohman82482942007-09-27 23:12:31 +0000891 else if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +0000892 O << TAI->getData32bitsDirective();
893 else
894 O << TAI->getData64bitsDirective();
895 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000896
Jim Laskeyb82313f2007-02-01 16:31:34 +0000897 /// PrintLabelName - Print label name in form used by Dwarf writer.
898 ///
899 void PrintLabelName(DWLabel Label) const {
900 PrintLabelName(Label.Tag, Label.Number);
901 }
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +0000902 void PrintLabelName(const char *Tag, unsigned Number) const {
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +0000903 O << TAI->getPrivateGlobalPrefix() << Tag;
Jim Laskeyb82313f2007-02-01 16:31:34 +0000904 if (Number) O << Number;
905 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000906
Chris Lattner9251f132007-09-24 03:35:37 +0000907 void PrintLabelName(const char *Tag, unsigned Number,
908 const char *Suffix) const {
909 O << TAI->getPrivateGlobalPrefix() << Tag;
910 if (Number) O << Number;
911 O << Suffix;
912 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000913
Jim Laskeyb82313f2007-02-01 16:31:34 +0000914 /// EmitLabel - Emit location label for internal use by Dwarf.
915 ///
916 void EmitLabel(DWLabel Label) const {
917 EmitLabel(Label.Tag, Label.Number);
918 }
919 void EmitLabel(const char *Tag, unsigned Number) const {
920 PrintLabelName(Tag, Number);
921 O << ":\n";
922 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000923
Jim Laskeyb82313f2007-02-01 16:31:34 +0000924 /// EmitReference - Emit a reference to a label.
925 ///
Dan Gohman06ff4e62007-09-28 15:43:33 +0000926 void EmitReference(DWLabel Label, bool IsPCRelative = false,
927 bool Force32Bit = false) const {
928 EmitReference(Label.Tag, Label.Number, IsPCRelative, Force32Bit);
Jim Laskeyb82313f2007-02-01 16:31:34 +0000929 }
930 void EmitReference(const char *Tag, unsigned Number,
Dan Gohman06ff4e62007-09-28 15:43:33 +0000931 bool IsPCRelative = false, bool Force32Bit = false) const {
932 PrintRelDirective(Force32Bit);
Jim Laskeyb82313f2007-02-01 16:31:34 +0000933 PrintLabelName(Tag, Number);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000934
Jim Laskeyb82313f2007-02-01 16:31:34 +0000935 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
936 }
Dan Gohman06ff4e62007-09-28 15:43:33 +0000937 void EmitReference(const std::string &Name, bool IsPCRelative = false,
938 bool Force32Bit = false) const {
939 PrintRelDirective(Force32Bit);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000940
Jim Laskeyb82313f2007-02-01 16:31:34 +0000941 O << Name;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000942
Jim Laskeyb82313f2007-02-01 16:31:34 +0000943 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
944 }
945
946 /// EmitDifference - Emit the difference between two labels. Some
947 /// assemblers do not behave with absolute expressions with data directives,
948 /// so there is an option (needsSet) to use an intermediary set expression.
949 void EmitDifference(DWLabel LabelHi, DWLabel LabelLo,
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000950 bool IsSmall = false) {
Jim Laskeyb82313f2007-02-01 16:31:34 +0000951 EmitDifference(LabelHi.Tag, LabelHi.Number,
952 LabelLo.Tag, LabelLo.Number,
953 IsSmall);
954 }
955 void EmitDifference(const char *TagHi, unsigned NumberHi,
956 const char *TagLo, unsigned NumberLo,
Anton Korobeynikov6a143592007-03-07 08:25:02 +0000957 bool IsSmall = false) {
Jim Laskeyb82313f2007-02-01 16:31:34 +0000958 if (TAI->needsSet()) {
Jim Laskeyb82313f2007-02-01 16:31:34 +0000959 O << "\t.set\t";
Chris Lattner9251f132007-09-24 03:35:37 +0000960 PrintLabelName("set", SetCounter, Flavor);
Jim Laskeyb82313f2007-02-01 16:31:34 +0000961 O << ",";
962 PrintLabelName(TagHi, NumberHi);
963 O << "-";
964 PrintLabelName(TagLo, NumberLo);
965 O << "\n";
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +0000966
967 PrintRelDirective(IsSmall);
Chris Lattner9251f132007-09-24 03:35:37 +0000968 PrintLabelName("set", SetCounter, Flavor);
Jim Laskeyb82313f2007-02-01 16:31:34 +0000969 ++SetCounter;
970 } else {
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +0000971 PrintRelDirective(IsSmall);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000972
Jim Laskeyb82313f2007-02-01 16:31:34 +0000973 PrintLabelName(TagHi, NumberHi);
974 O << "-";
975 PrintLabelName(TagLo, NumberLo);
976 }
977 }
Anton Korobeynikova6199c82007-03-07 02:47:57 +0000978
979 void EmitSectionOffset(const char* Label, const char* Section,
980 unsigned LabelNumber, unsigned SectionNumber,
Dale Johannesend9ffd4c2008-03-26 23:31:39 +0000981 bool IsSmall = false, bool isEH = false,
982 bool useSet = true) {
Anton Korobeynikov79dda2b2007-05-01 22:23:12 +0000983 bool printAbsolute = false;
Dale Johannesend9ffd4c2008-03-26 23:31:39 +0000984 if (isEH)
985 printAbsolute = TAI->isAbsoluteEHSectionOffsets();
986 else
987 printAbsolute = TAI->isAbsoluteDebugSectionOffsets();
988
989 if (TAI->needsSet() && useSet) {
Anton Korobeynikova6199c82007-03-07 02:47:57 +0000990 O << "\t.set\t";
Chris Lattner9251f132007-09-24 03:35:37 +0000991 PrintLabelName("set", SetCounter, Flavor);
Anton Korobeynikova6199c82007-03-07 02:47:57 +0000992 O << ",";
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +0000993 PrintLabelName(Label, LabelNumber);
Anton Korobeynikov79dda2b2007-05-01 22:23:12 +0000994
Anton Korobeynikov79dda2b2007-05-01 22:23:12 +0000995 if (!printAbsolute) {
Anton Korobeynikova6199c82007-03-07 02:47:57 +0000996 O << "-";
997 PrintLabelName(Section, SectionNumber);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +0000998 }
Anton Korobeynikova6199c82007-03-07 02:47:57 +0000999 O << "\n";
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +00001000
1001 PrintRelDirective(IsSmall);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001002
Chris Lattner9251f132007-09-24 03:35:37 +00001003 PrintLabelName("set", SetCounter, Flavor);
Anton Korobeynikova6199c82007-03-07 02:47:57 +00001004 ++SetCounter;
1005 } else {
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +00001006 PrintRelDirective(IsSmall, true);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001007
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +00001008 PrintLabelName(Label, LabelNumber);
Anton Korobeynikov79dda2b2007-05-01 22:23:12 +00001009
Anton Korobeynikov79dda2b2007-05-01 22:23:12 +00001010 if (!printAbsolute) {
Anton Korobeynikova6199c82007-03-07 02:47:57 +00001011 O << "-";
1012 PrintLabelName(Section, SectionNumber);
1013 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001014 }
Anton Korobeynikova6199c82007-03-07 02:47:57 +00001015 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001016
Jim Laskeyb82313f2007-02-01 16:31:34 +00001017 /// EmitFrameMoves - Emit frame instructions to describe the layout of the
1018 /// frame.
1019 void EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
Dale Johannesenb97aec62007-11-13 19:13:01 +00001020 const std::vector<MachineMove> &Moves, bool isEH) {
Jim Laskeyb82313f2007-02-01 16:31:34 +00001021 int stackGrowth =
1022 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
1023 TargetFrameInfo::StackGrowsUp ?
Dan Gohman82482942007-09-27 23:12:31 +00001024 TD->getPointerSize() : -TD->getPointerSize();
Jim Laskeybacd3042007-02-21 22:48:45 +00001025 bool IsLocal = BaseLabel && strcmp(BaseLabel, "label") == 0;
Jim Laskeyb82313f2007-02-01 16:31:34 +00001026
1027 for (unsigned i = 0, N = Moves.size(); i < N; ++i) {
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00001028 const MachineMove &Move = Moves[i];
Jim Laskeyb82313f2007-02-01 16:31:34 +00001029 unsigned LabelID = Move.getLabelID();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001030
Jim Laskeyb82313f2007-02-01 16:31:34 +00001031 if (LabelID) {
1032 LabelID = MMI->MappedLabel(LabelID);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001033
Jim Laskeyb82313f2007-02-01 16:31:34 +00001034 // Throw out move if the label is invalid.
1035 if (!LabelID) continue;
1036 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001037
Jim Laskeyb82313f2007-02-01 16:31:34 +00001038 const MachineLocation &Dst = Move.getDestination();
1039 const MachineLocation &Src = Move.getSource();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001040
Jim Laskeyb82313f2007-02-01 16:31:34 +00001041 // Advance row if new location.
1042 if (BaseLabel && LabelID && (BaseLabelID != LabelID || !IsLocal)) {
1043 Asm->EmitInt8(DW_CFA_advance_loc4);
1044 Asm->EOL("DW_CFA_advance_loc4");
Jim Laskeybacd3042007-02-21 22:48:45 +00001045 EmitDifference("label", LabelID, BaseLabel, BaseLabelID, true);
1046 Asm->EOL();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001047
Jim Laskeyb82313f2007-02-01 16:31:34 +00001048 BaseLabelID = LabelID;
Jim Laskeybacd3042007-02-21 22:48:45 +00001049 BaseLabel = "label";
Jim Laskeyb82313f2007-02-01 16:31:34 +00001050 IsLocal = true;
1051 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001052
Jim Laskeyb82313f2007-02-01 16:31:34 +00001053 // If advancing cfa.
Dan Gohmand735b802008-10-03 15:45:36 +00001054 if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
1055 if (!Src.isReg()) {
1056 if (Src.getReg() == MachineLocation::VirtualFP) {
Jim Laskeyb82313f2007-02-01 16:31:34 +00001057 Asm->EmitInt8(DW_CFA_def_cfa_offset);
1058 Asm->EOL("DW_CFA_def_cfa_offset");
1059 } else {
1060 Asm->EmitInt8(DW_CFA_def_cfa);
1061 Asm->EOL("DW_CFA_def_cfa");
Dan Gohmand735b802008-10-03 15:45:36 +00001062 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Src.getReg(), isEH));
Jim Laskeyb82313f2007-02-01 16:31:34 +00001063 Asm->EOL("Register");
1064 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001065
Jim Laskeyb82313f2007-02-01 16:31:34 +00001066 int Offset = -Src.getOffset();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001067
Jim Laskeyb82313f2007-02-01 16:31:34 +00001068 Asm->EmitULEB128Bytes(Offset);
1069 Asm->EOL("Offset");
1070 } else {
1071 assert(0 && "Machine move no supported yet.");
1072 }
Dan Gohmand735b802008-10-03 15:45:36 +00001073 } else if (Src.isReg() &&
1074 Src.getReg() == MachineLocation::VirtualFP) {
1075 if (Dst.isReg()) {
Jim Laskeyb82313f2007-02-01 16:31:34 +00001076 Asm->EmitInt8(DW_CFA_def_cfa_register);
1077 Asm->EOL("DW_CFA_def_cfa_register");
Dan Gohmand735b802008-10-03 15:45:36 +00001078 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Dst.getReg(), isEH));
Jim Laskeyb82313f2007-02-01 16:31:34 +00001079 Asm->EOL("Register");
1080 } else {
1081 assert(0 && "Machine move no supported yet.");
1082 }
1083 } else {
Dan Gohmand735b802008-10-03 15:45:36 +00001084 unsigned Reg = RI->getDwarfRegNum(Src.getReg(), isEH);
Jim Laskeyb82313f2007-02-01 16:31:34 +00001085 int Offset = Dst.getOffset() / stackGrowth;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001086
Jim Laskeyb82313f2007-02-01 16:31:34 +00001087 if (Offset < 0) {
1088 Asm->EmitInt8(DW_CFA_offset_extended_sf);
1089 Asm->EOL("DW_CFA_offset_extended_sf");
1090 Asm->EmitULEB128Bytes(Reg);
1091 Asm->EOL("Reg");
1092 Asm->EmitSLEB128Bytes(Offset);
1093 Asm->EOL("Offset");
1094 } else if (Reg < 64) {
1095 Asm->EmitInt8(DW_CFA_offset + Reg);
Evan Chengd4114192008-07-09 21:53:02 +00001096 if (VerboseAsm)
1097 Asm->EOL("DW_CFA_offset + Reg (" + utostr(Reg) + ")");
1098 else
1099 Asm->EOL();
Jim Laskeyb82313f2007-02-01 16:31:34 +00001100 Asm->EmitULEB128Bytes(Offset);
1101 Asm->EOL("Offset");
1102 } else {
1103 Asm->EmitInt8(DW_CFA_offset_extended);
1104 Asm->EOL("DW_CFA_offset_extended");
1105 Asm->EmitULEB128Bytes(Reg);
1106 Asm->EOL("Reg");
1107 Asm->EmitULEB128Bytes(Offset);
1108 Asm->EOL("Offset");
1109 }
1110 }
1111 }
1112 }
1113
Jim Laskey072200c2007-01-29 18:51:14 +00001114};
1115
1116//===----------------------------------------------------------------------===//
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001117/// DwarfDebug - Emits Dwarf debug directives.
Jim Laskey072200c2007-01-29 18:51:14 +00001118///
1119class DwarfDebug : public Dwarf {
1120
1121private:
Jim Laskey65195462006-10-30 13:35:07 +00001122 //===--------------------------------------------------------------------===//
1123 // Attributes used to construct specific Dwarf sections.
1124 //
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001125
Jim Laskey65195462006-10-30 13:35:07 +00001126 /// CompileUnits - All the compile units involved in this build. The index
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001127 /// of each entry in this vector corresponds to the sources in MMI.
Jim Laskey65195462006-10-30 13:35:07 +00001128 std::vector<CompileUnit *> CompileUnits;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001129
Jim Laskeyef42a012006-11-02 20:12:39 +00001130 /// AbbreviationsSet - Used to uniquely define abbreviations.
Jim Laskey65195462006-10-30 13:35:07 +00001131 ///
Jim Laskeya9c83fe2006-10-30 15:59:54 +00001132 FoldingSet<DIEAbbrev> AbbreviationsSet;
1133
1134 /// Abbreviations - A list of all the unique abbreviations in use.
1135 ///
1136 std::vector<DIEAbbrev *> Abbreviations;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001137
Jim Laskeyef42a012006-11-02 20:12:39 +00001138 /// ValuesSet - Used to uniquely define values.
1139 ///
1140 FoldingSet<DIEValue> ValuesSet;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001141
Jim Laskeyef42a012006-11-02 20:12:39 +00001142 /// Values - A list of all the unique values in use.
1143 ///
1144 std::vector<DIEValue *> Values;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001145
Jim Laskey65195462006-10-30 13:35:07 +00001146 /// StringPool - A UniqueVector of strings used by indirect references.
Jim Laskeyef42a012006-11-02 20:12:39 +00001147 ///
Jim Laskey65195462006-10-30 13:35:07 +00001148 UniqueVector<std::string> StringPool;
1149
1150 /// UnitMap - Map debug information descriptor to compile unit.
1151 ///
1152 std::map<DebugInfoDesc *, CompileUnit *> DescToUnitMap;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001153
Jim Laskey65195462006-10-30 13:35:07 +00001154 /// SectionMap - Provides a unique id per text section.
1155 ///
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +00001156 UniqueVector<const Section*> SectionMap;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001157
Jim Laskey65195462006-10-30 13:35:07 +00001158 /// SectionSourceLines - Tracks line numbers per text section.
1159 ///
1160 std::vector<std::vector<SourceLineInfo> > SectionSourceLines;
1161
Jim Laskeybacd3042007-02-21 22:48:45 +00001162 /// didInitial - Flag to indicate if initial emission has been done.
1163 ///
1164 bool didInitial;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001165
Jim Laskeybacd3042007-02-21 22:48:45 +00001166 /// shouldEmit - Flag to indicate if debug information should be emitted.
1167 ///
1168 bool shouldEmit;
Jim Laskey65195462006-10-30 13:35:07 +00001169
Anton Korobeynikov185bc892007-05-13 17:30:11 +00001170 struct FunctionDebugFrameInfo {
1171 unsigned Number;
1172 std::vector<MachineMove> Moves;
1173
1174 FunctionDebugFrameInfo(unsigned Num, const std::vector<MachineMove> &M):
Dan Gohman81975f62007-08-27 14:50:10 +00001175 Number(Num), Moves(M) { }
Anton Korobeynikov185bc892007-05-13 17:30:11 +00001176 };
1177
1178 std::vector<FunctionDebugFrameInfo> DebugFrames;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001179
Jim Laskey65195462006-10-30 13:35:07 +00001180public:
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001181
Jim Laskeybacd3042007-02-21 22:48:45 +00001182 /// ShouldEmitDwarf - Returns true if Dwarf declarations should be made.
1183 ///
1184 bool ShouldEmitDwarf() const { return shouldEmit; }
Jim Laskey65195462006-10-30 13:35:07 +00001185
Jim Laskeya9c83fe2006-10-30 15:59:54 +00001186 /// AssignAbbrevNumber - Define a unique number for the abbreviation.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001187 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001188 void AssignAbbrevNumber(DIEAbbrev &Abbrev) {
1189 // Profile the node so that we can make it unique.
1190 FoldingSetNodeID ID;
1191 Abbrev.Profile(ID);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001192
Jim Laskeyef42a012006-11-02 20:12:39 +00001193 // Check the set for priors.
1194 DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001195
Jim Laskeyef42a012006-11-02 20:12:39 +00001196 // If it's newly added.
1197 if (InSet == &Abbrev) {
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001198 // Add to abbreviation list.
Jim Laskeyef42a012006-11-02 20:12:39 +00001199 Abbreviations.push_back(&Abbrev);
1200 // Assign the vector position + 1 as its number.
1201 Abbrev.setNumber(Abbreviations.size());
1202 } else {
1203 // Assign existing abbreviation number.
1204 Abbrev.setNumber(InSet->getNumber());
1205 }
1206 }
1207
Jim Laskey65195462006-10-30 13:35:07 +00001208 /// NewString - Add a string to the constant pool and returns a label.
1209 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001210 DWLabel NewString(const std::string &String) {
1211 unsigned StringID = StringPool.insert(String);
1212 return DWLabel("string", StringID);
1213 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001214
Jim Laskeyef42a012006-11-02 20:12:39 +00001215 /// NewDIEntry - Creates a new DIEntry to be a proxy for a debug information
1216 /// entry.
1217 DIEntry *NewDIEntry(DIE *Entry = NULL) {
1218 DIEntry *Value;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001219
Jim Laskeyef42a012006-11-02 20:12:39 +00001220 if (Entry) {
1221 FoldingSetNodeID ID;
Jim Laskey5496f012006-11-09 14:52:14 +00001222 DIEntry::Profile(ID, Entry);
Jim Laskeyef42a012006-11-02 20:12:39 +00001223 void *Where;
1224 Value = static_cast<DIEntry *>(ValuesSet.FindNodeOrInsertPos(ID, Where));
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001225
Jim Laskeyf6733882006-11-02 21:48:18 +00001226 if (Value) return Value;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001227
Jim Laskeyef42a012006-11-02 20:12:39 +00001228 Value = new DIEntry(Entry);
1229 ValuesSet.InsertNode(Value, Where);
1230 } else {
1231 Value = new DIEntry(Entry);
1232 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001233
Jim Laskeyef42a012006-11-02 20:12:39 +00001234 Values.push_back(Value);
1235 return Value;
1236 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001237
Jim Laskeyef42a012006-11-02 20:12:39 +00001238 /// SetDIEntry - Set a DIEntry once the debug information entry is defined.
1239 ///
1240 void SetDIEntry(DIEntry *Value, DIE *Entry) {
1241 Value->Entry = Entry;
1242 // Add to values set if not already there. If it is, we merely have a
1243 // duplicate in the values list (no harm.)
1244 ValuesSet.GetOrInsertNode(Value);
1245 }
1246
1247 /// AddUInt - Add an unsigned integer attribute data and value.
1248 ///
1249 void AddUInt(DIE *Die, unsigned Attribute, unsigned Form, uint64_t Integer) {
1250 if (!Form) Form = DIEInteger::BestForm(false, Integer);
1251
1252 FoldingSetNodeID ID;
Jim Laskey5496f012006-11-09 14:52:14 +00001253 DIEInteger::Profile(ID, Integer);
Jim Laskeyef42a012006-11-02 20:12:39 +00001254 void *Where;
1255 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1256 if (!Value) {
1257 Value = new DIEInteger(Integer);
1258 ValuesSet.InsertNode(Value, Where);
1259 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001260 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001261
Jim Laskeyef42a012006-11-02 20:12:39 +00001262 Die->AddValue(Attribute, Form, Value);
1263 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001264
Jim Laskeyef42a012006-11-02 20:12:39 +00001265 /// AddSInt - Add an signed integer attribute data and value.
1266 ///
1267 void AddSInt(DIE *Die, unsigned Attribute, unsigned Form, int64_t Integer) {
1268 if (!Form) Form = DIEInteger::BestForm(true, Integer);
1269
1270 FoldingSetNodeID ID;
Jim Laskey5496f012006-11-09 14:52:14 +00001271 DIEInteger::Profile(ID, (uint64_t)Integer);
Jim Laskeyef42a012006-11-02 20:12:39 +00001272 void *Where;
1273 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1274 if (!Value) {
1275 Value = new DIEInteger(Integer);
1276 ValuesSet.InsertNode(Value, Where);
1277 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001278 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001279
Jim Laskeyef42a012006-11-02 20:12:39 +00001280 Die->AddValue(Attribute, Form, Value);
1281 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001282
Jim Laskeyef42a012006-11-02 20:12:39 +00001283 /// AddString - Add a std::string attribute data and value.
1284 ///
1285 void AddString(DIE *Die, unsigned Attribute, unsigned Form,
1286 const std::string &String) {
1287 FoldingSetNodeID ID;
Jim Laskey5496f012006-11-09 14:52:14 +00001288 DIEString::Profile(ID, String);
Jim Laskeyef42a012006-11-02 20:12:39 +00001289 void *Where;
1290 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1291 if (!Value) {
1292 Value = new DIEString(String);
1293 ValuesSet.InsertNode(Value, Where);
1294 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001295 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001296
Jim Laskeyef42a012006-11-02 20:12:39 +00001297 Die->AddValue(Attribute, Form, Value);
1298 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001299
Jim Laskeyef42a012006-11-02 20:12:39 +00001300 /// AddLabel - Add a Dwarf label attribute data and value.
1301 ///
1302 void AddLabel(DIE *Die, unsigned Attribute, unsigned Form,
1303 const DWLabel &Label) {
1304 FoldingSetNodeID ID;
Jim Laskey5496f012006-11-09 14:52:14 +00001305 DIEDwarfLabel::Profile(ID, Label);
Jim Laskeyef42a012006-11-02 20:12:39 +00001306 void *Where;
1307 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1308 if (!Value) {
1309 Value = new DIEDwarfLabel(Label);
1310 ValuesSet.InsertNode(Value, Where);
1311 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001312 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001313
Jim Laskeyef42a012006-11-02 20:12:39 +00001314 Die->AddValue(Attribute, Form, Value);
1315 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001316
Jim Laskeyef42a012006-11-02 20:12:39 +00001317 /// AddObjectLabel - Add an non-Dwarf label attribute data and value.
1318 ///
1319 void AddObjectLabel(DIE *Die, unsigned Attribute, unsigned Form,
1320 const std::string &Label) {
1321 FoldingSetNodeID ID;
Jim Laskey5496f012006-11-09 14:52:14 +00001322 DIEObjectLabel::Profile(ID, Label);
Jim Laskeyef42a012006-11-02 20:12:39 +00001323 void *Where;
1324 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1325 if (!Value) {
1326 Value = new DIEObjectLabel(Label);
1327 ValuesSet.InsertNode(Value, Where);
1328 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001329 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001330
Jim Laskeyef42a012006-11-02 20:12:39 +00001331 Die->AddValue(Attribute, Form, Value);
1332 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001333
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +00001334 /// AddSectionOffset - Add a section offset label attribute data and value.
1335 ///
1336 void AddSectionOffset(DIE *Die, unsigned Attribute, unsigned Form,
1337 const DWLabel &Label, const DWLabel &Section,
1338 bool isEH = false, bool useSet = true) {
1339 FoldingSetNodeID ID;
1340 DIESectionOffset::Profile(ID, Label, Section);
1341 void *Where;
1342 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1343 if (!Value) {
1344 Value = new DIESectionOffset(Label, Section, isEH, useSet);
1345 ValuesSet.InsertNode(Value, Where);
1346 Values.push_back(Value);
1347 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001348
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +00001349 Die->AddValue(Attribute, Form, Value);
1350 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001351
Jim Laskeyef42a012006-11-02 20:12:39 +00001352 /// AddDelta - Add a label delta attribute data and value.
1353 ///
1354 void AddDelta(DIE *Die, unsigned Attribute, unsigned Form,
1355 const DWLabel &Hi, const DWLabel &Lo) {
1356 FoldingSetNodeID ID;
Jim Laskey5496f012006-11-09 14:52:14 +00001357 DIEDelta::Profile(ID, Hi, Lo);
Jim Laskeyef42a012006-11-02 20:12:39 +00001358 void *Where;
1359 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1360 if (!Value) {
1361 Value = new DIEDelta(Hi, Lo);
1362 ValuesSet.InsertNode(Value, Where);
1363 Values.push_back(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001364 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001365
Jim Laskeyef42a012006-11-02 20:12:39 +00001366 Die->AddValue(Attribute, Form, Value);
1367 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001368
Jim Laskeyef42a012006-11-02 20:12:39 +00001369 /// AddDIEntry - Add a DIE attribute data and value.
1370 ///
1371 void AddDIEntry(DIE *Die, unsigned Attribute, unsigned Form, DIE *Entry) {
1372 Die->AddValue(Attribute, Form, NewDIEntry(Entry));
1373 }
1374
1375 /// AddBlock - Add block data.
1376 ///
1377 void AddBlock(DIE *Die, unsigned Attribute, unsigned Form, DIEBlock *Block) {
1378 Block->ComputeSize(*this);
1379 FoldingSetNodeID ID;
1380 Block->Profile(ID);
1381 void *Where;
1382 DIEValue *Value = ValuesSet.FindNodeOrInsertPos(ID, Where);
1383 if (!Value) {
1384 Value = Block;
1385 ValuesSet.InsertNode(Value, Where);
1386 Values.push_back(Value);
1387 } else {
Chris Lattnerc369bd72007-09-21 18:25:53 +00001388 // Already exists, reuse the previous one.
Jim Laskeyef42a012006-11-02 20:12:39 +00001389 delete Block;
Chris Lattnerc369bd72007-09-21 18:25:53 +00001390 Block = cast<DIEBlock>(Value);
Jim Laskeyef42a012006-11-02 20:12:39 +00001391 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001392
Jim Laskeyef42a012006-11-02 20:12:39 +00001393 Die->AddValue(Attribute, Block->BestForm(), Value);
1394 }
1395
Jim Laskey65195462006-10-30 13:35:07 +00001396private:
1397
1398 /// AddSourceLine - Add location information to specified debug information
Jim Laskeyef42a012006-11-02 20:12:39 +00001399 /// entry.
1400 void AddSourceLine(DIE *Die, CompileUnitDesc *File, unsigned Line) {
1401 if (File && Line) {
1402 CompileUnit *FileUnit = FindCompileUnit(File);
1403 unsigned FileID = FileUnit->getID();
1404 AddUInt(Die, DW_AT_decl_file, 0, FileID);
1405 AddUInt(Die, DW_AT_decl_line, 0, Line);
1406 }
1407 }
Jim Laskey65195462006-10-30 13:35:07 +00001408
1409 /// AddAddress - Add an address attribute to a die based on the location
1410 /// provided.
1411 void AddAddress(DIE *Die, unsigned Attribute,
Jim Laskeyef42a012006-11-02 20:12:39 +00001412 const MachineLocation &Location) {
Dan Gohmand735b802008-10-03 15:45:36 +00001413 unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false);
Jim Laskeyef42a012006-11-02 20:12:39 +00001414 DIEBlock *Block = new DIEBlock();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001415
Dan Gohmand735b802008-10-03 15:45:36 +00001416 if (Location.isReg()) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001417 if (Reg < 32) {
1418 AddUInt(Block, 0, DW_FORM_data1, DW_OP_reg0 + Reg);
1419 } else {
1420 AddUInt(Block, 0, DW_FORM_data1, DW_OP_regx);
1421 AddUInt(Block, 0, DW_FORM_udata, Reg);
1422 }
1423 } else {
1424 if (Reg < 32) {
1425 AddUInt(Block, 0, DW_FORM_data1, DW_OP_breg0 + Reg);
1426 } else {
1427 AddUInt(Block, 0, DW_FORM_data1, DW_OP_bregx);
1428 AddUInt(Block, 0, DW_FORM_udata, Reg);
1429 }
1430 AddUInt(Block, 0, DW_FORM_sdata, Location.getOffset());
1431 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001432
Jim Laskeyef42a012006-11-02 20:12:39 +00001433 AddBlock(Die, Attribute, 0, Block);
1434 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001435
Jim Laskeyef42a012006-11-02 20:12:39 +00001436 /// AddBasicType - Add a new basic type attribute to the specified entity.
1437 ///
1438 void AddBasicType(DIE *Entity, CompileUnit *Unit,
1439 const std::string &Name,
1440 unsigned Encoding, unsigned Size) {
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001441
Jim Laskeyef42a012006-11-02 20:12:39 +00001442 DIE Buffer(DW_TAG_base_type);
1443 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1444 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, Encoding);
1445 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
Devang Patel9ede3f22009-01-05 17:44:11 +00001446 DIE *BasicTypeDie = Unit->AddDie(Buffer);
1447 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, BasicTypeDie);
Jim Laskeyef42a012006-11-02 20:12:39 +00001448 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001449
Jim Laskeyef42a012006-11-02 20:12:39 +00001450 /// AddPointerType - Add a new pointer type attribute to the specified entity.
1451 ///
1452 void AddPointerType(DIE *Entity, CompileUnit *Unit, const std::string &Name) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001453 DIE Buffer(DW_TAG_pointer_type);
Dan Gohman82482942007-09-27 23:12:31 +00001454 AddUInt(&Buffer, DW_AT_byte_size, 0, TD->getPointerSize());
Jim Laskeyef42a012006-11-02 20:12:39 +00001455 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
Devang Patelca03c272009-01-05 17:45:59 +00001456 DIE *PointerTypeDie = Unit->AddDie(Buffer);
1457 AddDIEntry(Entity, DW_AT_type, DW_FORM_ref4, PointerTypeDie);
Jim Laskeyef42a012006-11-02 20:12:39 +00001458 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001459
Jim Laskeyef42a012006-11-02 20:12:39 +00001460 /// AddType - Add a new type attribute to the specified entity.
1461 ///
1462 void AddType(DIE *Entity, TypeDesc *TyDesc, CompileUnit *Unit) {
1463 if (!TyDesc) {
Jim Laskey2b935d52007-01-26 14:19:17 +00001464 AddBasicType(Entity, Unit, "", DW_ATE_signed, sizeof(int32_t));
Jim Laskeyef42a012006-11-02 20:12:39 +00001465 } else {
1466 // Check for pre-existence.
1467 DIEntry *&Slot = Unit->getDIEntrySlotFor(TyDesc);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001468
Jim Laskeyef42a012006-11-02 20:12:39 +00001469 // If it exists then use the existing value.
1470 if (Slot) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001471 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1472 return;
1473 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001474
Jim Laskeyef42a012006-11-02 20:12:39 +00001475 if (SubprogramDesc *SubprogramTy = dyn_cast<SubprogramDesc>(TyDesc)) {
1476 // FIXME - Not sure why programs and variables are coming through here.
1477 // Short cut for handling subprogram types (not really a TyDesc.)
1478 AddPointerType(Entity, Unit, SubprogramTy->getName());
1479 } else if (GlobalVariableDesc *GlobalTy =
1480 dyn_cast<GlobalVariableDesc>(TyDesc)) {
1481 // FIXME - Not sure why programs and variables are coming through here.
1482 // Short cut for handling global variable types (not really a TyDesc.)
1483 AddPointerType(Entity, Unit, GlobalTy->getName());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001484 } else {
Jim Laskeyef42a012006-11-02 20:12:39 +00001485 // Set up proxy.
1486 Slot = NewDIEntry();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001487
Jim Laskeyef42a012006-11-02 20:12:39 +00001488 // Construct type.
1489 DIE Buffer(DW_TAG_base_type);
1490 ConstructType(Buffer, TyDesc, Unit);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001491
Jim Laskeyef42a012006-11-02 20:12:39 +00001492 // Add debug information entry to entity and unit.
1493 DIE *Die = Unit->AddDie(Buffer);
1494 SetDIEntry(Slot, Die);
1495 Entity->AddValue(DW_AT_type, DW_FORM_ref4, Slot);
1496 }
1497 }
1498 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001499
Devang Patel08f053f2009-01-05 17:57:47 +00001500 /// ConstructType - Construct basic type die from DIBasicType.
1501 void ConstructType(CompileUnit *DW_Unit, DIE &Buffer,
1502 DIBasicType *BTy) {
1503
1504 // Get core information.
1505 const std::string &Name = BTy->getName();
1506 Buffer.setTag(DW_TAG_base_type);
1507 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, BTy->getEncoding());
1508 // Add name if not anonymous or intermediate type.
1509 if (!Name.empty())
1510 AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1511 uint64_t Size = BTy->getSizeInBits() >> 3;
1512 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1513 }
1514
Devang Patel68afdc32009-01-05 18:33:01 +00001515 /// ConstructType - Construct derived type die from DIDerivedType.
Devang Patel08f053f2009-01-05 17:57:47 +00001516 void ConstructType(CompileUnit *DW_Unit, DIE &Buffer,
1517 DIDerivedType *DTy) {
1518
1519 // Get core information.
1520 const std::string &Name = DTy->getName();
1521 uint64_t Size = DTy->getSizeInBits() >> 3;
1522 unsigned Tag = DTy->getTag();
1523 // FIXME - Workaround for templates.
1524 if (Tag == DW_TAG_inheritance) Tag = DW_TAG_reference_type;
1525
1526 Buffer.setTag(Tag);
1527 // Map to main type, void will not have a type.
1528 DIType FromTy = DTy->getTypeDerivedFrom();
1529 // FIXME - Enable this. AddType(&Buffer, FromTy, DW_Unit);
1530
1531 // Add name if not anonymous or intermediate type.
1532 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
1533
1534 // Add size if non-zero (derived types might be zero-sized.)
1535 if (Size)
1536 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1537
1538 // Add source line info if available and TyDesc is not a forward
1539 // declaration.
1540 // FIXME - Enable this. if (!DTy->isForwardDecl())
1541 // FIXME - Enable this. AddSourceLine(&Buffer, *DTy);
1542 }
1543
Devang Patel68afdc32009-01-05 18:33:01 +00001544 // ConstructSubrangeDIE - Construct subrange DIE from DISubrange.
1545 void ConstructSubrangeDIE (DIE &Buffer, DISubrange *SR, DIE *IndexTy) {
1546 int64_t L = SR->getLo();
1547 int64_t H = SR->getHi();
1548 DIE *DW_Subrange = new DIE(DW_TAG_subrange_type);
1549 if (L != H) {
1550 AddDIEntry(DW_Subrange, DW_AT_type, DW_FORM_ref4, IndexTy);
1551 if (L)
1552 AddSInt(DW_Subrange, DW_AT_lower_bound, 0, L);
1553 AddSInt(DW_Subrange, DW_AT_upper_bound, 0, H);
1554 }
1555 Buffer.AddChild(DW_Subrange);
1556 }
1557
1558 /// ConstructArrayTypeDIE - Construct array type DIE from DICompositeType.
1559 void ConstructArrayTypeDIE(CompileUnit *DW_Unit, DIE &Buffer,
1560 DICompositeType *CTy) {
1561 Buffer.setTag(DW_TAG_array_type);
1562 if (CTy->getTag() == DW_TAG_vector_type)
1563 AddUInt(&Buffer, DW_AT_GNU_vector, DW_FORM_flag, 1);
1564
1565 DIArray Elements = CTy->getTypeArray();
1566 // FIXME - Enable this.
1567 // AddType(&Buffer, CTy->getTypeDerivedFrom(), DW_Unit);
1568
1569 // Construct an anonymous type for index type.
1570 DIE IdxBuffer(DW_TAG_base_type);
1571 AddUInt(&IdxBuffer, DW_AT_byte_size, 0, sizeof(int32_t));
1572 AddUInt(&IdxBuffer, DW_AT_encoding, DW_FORM_data1, DW_ATE_signed);
1573 DIE *IndexTy = DW_Unit->AddDie(IdxBuffer);
1574
1575 // Add subranges to array type.
1576 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
1577 DISubrange Element = Elements.getElement(i);
1578 ConstructSubrangeDIE(Buffer, &Element, IndexTy);
1579 }
1580 }
1581
Devang Patelc69bf2c2009-01-05 18:38:38 +00001582 /// ConstructEnumTypeDIE - Construct enum type DIE from
1583 /// DIEnumerator.
1584 void ConstructEnumType(CompileUnit *DW_Unit,
1585 DIE &Buffer, DIEnumerator *ETy) {
1586
1587 DIE *Enumerator = new DIE(DW_TAG_enumerator);
1588 AddString(Enumerator, DW_AT_name, DW_FORM_string, ETy->getName());
1589 int64_t Value = ETy->getEnumValue();
1590 AddSInt(Enumerator, DW_AT_const_value, DW_FORM_sdata, Value);
1591 Buffer.AddChild(Enumerator);
1592 }
Devang Patel68afdc32009-01-05 18:33:01 +00001593
Jim Laskeyef42a012006-11-02 20:12:39 +00001594 /// ConstructType - Adds all the required attributes to the type.
1595 ///
1596 void ConstructType(DIE &Buffer, TypeDesc *TyDesc, CompileUnit *Unit) {
1597 // Get core information.
1598 const std::string &Name = TyDesc->getName();
1599 uint64_t Size = TyDesc->getSize() >> 3;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001600
Jim Laskeyef42a012006-11-02 20:12:39 +00001601 if (BasicTypeDesc *BasicTy = dyn_cast<BasicTypeDesc>(TyDesc)) {
1602 // Fundamental types like int, float, bool
1603 Buffer.setTag(DW_TAG_base_type);
1604 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, BasicTy->getEncoding());
1605 } else if (DerivedTypeDesc *DerivedTy = dyn_cast<DerivedTypeDesc>(TyDesc)) {
Jim Laskey85f419b2006-11-09 16:32:26 +00001606 // Fetch tag.
1607 unsigned Tag = DerivedTy->getTag();
1608 // FIXME - Workaround for templates.
1609 if (Tag == DW_TAG_inheritance) Tag = DW_TAG_reference_type;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001610 // Pointers, typedefs et al.
Jim Laskey85f419b2006-11-09 16:32:26 +00001611 Buffer.setTag(Tag);
Jim Laskeyef42a012006-11-02 20:12:39 +00001612 // Map to main type, void will not have a type.
1613 if (TypeDesc *FromTy = DerivedTy->getFromType())
1614 AddType(&Buffer, FromTy, Unit);
1615 } else if (CompositeTypeDesc *CompTy = dyn_cast<CompositeTypeDesc>(TyDesc)){
1616 // Fetch tag.
1617 unsigned Tag = CompTy->getTag();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001618
Jim Laskeyef42a012006-11-02 20:12:39 +00001619 // Set tag accordingly.
1620 if (Tag == DW_TAG_vector_type)
1621 Buffer.setTag(DW_TAG_array_type);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001622 else
Jim Laskeyef42a012006-11-02 20:12:39 +00001623 Buffer.setTag(Tag);
Jim Laskey65195462006-10-30 13:35:07 +00001624
Jim Laskeyef42a012006-11-02 20:12:39 +00001625 std::vector<DebugInfoDesc *> &Elements = CompTy->getElements();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001626
Jim Laskeyef42a012006-11-02 20:12:39 +00001627 switch (Tag) {
1628 case DW_TAG_vector_type:
1629 AddUInt(&Buffer, DW_AT_GNU_vector, DW_FORM_flag, 1);
1630 // Fall thru
1631 case DW_TAG_array_type: {
1632 // Add element type.
1633 if (TypeDesc *FromTy = CompTy->getFromType())
1634 AddType(&Buffer, FromTy, Unit);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001635
Jim Laskeyef42a012006-11-02 20:12:39 +00001636 // Don't emit size attribute.
1637 Size = 0;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001638
Jim Laskeyef42a012006-11-02 20:12:39 +00001639 // Construct an anonymous type for index type.
Devang Patel9ede3f22009-01-05 17:44:11 +00001640 DIE Buffer(DW_TAG_base_type);
1641 AddUInt(&Buffer, DW_AT_byte_size, 0, sizeof(int32_t));
1642 AddUInt(&Buffer, DW_AT_encoding, DW_FORM_data1, DW_ATE_signed);
1643 DIE *IndexTy = Unit->AddDie(Buffer);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001644
Jim Laskeyef42a012006-11-02 20:12:39 +00001645 // Add subranges to array type.
Evan Chengf8480282008-12-09 17:56:30 +00001646 for (unsigned i = 0, N = Elements.size(); i < N; ++i) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001647 SubrangeDesc *SRD = cast<SubrangeDesc>(Elements[i]);
1648 int64_t Lo = SRD->getLo();
1649 int64_t Hi = SRD->getHi();
1650 DIE *Subrange = new DIE(DW_TAG_subrange_type);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001651
Jim Laskeyef42a012006-11-02 20:12:39 +00001652 // If a range is available.
1653 if (Lo != Hi) {
1654 AddDIEntry(Subrange, DW_AT_type, DW_FORM_ref4, IndexTy);
1655 // Only add low if non-zero.
1656 if (Lo) AddSInt(Subrange, DW_AT_lower_bound, 0, Lo);
1657 AddSInt(Subrange, DW_AT_upper_bound, 0, Hi);
1658 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001659
Jim Laskeyef42a012006-11-02 20:12:39 +00001660 Buffer.AddChild(Subrange);
1661 }
1662 break;
1663 }
1664 case DW_TAG_structure_type:
1665 case DW_TAG_union_type: {
1666 // Add elements to structure type.
Evan Chengf8480282008-12-09 17:56:30 +00001667 for (unsigned i = 0, N = Elements.size(); i < N; ++i) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001668 DebugInfoDesc *Element = Elements[i];
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001669
Jim Laskeyef42a012006-11-02 20:12:39 +00001670 if (DerivedTypeDesc *MemberDesc = dyn_cast<DerivedTypeDesc>(Element)){
1671 // Add field or base class.
Jim Laskeyef42a012006-11-02 20:12:39 +00001672 unsigned Tag = MemberDesc->getTag();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001673
Jim Laskeyef42a012006-11-02 20:12:39 +00001674 // Extract the basic information.
1675 const std::string &Name = MemberDesc->getName();
Jim Laskeyef42a012006-11-02 20:12:39 +00001676 uint64_t Size = MemberDesc->getSize();
1677 uint64_t Align = MemberDesc->getAlign();
1678 uint64_t Offset = MemberDesc->getOffset();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001679
Jim Laskeyef42a012006-11-02 20:12:39 +00001680 // Construct member debug information entry.
1681 DIE *Member = new DIE(Tag);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001682
Jim Laskeyef42a012006-11-02 20:12:39 +00001683 // Add name if not "".
1684 if (!Name.empty())
1685 AddString(Member, DW_AT_name, DW_FORM_string, Name);
Evan Chengf8480282008-12-09 17:56:30 +00001686
Jim Laskeyef42a012006-11-02 20:12:39 +00001687 // Add location if available.
1688 AddSourceLine(Member, MemberDesc->getFile(), MemberDesc->getLine());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001689
Jim Laskeyef42a012006-11-02 20:12:39 +00001690 // Most of the time the field info is the same as the members.
1691 uint64_t FieldSize = Size;
1692 uint64_t FieldAlign = Align;
1693 uint64_t FieldOffset = Offset;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001694
Jim Laskeyee5f9272006-12-22 20:03:42 +00001695 // Set the member type.
1696 TypeDesc *FromTy = MemberDesc->getFromType();
1697 AddType(Member, FromTy, Unit);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001698
Jim Laskeyee5f9272006-12-22 20:03:42 +00001699 // Walk up typedefs until a real size is found.
1700 while (FromTy) {
1701 if (FromTy->getTag() != DW_TAG_typedef) {
1702 FieldSize = FromTy->getSize();
Devang Pateld0935c32008-12-23 21:55:38 +00001703 FieldAlign = FromTy->getAlign();
Jim Laskeyee5f9272006-12-22 20:03:42 +00001704 break;
1705 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001706
Dan Gohman275769a2007-07-23 20:24:29 +00001707 FromTy = cast<DerivedTypeDesc>(FromTy)->getFromType();
Jim Laskeyef42a012006-11-02 20:12:39 +00001708 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001709
Jim Laskeyef42a012006-11-02 20:12:39 +00001710 // Unless we have a bit field.
1711 if (Tag == DW_TAG_member && FieldSize != Size) {
1712 // Construct the alignment mask.
1713 uint64_t AlignMask = ~(FieldAlign - 1);
1714 // Determine the high bit + 1 of the declared size.
1715 uint64_t HiMark = (Offset + FieldSize) & AlignMask;
1716 // Work backwards to determine the base offset of the field.
1717 FieldOffset = HiMark - FieldSize;
1718 // Now normalize offset to the field.
1719 Offset -= FieldOffset;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001720
Jim Laskeyef42a012006-11-02 20:12:39 +00001721 // Maybe we need to work from the other end.
1722 if (TD->isLittleEndian()) Offset = FieldSize - (Offset + Size);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001723
Jim Laskeyef42a012006-11-02 20:12:39 +00001724 // Add size and offset.
1725 AddUInt(Member, DW_AT_byte_size, 0, FieldSize >> 3);
1726 AddUInt(Member, DW_AT_bit_size, 0, Size);
1727 AddUInt(Member, DW_AT_bit_offset, 0, Offset);
1728 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001729
Jim Laskeyef42a012006-11-02 20:12:39 +00001730 // Add computation for offset.
1731 DIEBlock *Block = new DIEBlock();
1732 AddUInt(Block, 0, DW_FORM_data1, DW_OP_plus_uconst);
1733 AddUInt(Block, 0, DW_FORM_udata, FieldOffset >> 3);
1734 AddBlock(Member, DW_AT_data_member_location, 0, Block);
1735
1736 // Add accessibility (public default unless is base class.
1737 if (MemberDesc->isProtected()) {
1738 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_protected);
1739 } else if (MemberDesc->isPrivate()) {
1740 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_private);
1741 } else if (Tag == DW_TAG_inheritance) {
1742 AddUInt(Member, DW_AT_accessibility, 0, DW_ACCESS_public);
1743 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001744
Jim Laskeyef42a012006-11-02 20:12:39 +00001745 Buffer.AddChild(Member);
1746 } else if (GlobalVariableDesc *StaticDesc =
1747 dyn_cast<GlobalVariableDesc>(Element)) {
1748 // Add static member.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001749
Jim Laskeyef42a012006-11-02 20:12:39 +00001750 // Construct member debug information entry.
1751 DIE *Static = new DIE(DW_TAG_variable);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001752
Jim Laskeyef42a012006-11-02 20:12:39 +00001753 // Add name and mangled name.
Jim Laskey2172f962006-11-30 14:35:45 +00001754 const std::string &Name = StaticDesc->getName();
1755 const std::string &LinkageName = StaticDesc->getLinkageName();
Jim Laskeyef42a012006-11-02 20:12:39 +00001756 AddString(Static, DW_AT_name, DW_FORM_string, Name);
Jim Laskey2172f962006-11-30 14:35:45 +00001757 if (!LinkageName.empty()) {
1758 AddString(Static, DW_AT_MIPS_linkage_name, DW_FORM_string,
1759 LinkageName);
1760 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001761
Jim Laskeyef42a012006-11-02 20:12:39 +00001762 // Add location.
1763 AddSourceLine(Static, StaticDesc->getFile(), StaticDesc->getLine());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001764
Jim Laskeyef42a012006-11-02 20:12:39 +00001765 // Add type.
1766 if (TypeDesc *StaticTy = StaticDesc->getType())
1767 AddType(Static, StaticTy, Unit);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001768
Jim Laskeyef42a012006-11-02 20:12:39 +00001769 // Add flags.
Jim Laskey6488a072007-01-08 22:15:18 +00001770 if (!StaticDesc->isStatic())
1771 AddUInt(Static, DW_AT_external, DW_FORM_flag, 1);
Jim Laskeyef42a012006-11-02 20:12:39 +00001772 AddUInt(Static, DW_AT_declaration, DW_FORM_flag, 1);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001773
Jim Laskeyef42a012006-11-02 20:12:39 +00001774 Buffer.AddChild(Static);
1775 } else if (SubprogramDesc *MethodDesc =
1776 dyn_cast<SubprogramDesc>(Element)) {
1777 // Add member function.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001778
Jim Laskeyef42a012006-11-02 20:12:39 +00001779 // Construct member debug information entry.
1780 DIE *Method = new DIE(DW_TAG_subprogram);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001781
Jim Laskeyef42a012006-11-02 20:12:39 +00001782 // Add name and mangled name.
Jim Laskey2172f962006-11-30 14:35:45 +00001783 const std::string &Name = MethodDesc->getName();
1784 const std::string &LinkageName = MethodDesc->getLinkageName();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001785
1786 AddString(Method, DW_AT_name, DW_FORM_string, Name);
Jim Laskey2172f962006-11-30 14:35:45 +00001787 bool IsCTor = TyDesc->getName() == Name;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001788
Jim Laskey2172f962006-11-30 14:35:45 +00001789 if (!LinkageName.empty()) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001790 AddString(Method, DW_AT_MIPS_linkage_name, DW_FORM_string,
Jim Laskey2172f962006-11-30 14:35:45 +00001791 LinkageName);
Jim Laskeyef42a012006-11-02 20:12:39 +00001792 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001793
Jim Laskeyef42a012006-11-02 20:12:39 +00001794 // Add location.
1795 AddSourceLine(Method, MethodDesc->getFile(), MethodDesc->getLine());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001796
Jim Laskeyef42a012006-11-02 20:12:39 +00001797 // Add type.
1798 if (CompositeTypeDesc *MethodTy =
1799 dyn_cast_or_null<CompositeTypeDesc>(MethodDesc->getType())) {
1800 // Get argument information.
1801 std::vector<DebugInfoDesc *> &Args = MethodTy->getElements();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001802
Jim Laskeyef42a012006-11-02 20:12:39 +00001803 // If not a ctor.
1804 if (!IsCTor) {
1805 // Add return type.
1806 AddType(Method, dyn_cast<TypeDesc>(Args[0]), Unit);
1807 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001808
Jim Laskeyef42a012006-11-02 20:12:39 +00001809 // Add arguments.
Evan Chengf8480282008-12-09 17:56:30 +00001810 for (unsigned i = 1, N = Args.size(); i < N; ++i) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001811 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1812 AddType(Arg, cast<TypeDesc>(Args[i]), Unit);
1813 AddUInt(Arg, DW_AT_artificial, DW_FORM_flag, 1);
1814 Method->AddChild(Arg);
1815 }
1816 }
1817
1818 // Add flags.
Jim Laskey6488a072007-01-08 22:15:18 +00001819 if (!MethodDesc->isStatic())
1820 AddUInt(Method, DW_AT_external, DW_FORM_flag, 1);
Jim Laskeyef42a012006-11-02 20:12:39 +00001821 AddUInt(Method, DW_AT_declaration, DW_FORM_flag, 1);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001822
Jim Laskeyef42a012006-11-02 20:12:39 +00001823 Buffer.AddChild(Method);
1824 }
1825 }
1826 break;
1827 }
1828 case DW_TAG_enumeration_type: {
1829 // Add enumerators to enumeration type.
Evan Chengf8480282008-12-09 17:56:30 +00001830 for (unsigned i = 0, N = Elements.size(); i < N; ++i) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001831 EnumeratorDesc *ED = cast<EnumeratorDesc>(Elements[i]);
1832 const std::string &Name = ED->getName();
1833 int64_t Value = ED->getValue();
1834 DIE *Enumerator = new DIE(DW_TAG_enumerator);
1835 AddString(Enumerator, DW_AT_name, DW_FORM_string, Name);
1836 AddSInt(Enumerator, DW_AT_const_value, DW_FORM_sdata, Value);
1837 Buffer.AddChild(Enumerator);
1838 }
1839
1840 break;
1841 }
1842 case DW_TAG_subroutine_type: {
1843 // Add prototype flag.
1844 AddUInt(&Buffer, DW_AT_prototyped, DW_FORM_flag, 1);
1845 // Add return type.
1846 AddType(&Buffer, dyn_cast<TypeDesc>(Elements[0]), Unit);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001847
Jim Laskeyef42a012006-11-02 20:12:39 +00001848 // Add arguments.
Evan Chengf8480282008-12-09 17:56:30 +00001849 for (unsigned i = 1, N = Elements.size(); i < N; ++i) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001850 DIE *Arg = new DIE(DW_TAG_formal_parameter);
1851 AddType(Arg, cast<TypeDesc>(Elements[i]), Unit);
1852 Buffer.AddChild(Arg);
1853 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001854
Jim Laskeyef42a012006-11-02 20:12:39 +00001855 break;
1856 }
1857 default: break;
1858 }
1859 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001860
Jim Laskeyef42a012006-11-02 20:12:39 +00001861 // Add name if not anonymous or intermediate type.
1862 if (!Name.empty()) AddString(&Buffer, DW_AT_name, DW_FORM_string, Name);
Evan Chengf8480282008-12-09 17:56:30 +00001863
Evan Cheng94ea5be2008-12-10 00:15:44 +00001864 // Add size if non-zero (derived types might be zero-sized.)
1865 if (Size)
1866 AddUInt(&Buffer, DW_AT_byte_size, 0, Size);
1867 else if (isa<CompositeTypeDesc>(TyDesc)) {
1868 // If TyDesc is a composite type, then add size even if it's zero unless
1869 // it's a forward declaration.
1870 if (TyDesc->isForwardDecl())
1871 AddUInt(&Buffer, DW_AT_declaration, DW_FORM_flag, 1);
1872 else
1873 AddUInt(&Buffer, DW_AT_byte_size, 0, 0);
1874 }
1875
1876 // Add source line info if available and TyDesc is not a forward
1877 // declaration.
1878 if (!TyDesc->isForwardDecl())
1879 AddSourceLine(&Buffer, TyDesc->getFile(), TyDesc->getLine());
Jim Laskeyef42a012006-11-02 20:12:39 +00001880 }
1881
1882 /// NewCompileUnit - Create new compile unit and it's debug information entry.
Jim Laskey65195462006-10-30 13:35:07 +00001883 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001884 CompileUnit *NewCompileUnit(CompileUnitDesc *UnitDesc, unsigned ID) {
1885 // Construct debug information entry.
1886 DIE *Die = new DIE(DW_TAG_compile_unit);
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +00001887 AddSectionOffset(Die, DW_AT_stmt_list, DW_FORM_data4,
1888 DWLabel("section_line", 0), DWLabel("section_line", 0), false);
Jim Laskeyef42a012006-11-02 20:12:39 +00001889 AddString(Die, DW_AT_producer, DW_FORM_string, UnitDesc->getProducer());
1890 AddUInt (Die, DW_AT_language, DW_FORM_data1, UnitDesc->getLanguage());
1891 AddString(Die, DW_AT_name, DW_FORM_string, UnitDesc->getFileName());
Devang Patel83580992008-12-12 21:57:54 +00001892 if (!UnitDesc->getDirectory().empty())
1893 AddString(Die, DW_AT_comp_dir, DW_FORM_string, UnitDesc->getDirectory());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001894
Jim Laskeyef42a012006-11-02 20:12:39 +00001895 // Construct compile unit.
1896 CompileUnit *Unit = new CompileUnit(UnitDesc, ID, Die);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001897
Jim Laskeyef42a012006-11-02 20:12:39 +00001898 // Add Unit to compile unit map.
1899 DescToUnitMap[UnitDesc] = Unit;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001900
Jim Laskeyef42a012006-11-02 20:12:39 +00001901 return Unit;
1902 }
1903
Jim Laskey9d4209f2006-11-07 19:33:46 +00001904 /// GetBaseCompileUnit - Get the main compile unit.
1905 ///
1906 CompileUnit *GetBaseCompileUnit() const {
1907 CompileUnit *Unit = CompileUnits[0];
1908 assert(Unit && "Missing compile unit.");
1909 return Unit;
1910 }
1911
Jim Laskey65195462006-10-30 13:35:07 +00001912 /// FindCompileUnit - Get the compile unit for the given descriptor.
1913 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001914 CompileUnit *FindCompileUnit(CompileUnitDesc *UnitDesc) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001915 CompileUnit *Unit = DescToUnitMap[UnitDesc];
Jim Laskeyef42a012006-11-02 20:12:39 +00001916 assert(Unit && "Missing compile unit.");
1917 return Unit;
1918 }
1919
1920 /// NewGlobalVariable - Add a new global variable DIE.
Jim Laskey65195462006-10-30 13:35:07 +00001921 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001922 DIE *NewGlobalVariable(GlobalVariableDesc *GVD) {
1923 // Get the compile unit context.
1924 CompileUnitDesc *UnitDesc =
1925 static_cast<CompileUnitDesc *>(GVD->getContext());
Jim Laskey5496f012006-11-09 14:52:14 +00001926 CompileUnit *Unit = GetBaseCompileUnit();
Jim Laskeyef42a012006-11-02 20:12:39 +00001927
1928 // Check for pre-existence.
1929 DIE *&Slot = Unit->getDieMapSlotFor(GVD);
1930 if (Slot) return Slot;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001931
Jim Laskeyef42a012006-11-02 20:12:39 +00001932 // Get the global variable itself.
1933 GlobalVariable *GV = GVD->getGlobalVariable();
1934
Jim Laskey2172f962006-11-30 14:35:45 +00001935 const std::string &Name = GVD->getName();
1936 const std::string &FullName = GVD->getFullName();
1937 const std::string &LinkageName = GVD->getLinkageName();
Jim Laskeyef42a012006-11-02 20:12:39 +00001938 // Create the global's variable DIE.
1939 DIE *VariableDie = new DIE(DW_TAG_variable);
1940 AddString(VariableDie, DW_AT_name, DW_FORM_string, Name);
Jim Laskey2172f962006-11-30 14:35:45 +00001941 if (!LinkageName.empty()) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001942 AddString(VariableDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
Jim Laskey2172f962006-11-30 14:35:45 +00001943 LinkageName);
Jim Laskeyef42a012006-11-02 20:12:39 +00001944 }
Jim Laskey6488a072007-01-08 22:15:18 +00001945 AddType(VariableDie, GVD->getType(), Unit);
1946 if (!GVD->isStatic())
1947 AddUInt(VariableDie, DW_AT_external, DW_FORM_flag, 1);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001948
Jim Laskeyef42a012006-11-02 20:12:39 +00001949 // Add source line info if available.
1950 AddSourceLine(VariableDie, UnitDesc, GVD->getLine());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001951
Jim Laskeyef42a012006-11-02 20:12:39 +00001952 // Add address.
1953 DIEBlock *Block = new DIEBlock();
1954 AddUInt(Block, 0, DW_FORM_data1, DW_OP_addr);
Jim Laskey2172f962006-11-30 14:35:45 +00001955 AddObjectLabel(Block, 0, DW_FORM_udata, Asm->getGlobalLinkName(GV));
1956 AddBlock(VariableDie, DW_AT_location, 0, Block);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001957
Jim Laskeyef42a012006-11-02 20:12:39 +00001958 // Add to map.
1959 Slot = VariableDie;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001960
Jim Laskeyef42a012006-11-02 20:12:39 +00001961 // Add to context owner.
1962 Unit->getDie()->AddChild(VariableDie);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001963
Jim Laskeyef42a012006-11-02 20:12:39 +00001964 // Expose as global.
1965 // FIXME - need to check external flag.
Jim Laskey2172f962006-11-30 14:35:45 +00001966 Unit->AddGlobal(FullName, VariableDie);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001967
Jim Laskeyef42a012006-11-02 20:12:39 +00001968 return VariableDie;
1969 }
Jim Laskey65195462006-10-30 13:35:07 +00001970
1971 /// NewSubprogram - Add a new subprogram DIE.
1972 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00001973 DIE *NewSubprogram(SubprogramDesc *SPD) {
1974 // Get the compile unit context.
1975 CompileUnitDesc *UnitDesc =
1976 static_cast<CompileUnitDesc *>(SPD->getContext());
Jim Laskey5496f012006-11-09 14:52:14 +00001977 CompileUnit *Unit = GetBaseCompileUnit();
Jim Laskeyef42a012006-11-02 20:12:39 +00001978
1979 // Check for pre-existence.
1980 DIE *&Slot = Unit->getDieMapSlotFor(SPD);
1981 if (Slot) return Slot;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001982
Jim Laskeyef42a012006-11-02 20:12:39 +00001983 // Gather the details (simplify add attribute code.)
Jim Laskey2172f962006-11-30 14:35:45 +00001984 const std::string &Name = SPD->getName();
1985 const std::string &FullName = SPD->getFullName();
1986 const std::string &LinkageName = SPD->getLinkageName();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001987
Jim Laskeyef42a012006-11-02 20:12:39 +00001988 DIE *SubprogramDie = new DIE(DW_TAG_subprogram);
1989 AddString(SubprogramDie, DW_AT_name, DW_FORM_string, Name);
Jim Laskey2172f962006-11-30 14:35:45 +00001990 if (!LinkageName.empty()) {
Jim Laskeyef42a012006-11-02 20:12:39 +00001991 AddString(SubprogramDie, DW_AT_MIPS_linkage_name, DW_FORM_string,
Jim Laskey2172f962006-11-30 14:35:45 +00001992 LinkageName);
Jim Laskeyef42a012006-11-02 20:12:39 +00001993 }
1994 if (SPD->getType()) AddType(SubprogramDie, SPD->getType(), Unit);
Jim Laskey6488a072007-01-08 22:15:18 +00001995 if (!SPD->isStatic())
1996 AddUInt(SubprogramDie, DW_AT_external, DW_FORM_flag, 1);
Jim Laskeyef42a012006-11-02 20:12:39 +00001997 AddUInt(SubprogramDie, DW_AT_prototyped, DW_FORM_flag, 1);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00001998
Jim Laskeyef42a012006-11-02 20:12:39 +00001999 // Add source line info if available.
2000 AddSourceLine(SubprogramDie, UnitDesc, SPD->getLine());
2001
2002 // Add to map.
2003 Slot = SubprogramDie;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002004
Jim Laskeyef42a012006-11-02 20:12:39 +00002005 // Add to context owner.
2006 Unit->getDie()->AddChild(SubprogramDie);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002007
Jim Laskeyef42a012006-11-02 20:12:39 +00002008 // Expose as global.
Jim Laskey2172f962006-11-30 14:35:45 +00002009 Unit->AddGlobal(FullName, SubprogramDie);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002010
Jim Laskeyef42a012006-11-02 20:12:39 +00002011 return SubprogramDie;
2012 }
Jim Laskey65195462006-10-30 13:35:07 +00002013
2014 /// NewScopeVariable - Create a new scope variable.
2015 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002016 DIE *NewScopeVariable(DebugVariable *DV, CompileUnit *Unit) {
2017 // Get the descriptor.
2018 VariableDesc *VD = DV->getDesc();
2019
2020 // Translate tag to proper Dwarf tag. The result variable is dropped for
2021 // now.
2022 unsigned Tag;
2023 switch (VD->getTag()) {
2024 case DW_TAG_return_variable: return NULL;
2025 case DW_TAG_arg_variable: Tag = DW_TAG_formal_parameter; break;
2026 case DW_TAG_auto_variable: // fall thru
2027 default: Tag = DW_TAG_variable; break;
2028 }
2029
2030 // Define variable debug information entry.
2031 DIE *VariableDie = new DIE(Tag);
2032 AddString(VariableDie, DW_AT_name, DW_FORM_string, VD->getName());
2033
2034 // Add source line info if available.
2035 AddSourceLine(VariableDie, VD->getFile(), VD->getLine());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002036
Jim Laskeyef42a012006-11-02 20:12:39 +00002037 // Add variable type.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002038 AddType(VariableDie, VD->getType(), Unit);
2039
Jim Laskeyef42a012006-11-02 20:12:39 +00002040 // Add variable address.
2041 MachineLocation Location;
Evan Cheng72bebb92008-01-31 03:37:28 +00002042 Location.set(RI->getFrameRegister(*MF),
2043 RI->getFrameIndexOffset(*MF, DV->getFrameIndex()));
Jim Laskeyef42a012006-11-02 20:12:39 +00002044 AddAddress(VariableDie, DW_AT_location, Location);
Jim Laskey5496f012006-11-09 14:52:14 +00002045
Jim Laskeyef42a012006-11-02 20:12:39 +00002046 return VariableDie;
2047 }
Jim Laskey65195462006-10-30 13:35:07 +00002048
2049 /// ConstructScope - Construct the components of a scope.
2050 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002051 void ConstructScope(DebugScope *ParentScope,
Jim Laskey36729dd2006-11-29 16:55:57 +00002052 unsigned ParentStartID, unsigned ParentEndID,
2053 DIE *ParentDie, CompileUnit *Unit) {
Jim Laskeyef42a012006-11-02 20:12:39 +00002054 // Add variables to scope.
2055 std::vector<DebugVariable *> &Variables = ParentScope->getVariables();
2056 for (unsigned i = 0, N = Variables.size(); i < N; ++i) {
2057 DIE *VariableDie = NewScopeVariable(Variables[i], Unit);
2058 if (VariableDie) ParentDie->AddChild(VariableDie);
2059 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002060
Jim Laskeyef42a012006-11-02 20:12:39 +00002061 // Add nested scopes.
2062 std::vector<DebugScope *> &Scopes = ParentScope->getScopes();
2063 for (unsigned j = 0, M = Scopes.size(); j < M; ++j) {
2064 // Define the Scope debug information entry.
2065 DebugScope *Scope = Scopes[j];
2066 // FIXME - Ignore inlined functions for the time being.
2067 if (!Scope->getParent()) continue;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002068
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002069 unsigned StartID = MMI->MappedLabel(Scope->getStartLabelID());
2070 unsigned EndID = MMI->MappedLabel(Scope->getEndLabelID());
Jim Laskey5496f012006-11-09 14:52:14 +00002071
Jim Laskey9d4209f2006-11-07 19:33:46 +00002072 // Ignore empty scopes.
2073 if (StartID == EndID && StartID != 0) continue;
2074 if (Scope->getScopes().empty() && Scope->getVariables().empty()) continue;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002075
Jim Laskey36729dd2006-11-29 16:55:57 +00002076 if (StartID == ParentStartID && EndID == ParentEndID) {
2077 // Just add stuff to the parent scope.
2078 ConstructScope(Scope, ParentStartID, ParentEndID, ParentDie, Unit);
Jim Laskeyef42a012006-11-02 20:12:39 +00002079 } else {
Jim Laskey36729dd2006-11-29 16:55:57 +00002080 DIE *ScopeDie = new DIE(DW_TAG_lexical_block);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002081
Jim Laskey36729dd2006-11-29 16:55:57 +00002082 // Add the scope bounds.
2083 if (StartID) {
2084 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
Jim Laskeybacd3042007-02-21 22:48:45 +00002085 DWLabel("label", StartID));
Jim Laskey36729dd2006-11-29 16:55:57 +00002086 } else {
2087 AddLabel(ScopeDie, DW_AT_low_pc, DW_FORM_addr,
2088 DWLabel("func_begin", SubprogramCount));
2089 }
2090 if (EndID) {
2091 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
Jim Laskeybacd3042007-02-21 22:48:45 +00002092 DWLabel("label", EndID));
Jim Laskey36729dd2006-11-29 16:55:57 +00002093 } else {
2094 AddLabel(ScopeDie, DW_AT_high_pc, DW_FORM_addr,
2095 DWLabel("func_end", SubprogramCount));
2096 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002097
Jim Laskey36729dd2006-11-29 16:55:57 +00002098 // Add the scope contents.
2099 ConstructScope(Scope, StartID, EndID, ScopeDie, Unit);
2100 ParentDie->AddChild(ScopeDie);
Jim Laskeyef42a012006-11-02 20:12:39 +00002101 }
Jim Laskeyef42a012006-11-02 20:12:39 +00002102 }
2103 }
Jim Laskey65195462006-10-30 13:35:07 +00002104
2105 /// ConstructRootScope - Construct the scope for the subprogram.
2106 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002107 void ConstructRootScope(DebugScope *RootScope) {
2108 // Exit if there is no root scope.
2109 if (!RootScope) return;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002110
2111 // Get the subprogram debug information entry.
Jim Laskeyef42a012006-11-02 20:12:39 +00002112 SubprogramDesc *SPD = cast<SubprogramDesc>(RootScope->getDesc());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002113
Jim Laskeyef42a012006-11-02 20:12:39 +00002114 // Get the compile unit context.
Jim Laskey5496f012006-11-09 14:52:14 +00002115 CompileUnit *Unit = GetBaseCompileUnit();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002116
Jim Laskeyef42a012006-11-02 20:12:39 +00002117 // Get the subprogram die.
2118 DIE *SPDie = Unit->getDieMapSlotFor(SPD);
2119 assert(SPDie && "Missing subprogram descriptor");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002120
Jim Laskeyef42a012006-11-02 20:12:39 +00002121 // Add the function bounds.
2122 AddLabel(SPDie, DW_AT_low_pc, DW_FORM_addr,
2123 DWLabel("func_begin", SubprogramCount));
2124 AddLabel(SPDie, DW_AT_high_pc, DW_FORM_addr,
2125 DWLabel("func_end", SubprogramCount));
2126 MachineLocation Location(RI->getFrameRegister(*MF));
2127 AddAddress(SPDie, DW_AT_frame_base, Location);
Jim Laskey5496f012006-11-09 14:52:14 +00002128
Jim Laskey36729dd2006-11-29 16:55:57 +00002129 ConstructScope(RootScope, 0, 0, SPDie, Unit);
Jim Laskeyef42a012006-11-02 20:12:39 +00002130 }
Jim Laskey65195462006-10-30 13:35:07 +00002131
Bill Wendlingd751c642008-09-26 00:28:12 +00002132 /// ConstructDefaultScope - Construct a default scope for the subprogram.
2133 ///
2134 void ConstructDefaultScope(MachineFunction *MF) {
2135 // Find the correct subprogram descriptor.
2136 std::vector<SubprogramDesc *> Subprograms;
2137 MMI->getAnchoredDescriptors<SubprogramDesc>(*M, Subprograms);
2138
2139 for (unsigned i = 0, N = Subprograms.size(); i < N; ++i) {
2140 SubprogramDesc *SPD = Subprograms[i];
2141
2142 if (SPD->getName() == MF->getFunction()->getName()) {
2143 // Get the compile unit context.
2144 CompileUnit *Unit = GetBaseCompileUnit();
2145
2146 // Get the subprogram die.
2147 DIE *SPDie = Unit->getDieMapSlotFor(SPD);
2148 assert(SPDie && "Missing subprogram descriptor");
2149
2150 // Add the function bounds.
2151 AddLabel(SPDie, DW_AT_low_pc, DW_FORM_addr,
2152 DWLabel("func_begin", SubprogramCount));
2153 AddLabel(SPDie, DW_AT_high_pc, DW_FORM_addr,
2154 DWLabel("func_end", SubprogramCount));
2155
2156 MachineLocation Location(RI->getFrameRegister(*MF));
2157 AddAddress(SPDie, DW_AT_frame_base, Location);
2158 return;
2159 }
2160 }
Bill Wendlinga9f0cc42008-10-17 18:48:57 +00002161#if 0
2162 // FIXME: This is causing an abort because C++ mangled names are compared
2163 // with their unmangled counterparts. See PR2885. Don't do this assert.
Bill Wendlingd751c642008-09-26 00:28:12 +00002164 assert(0 && "Couldn't find DIE for machine function!");
Bill Wendlinga9f0cc42008-10-17 18:48:57 +00002165#endif
Bill Wendlingd751c642008-09-26 00:28:12 +00002166 }
2167
Jim Laskeyef42a012006-11-02 20:12:39 +00002168 /// EmitInitial - Emit initial Dwarf declarations. This is necessary for cc
2169 /// tools to recognize the object file contains Dwarf information.
2170 void EmitInitial() {
2171 // Check to see if we already emitted intial headers.
2172 if (didInitial) return;
2173 didInitial = true;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002174
Jim Laskeyef42a012006-11-02 20:12:39 +00002175 // Dwarf sections base addresses.
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +00002176 if (TAI->doesDwarfRequireFrameSection()) {
Jim Laskeyef42a012006-11-02 20:12:39 +00002177 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002178 EmitLabel("section_debug_frame", 0);
Jim Laskeyef42a012006-11-02 20:12:39 +00002179 }
2180 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
2181 EmitLabel("section_info", 0);
2182 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
2183 EmitLabel("section_abbrev", 0);
2184 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
2185 EmitLabel("section_aranges", 0);
2186 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
2187 EmitLabel("section_macinfo", 0);
2188 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
2189 EmitLabel("section_line", 0);
2190 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
2191 EmitLabel("section_loc", 0);
2192 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
2193 EmitLabel("section_pubnames", 0);
2194 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
2195 EmitLabel("section_str", 0);
2196 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
2197 EmitLabel("section_ranges", 0);
2198
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +00002199 Asm->SwitchToSection(TAI->getTextSection());
Jim Laskeyef42a012006-11-02 20:12:39 +00002200 EmitLabel("text_begin", 0);
Anton Korobeynikov315690e2008-09-24 22:16:16 +00002201 Asm->SwitchToSection(TAI->getDataSection());
Jim Laskeyef42a012006-11-02 20:12:39 +00002202 EmitLabel("data_begin", 0);
Jim Laskeyef42a012006-11-02 20:12:39 +00002203 }
2204
Jim Laskey65195462006-10-30 13:35:07 +00002205 /// EmitDIE - Recusively Emits a debug information entry.
2206 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00002207 void EmitDIE(DIE *Die) {
Jim Laskeyef42a012006-11-02 20:12:39 +00002208 // Get the abbreviation for this DIE.
2209 unsigned AbbrevNumber = Die->getAbbrevNumber();
2210 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002211
Jim Laskeybacd3042007-02-21 22:48:45 +00002212 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002213
2214 // Emit the code (index) for the abbreviation.
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002215 Asm->EmitULEB128Bytes(AbbrevNumber);
Evan Cheng6547e402008-07-01 23:18:29 +00002216
2217 if (VerboseAsm)
2218 Asm->EOL(std::string("Abbrev [" +
2219 utostr(AbbrevNumber) +
2220 "] 0x" + utohexstr(Die->getOffset()) +
2221 ":0x" + utohexstr(Die->getSize()) + " " +
2222 TagString(Abbrev->getTag())));
2223 else
2224 Asm->EOL();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002225
Owen Anderson873e1b52008-06-24 21:44:59 +00002226 SmallVector<DIEValue*, 32> &Values = Die->getValues();
2227 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002228
Jim Laskeyef42a012006-11-02 20:12:39 +00002229 // Emit the DIE attribute values.
2230 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2231 unsigned Attr = AbbrevData[i].getAttribute();
2232 unsigned Form = AbbrevData[i].getForm();
2233 assert(Form && "Too many attributes for DIE (check abbreviation)");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002234
Jim Laskeyef42a012006-11-02 20:12:39 +00002235 switch (Attr) {
2236 case DW_AT_sibling: {
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002237 Asm->EmitInt32(Die->SiblingOffset());
Jim Laskeyef42a012006-11-02 20:12:39 +00002238 break;
2239 }
2240 default: {
2241 // Emit an attribute using the defined form.
2242 Values[i]->EmitValue(*this, Form);
2243 break;
2244 }
2245 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002246
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002247 Asm->EOL(AttributeString(Attr));
Jim Laskeyef42a012006-11-02 20:12:39 +00002248 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002249
Jim Laskeyef42a012006-11-02 20:12:39 +00002250 // Emit the DIE children if any.
2251 if (Abbrev->getChildrenFlag() == DW_CHILDREN_yes) {
2252 const std::vector<DIE *> &Children = Die->getChildren();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002253
Jim Laskeyef42a012006-11-02 20:12:39 +00002254 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2255 EmitDIE(Children[j]);
2256 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002257
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002258 Asm->EmitInt8(0); Asm->EOL("End Of Children Mark");
Jim Laskeyef42a012006-11-02 20:12:39 +00002259 }
2260 }
2261
Jim Laskey65195462006-10-30 13:35:07 +00002262 /// SizeAndOffsetDie - Compute the size and offset of a DIE.
2263 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002264 unsigned SizeAndOffsetDie(DIE *Die, unsigned Offset, bool Last) {
2265 // Get the children.
2266 const std::vector<DIE *> &Children = Die->getChildren();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002267
Jim Laskeyef42a012006-11-02 20:12:39 +00002268 // If not last sibling and has children then add sibling offset attribute.
2269 if (!Last && !Children.empty()) Die->AddSiblingOffset();
2270
2271 // Record the abbreviation.
2272 AssignAbbrevNumber(Die->getAbbrev());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002273
Jim Laskeyef42a012006-11-02 20:12:39 +00002274 // Get the abbreviation for this DIE.
2275 unsigned AbbrevNumber = Die->getAbbrevNumber();
2276 const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1];
2277
2278 // Set DIE offset
2279 Die->setOffset(Offset);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002280
Jim Laskeyef42a012006-11-02 20:12:39 +00002281 // Start the size with the size of abbreviation code.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002282 Offset += TargetAsmInfo::getULEB128Size(AbbrevNumber);
2283
Owen Anderson873e1b52008-06-24 21:44:59 +00002284 const SmallVector<DIEValue*, 32> &Values = Die->getValues();
2285 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData();
Jim Laskeyef42a012006-11-02 20:12:39 +00002286
2287 // Size the DIE attribute values.
2288 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
2289 // Size attribute value.
2290 Offset += Values[i]->SizeOf(*this, AbbrevData[i].getForm());
2291 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002292
Jim Laskeyef42a012006-11-02 20:12:39 +00002293 // Size the DIE children if any.
2294 if (!Children.empty()) {
2295 assert(Abbrev->getChildrenFlag() == DW_CHILDREN_yes &&
2296 "Children flag not set");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002297
Jim Laskeyef42a012006-11-02 20:12:39 +00002298 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
2299 Offset = SizeAndOffsetDie(Children[j], Offset, (j + 1) == M);
2300 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002301
Jim Laskeyef42a012006-11-02 20:12:39 +00002302 // End of children marker.
2303 Offset += sizeof(int8_t);
2304 }
2305
2306 Die->setSize(Offset - Die->getOffset());
2307 return Offset;
2308 }
Jim Laskey65195462006-10-30 13:35:07 +00002309
2310 /// SizeAndOffsets - Compute the size and offset of all the DIEs.
2311 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002312 void SizeAndOffsets() {
Jim Laskey5496f012006-11-09 14:52:14 +00002313 // Process base compile unit.
2314 CompileUnit *Unit = GetBaseCompileUnit();
2315 // Compute size of compile unit header
2316 unsigned Offset = sizeof(int32_t) + // Length of Compilation Unit Info
2317 sizeof(int16_t) + // DWARF version number
2318 sizeof(int32_t) + // Offset Into Abbrev. Section
2319 sizeof(int8_t); // Pointer Size (in bytes)
2320 SizeAndOffsetDie(Unit->getDie(), Offset, true);
Jim Laskeyef42a012006-11-02 20:12:39 +00002321 }
2322
Jim Laskey65195462006-10-30 13:35:07 +00002323 /// EmitDebugInfo - Emit the debug info section.
2324 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00002325 void EmitDebugInfo() {
Jim Laskeyef42a012006-11-02 20:12:39 +00002326 // Start debug info section.
2327 Asm->SwitchToDataSection(TAI->getDwarfInfoSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002328
Jim Laskey5496f012006-11-09 14:52:14 +00002329 CompileUnit *Unit = GetBaseCompileUnit();
2330 DIE *Die = Unit->getDie();
2331 // Emit the compile units header.
2332 EmitLabel("info_begin", Unit->getID());
2333 // Emit size of content not including length itself
2334 unsigned ContentSize = Die->getSize() +
2335 sizeof(int16_t) + // DWARF version number
2336 sizeof(int32_t) + // Offset Into Abbrev. Section
Jim Laskey749b01d2006-11-30 11:09:42 +00002337 sizeof(int8_t) + // Pointer Size (in bytes)
2338 sizeof(int32_t); // FIXME - extra pad for gdb bug.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002339
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002340 Asm->EmitInt32(ContentSize); Asm->EOL("Length of Compilation Unit Info");
2341 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
Anton Korobeynikov79dda2b2007-05-01 22:23:12 +00002342 EmitSectionOffset("abbrev_begin", "section_abbrev", 0, 0, true, false);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002343 Asm->EOL("Offset Into Abbrev. Section");
Dan Gohman82482942007-09-27 23:12:31 +00002344 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Address Size (in bytes)");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002345
Jim Laskey5496f012006-11-09 14:52:14 +00002346 EmitDIE(Die);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002347 // FIXME - extra padding for gdb bug.
2348 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2349 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2350 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
2351 Asm->EmitInt8(0); Asm->EOL("Extra Pad For GDB");
Jim Laskey5496f012006-11-09 14:52:14 +00002352 EmitLabel("info_end", Unit->getID());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002353
Jim Laskeybacd3042007-02-21 22:48:45 +00002354 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002355 }
2356
Jim Laskey65195462006-10-30 13:35:07 +00002357 /// EmitAbbreviations - Emit the abbreviation section.
2358 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002359 void EmitAbbreviations() const {
2360 // Check to see if it is worth the effort.
2361 if (!Abbreviations.empty()) {
2362 // Start the debug abbrev section.
2363 Asm->SwitchToDataSection(TAI->getDwarfAbbrevSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002364
Jim Laskeyef42a012006-11-02 20:12:39 +00002365 EmitLabel("abbrev_begin", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002366
Jim Laskeyef42a012006-11-02 20:12:39 +00002367 // For each abbrevation.
2368 for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) {
2369 // Get abbreviation data
2370 const DIEAbbrev *Abbrev = Abbreviations[i];
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002371
Jim Laskeyef42a012006-11-02 20:12:39 +00002372 // Emit the abbrevations code (base 1 index.)
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002373 Asm->EmitULEB128Bytes(Abbrev->getNumber());
2374 Asm->EOL("Abbreviation Code");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002375
Jim Laskeyef42a012006-11-02 20:12:39 +00002376 // Emit the abbreviations data.
2377 Abbrev->Emit(*this);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002378
Jim Laskeybacd3042007-02-21 22:48:45 +00002379 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002380 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002381
Jim Laskey7b1b39d2007-02-22 18:22:42 +00002382 // Mark end of abbreviations.
Jim Laskey5df3ad82007-02-22 18:48:52 +00002383 Asm->EmitULEB128Bytes(0); Asm->EOL("EOM(3)");
Jim Laskey7b1b39d2007-02-22 18:22:42 +00002384
Jim Laskeyef42a012006-11-02 20:12:39 +00002385 EmitLabel("abbrev_end", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002386
Jim Laskeybacd3042007-02-21 22:48:45 +00002387 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002388 }
2389 }
2390
Bill Wendlingfbbd7012008-07-20 00:11:19 +00002391 /// EmitEndOfLineMatrix - Emit the last address of the section and the end of
2392 /// the line matrix.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002393 ///
Bill Wendlingfbbd7012008-07-20 00:11:19 +00002394 void EmitEndOfLineMatrix(unsigned SectionEnd) {
2395 // Define last address of section.
2396 Asm->EmitInt8(0); Asm->EOL("Extended Op");
2397 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
2398 Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
2399 EmitReference("section_end", SectionEnd); Asm->EOL("Section end label");
2400
2401 // Mark end of matrix.
2402 Asm->EmitInt8(0); Asm->EOL("DW_LNE_end_sequence");
2403 Asm->EmitULEB128Bytes(1); Asm->EOL();
2404 Asm->EmitInt8(1); Asm->EOL();
2405 }
2406
Jim Laskey65195462006-10-30 13:35:07 +00002407 /// EmitDebugLines - Emit source line information.
2408 ///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00002409 void EmitDebugLines() {
Bill Wendlingfbbd7012008-07-20 00:11:19 +00002410 // If the target is using .loc/.file, the assembler will be emitting the
2411 // .debug_line table automatically.
2412 if (TAI->hasDotLocAndDotFile())
Dan Gohman81a148b2007-09-24 21:43:52 +00002413 return;
2414
Jim Laskeyef42a012006-11-02 20:12:39 +00002415 // Minimum line delta, thus ranging from -10..(255-10).
2416 const int MinLineDelta = -(DW_LNS_fixed_advance_pc + 1);
2417 // Maximum line delta, thus ranging from -10..(255-10).
2418 const int MaxLineDelta = 255 + MinLineDelta;
Jim Laskey65195462006-10-30 13:35:07 +00002419
Jim Laskeyef42a012006-11-02 20:12:39 +00002420 // Start the dwarf line section.
2421 Asm->SwitchToDataSection(TAI->getDwarfLineSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002422
Jim Laskeyef42a012006-11-02 20:12:39 +00002423 // Construct the section header.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002424
Jim Laskey2b4e98c2006-12-06 17:43:18 +00002425 EmitDifference("line_end", 0, "line_begin", 0, true);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002426 Asm->EOL("Length of Source Line Info");
Jim Laskeyef42a012006-11-02 20:12:39 +00002427 EmitLabel("line_begin", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002428
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002429 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF version number");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002430
Jim Laskey2b4e98c2006-12-06 17:43:18 +00002431 EmitDifference("line_prolog_end", 0, "line_prolog_begin", 0, true);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002432 Asm->EOL("Prolog Length");
Jim Laskeyef42a012006-11-02 20:12:39 +00002433 EmitLabel("line_prolog_begin", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002434
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002435 Asm->EmitInt8(1); Asm->EOL("Minimum Instruction Length");
Jim Laskeyef42a012006-11-02 20:12:39 +00002436
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002437 Asm->EmitInt8(1); Asm->EOL("Default is_stmt_start flag");
Jim Laskeyef42a012006-11-02 20:12:39 +00002438
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002439 Asm->EmitInt8(MinLineDelta); Asm->EOL("Line Base Value (Special Opcodes)");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002440
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002441 Asm->EmitInt8(MaxLineDelta); Asm->EOL("Line Range Value (Special Opcodes)");
Jim Laskeyef42a012006-11-02 20:12:39 +00002442
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002443 Asm->EmitInt8(-MinLineDelta); Asm->EOL("Special Opcode Base");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002444
Jim Laskeyef42a012006-11-02 20:12:39 +00002445 // Line number standard opcode encodings argument count
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002446 Asm->EmitInt8(0); Asm->EOL("DW_LNS_copy arg count");
2447 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_pc arg count");
2448 Asm->EmitInt8(1); Asm->EOL("DW_LNS_advance_line arg count");
2449 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_file arg count");
2450 Asm->EmitInt8(1); Asm->EOL("DW_LNS_set_column arg count");
2451 Asm->EmitInt8(0); Asm->EOL("DW_LNS_negate_stmt arg count");
2452 Asm->EmitInt8(0); Asm->EOL("DW_LNS_set_basic_block arg count");
2453 Asm->EmitInt8(0); Asm->EOL("DW_LNS_const_add_pc arg count");
2454 Asm->EmitInt8(1); Asm->EOL("DW_LNS_fixed_advance_pc arg count");
Jim Laskeyef42a012006-11-02 20:12:39 +00002455
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002456 const UniqueVector<std::string> &Directories = MMI->getDirectories();
Evan Cheng6547e402008-07-01 23:18:29 +00002457 const UniqueVector<SourceFileInfo> &SourceFiles = MMI->getSourceFiles();
Jim Laskeyef42a012006-11-02 20:12:39 +00002458
2459 // Emit directories.
2460 for (unsigned DirectoryID = 1, NDID = Directories.size();
2461 DirectoryID <= NDID; ++DirectoryID) {
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002462 Asm->EmitString(Directories[DirectoryID]); Asm->EOL("Directory");
Jim Laskeyef42a012006-11-02 20:12:39 +00002463 }
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002464 Asm->EmitInt8(0); Asm->EOL("End of directories");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002465
Jim Laskeyef42a012006-11-02 20:12:39 +00002466 // Emit files.
2467 for (unsigned SourceID = 1, NSID = SourceFiles.size();
2468 SourceID <= NSID; ++SourceID) {
2469 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002470 Asm->EmitString(SourceFile.getName());
2471 Asm->EOL("Source");
2472 Asm->EmitULEB128Bytes(SourceFile.getDirectoryID());
2473 Asm->EOL("Directory #");
2474 Asm->EmitULEB128Bytes(0);
2475 Asm->EOL("Mod date");
2476 Asm->EmitULEB128Bytes(0);
2477 Asm->EOL("File size");
Jim Laskeyef42a012006-11-02 20:12:39 +00002478 }
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002479 Asm->EmitInt8(0); Asm->EOL("End of files");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002480
Jim Laskeyef42a012006-11-02 20:12:39 +00002481 EmitLabel("line_prolog_end", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002482
Jim Laskeyef42a012006-11-02 20:12:39 +00002483 // A sequence for each text section.
Bill Wendlingfbbd7012008-07-20 00:11:19 +00002484 unsigned SecSrcLinesSize = SectionSourceLines.size();
2485
2486 for (unsigned j = 0; j < SecSrcLinesSize; ++j) {
Jim Laskeyef42a012006-11-02 20:12:39 +00002487 // Isolate current sections line info.
2488 const std::vector<SourceLineInfo> &LineInfos = SectionSourceLines[j];
Evan Cheng6547e402008-07-01 23:18:29 +00002489
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +00002490 if (VerboseAsm) {
2491 const Section* S = SectionMap[j + 1];
2492 Asm->EOL(std::string("Section ") + S->getName());
2493 } else
Evan Cheng6547e402008-07-01 23:18:29 +00002494 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002495
2496 // Dwarf assumes we start with first line of first source file.
2497 unsigned Source = 1;
2498 unsigned Line = 1;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002499
Jim Laskeyef42a012006-11-02 20:12:39 +00002500 // Construct rows of the address, source, line, column matrix.
2501 for (unsigned i = 0, N = LineInfos.size(); i < N; ++i) {
2502 const SourceLineInfo &LineInfo = LineInfos[i];
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002503 unsigned LabelID = MMI->MappedLabel(LineInfo.getLabelID());
Jim Laskey9d4209f2006-11-07 19:33:46 +00002504 if (!LabelID) continue;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002505
Jim Laskey1a4a83c2007-01-25 15:45:58 +00002506 unsigned SourceID = LineInfo.getSourceID();
2507 const SourceFileInfo &SourceFile = SourceFiles[SourceID];
2508 unsigned DirectoryID = SourceFile.getDirectoryID();
Evan Cheng6547e402008-07-01 23:18:29 +00002509 if (VerboseAsm)
2510 Asm->EOL(Directories[DirectoryID]
2511 + SourceFile.getName()
2512 + ":"
2513 + utostr_32(LineInfo.getLine()));
2514 else
2515 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002516
2517 // Define the line address.
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002518 Asm->EmitInt8(0); Asm->EOL("Extended Op");
Dan Gohman82482942007-09-27 23:12:31 +00002519 Asm->EmitInt8(TD->getPointerSize() + 1); Asm->EOL("Op size");
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002520 Asm->EmitInt8(DW_LNE_set_address); Asm->EOL("DW_LNE_set_address");
Jim Laskeybacd3042007-02-21 22:48:45 +00002521 EmitReference("label", LabelID); Asm->EOL("Location label");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002522
Jim Laskeyef42a012006-11-02 20:12:39 +00002523 // If change of source, then switch to the new source.
2524 if (Source != LineInfo.getSourceID()) {
2525 Source = LineInfo.getSourceID();
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002526 Asm->EmitInt8(DW_LNS_set_file); Asm->EOL("DW_LNS_set_file");
2527 Asm->EmitULEB128Bytes(Source); Asm->EOL("New Source");
Jim Laskeyef42a012006-11-02 20:12:39 +00002528 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002529
Jim Laskeyef42a012006-11-02 20:12:39 +00002530 // If change of line.
2531 if (Line != LineInfo.getLine()) {
2532 // Determine offset.
2533 int Offset = LineInfo.getLine() - Line;
2534 int Delta = Offset - MinLineDelta;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002535
Jim Laskeyef42a012006-11-02 20:12:39 +00002536 // Update line.
2537 Line = LineInfo.getLine();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002538
Jim Laskeyef42a012006-11-02 20:12:39 +00002539 // If delta is small enough and in range...
2540 if (Delta >= 0 && Delta < (MaxLineDelta - 1)) {
2541 // ... then use fast opcode.
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002542 Asm->EmitInt8(Delta - MinLineDelta); Asm->EOL("Line Delta");
Jim Laskeyef42a012006-11-02 20:12:39 +00002543 } else {
2544 // ... otherwise use long hand.
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002545 Asm->EmitInt8(DW_LNS_advance_line); Asm->EOL("DW_LNS_advance_line");
2546 Asm->EmitSLEB128Bytes(Offset); Asm->EOL("Line Offset");
2547 Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
Jim Laskeyef42a012006-11-02 20:12:39 +00002548 }
2549 } else {
2550 // Copy the previous row (different address or source)
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002551 Asm->EmitInt8(DW_LNS_copy); Asm->EOL("DW_LNS_copy");
Jim Laskeyef42a012006-11-02 20:12:39 +00002552 }
2553 }
2554
Bill Wendlingfbbd7012008-07-20 00:11:19 +00002555 EmitEndOfLineMatrix(j + 1);
Jim Laskeyef42a012006-11-02 20:12:39 +00002556 }
Bill Wendlingfbbd7012008-07-20 00:11:19 +00002557
2558 if (SecSrcLinesSize == 0)
2559 // Because we're emitting a debug_line section, we still need a line
2560 // table. The linker and friends expect it to exist. If there's nothing to
2561 // put into it, emit an empty table.
2562 EmitEndOfLineMatrix(1);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002563
Jim Laskeyef42a012006-11-02 20:12:39 +00002564 EmitLabel("line_end", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002565
Jim Laskeybacd3042007-02-21 22:48:45 +00002566 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002567 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002568
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002569 /// EmitCommonDebugFrame - Emit common frame info into a debug frame section.
Jim Laskey65195462006-10-30 13:35:07 +00002570 ///
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002571 void EmitCommonDebugFrame() {
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +00002572 if (!TAI->doesDwarfRequireFrameSection())
Jim Laskeyef42a012006-11-02 20:12:39 +00002573 return;
2574
2575 int stackGrowth =
2576 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
2577 TargetFrameInfo::StackGrowsUp ?
Dan Gohman82482942007-09-27 23:12:31 +00002578 TD->getPointerSize() : -TD->getPointerSize();
Jim Laskeyef42a012006-11-02 20:12:39 +00002579
2580 // Start the dwarf frame section.
2581 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
2582
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002583 EmitLabel("debug_frame_common", 0);
2584 EmitDifference("debug_frame_common_end", 0,
2585 "debug_frame_common_begin", 0, true);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002586 Asm->EOL("Length of Common Information Entry");
Jim Laskeyef42a012006-11-02 20:12:39 +00002587
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002588 EmitLabel("debug_frame_common_begin", 0);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002589 Asm->EmitInt32((int)DW_CIE_ID);
2590 Asm->EOL("CIE Identifier Tag");
2591 Asm->EmitInt8(DW_CIE_VERSION);
2592 Asm->EOL("CIE Version");
2593 Asm->EmitString("");
2594 Asm->EOL("CIE Augmentation");
2595 Asm->EmitULEB128Bytes(1);
2596 Asm->EOL("CIE Code Alignment Factor");
2597 Asm->EmitSLEB128Bytes(stackGrowth);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002598 Asm->EOL("CIE Data Alignment Factor");
Dale Johannesenb97aec62007-11-13 19:13:01 +00002599 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false));
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002600 Asm->EOL("CIE RA Column");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002601
Jim Laskey5e73d5b2007-01-24 18:45:13 +00002602 std::vector<MachineMove> Moves;
Jim Laskeyef42a012006-11-02 20:12:39 +00002603 RI->getInitialFrameState(Moves);
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00002604
Dale Johannesenb97aec62007-11-13 19:13:01 +00002605 EmitFrameMoves(NULL, 0, Moves, false);
Jim Laskeyef42a012006-11-02 20:12:39 +00002606
Evan Cheng05548eb2008-02-29 19:36:59 +00002607 Asm->EmitAlignment(2, 0, 0, false);
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002608 EmitLabel("debug_frame_common_end", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002609
Jim Laskeybacd3042007-02-21 22:48:45 +00002610 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002611 }
2612
Jim Laskey65195462006-10-30 13:35:07 +00002613 /// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
2614 /// section.
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002615 void EmitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo) {
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +00002616 if (!TAI->doesDwarfRequireFrameSection())
Reid Spencer5a4951e2006-11-07 06:36:36 +00002617 return;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002618
Jim Laskeyef42a012006-11-02 20:12:39 +00002619 // Start the dwarf frame section.
2620 Asm->SwitchToDataSection(TAI->getDwarfFrameSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002621
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002622 EmitDifference("debug_frame_end", DebugFrameInfo.Number,
2623 "debug_frame_begin", DebugFrameInfo.Number, true);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002624 Asm->EOL("Length of Frame Information Entry");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002625
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002626 EmitLabel("debug_frame_begin", DebugFrameInfo.Number);
Anton Korobeynikova6199c82007-03-07 02:47:57 +00002627
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002628 EmitSectionOffset("debug_frame_common", "section_debug_frame",
2629 0, 0, true, false);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002630 Asm->EOL("FDE CIE offset");
Jim Laskey65195462006-10-30 13:35:07 +00002631
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002632 EmitReference("func_begin", DebugFrameInfo.Number);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002633 Asm->EOL("FDE initial location");
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002634 EmitDifference("func_end", DebugFrameInfo.Number,
2635 "func_begin", DebugFrameInfo.Number);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002636 Asm->EOL("FDE address range");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002637
Dale Johannesenb97aec62007-11-13 19:13:01 +00002638 EmitFrameMoves("func_begin", DebugFrameInfo.Number, DebugFrameInfo.Moves, false);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002639
Evan Cheng05548eb2008-02-29 19:36:59 +00002640 Asm->EmitAlignment(2, 0, 0, false);
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002641 EmitLabel("debug_frame_end", DebugFrameInfo.Number);
Jim Laskeyef42a012006-11-02 20:12:39 +00002642
Jim Laskeybacd3042007-02-21 22:48:45 +00002643 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002644 }
2645
2646 /// EmitDebugPubNames - Emit visible names into a debug pubnames section.
Jim Laskey65195462006-10-30 13:35:07 +00002647 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002648 void EmitDebugPubNames() {
2649 // Start the dwarf pubnames section.
2650 Asm->SwitchToDataSection(TAI->getDwarfPubNamesSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002651
2652 CompileUnit *Unit = GetBaseCompileUnit();
2653
Jim Laskey5496f012006-11-09 14:52:14 +00002654 EmitDifference("pubnames_end", Unit->getID(),
Jim Laskey2b4e98c2006-12-06 17:43:18 +00002655 "pubnames_begin", Unit->getID(), true);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002656 Asm->EOL("Length of Public Names Info");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002657
Jim Laskey5496f012006-11-09 14:52:14 +00002658 EmitLabel("pubnames_begin", Unit->getID());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002659
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002660 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("DWARF Version");
Anton Korobeynikova6199c82007-03-07 02:47:57 +00002661
Anton Korobeynikov79dda2b2007-05-01 22:23:12 +00002662 EmitSectionOffset("info_begin", "section_info",
2663 Unit->getID(), 0, true, false);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002664 Asm->EOL("Offset of Compilation Unit Info");
Jim Laskeyef42a012006-11-02 20:12:39 +00002665
Jim Laskey2b4e98c2006-12-06 17:43:18 +00002666 EmitDifference("info_end", Unit->getID(), "info_begin", Unit->getID(),true);
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002667 Asm->EOL("Compilation Unit Length");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002668
Jim Laskey5496f012006-11-09 14:52:14 +00002669 std::map<std::string, DIE *> &Globals = Unit->getGlobals();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002670
Jim Laskey5496f012006-11-09 14:52:14 +00002671 for (std::map<std::string, DIE *>::iterator GI = Globals.begin(),
2672 GE = Globals.end();
2673 GI != GE; ++GI) {
2674 const std::string &Name = GI->first;
2675 DIE * Entity = GI->second;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002676
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002677 Asm->EmitInt32(Entity->getOffset()); Asm->EOL("DIE offset");
2678 Asm->EmitString(Name); Asm->EOL("External Name");
Jim Laskeyef42a012006-11-02 20:12:39 +00002679 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002680
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002681 Asm->EmitInt32(0); Asm->EOL("End Mark");
Jim Laskey5496f012006-11-09 14:52:14 +00002682 EmitLabel("pubnames_end", Unit->getID());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002683
Jim Laskeybacd3042007-02-21 22:48:45 +00002684 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002685 }
2686
2687 /// EmitDebugStr - Emit visible names into a debug str section.
Jim Laskey65195462006-10-30 13:35:07 +00002688 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002689 void EmitDebugStr() {
2690 // Check to see if it is worth the effort.
2691 if (!StringPool.empty()) {
2692 // Start the dwarf str section.
2693 Asm->SwitchToDataSection(TAI->getDwarfStrSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002694
Jim Laskeyef42a012006-11-02 20:12:39 +00002695 // For each of strings in the string pool.
2696 for (unsigned StringID = 1, N = StringPool.size();
2697 StringID <= N; ++StringID) {
2698 // Emit a label for reference from debug information entries.
2699 EmitLabel("string", StringID);
2700 // Emit the string itself.
2701 const std::string &String = StringPool[StringID];
Jim Laskeybacd3042007-02-21 22:48:45 +00002702 Asm->EmitString(String); Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002703 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002704
Jim Laskeybacd3042007-02-21 22:48:45 +00002705 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002706 }
2707 }
2708
2709 /// EmitDebugLoc - Emit visible names into a debug loc section.
Jim Laskey65195462006-10-30 13:35:07 +00002710 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002711 void EmitDebugLoc() {
2712 // Start the dwarf loc section.
2713 Asm->SwitchToDataSection(TAI->getDwarfLocSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002714
Jim Laskeybacd3042007-02-21 22:48:45 +00002715 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002716 }
2717
2718 /// EmitDebugARanges - Emit visible names into a debug aranges section.
Jim Laskey65195462006-10-30 13:35:07 +00002719 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002720 void EmitDebugARanges() {
2721 // Start the dwarf aranges section.
2722 Asm->SwitchToDataSection(TAI->getDwarfARangesSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002723
Jim Laskeyef42a012006-11-02 20:12:39 +00002724 // FIXME - Mock up
Bill Wendlingd751c642008-09-26 00:28:12 +00002725#if 0
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002726 CompileUnit *Unit = GetBaseCompileUnit();
2727
Jim Laskey5496f012006-11-09 14:52:14 +00002728 // Don't include size of length
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002729 Asm->EmitInt32(0x1c); Asm->EOL("Length of Address Ranges Info");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002730
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002731 Asm->EmitInt16(DWARF_VERSION); Asm->EOL("Dwarf Version");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002732
Jim Laskey5496f012006-11-09 14:52:14 +00002733 EmitReference("info_begin", Unit->getID());
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002734 Asm->EOL("Offset of Compilation Unit Info");
Jim Laskeyef42a012006-11-02 20:12:39 +00002735
Dan Gohman82482942007-09-27 23:12:31 +00002736 Asm->EmitInt8(TD->getPointerSize()); Asm->EOL("Size of Address");
Jim Laskeyef42a012006-11-02 20:12:39 +00002737
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002738 Asm->EmitInt8(0); Asm->EOL("Size of Segment Descriptor");
Jim Laskeyef42a012006-11-02 20:12:39 +00002739
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002740 Asm->EmitInt16(0); Asm->EOL("Pad (1)");
2741 Asm->EmitInt16(0); Asm->EOL("Pad (2)");
Jim Laskeyef42a012006-11-02 20:12:39 +00002742
Jim Laskey5496f012006-11-09 14:52:14 +00002743 // Range 1
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002744 EmitReference("text_begin", 0); Asm->EOL("Address");
2745 EmitDifference("text_end", 0, "text_begin", 0, true); Asm->EOL("Length");
Jim Laskeyef42a012006-11-02 20:12:39 +00002746
Jim Laskeyf1cdea12007-01-25 15:12:02 +00002747 Asm->EmitInt32(0); Asm->EOL("EOM (1)");
2748 Asm->EmitInt32(0); Asm->EOL("EOM (2)");
Bill Wendlingd751c642008-09-26 00:28:12 +00002749#endif
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002750
Jim Laskeybacd3042007-02-21 22:48:45 +00002751 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002752 }
2753
2754 /// EmitDebugRanges - Emit visible names into a debug ranges section.
Jim Laskey65195462006-10-30 13:35:07 +00002755 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002756 void EmitDebugRanges() {
2757 // Start the dwarf ranges section.
2758 Asm->SwitchToDataSection(TAI->getDwarfRangesSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002759
Jim Laskeybacd3042007-02-21 22:48:45 +00002760 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002761 }
2762
2763 /// EmitDebugMacInfo - Emit visible names into a debug macinfo section.
Jim Laskey65195462006-10-30 13:35:07 +00002764 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002765 void EmitDebugMacInfo() {
2766 // Start the dwarf macinfo section.
2767 Asm->SwitchToDataSection(TAI->getDwarfMacInfoSection());
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002768
Jim Laskeybacd3042007-02-21 22:48:45 +00002769 Asm->EOL();
Jim Laskeyef42a012006-11-02 20:12:39 +00002770 }
2771
Jim Laskey65195462006-10-30 13:35:07 +00002772 /// ConstructCompileUnitDIEs - Create a compile unit DIE for each source and
2773 /// header file.
Jim Laskeyef42a012006-11-02 20:12:39 +00002774 void ConstructCompileUnitDIEs() {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002775 const UniqueVector<CompileUnitDesc *> CUW = MMI->getCompileUnits();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002776
Jim Laskeyef42a012006-11-02 20:12:39 +00002777 for (unsigned i = 1, N = CUW.size(); i <= N; ++i) {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002778 unsigned ID = MMI->RecordSource(CUW[i]);
Jim Laskey9d4209f2006-11-07 19:33:46 +00002779 CompileUnit *Unit = NewCompileUnit(CUW[i], ID);
Jim Laskeyef42a012006-11-02 20:12:39 +00002780 CompileUnits.push_back(Unit);
2781 }
2782 }
2783
Jim Laskey65195462006-10-30 13:35:07 +00002784 /// ConstructGlobalDIEs - Create DIEs for each of the externally visible
2785 /// global variables.
Jim Laskeyef42a012006-11-02 20:12:39 +00002786 void ConstructGlobalDIEs() {
Bill Wendlingc04f4652008-07-03 23:13:02 +00002787 std::vector<GlobalVariableDesc *> GlobalVariables;
2788 MMI->getAnchoredDescriptors<GlobalVariableDesc>(*M, GlobalVariables);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002789
Bill Wendling10fff602008-07-03 22:53:42 +00002790 for (unsigned i = 0, N = GlobalVariables.size(); i < N; ++i) {
2791 GlobalVariableDesc *GVD = GlobalVariables[i];
2792 NewGlobalVariable(GVD);
2793 }
Jim Laskeyef42a012006-11-02 20:12:39 +00002794 }
Jim Laskey65195462006-10-30 13:35:07 +00002795
2796 /// ConstructSubprogramDIEs - Create DIEs for each of the externally visible
2797 /// subprograms.
Jim Laskeyef42a012006-11-02 20:12:39 +00002798 void ConstructSubprogramDIEs() {
Bill Wendlingc04f4652008-07-03 23:13:02 +00002799 std::vector<SubprogramDesc *> Subprograms;
2800 MMI->getAnchoredDescriptors<SubprogramDesc>(*M, Subprograms);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002801
Bill Wendling10fff602008-07-03 22:53:42 +00002802 for (unsigned i = 0, N = Subprograms.size(); i < N; ++i) {
2803 SubprogramDesc *SPD = Subprograms[i];
2804 NewSubprogram(SPD);
2805 }
Jim Laskeyef42a012006-11-02 20:12:39 +00002806 }
Jim Laskey65195462006-10-30 13:35:07 +00002807
Jim Laskey65195462006-10-30 13:35:07 +00002808public:
Jim Laskeyef42a012006-11-02 20:12:39 +00002809 //===--------------------------------------------------------------------===//
2810 // Main entry points.
2811 //
Owen Andersoncb371882008-08-21 00:14:44 +00002812 DwarfDebug(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
Chris Lattner9251f132007-09-24 03:35:37 +00002813 : Dwarf(OS, A, T, "dbg")
Jim Laskeyef42a012006-11-02 20:12:39 +00002814 , CompileUnits()
2815 , AbbreviationsSet(InitAbbreviationsSetSize)
2816 , Abbreviations()
2817 , ValuesSet(InitValuesSetSize)
2818 , Values()
2819 , StringPool()
2820 , DescToUnitMap()
2821 , SectionMap()
2822 , SectionSourceLines()
Jim Laskeybacd3042007-02-21 22:48:45 +00002823 , didInitial(false)
2824 , shouldEmit(false)
Jim Laskeyef42a012006-11-02 20:12:39 +00002825 {
2826 }
Jim Laskey072200c2007-01-29 18:51:14 +00002827 virtual ~DwarfDebug() {
Jim Laskeyef42a012006-11-02 20:12:39 +00002828 for (unsigned i = 0, N = CompileUnits.size(); i < N; ++i)
2829 delete CompileUnits[i];
2830 for (unsigned j = 0, M = Values.size(); j < M; ++j)
2831 delete Values[j];
2832 }
2833
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002834 /// SetModuleInfo - Set machine module information when it's known that pass
2835 /// manager has created it. Set by the target AsmPrinter.
2836 void SetModuleInfo(MachineModuleInfo *mmi) {
Jim Laskeyef42a012006-11-02 20:12:39 +00002837 // Make sure initial declarations are made.
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002838 if (!MMI && mmi->hasDebugInfo()) {
2839 MMI = mmi;
Jim Laskeyef42a012006-11-02 20:12:39 +00002840 shouldEmit = true;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002841
Jim Laskeyef42a012006-11-02 20:12:39 +00002842 // Create all the compile unit DIEs.
2843 ConstructCompileUnitDIEs();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002844
Jim Laskeyef42a012006-11-02 20:12:39 +00002845 // Create DIEs for each of the externally visible global variables.
2846 ConstructGlobalDIEs();
Jim Laskey65195462006-10-30 13:35:07 +00002847
Jim Laskeyef42a012006-11-02 20:12:39 +00002848 // Create DIEs for each of the externally visible subprograms.
2849 ConstructSubprogramDIEs();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002850
Jim Laskeyef42a012006-11-02 20:12:39 +00002851 // Prime section data.
Jim Laskeyf910a3f2006-11-06 16:23:59 +00002852 SectionMap.insert(TAI->getTextSection());
Dan Gohmand57c3882007-10-01 22:40:20 +00002853
2854 // Print out .file directives to specify files for .loc directives. These
2855 // are printed out early so that they precede any .loc directives.
2856 if (TAI->hasDotLocAndDotFile()) {
2857 const UniqueVector<SourceFileInfo> &SourceFiles = MMI->getSourceFiles();
2858 const UniqueVector<std::string> &Directories = MMI->getDirectories();
2859 for (unsigned i = 1, e = SourceFiles.size(); i <= e; ++i) {
2860 sys::Path FullPath(Directories[SourceFiles[i].getDirectoryID()]);
2861 bool AppendOk = FullPath.appendComponent(SourceFiles[i].getName());
2862 assert(AppendOk && "Could not append filename to directory!");
Devang Pateld0935c32008-12-23 21:55:38 +00002863 AppendOk = false;
Dan Gohmand57c3882007-10-01 22:40:20 +00002864 Asm->EmitFile(i, FullPath.toString());
2865 Asm->EOL();
2866 }
2867 }
2868
2869 // Emit initial sections
2870 EmitInitial();
Jim Laskeyef42a012006-11-02 20:12:39 +00002871 }
2872 }
2873
Jim Laskey65195462006-10-30 13:35:07 +00002874 /// BeginModule - Emit all Dwarf sections that should come prior to the
2875 /// content.
Jim Laskeyef42a012006-11-02 20:12:39 +00002876 void BeginModule(Module *M) {
2877 this->M = M;
Jim Laskeyef42a012006-11-02 20:12:39 +00002878 }
2879
Jim Laskey65195462006-10-30 13:35:07 +00002880 /// EndModule - Emit all Dwarf sections that should come after the content.
2881 ///
Jim Laskeyef42a012006-11-02 20:12:39 +00002882 void EndModule() {
2883 if (!ShouldEmitDwarf()) return;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002884
Jim Laskeyef42a012006-11-02 20:12:39 +00002885 // Standard sections final addresses.
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +00002886 Asm->SwitchToSection(TAI->getTextSection());
Jim Laskeyef42a012006-11-02 20:12:39 +00002887 EmitLabel("text_end", 0);
Anton Korobeynikov315690e2008-09-24 22:16:16 +00002888 Asm->SwitchToSection(TAI->getDataSection());
Jim Laskeyef42a012006-11-02 20:12:39 +00002889 EmitLabel("data_end", 0);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002890
Jim Laskeyef42a012006-11-02 20:12:39 +00002891 // End text sections.
2892 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +00002893 Asm->SwitchToSection(SectionMap[i]);
Jim Laskeyef42a012006-11-02 20:12:39 +00002894 EmitLabel("section_end", i);
2895 }
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002896
2897 // Emit common frame information.
2898 EmitCommonDebugFrame();
2899
2900 // Emit function debug frame information
2901 for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(),
2902 E = DebugFrames.end(); I != E; ++I)
2903 EmitFunctionDebugFrame(*I);
2904
Jim Laskeyef42a012006-11-02 20:12:39 +00002905 // Compute DIE offsets and sizes.
2906 SizeAndOffsets();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002907
Jim Laskeyef42a012006-11-02 20:12:39 +00002908 // Emit all the DIEs into a debug info section
2909 EmitDebugInfo();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002910
Jim Laskeyef42a012006-11-02 20:12:39 +00002911 // Corresponding abbreviations into a abbrev section.
2912 EmitAbbreviations();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002913
Jim Laskeyef42a012006-11-02 20:12:39 +00002914 // Emit source line correspondence into a debug line section.
2915 EmitDebugLines();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002916
Jim Laskeyef42a012006-11-02 20:12:39 +00002917 // Emit info into a debug pubnames section.
2918 EmitDebugPubNames();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002919
Jim Laskeyef42a012006-11-02 20:12:39 +00002920 // Emit info into a debug str section.
2921 EmitDebugStr();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002922
Jim Laskeyef42a012006-11-02 20:12:39 +00002923 // Emit info into a debug loc section.
2924 EmitDebugLoc();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002925
Jim Laskeyef42a012006-11-02 20:12:39 +00002926 // Emit info into a debug aranges section.
2927 EmitDebugARanges();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002928
Jim Laskeyef42a012006-11-02 20:12:39 +00002929 // Emit info into a debug ranges section.
2930 EmitDebugRanges();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002931
Jim Laskeyef42a012006-11-02 20:12:39 +00002932 // Emit info into a debug macinfo section.
2933 EmitDebugMacInfo();
2934 }
2935
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002936 /// BeginFunction - Gather pre-function debug information. Assumes being
Jim Laskey65195462006-10-30 13:35:07 +00002937 /// emitted immediately after the function entry point.
Jim Laskeyef42a012006-11-02 20:12:39 +00002938 void BeginFunction(MachineFunction *MF) {
2939 this->MF = MF;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002940
Jim Laskeyef42a012006-11-02 20:12:39 +00002941 if (!ShouldEmitDwarf()) return;
Jim Laskeyef42a012006-11-02 20:12:39 +00002942
2943 // Begin accumulating function debug information.
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002944 MMI->BeginFunction(MF);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002945
Jim Laskeyef42a012006-11-02 20:12:39 +00002946 // Assumes in correct section after the entry point.
2947 EmitLabel("func_begin", ++SubprogramCount);
Evan Cheng1b08bbc2008-02-01 09:10:45 +00002948
2949 // Emit label for the implicitly defined dbg.stoppoint at the start of
2950 // the function.
Andrew Lenharth51dd8c92008-04-03 17:37:43 +00002951 const std::vector<SourceLineInfo> &LineInfos = MMI->getSourceLines();
2952 if (!LineInfos.empty()) {
2953 const SourceLineInfo &LineInfo = LineInfos[0];
2954 Asm->printLabel(LineInfo.getLabelID());
2955 }
Jim Laskeyef42a012006-11-02 20:12:39 +00002956 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002957
Jim Laskey65195462006-10-30 13:35:07 +00002958 /// EndFunction - Gather and emit post-function debug information.
2959 ///
Bill Wendlingd751c642008-09-26 00:28:12 +00002960 void EndFunction(MachineFunction *MF) {
Jim Laskeyef42a012006-11-02 20:12:39 +00002961 if (!ShouldEmitDwarf()) return;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002962
Jim Laskeyb82313f2007-02-01 16:31:34 +00002963 // Define end label for subprogram.
2964 EmitLabel("func_end", SubprogramCount);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002965
Jim Laskeyef42a012006-11-02 20:12:39 +00002966 // Get function line info.
Jim Laskey44c3b9f2007-01-26 21:22:28 +00002967 const std::vector<SourceLineInfo> &LineInfos = MMI->getSourceLines();
Jim Laskeyef42a012006-11-02 20:12:39 +00002968
2969 if (!LineInfos.empty()) {
2970 // Get section line info.
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +00002971 unsigned ID = SectionMap.insert(Asm->CurrentSection_);
Jim Laskeyef42a012006-11-02 20:12:39 +00002972 if (SectionSourceLines.size() < ID) SectionSourceLines.resize(ID);
2973 std::vector<SourceLineInfo> &SectionLineInfos = SectionSourceLines[ID-1];
2974 // Append the function info to section info.
2975 SectionLineInfos.insert(SectionLineInfos.end(),
2976 LineInfos.begin(), LineInfos.end());
2977 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002978
Jim Laskeyef42a012006-11-02 20:12:39 +00002979 // Construct scopes for subprogram.
Bill Wendlingd751c642008-09-26 00:28:12 +00002980 if (MMI->getRootScope())
2981 ConstructRootScope(MMI->getRootScope());
2982 else
2983 // FIXME: This is wrong. We are essentially getting past a problem with
2984 // debug information not being able to handle unreachable blocks that have
2985 // debug information in them. In particular, those unreachable blocks that
2986 // have "region end" info in them. That situation results in the "root
2987 // scope" not being created. If that's the case, then emit a "default"
2988 // scope, i.e., one that encompasses the whole function. This isn't
2989 // desirable. And a better way of handling this (and all of the debugging
2990 // information) needs to be explored.
2991 ConstructDefaultScope(MF);
Anton Korobeynikov185bc892007-05-13 17:30:11 +00002992
2993 DebugFrames.push_back(FunctionDebugFrameInfo(SubprogramCount,
2994 MMI->getFrameMoves()));
Jim Laskeyef42a012006-11-02 20:12:39 +00002995 }
Jim Laskey65195462006-10-30 13:35:07 +00002996};
2997
Jim Laskey072200c2007-01-29 18:51:14 +00002998//===----------------------------------------------------------------------===//
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00002999/// DwarfException - Emits Dwarf exception handling directives.
Jim Laskey072200c2007-01-29 18:51:14 +00003000///
3001class DwarfException : public Dwarf {
3002
Jim Laskeyb82313f2007-02-01 16:31:34 +00003003private:
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003004 struct FunctionEHFrameInfo {
3005 std::string FnName;
3006 unsigned Number;
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003007 unsigned PersonalityIndex;
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003008 bool hasCalls;
3009 bool hasLandingPads;
3010 std::vector<MachineMove> Moves;
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003011 const Function * function;
Jim Laskeyb82313f2007-02-01 16:31:34 +00003012
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003013 FunctionEHFrameInfo(const std::string &FN, unsigned Num, unsigned P,
3014 bool hC, bool hL,
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00003015 const std::vector<MachineMove> &M,
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003016 const Function *f):
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003017 FnName(FN), Number(Num), PersonalityIndex(P),
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003018 hasCalls(hC), hasLandingPads(hL), Moves(M), function (f) { }
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003019 };
3020
3021 std::vector<FunctionEHFrameInfo> EHFrames;
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003022
3023 /// shouldEmitTable - Per-function flag to indicate if EH tables should
3024 /// be emitted.
3025 bool shouldEmitTable;
3026
3027 /// shouldEmitMoves - Per-function flag to indicate if frame moves info
3028 /// should be emitted.
3029 bool shouldEmitMoves;
3030
3031 /// shouldEmitTableModule - Per-module flag to indicate if EH tables
3032 /// should be emitted.
3033 bool shouldEmitTableModule;
3034
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003035 /// shouldEmitFrameModule - Per-module flag to indicate if frame moves
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003036 /// should be emitted.
3037 bool shouldEmitMovesModule;
Duncan Sands671fa972008-05-07 19:11:09 +00003038
Jim Laskey3f09fc22007-02-28 18:38:31 +00003039 /// EmitCommonEHFrame - Emit the common eh unwind frame.
3040 ///
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003041 void EmitCommonEHFrame(const Function *Personality, unsigned Index) {
Jim Laskeybacd3042007-02-21 22:48:45 +00003042 // Size and sign of stack growth.
Jim Laskeyb82313f2007-02-01 16:31:34 +00003043 int stackGrowth =
3044 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
3045 TargetFrameInfo::StackGrowsUp ?
Dan Gohman82482942007-09-27 23:12:31 +00003046 TD->getPointerSize() : -TD->getPointerSize();
Jim Laskeyb82313f2007-02-01 16:31:34 +00003047
Jim Laskeybacd3042007-02-21 22:48:45 +00003048 // Begin eh frame section.
Jim Laskeyb82313f2007-02-01 16:31:34 +00003049 Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
Bill Wendling722f5f12008-12-24 08:05:17 +00003050
3051 if (!TAI->doesRequireNonLocalEHFrameLabel())
3052 O << TAI->getEHGlobalPrefix();
3053 O << "EH_frame" << Index << ":\n";
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003054 EmitLabel("section_eh_frame", Index);
Jim Laskeyb82313f2007-02-01 16:31:34 +00003055
Jim Laskeybacd3042007-02-21 22:48:45 +00003056 // Define base labels.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003057 EmitLabel("eh_frame_common", Index);
Duncan Sands671fa972008-05-07 19:11:09 +00003058
Jim Laskeybacd3042007-02-21 22:48:45 +00003059 // Define the eh frame length.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003060 EmitDifference("eh_frame_common_end", Index,
3061 "eh_frame_common_begin", Index, true);
Jim Laskeyb82313f2007-02-01 16:31:34 +00003062 Asm->EOL("Length of Common Information Entry");
3063
Jim Laskeybacd3042007-02-21 22:48:45 +00003064 // EH frame header.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003065 EmitLabel("eh_frame_common_begin", Index);
Jim Laskeyb82313f2007-02-01 16:31:34 +00003066 Asm->EmitInt32((int)0);
3067 Asm->EOL("CIE Identifier Tag");
3068 Asm->EmitInt8(DW_CIE_VERSION);
3069 Asm->EOL("CIE Version");
Duncan Sands671fa972008-05-07 19:11:09 +00003070
Jim Laskeybacd3042007-02-21 22:48:45 +00003071 // The personality presence indicates that language specific information
3072 // will show up in the eh frame.
3073 Asm->EmitString(Personality ? "zPLR" : "zR");
Jim Laskeyb82313f2007-02-01 16:31:34 +00003074 Asm->EOL("CIE Augmentation");
Duncan Sands671fa972008-05-07 19:11:09 +00003075
Jim Laskeybacd3042007-02-21 22:48:45 +00003076 // Round out reader.
Jim Laskeyb82313f2007-02-01 16:31:34 +00003077 Asm->EmitULEB128Bytes(1);
3078 Asm->EOL("CIE Code Alignment Factor");
3079 Asm->EmitSLEB128Bytes(stackGrowth);
Duncan Sands671fa972008-05-07 19:11:09 +00003080 Asm->EOL("CIE Data Alignment Factor");
Dale Johannesenb97aec62007-11-13 19:13:01 +00003081 Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), true));
Duncan Sands671fa972008-05-07 19:11:09 +00003082 Asm->EOL("CIE Return Address Column");
3083
Jim Laskeybacd3042007-02-21 22:48:45 +00003084 // If there is a personality, we need to indicate the functions location.
3085 if (Personality) {
3086 Asm->EmitULEB128Bytes(7);
3087 Asm->EOL("Augmentation Size");
Bill Wendlingef4a6612007-09-11 17:20:55 +00003088
Duncan Sands671fa972008-05-07 19:11:09 +00003089 if (TAI->getNeedsIndirectEncoding()) {
Bill Wendlingef4a6612007-09-11 17:20:55 +00003090 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4 | DW_EH_PE_indirect);
Duncan Sands671fa972008-05-07 19:11:09 +00003091 Asm->EOL("Personality (pcrel sdata4 indirect)");
3092 } else {
Bill Wendlingef4a6612007-09-11 17:20:55 +00003093 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
Duncan Sands671fa972008-05-07 19:11:09 +00003094 Asm->EOL("Personality (pcrel sdata4)");
3095 }
Bill Wendlingef4a6612007-09-11 17:20:55 +00003096
Duncan Sands671fa972008-05-07 19:11:09 +00003097 PrintRelDirective(true);
Bill Wendlingd60da492007-09-11 08:27:17 +00003098 O << TAI->getPersonalityPrefix();
3099 Asm->EmitExternalGlobal((const GlobalVariable *)(Personality));
3100 O << TAI->getPersonalitySuffix();
Duncan Sands43b30a82008-05-08 12:33:11 +00003101 if (strcmp(TAI->getPersonalitySuffix(), "+4@GOTPCREL"))
3102 O << "-" << TAI->getPCSymbol();
Bill Wendlingd60da492007-09-11 08:27:17 +00003103 Asm->EOL("Personality");
Bill Wendlingcf4bb312007-08-25 00:51:55 +00003104
Duncan Sands671fa972008-05-07 19:11:09 +00003105 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
3106 Asm->EOL("LSDA Encoding (pcrel sdata4)");
Bill Wendlingd4121be2008-12-24 05:25:49 +00003107
3108 if (TAI->doesFDEEncodingRequireSData4()) {
3109 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
3110 Asm->EOL("FDE Encoding (pcrel sdata4)");
3111 } else {
3112 Asm->EmitInt8(DW_EH_PE_pcrel);
3113 Asm->EOL("FDE Encoding (pcrel)");
3114 }
Jim Laskeybacd3042007-02-21 22:48:45 +00003115 } else {
3116 Asm->EmitULEB128Bytes(1);
3117 Asm->EOL("Augmentation Size");
Bill Wendlingd4121be2008-12-24 05:25:49 +00003118
3119 if (TAI->doesFDEEncodingRequireSData4()) {
3120 Asm->EmitInt8(DW_EH_PE_pcrel | DW_EH_PE_sdata4);
3121 Asm->EOL("FDE Encoding (pcrel sdata4)");
3122 } else {
3123 Asm->EmitInt8(DW_EH_PE_pcrel);
3124 Asm->EOL("FDE Encoding (pcrel)");
3125 }
Jim Laskeybacd3042007-02-21 22:48:45 +00003126 }
3127
3128 // Indicate locations of general callee saved registers in frame.
Jim Laskeyb82313f2007-02-01 16:31:34 +00003129 std::vector<MachineMove> Moves;
3130 RI->getInitialFrameState(Moves);
Dale Johannesenb97aec62007-11-13 19:13:01 +00003131 EmitFrameMoves(NULL, 0, Moves, true);
Jim Laskeyb82313f2007-02-01 16:31:34 +00003132
Dale Johannesen21d972a2008-04-30 00:43:29 +00003133 // On Darwin the linker honors the alignment of eh_frame, which means it
3134 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise
3135 // you get holes which confuse readers of eh_frame.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003136 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
Dale Johannesen7b251e02008-04-29 22:58:20 +00003137 0, 0, false);
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003138 EmitLabel("eh_frame_common_end", Index);
Duncan Sands671fa972008-05-07 19:11:09 +00003139
Jim Laskeybacd3042007-02-21 22:48:45 +00003140 Asm->EOL();
Jim Laskeyb82313f2007-02-01 16:31:34 +00003141 }
Duncan Sands671fa972008-05-07 19:11:09 +00003142
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003143 /// EmitEHFrame - Emit function exception frame information.
Jim Laskeyb82313f2007-02-01 16:31:34 +00003144 ///
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003145 void EmitEHFrame(const FunctionEHFrameInfo &EHFrameInfo) {
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003146 Function::LinkageTypes linkage = EHFrameInfo.function->getLinkage();
3147
Jim Laskeybacd3042007-02-21 22:48:45 +00003148 Asm->SwitchToTextSection(TAI->getDwarfEHFrameSection());
3149
3150 // Externally visible entry into the functions eh frame info.
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00003151 // If the corresponding function is static, this should not be
3152 // externally visible.
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003153 if (linkage != Function::InternalLinkage) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00003154 if (const char *GlobalEHDirective = TAI->getGlobalEHDirective())
3155 O << GlobalEHDirective << EHFrameInfo.FnName << "\n";
3156 }
3157
Dale Johannesen038129d2008-01-10 02:03:30 +00003158 // If corresponding function is weak definition, this should be too.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003159 if ((linkage == Function::WeakLinkage ||
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003160 linkage == Function::LinkOnceLinkage) &&
Dale Johannesen038129d2008-01-10 02:03:30 +00003161 TAI->getWeakDefDirective())
3162 O << TAI->getWeakDefDirective() << EHFrameInfo.FnName << "\n";
3163
3164 // If there are no calls then you can't unwind. This may mean we can
3165 // omit the EH Frame, but some environments do not handle weak absolute
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003166 // symbols.
Dale Johannesen3541af72008-04-14 17:54:17 +00003167 // If UnwindTablesMandatory is set we cannot do this optimization; the
Dale Johannesen4e1b7942008-04-08 00:10:24 +00003168 // unwind info is to be available for non-EH uses.
Dale Johannesen038129d2008-01-10 02:03:30 +00003169 if (!EHFrameInfo.hasCalls &&
Dale Johannesen3541af72008-04-14 17:54:17 +00003170 !UnwindTablesMandatory &&
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003171 ((linkage != Function::WeakLinkage &&
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003172 linkage != Function::LinkOnceLinkage) ||
Dale Johannesen038129d2008-01-10 02:03:30 +00003173 !TAI->getWeakDefDirective() ||
3174 TAI->getSupportsWeakOmittedEHFrame()))
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003175 {
Bill Wendling6e198962007-09-18 01:47:22 +00003176 O << EHFrameInfo.FnName << " = 0\n";
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003177 // This name has no connection to the function, so it might get
3178 // dead-stripped when the function is not, erroneously. Prohibit
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003179 // dead-stripping unconditionally.
3180 if (const char *UsedDirective = TAI->getUsedDirective())
3181 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
Jim Laskeybacd3042007-02-21 22:48:45 +00003182 } else {
Bill Wendling6e198962007-09-18 01:47:22 +00003183 O << EHFrameInfo.FnName << ":\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00003184
Jim Laskeybacd3042007-02-21 22:48:45 +00003185 // EH frame header.
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003186 EmitDifference("eh_frame_end", EHFrameInfo.Number,
3187 "eh_frame_begin", EHFrameInfo.Number, true);
Jim Laskeybacd3042007-02-21 22:48:45 +00003188 Asm->EOL("Length of Frame Information Entry");
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003189
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003190 EmitLabel("eh_frame_begin", EHFrameInfo.Number);
Anton Korobeynikova6199c82007-03-07 02:47:57 +00003191
Bill Wendling722f5f12008-12-24 08:05:17 +00003192 if (TAI->doesRequireNonLocalEHFrameLabel()) {
3193 PrintRelDirective(true, true);
3194 PrintLabelName("eh_frame_begin", EHFrameInfo.Number);
3195
3196 if (!TAI->isAbsoluteEHSectionOffsets())
3197 O << "-EH_frame" << EHFrameInfo.PersonalityIndex;
3198 } else {
3199 EmitSectionOffset("eh_frame_begin", "eh_frame_common",
3200 EHFrameInfo.Number, EHFrameInfo.PersonalityIndex,
3201 true, true, false);
3202 }
3203
Jim Laskeybacd3042007-02-21 22:48:45 +00003204 Asm->EOL("FDE CIE offset");
3205
Bill Wendling998dee92008-12-29 22:12:11 +00003206 EmitReference("eh_func_begin", EHFrameInfo.Number, true,
3207 TAI->doesRequire32BitFDEReference());
Jim Laskeybacd3042007-02-21 22:48:45 +00003208 Asm->EOL("FDE initial location");
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003209 EmitDifference("eh_func_end", EHFrameInfo.Number,
Bill Wendling998dee92008-12-29 22:12:11 +00003210 "eh_func_begin", EHFrameInfo.Number,
3211 TAI->doesRequire32BitFDEReference());
Jim Laskeybacd3042007-02-21 22:48:45 +00003212 Asm->EOL("FDE address range");
Duncan Sands671fa972008-05-07 19:11:09 +00003213
Jim Laskey3f09fc22007-02-28 18:38:31 +00003214 // If there is a personality and landing pads then point to the language
3215 // specific data area in the exception table.
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003216 if (EHFrameInfo.PersonalityIndex) {
Duncan Sands671fa972008-05-07 19:11:09 +00003217 Asm->EmitULEB128Bytes(4);
Jim Laskeybacd3042007-02-21 22:48:45 +00003218 Asm->EOL("Augmentation size");
Duncan Sands671fa972008-05-07 19:11:09 +00003219
3220 if (EHFrameInfo.hasLandingPads)
3221 EmitReference("exception", EHFrameInfo.Number, true, true);
3222 else
Jim Laskey3f09fc22007-02-28 18:38:31 +00003223 Asm->EmitInt32((int)0);
Jim Laskeybacd3042007-02-21 22:48:45 +00003224 Asm->EOL("Language Specific Data Area");
3225 } else {
3226 Asm->EmitULEB128Bytes(0);
3227 Asm->EOL("Augmentation size");
3228 }
Duncan Sands671fa972008-05-07 19:11:09 +00003229
Jim Laskeybacd3042007-02-21 22:48:45 +00003230 // Indicate locations of function specific callee saved registers in
3231 // frame.
Dale Johannesenb97aec62007-11-13 19:13:01 +00003232 EmitFrameMoves("eh_func_begin", EHFrameInfo.Number, EHFrameInfo.Moves, true);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003233
Dale Johannesen21d972a2008-04-30 00:43:29 +00003234 // On Darwin the linker honors the alignment of eh_frame, which means it
3235 // must be 8-byte on 64-bit targets to match what gcc does. Otherwise
3236 // you get holes which confuse readers of eh_frame.
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003237 Asm->EmitAlignment(TD->getPointerSize() == sizeof(int32_t) ? 2 : 3,
Dale Johannesen7b251e02008-04-29 22:58:20 +00003238 0, 0, false);
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003239 EmitLabel("eh_frame_end", EHFrameInfo.Number);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003240
3241 // If the function is marked used, this table should be also. We cannot
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003242 // make the mark unconditional in this case, since retaining the table
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003243 // also retains the function in this case, and there is code around
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003244 // that depends on unused functions (calling undefined externals) being
3245 // dead-stripped to link correctly. Yes, there really is.
3246 if (MMI->getUsedFunctions().count(EHFrameInfo.function))
3247 if (const char *UsedDirective = TAI->getUsedDirective())
3248 O << UsedDirective << EHFrameInfo.FnName << "\n\n";
3249 }
Jim Laskeybacd3042007-02-21 22:48:45 +00003250 }
Duncan Sands7bf7a442007-05-21 18:50:28 +00003251
Duncan Sands57810cd2007-09-05 11:27:52 +00003252 /// EmitExceptionTable - Emit landing pads and actions.
Duncan Sandsfccf0a22007-07-06 12:46:24 +00003253 ///
3254 /// The general organization of the table is complex, but the basic concepts
3255 /// are easy. First there is a header which describes the location and
3256 /// organization of the three components that follow.
3257 /// 1. The landing pad site information describes the range of code covered
3258 /// by the try. In our case it's an accumulation of the ranges covered
3259 /// by the invokes in the try. There is also a reference to the landing
3260 /// pad that handles the exception once processed. Finally an index into
3261 /// the actions table.
3262 /// 2. The action table, in our case, is composed of pairs of type ids
3263 /// and next action offset. Starting with the action index from the
3264 /// landing pad site, each type Id is checked for a match to the current
3265 /// exception. If it matches then the exception and type id are passed
3266 /// on to the landing pad. Otherwise the next action is looked up. This
3267 /// chain is terminated with a next action of zero. If no type id is
3268 /// found the the frame is unwound and handling continues.
3269 /// 3. Type id table contains references to all the C++ typeinfo for all
3270 /// catches in the function. This tables is reversed indexed base 1.
3271
Duncan Sandsb32edb42007-06-06 15:37:31 +00003272 /// SharedTypeIds - How many leading type ids two landing pads have in common.
3273 static unsigned SharedTypeIds(const LandingPadInfo *L,
3274 const LandingPadInfo *R) {
3275 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003276 unsigned LSize = LIds.size(), RSize = RIds.size();
Duncan Sandsb32edb42007-06-06 15:37:31 +00003277 unsigned MinSize = LSize < RSize ? LSize : RSize;
3278 unsigned Count = 0;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003279
Duncan Sandsb32edb42007-06-06 15:37:31 +00003280 for (; Count != MinSize; ++Count)
3281 if (LIds[Count] != RIds[Count])
3282 return Count;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003283
Duncan Sandsb32edb42007-06-06 15:37:31 +00003284 return Count;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003285 }
3286
Duncan Sandsb32edb42007-06-06 15:37:31 +00003287 /// PadLT - Order landing pads lexicographically by type id.
Duncan Sands7bf7a442007-05-21 18:50:28 +00003288 static bool PadLT(const LandingPadInfo *L, const LandingPadInfo *R) {
Duncan Sandsb32edb42007-06-06 15:37:31 +00003289 const std::vector<int> &LIds = L->TypeIds, &RIds = R->TypeIds;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003290 unsigned LSize = LIds.size(), RSize = RIds.size();
Duncan Sandsb32edb42007-06-06 15:37:31 +00003291 unsigned MinSize = LSize < RSize ? LSize : RSize;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003292
Duncan Sandsb32edb42007-06-06 15:37:31 +00003293 for (unsigned i = 0; i != MinSize; ++i)
Duncan Sands7bf7a442007-05-21 18:50:28 +00003294 if (LIds[i] != RIds[i])
3295 return LIds[i] < RIds[i];
3296
Duncan Sandsb32edb42007-06-06 15:37:31 +00003297 return LSize < RSize;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003298 }
3299
Duncan Sands53c3a332007-05-16 12:12:23 +00003300 struct KeyInfo {
3301 static inline unsigned getEmptyKey() { return -1U; }
3302 static inline unsigned getTombstoneKey() { return -2U; }
3303 static unsigned getHashValue(const unsigned &Key) { return Key; }
Chris Lattner76c1b972007-09-17 18:34:04 +00003304 static bool isEqual(unsigned LHS, unsigned RHS) { return LHS == RHS; }
Duncan Sands53c3a332007-05-16 12:12:23 +00003305 static bool isPod() { return true; }
3306 };
3307
Duncan Sands57810cd2007-09-05 11:27:52 +00003308 /// ActionEntry - Structure describing an entry in the actions table.
Duncan Sandsb32edb42007-06-06 15:37:31 +00003309 struct ActionEntry {
Duncan Sandsfccf0a22007-07-06 12:46:24 +00003310 int ValueForTypeID; // The value to write - may not be equal to the type id.
Duncan Sandsb32edb42007-06-06 15:37:31 +00003311 int NextAction;
3312 struct ActionEntry *Previous;
3313 };
3314
Duncan Sands57810cd2007-09-05 11:27:52 +00003315 /// PadRange - Structure holding a try-range and the associated landing pad.
3316 struct PadRange {
3317 // The index of the landing pad.
3318 unsigned PadIndex;
3319 // The index of the begin and end labels in the landing pad's label lists.
3320 unsigned RangeIndex;
3321 };
3322
3323 typedef DenseMap<unsigned, PadRange, KeyInfo> RangeMapType;
3324
3325 /// CallSiteEntry - Structure describing an entry in the call-site table.
3326 struct CallSiteEntry {
Duncan Sands481dc722007-12-19 07:36:31 +00003327 // The 'try-range' is BeginLabel .. EndLabel.
Duncan Sands57810cd2007-09-05 11:27:52 +00003328 unsigned BeginLabel; // zero indicates the start of the function.
3329 unsigned EndLabel; // zero indicates the end of the function.
Duncan Sands481dc722007-12-19 07:36:31 +00003330 // The landing pad starts at PadLabel.
Duncan Sands57810cd2007-09-05 11:27:52 +00003331 unsigned PadLabel; // zero indicates that there is no landing pad.
3332 unsigned Action;
3333 };
3334
Jim Laskeybacd3042007-02-21 22:48:45 +00003335 void EmitExceptionTable() {
Jim Laskeybacd3042007-02-21 22:48:45 +00003336 const std::vector<GlobalVariable *> &TypeInfos = MMI->getTypeInfos();
Duncan Sands73ef58a2007-06-02 16:53:42 +00003337 const std::vector<unsigned> &FilterIds = MMI->getFilterIds();
Duncan Sands7bf7a442007-05-21 18:50:28 +00003338 const std::vector<LandingPadInfo> &PadInfos = MMI->getLandingPads();
3339 if (PadInfos.empty()) return;
3340
3341 // Sort the landing pads in order of their type ids. This is used to fold
3342 // duplicate actions.
Duncan Sands6cc76082007-06-08 08:59:11 +00003343 SmallVector<const LandingPadInfo *, 64> LandingPads;
Duncan Sands6cc76082007-06-08 08:59:11 +00003344 LandingPads.reserve(PadInfos.size());
Duncan Sands7bf7a442007-05-21 18:50:28 +00003345 for (unsigned i = 0, N = PadInfos.size(); i != N; ++i)
Duncan Sands6cc76082007-06-08 08:59:11 +00003346 LandingPads.push_back(&PadInfos[i]);
Duncan Sands7bf7a442007-05-21 18:50:28 +00003347 std::sort(LandingPads.begin(), LandingPads.end(), PadLT);
3348
Duncan Sandsfccf0a22007-07-06 12:46:24 +00003349 // Negative type ids index into FilterIds, positive type ids index into
3350 // TypeInfos. The value written for a positive type id is just the type
3351 // id itself. For a negative type id, however, the value written is the
3352 // (negative) byte offset of the corresponding FilterIds entry. The byte
3353 // offset is usually equal to the type id, because the FilterIds entries
3354 // are written using a variable width encoding which outputs one byte per
3355 // entry as long as the value written is not too large, but can differ.
3356 // This kind of complication does not occur for positive type ids because
3357 // type infos are output using a fixed width encoding.
3358 // FilterOffsets[i] holds the byte offset corresponding to FilterIds[i].
3359 SmallVector<int, 16> FilterOffsets;
3360 FilterOffsets.reserve(FilterIds.size());
3361 int Offset = -1;
3362 for(std::vector<unsigned>::const_iterator I = FilterIds.begin(),
3363 E = FilterIds.end(); I != E; ++I) {
3364 FilterOffsets.push_back(Offset);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003365 Offset -= TargetAsmInfo::getULEB128Size(*I);
Duncan Sandsfccf0a22007-07-06 12:46:24 +00003366 }
3367
Duncan Sands57810cd2007-09-05 11:27:52 +00003368 // Compute the actions table and gather the first action index for each
3369 // landing pad site.
3370 SmallVector<ActionEntry, 32> Actions;
3371 SmallVector<unsigned, 64> FirstActions;
3372 FirstActions.reserve(LandingPads.size());
Jim Laskeybacd3042007-02-21 22:48:45 +00003373
Duncan Sandsb32edb42007-06-06 15:37:31 +00003374 int FirstAction = 0;
Duncan Sands57810cd2007-09-05 11:27:52 +00003375 unsigned SizeActions = 0;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003376 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
Duncan Sandsb32edb42007-06-06 15:37:31 +00003377 const LandingPadInfo *LP = LandingPads[i];
3378 const std::vector<int> &TypeIds = LP->TypeIds;
3379 const unsigned NumShared = i ? SharedTypeIds(LP, LandingPads[i-1]) : 0;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003380 unsigned SizeSiteActions = 0;
3381
Duncan Sandsb32edb42007-06-06 15:37:31 +00003382 if (NumShared < TypeIds.size()) {
Duncan Sands7bf7a442007-05-21 18:50:28 +00003383 unsigned SizeAction = 0;
Duncan Sandsb32edb42007-06-06 15:37:31 +00003384 ActionEntry *PrevAction = 0;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003385
Duncan Sandsb32edb42007-06-06 15:37:31 +00003386 if (NumShared) {
3387 const unsigned SizePrevIds = LandingPads[i-1]->TypeIds.size();
3388 assert(Actions.size());
3389 PrevAction = &Actions.back();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003390 SizeAction = TargetAsmInfo::getSLEB128Size(PrevAction->NextAction) +
3391 TargetAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Duncan Sandsb32edb42007-06-06 15:37:31 +00003392 for (unsigned j = NumShared; j != SizePrevIds; ++j) {
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003393 SizeAction -=
3394 TargetAsmInfo::getSLEB128Size(PrevAction->ValueForTypeID);
Duncan Sandsb32edb42007-06-06 15:37:31 +00003395 SizeAction += -PrevAction->NextAction;
3396 PrevAction = PrevAction->Previous;
Duncan Sands7bf7a442007-05-21 18:50:28 +00003397 }
Anton Korobeynikoveeb37e02007-05-10 22:34:59 +00003398 }
Duncan Sands7bf7a442007-05-21 18:50:28 +00003399
Duncan Sandsb32edb42007-06-06 15:37:31 +00003400 // Compute the actions.
3401 for (unsigned I = NumShared, M = TypeIds.size(); I != M; ++I) {
3402 int TypeID = TypeIds[I];
Duncan Sandsfccf0a22007-07-06 12:46:24 +00003403 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
3404 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003405 unsigned SizeTypeID = TargetAsmInfo::getSLEB128Size(ValueForTypeID);
Duncan Sandsb32edb42007-06-06 15:37:31 +00003406
3407 int NextAction = SizeAction ? -(SizeAction + SizeTypeID) : 0;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003408 SizeAction = SizeTypeID + TargetAsmInfo::getSLEB128Size(NextAction);
Duncan Sandsb32edb42007-06-06 15:37:31 +00003409 SizeSiteActions += SizeAction;
3410
Duncan Sandsfccf0a22007-07-06 12:46:24 +00003411 ActionEntry Action = {ValueForTypeID, NextAction, PrevAction};
Duncan Sandsb32edb42007-06-06 15:37:31 +00003412 Actions.push_back(Action);
3413
3414 PrevAction = &Actions.back();
3415 }
3416
3417 // Record the first action of the landing pad site.
3418 FirstAction = SizeActions + SizeSiteActions - SizeAction + 1;
3419 } // else identical - re-use previous FirstAction
3420
3421 FirstActions.push_back(FirstAction);
Duncan Sands7bf7a442007-05-21 18:50:28 +00003422
Anton Korobeynikov29c9caf2007-05-11 08:23:57 +00003423 // Compute this sites contribution to size.
Anton Korobeynikov22d5c372007-05-11 08:47:35 +00003424 SizeActions += SizeSiteActions;
Jim Laskeybacd3042007-02-21 22:48:45 +00003425 }
Duncan Sands57810cd2007-09-05 11:27:52 +00003426
Duncan Sands481dc722007-12-19 07:36:31 +00003427 // Compute the call-site table. The entry for an invoke has a try-range
3428 // containing the call, a non-zero landing pad and an appropriate action.
3429 // The entry for an ordinary call has a try-range containing the call and
3430 // zero for the landing pad and the action. Calls marked 'nounwind' have
3431 // no entry and must not be contained in the try-range of any entry - they
3432 // form gaps in the table. Entries must be ordered by try-range address.
Duncan Sands57810cd2007-09-05 11:27:52 +00003433 SmallVector<CallSiteEntry, 64> CallSites;
3434
3435 RangeMapType PadMap;
Duncan Sands481dc722007-12-19 07:36:31 +00003436 // Invokes and nounwind calls have entries in PadMap (due to being bracketed
3437 // by try-range labels when lowered). Ordinary calls do not, so appropriate
3438 // try-ranges for them need be deduced.
Duncan Sands57810cd2007-09-05 11:27:52 +00003439 for (unsigned i = 0, N = LandingPads.size(); i != N; ++i) {
3440 const LandingPadInfo *LandingPad = LandingPads[i];
Duncan Sands481dc722007-12-19 07:36:31 +00003441 for (unsigned j = 0, E = LandingPad->BeginLabels.size(); j != E; ++j) {
Duncan Sands57810cd2007-09-05 11:27:52 +00003442 unsigned BeginLabel = LandingPad->BeginLabels[j];
3443 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
3444 PadRange P = { i, j };
3445 PadMap[BeginLabel] = P;
3446 }
3447 }
3448
Duncan Sands481dc722007-12-19 07:36:31 +00003449 // The end label of the previous invoke or nounwind try-range.
Duncan Sands57810cd2007-09-05 11:27:52 +00003450 unsigned LastLabel = 0;
Duncan Sands481dc722007-12-19 07:36:31 +00003451
3452 // Whether there is a potentially throwing instruction (currently this means
3453 // an ordinary call) between the end of the previous try-range and now.
3454 bool SawPotentiallyThrowing = false;
3455
3456 // Whether the last callsite entry was for an invoke.
3457 bool PreviousIsInvoke = false;
3458
Duncan Sands481dc722007-12-19 07:36:31 +00003459 // Visit all instructions in order of address.
Duncan Sands57810cd2007-09-05 11:27:52 +00003460 for (MachineFunction::const_iterator I = MF->begin(), E = MF->end();
3461 I != E; ++I) {
3462 for (MachineBasicBlock::const_iterator MI = I->begin(), E = I->end();
3463 MI != E; ++MI) {
Dan Gohman44066042008-07-01 00:05:16 +00003464 if (!MI->isLabel()) {
Chris Lattner749c6f62008-01-07 07:27:27 +00003465 SawPotentiallyThrowing |= MI->getDesc().isCall();
Duncan Sands57810cd2007-09-05 11:27:52 +00003466 continue;
3467 }
3468
Chris Lattner9e330492007-12-30 20:50:28 +00003469 unsigned BeginLabel = MI->getOperand(0).getImm();
Duncan Sands57810cd2007-09-05 11:27:52 +00003470 assert(BeginLabel && "Invalid label!");
Duncan Sands98865042007-09-05 14:12:46 +00003471
Duncan Sands481dc722007-12-19 07:36:31 +00003472 // End of the previous try-range?
Duncan Sands98865042007-09-05 14:12:46 +00003473 if (BeginLabel == LastLabel)
Duncan Sands481dc722007-12-19 07:36:31 +00003474 SawPotentiallyThrowing = false;
Duncan Sands57810cd2007-09-05 11:27:52 +00003475
Duncan Sands481dc722007-12-19 07:36:31 +00003476 // Beginning of a new try-range?
Duncan Sands57810cd2007-09-05 11:27:52 +00003477 RangeMapType::iterator L = PadMap.find(BeginLabel);
Duncan Sands57810cd2007-09-05 11:27:52 +00003478 if (L == PadMap.end())
Duncan Sands481dc722007-12-19 07:36:31 +00003479 // Nope, it was just some random label.
Duncan Sands57810cd2007-09-05 11:27:52 +00003480 continue;
3481
3482 PadRange P = L->second;
3483 const LandingPadInfo *LandingPad = LandingPads[P.PadIndex];
3484
3485 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
3486 "Inconsistent landing pad map!");
3487
3488 // If some instruction between the previous try-range and this one may
3489 // throw, create a call-site entry with no landing pad for the region
3490 // between the try-ranges.
Duncan Sands481dc722007-12-19 07:36:31 +00003491 if (SawPotentiallyThrowing) {
Duncan Sands57810cd2007-09-05 11:27:52 +00003492 CallSiteEntry Site = {LastLabel, BeginLabel, 0, 0};
3493 CallSites.push_back(Site);
Duncan Sands481dc722007-12-19 07:36:31 +00003494 PreviousIsInvoke = false;
Duncan Sands57810cd2007-09-05 11:27:52 +00003495 }
3496
3497 LastLabel = LandingPad->EndLabels[P.RangeIndex];
Duncan Sands481dc722007-12-19 07:36:31 +00003498 assert(BeginLabel && LastLabel && "Invalid landing pad!");
Duncan Sands57810cd2007-09-05 11:27:52 +00003499
Duncan Sands481dc722007-12-19 07:36:31 +00003500 if (LandingPad->LandingPadLabel) {
3501 // This try-range is for an invoke.
3502 CallSiteEntry Site = {BeginLabel, LastLabel,
3503 LandingPad->LandingPadLabel, FirstActions[P.PadIndex]};
Duncan Sands57810cd2007-09-05 11:27:52 +00003504
Duncan Sands481dc722007-12-19 07:36:31 +00003505 // Try to merge with the previous call-site.
3506 if (PreviousIsInvoke) {
Dan Gohman719de532008-06-21 22:00:54 +00003507 CallSiteEntry &Prev = CallSites.back();
Duncan Sands481dc722007-12-19 07:36:31 +00003508 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action) {
3509 // Extend the range of the previous entry.
3510 Prev.EndLabel = Site.EndLabel;
3511 continue;
3512 }
Duncan Sands57810cd2007-09-05 11:27:52 +00003513 }
Duncan Sands57810cd2007-09-05 11:27:52 +00003514
Duncan Sands481dc722007-12-19 07:36:31 +00003515 // Otherwise, create a new call-site.
3516 CallSites.push_back(Site);
3517 PreviousIsInvoke = true;
3518 } else {
3519 // Create a gap.
3520 PreviousIsInvoke = false;
3521 }
Duncan Sands57810cd2007-09-05 11:27:52 +00003522 }
3523 }
3524 // If some instruction between the previous try-range and the end of the
3525 // function may throw, create a call-site entry with no landing pad for the
3526 // region following the try-range.
Duncan Sands481dc722007-12-19 07:36:31 +00003527 if (SawPotentiallyThrowing) {
Duncan Sands57810cd2007-09-05 11:27:52 +00003528 CallSiteEntry Site = {LastLabel, 0, 0, 0};
3529 CallSites.push_back(Site);
3530 }
3531
Jim Laskeybacd3042007-02-21 22:48:45 +00003532 // Final tallies.
Duncan Sands671fa972008-05-07 19:11:09 +00003533
3534 // Call sites.
3535 const unsigned SiteStartSize = sizeof(int32_t); // DW_EH_PE_udata4
3536 const unsigned SiteLengthSize = sizeof(int32_t); // DW_EH_PE_udata4
3537 const unsigned LandingPadSize = sizeof(int32_t); // DW_EH_PE_udata4
3538 unsigned SizeSites = CallSites.size() * (SiteStartSize +
3539 SiteLengthSize +
3540 LandingPadSize);
Duncan Sands57810cd2007-09-05 11:27:52 +00003541 for (unsigned i = 0, e = CallSites.size(); i < e; ++i)
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003542 SizeSites += TargetAsmInfo::getULEB128Size(CallSites[i].Action);
Duncan Sands57810cd2007-09-05 11:27:52 +00003543
Duncan Sands671fa972008-05-07 19:11:09 +00003544 // Type infos.
3545 const unsigned TypeInfoSize = TD->getPointerSize(); // DW_EH_PE_absptr
3546 unsigned SizeTypes = TypeInfos.size() * TypeInfoSize;
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003547
3548 unsigned TypeOffset = sizeof(int8_t) + // Call site format
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003549 TargetAsmInfo::getULEB128Size(SizeSites) + // Call-site table length
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003550 SizeSites + SizeActions + SizeTypes;
3551
3552 unsigned TotalSize = sizeof(int8_t) + // LPStart format
3553 sizeof(int8_t) + // TType format
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003554 TargetAsmInfo::getULEB128Size(TypeOffset) + // TType base offset
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003555 TypeOffset;
3556
3557 unsigned SizeAlign = (4 - TotalSize) & 3;
Duncan Sandsc1fe1662007-05-10 18:40:24 +00003558
Jim Laskeybacd3042007-02-21 22:48:45 +00003559 // Begin the exception table.
3560 Asm->SwitchToDataSection(TAI->getDwarfExceptionSection());
Evan Cheng05548eb2008-02-29 19:36:59 +00003561 Asm->EmitAlignment(2, 0, 0, false);
Dale Johannesend65b2642008-10-08 21:50:21 +00003562 O << "GCC_except_table" << SubprogramCount << ":\n";
Anton Korobeynikov0ff3ca42007-05-12 22:36:25 +00003563 for (unsigned i = 0; i != SizeAlign; ++i) {
3564 Asm->EmitInt8(0);
3565 Asm->EOL("Padding");
3566 }
Jim Laskeybacd3042007-02-21 22:48:45 +00003567 EmitLabel("exception", SubprogramCount);
Duncan Sandsc1fe1662007-05-10 18:40:24 +00003568
Jim Laskeybacd3042007-02-21 22:48:45 +00003569 // Emit the header.
3570 Asm->EmitInt8(DW_EH_PE_omit);
3571 Asm->EOL("LPStart format (DW_EH_PE_omit)");
3572 Asm->EmitInt8(DW_EH_PE_absptr);
3573 Asm->EOL("TType format (DW_EH_PE_absptr)");
3574 Asm->EmitULEB128Bytes(TypeOffset);
3575 Asm->EOL("TType base offset");
3576 Asm->EmitInt8(DW_EH_PE_udata4);
3577 Asm->EOL("Call site format (DW_EH_PE_udata4)");
3578 Asm->EmitULEB128Bytes(SizeSites);
3579 Asm->EOL("Call-site table length");
Duncan Sands53c3a332007-05-16 12:12:23 +00003580
Duncan Sands57810cd2007-09-05 11:27:52 +00003581 // Emit the landing pad site information.
3582 for (unsigned i = 0; i < CallSites.size(); ++i) {
3583 CallSiteEntry &S = CallSites[i];
3584 const char *BeginTag;
3585 unsigned BeginNumber;
Duncan Sands53c3a332007-05-16 12:12:23 +00003586
Duncan Sands57810cd2007-09-05 11:27:52 +00003587 if (!S.BeginLabel) {
3588 BeginTag = "eh_func_begin";
3589 BeginNumber = SubprogramCount;
3590 } else {
3591 BeginTag = "label";
3592 BeginNumber = S.BeginLabel;
Duncan Sands53c3a332007-05-16 12:12:23 +00003593 }
Duncan Sands53c3a332007-05-16 12:12:23 +00003594
Duncan Sands57810cd2007-09-05 11:27:52 +00003595 EmitSectionOffset(BeginTag, "eh_func_begin", BeginNumber, SubprogramCount,
Duncan Sands671fa972008-05-07 19:11:09 +00003596 true, true);
Duncan Sands57810cd2007-09-05 11:27:52 +00003597 Asm->EOL("Region start");
Duncan Sands53c3a332007-05-16 12:12:23 +00003598
Duncan Sands57810cd2007-09-05 11:27:52 +00003599 if (!S.EndLabel) {
Dale Johannesen4af34942008-01-15 23:24:56 +00003600 EmitDifference("eh_func_end", SubprogramCount, BeginTag, BeginNumber,
Duncan Sands671fa972008-05-07 19:11:09 +00003601 true);
Duncan Sands57810cd2007-09-05 11:27:52 +00003602 } else {
Duncan Sands671fa972008-05-07 19:11:09 +00003603 EmitDifference("label", S.EndLabel, BeginTag, BeginNumber, true);
Duncan Sands57810cd2007-09-05 11:27:52 +00003604 }
3605 Asm->EOL("Region length");
Duncan Sands53c3a332007-05-16 12:12:23 +00003606
Duncan Sands671fa972008-05-07 19:11:09 +00003607 if (!S.PadLabel)
3608 Asm->EmitInt32(0);
3609 else
Duncan Sands57810cd2007-09-05 11:27:52 +00003610 EmitSectionOffset("label", "eh_func_begin", S.PadLabel, SubprogramCount,
Duncan Sands671fa972008-05-07 19:11:09 +00003611 true, true);
Duncan Sands57810cd2007-09-05 11:27:52 +00003612 Asm->EOL("Landing pad");
3613
3614 Asm->EmitULEB128Bytes(S.Action);
3615 Asm->EOL("Action");
Jim Laskeybacd3042007-02-21 22:48:45 +00003616 }
Duncan Sands53c3a332007-05-16 12:12:23 +00003617
Jim Laskeybacd3042007-02-21 22:48:45 +00003618 // Emit the actions.
Duncan Sandsb32edb42007-06-06 15:37:31 +00003619 for (unsigned I = 0, N = Actions.size(); I != N; ++I) {
3620 ActionEntry &Action = Actions[I];
Duncan Sands7bf7a442007-05-21 18:50:28 +00003621
Duncan Sandsfccf0a22007-07-06 12:46:24 +00003622 Asm->EmitSLEB128Bytes(Action.ValueForTypeID);
Duncan Sandsb32edb42007-06-06 15:37:31 +00003623 Asm->EOL("TypeInfo index");
3624 Asm->EmitSLEB128Bytes(Action.NextAction);
3625 Asm->EOL("Next action");
Jim Laskeybacd3042007-02-21 22:48:45 +00003626 }
3627
3628 // Emit the type ids.
Jim Laskeybacd3042007-02-21 22:48:45 +00003629 for (unsigned M = TypeInfos.size(); M; --M) {
3630 GlobalVariable *GV = TypeInfos[M - 1];
Anton Korobeynikov9cc54f52007-09-02 22:07:21 +00003631
3632 PrintRelDirective();
Jim Laskeybacd3042007-02-21 22:48:45 +00003633
3634 if (GV)
3635 O << Asm->getGlobalLinkName(GV);
3636 else
3637 O << "0";
Duncan Sands57810cd2007-09-05 11:27:52 +00003638
Jim Laskeybacd3042007-02-21 22:48:45 +00003639 Asm->EOL("TypeInfo");
3640 }
3641
Duncan Sands73ef58a2007-06-02 16:53:42 +00003642 // Emit the filter typeids.
3643 for (unsigned j = 0, M = FilterIds.size(); j < M; ++j) {
3644 unsigned TypeID = FilterIds[j];
Duncan Sandsbb821dd2007-07-12 13:51:39 +00003645 Asm->EmitULEB128Bytes(TypeID);
Duncan Sands73ef58a2007-06-02 16:53:42 +00003646 Asm->EOL("Filter TypeInfo index");
Jim Laskey0102ca82007-03-01 20:26:43 +00003647 }
Duncan Sands57810cd2007-09-05 11:27:52 +00003648
Evan Cheng05548eb2008-02-29 19:36:59 +00003649 Asm->EmitAlignment(2, 0, 0, false);
Jim Laskeyb82313f2007-02-01 16:31:34 +00003650 }
3651
Jim Laskey072200c2007-01-29 18:51:14 +00003652public:
3653 //===--------------------------------------------------------------------===//
3654 // Main entry points.
3655 //
Owen Andersoncb371882008-08-21 00:14:44 +00003656 DwarfException(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T)
Chris Lattner9251f132007-09-24 03:35:37 +00003657 : Dwarf(OS, A, T, "eh")
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003658 , shouldEmitTable(false)
3659 , shouldEmitMoves(false)
3660 , shouldEmitTableModule(false)
3661 , shouldEmitMovesModule(false)
Jim Laskey072200c2007-01-29 18:51:14 +00003662 {}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003663
Jim Laskey072200c2007-01-29 18:51:14 +00003664 virtual ~DwarfException() {}
3665
3666 /// SetModuleInfo - Set machine module information when it's known that pass
3667 /// manager has created it. Set by the target AsmPrinter.
3668 void SetModuleInfo(MachineModuleInfo *mmi) {
Jim Laskey3f09fc22007-02-28 18:38:31 +00003669 MMI = mmi;
Jim Laskey072200c2007-01-29 18:51:14 +00003670 }
3671
3672 /// BeginModule - Emit all exception information that should come prior to the
3673 /// content.
3674 void BeginModule(Module *M) {
3675 this->M = M;
Jim Laskey072200c2007-01-29 18:51:14 +00003676 }
3677
3678 /// EndModule - Emit all exception information that should come after the
3679 /// content.
3680 void EndModule() {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003681 if (shouldEmitMovesModule || shouldEmitTableModule) {
3682 const std::vector<Function *> Personalities = MMI->getPersonalities();
3683 for (unsigned i =0; i < Personalities.size(); ++i)
3684 EmitCommonEHFrame(Personalities[i], i);
Anton Korobeynikov8c7c1732007-05-13 15:42:26 +00003685
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003686 for (std::vector<FunctionEHFrameInfo>::iterator I = EHFrames.begin(),
3687 E = EHFrames.end(); I != E; ++I)
3688 EmitEHFrame(*I);
3689 }
Jim Laskey072200c2007-01-29 18:51:14 +00003690 }
3691
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003692 /// BeginFunction - Gather pre-function exception information. Assumes being
Jim Laskey072200c2007-01-29 18:51:14 +00003693 /// emitted immediately after the function entry point.
3694 void BeginFunction(MachineFunction *MF) {
3695 this->MF = MF;
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003696 shouldEmitTable = shouldEmitMoves = false;
Dale Johannesene0040622008-04-02 17:04:45 +00003697 if (MMI && TAI->doesSupportExceptionHandling()) {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003698
3699 // Map all labels and get rid of any dead landing pads.
3700 MMI->TidyLandingPads();
3701 // If any landing pads survive, we need an EH table.
3702 if (MMI->getLandingPads().size())
3703 shouldEmitTable = true;
3704
3705 // See if we need frame move info.
Duncan Sandsececf992008-07-04 09:55:48 +00003706 if (!MF->getFunction()->doesNotThrow() || UnwindTablesMandatory)
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003707 shouldEmitMoves = true;
3708
3709 if (shouldEmitMoves || shouldEmitTable)
3710 // Assumes in correct section after the entry point.
3711 EmitLabel("eh_func_begin", ++SubprogramCount);
Jim Laskey3f09fc22007-02-28 18:38:31 +00003712 }
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003713 shouldEmitTableModule |= shouldEmitTable;
3714 shouldEmitMovesModule |= shouldEmitMoves;
Jim Laskey072200c2007-01-29 18:51:14 +00003715 }
3716
3717 /// EndFunction - Gather and emit post-function exception information.
3718 ///
3719 void EndFunction() {
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003720 if (shouldEmitMoves || shouldEmitTable) {
3721 EmitLabel("eh_func_end", SubprogramCount);
3722 EmitExceptionTable();
Jim Laskeyb82313f2007-02-01 16:31:34 +00003723
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003724 // Save EH frame information
3725 EHFrames.
3726 push_back(FunctionEHFrameInfo(getAsm()->getCurrentFunctionEHName(MF),
Bill Wendling6e198962007-09-18 01:47:22 +00003727 SubprogramCount,
3728 MMI->getPersonalityIndex(),
3729 MF->getFrameInfo()->hasCalls(),
3730 !MMI->getLandingPads().empty(),
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00003731 MMI->getFrameMoves(),
Dale Johannesen48ae02f2008-01-16 19:59:28 +00003732 MF->getFunction()));
Dale Johannesen1532f3d2008-04-02 00:25:04 +00003733 }
Jim Laskey072200c2007-01-29 18:51:14 +00003734 }
3735};
3736
Jim Laskey0d086af2006-02-27 12:43:29 +00003737} // End of namespace llvm
Jim Laskey063e7652006-01-17 17:31:53 +00003738
3739//===----------------------------------------------------------------------===//
3740
Jim Laskeyd18e2892006-01-20 20:34:06 +00003741/// Emit - Print the abbreviation using the specified Dwarf writer.
3742///
Jim Laskey072200c2007-01-29 18:51:14 +00003743void DIEAbbrev::Emit(const DwarfDebug &DD) const {
Jim Laskeyd18e2892006-01-20 20:34:06 +00003744 // Emit its Dwarf tag type.
Jim Laskey072200c2007-01-29 18:51:14 +00003745 DD.getAsm()->EmitULEB128Bytes(Tag);
3746 DD.getAsm()->EOL(TagString(Tag));
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003747
Jim Laskeyd18e2892006-01-20 20:34:06 +00003748 // Emit whether it has children DIEs.
Jim Laskey072200c2007-01-29 18:51:14 +00003749 DD.getAsm()->EmitULEB128Bytes(ChildrenFlag);
3750 DD.getAsm()->EOL(ChildrenString(ChildrenFlag));
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003751
Jim Laskeyd18e2892006-01-20 20:34:06 +00003752 // For each attribute description.
Jim Laskey52060a02006-01-24 00:49:18 +00003753 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
Jim Laskeyd18e2892006-01-20 20:34:06 +00003754 const DIEAbbrevData &AttrData = Data[i];
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003755
Jim Laskeyd18e2892006-01-20 20:34:06 +00003756 // Emit attribute type.
Jim Laskey072200c2007-01-29 18:51:14 +00003757 DD.getAsm()->EmitULEB128Bytes(AttrData.getAttribute());
3758 DD.getAsm()->EOL(AttributeString(AttrData.getAttribute()));
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003759
Jim Laskeyd18e2892006-01-20 20:34:06 +00003760 // Emit form type.
Jim Laskey072200c2007-01-29 18:51:14 +00003761 DD.getAsm()->EmitULEB128Bytes(AttrData.getForm());
3762 DD.getAsm()->EOL(FormEncodingString(AttrData.getForm()));
Jim Laskeyd18e2892006-01-20 20:34:06 +00003763 }
3764
3765 // Mark end of abbreviation.
Jim Laskey072200c2007-01-29 18:51:14 +00003766 DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(1)");
3767 DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(2)");
Jim Laskeyd18e2892006-01-20 20:34:06 +00003768}
3769
3770#ifndef NDEBUG
Jim Laskeya0f3d172006-09-07 22:06:40 +00003771void DIEAbbrev::print(std::ostream &O) {
3772 O << "Abbreviation @"
3773 << std::hex << (intptr_t)this << std::dec
3774 << " "
3775 << TagString(Tag)
3776 << " "
3777 << ChildrenString(ChildrenFlag)
3778 << "\n";
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003779
Jim Laskeya0f3d172006-09-07 22:06:40 +00003780 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
3781 O << " "
3782 << AttributeString(Data[i].getAttribute())
Jim Laskeyd18e2892006-01-20 20:34:06 +00003783 << " "
Jim Laskeya0f3d172006-09-07 22:06:40 +00003784 << FormEncodingString(Data[i].getForm())
Jim Laskeyd18e2892006-01-20 20:34:06 +00003785 << "\n";
Jim Laskeyd18e2892006-01-20 20:34:06 +00003786 }
Jim Laskeya0f3d172006-09-07 22:06:40 +00003787}
Bill Wendlinge8156192006-12-07 01:30:32 +00003788void DIEAbbrev::dump() { print(cerr); }
Jim Laskeyd18e2892006-01-20 20:34:06 +00003789#endif
3790
3791//===----------------------------------------------------------------------===//
3792
Jim Laskeyef42a012006-11-02 20:12:39 +00003793#ifndef NDEBUG
3794void DIEValue::dump() {
Bill Wendlinge8156192006-12-07 01:30:32 +00003795 print(cerr);
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003796}
Jim Laskeyef42a012006-11-02 20:12:39 +00003797#endif
3798
3799//===----------------------------------------------------------------------===//
3800
Jim Laskey063e7652006-01-17 17:31:53 +00003801/// EmitValue - Emit integer of appropriate size.
3802///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00003803void DIEInteger::EmitValue(DwarfDebug &DD, unsigned Form) {
Jim Laskey063e7652006-01-17 17:31:53 +00003804 switch (Form) {
Jim Laskey40020172006-01-20 21:02:36 +00003805 case DW_FORM_flag: // Fall thru
Jim Laskeyb8509c52006-03-23 18:07:55 +00003806 case DW_FORM_ref1: // Fall thru
Jim Laskey072200c2007-01-29 18:51:14 +00003807 case DW_FORM_data1: DD.getAsm()->EmitInt8(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +00003808 case DW_FORM_ref2: // Fall thru
Jim Laskey072200c2007-01-29 18:51:14 +00003809 case DW_FORM_data2: DD.getAsm()->EmitInt16(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +00003810 case DW_FORM_ref4: // Fall thru
Jim Laskey072200c2007-01-29 18:51:14 +00003811 case DW_FORM_data4: DD.getAsm()->EmitInt32(Integer); break;
Jim Laskeyb8509c52006-03-23 18:07:55 +00003812 case DW_FORM_ref8: // Fall thru
Jim Laskey072200c2007-01-29 18:51:14 +00003813 case DW_FORM_data8: DD.getAsm()->EmitInt64(Integer); break;
3814 case DW_FORM_udata: DD.getAsm()->EmitULEB128Bytes(Integer); break;
3815 case DW_FORM_sdata: DD.getAsm()->EmitSLEB128Bytes(Integer); break;
Jim Laskeyf1cdea12007-01-25 15:12:02 +00003816 default: assert(0 && "DIE Value form not supported yet"); break;
3817 }
3818}
3819
3820/// SizeOf - Determine size of integer value in bytes.
3821///
Jim Laskey072200c2007-01-29 18:51:14 +00003822unsigned DIEInteger::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Jim Laskeyf1cdea12007-01-25 15:12:02 +00003823 switch (Form) {
3824 case DW_FORM_flag: // Fall thru
3825 case DW_FORM_ref1: // Fall thru
3826 case DW_FORM_data1: return sizeof(int8_t);
3827 case DW_FORM_ref2: // Fall thru
3828 case DW_FORM_data2: return sizeof(int16_t);
3829 case DW_FORM_ref4: // Fall thru
3830 case DW_FORM_data4: return sizeof(int32_t);
3831 case DW_FORM_ref8: // Fall thru
3832 case DW_FORM_data8: return sizeof(int64_t);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003833 case DW_FORM_udata: return TargetAsmInfo::getULEB128Size(Integer);
3834 case DW_FORM_sdata: return TargetAsmInfo::getSLEB128Size(Integer);
Jim Laskey063e7652006-01-17 17:31:53 +00003835 default: assert(0 && "DIE Value form not supported yet"); break;
3836 }
Jim Laskeyf1cdea12007-01-25 15:12:02 +00003837 return 0;
Jim Laskey063e7652006-01-17 17:31:53 +00003838}
3839
Jim Laskey063e7652006-01-17 17:31:53 +00003840//===----------------------------------------------------------------------===//
3841
3842/// EmitValue - Emit string value.
3843///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00003844void DIEString::EmitValue(DwarfDebug &DD, unsigned Form) {
Jim Laskey072200c2007-01-29 18:51:14 +00003845 DD.getAsm()->EmitString(String);
Jim Laskey063e7652006-01-17 17:31:53 +00003846}
3847
Jim Laskey063e7652006-01-17 17:31:53 +00003848//===----------------------------------------------------------------------===//
3849
3850/// EmitValue - Emit label value.
3851///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00003852void DIEDwarfLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
Dan Gohman9fda5be2007-09-28 16:50:28 +00003853 bool IsSmall = Form == DW_FORM_data4;
3854 DD.EmitReference(Label, false, IsSmall);
Jim Laskey063e7652006-01-17 17:31:53 +00003855}
3856
3857/// SizeOf - Determine size of label value in bytes.
3858///
Jim Laskey072200c2007-01-29 18:51:14 +00003859unsigned DIEDwarfLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Dan Gohman9fda5be2007-09-28 16:50:28 +00003860 if (Form == DW_FORM_data4) return 4;
Dan Gohman82482942007-09-27 23:12:31 +00003861 return DD.getTargetData()->getPointerSize();
Jim Laskey063e7652006-01-17 17:31:53 +00003862}
Jim Laskeyef42a012006-11-02 20:12:39 +00003863
Jim Laskey063e7652006-01-17 17:31:53 +00003864//===----------------------------------------------------------------------===//
3865
Jim Laskeyd18e2892006-01-20 20:34:06 +00003866/// EmitValue - Emit label value.
3867///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00003868void DIEObjectLabel::EmitValue(DwarfDebug &DD, unsigned Form) {
Dan Gohman9fda5be2007-09-28 16:50:28 +00003869 bool IsSmall = Form == DW_FORM_data4;
3870 DD.EmitReference(Label, false, IsSmall);
Jim Laskeyd18e2892006-01-20 20:34:06 +00003871}
3872
3873/// SizeOf - Determine size of label value in bytes.
3874///
Jim Laskey072200c2007-01-29 18:51:14 +00003875unsigned DIEObjectLabel::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Dan Gohman9fda5be2007-09-28 16:50:28 +00003876 if (Form == DW_FORM_data4) return 4;
Dan Gohman82482942007-09-27 23:12:31 +00003877 return DD.getTargetData()->getPointerSize();
Jim Laskeyd18e2892006-01-20 20:34:06 +00003878}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003879
Jim Laskeyd18e2892006-01-20 20:34:06 +00003880//===----------------------------------------------------------------------===//
3881
Jim Laskey063e7652006-01-17 17:31:53 +00003882/// EmitValue - Emit delta value.
3883///
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +00003884void DIESectionOffset::EmitValue(DwarfDebug &DD, unsigned Form) {
3885 bool IsSmall = Form == DW_FORM_data4;
3886 DD.EmitSectionOffset(Label.Tag, Section.Tag,
3887 Label.Number, Section.Number, IsSmall, IsEH, UseSet);
3888}
3889
3890/// SizeOf - Determine size of delta value in bytes.
3891///
3892unsigned DIESectionOffset::SizeOf(const DwarfDebug &DD, unsigned Form) const {
3893 if (Form == DW_FORM_data4) return 4;
3894 return DD.getTargetData()->getPointerSize();
3895}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003896
Argyrios Kyrtzidisf7acf8f2008-06-18 19:27:37 +00003897//===----------------------------------------------------------------------===//
3898
3899/// EmitValue - Emit delta value.
3900///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00003901void DIEDelta::EmitValue(DwarfDebug &DD, unsigned Form) {
Jim Laskey2b4e98c2006-12-06 17:43:18 +00003902 bool IsSmall = Form == DW_FORM_data4;
Jim Laskey072200c2007-01-29 18:51:14 +00003903 DD.EmitDifference(LabelHi, LabelLo, IsSmall);
Jim Laskey063e7652006-01-17 17:31:53 +00003904}
3905
3906/// SizeOf - Determine size of delta value in bytes.
3907///
Jim Laskey072200c2007-01-29 18:51:14 +00003908unsigned DIEDelta::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Jim Laskey2b4e98c2006-12-06 17:43:18 +00003909 if (Form == DW_FORM_data4) return 4;
Dan Gohman82482942007-09-27 23:12:31 +00003910 return DD.getTargetData()->getPointerSize();
Jim Laskey063e7652006-01-17 17:31:53 +00003911}
3912
3913//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +00003914
Jim Laskeyb8509c52006-03-23 18:07:55 +00003915/// EmitValue - Emit debug information entry offset.
Jim Laskeyd18e2892006-01-20 20:34:06 +00003916///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00003917void DIEntry::EmitValue(DwarfDebug &DD, unsigned Form) {
Jim Laskey072200c2007-01-29 18:51:14 +00003918 DD.getAsm()->EmitInt32(Entry->getOffset());
Jim Laskeyd18e2892006-01-20 20:34:06 +00003919}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003920
Jim Laskeyd18e2892006-01-20 20:34:06 +00003921//===----------------------------------------------------------------------===//
3922
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003923/// ComputeSize - calculate the size of the block.
3924///
Jim Laskey072200c2007-01-29 18:51:14 +00003925unsigned DIEBlock::ComputeSize(DwarfDebug &DD) {
Jim Laskeyef42a012006-11-02 20:12:39 +00003926 if (!Size) {
Owen Anderson873e1b52008-06-24 21:44:59 +00003927 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003928
Jim Laskeyef42a012006-11-02 20:12:39 +00003929 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
Jim Laskey072200c2007-01-29 18:51:14 +00003930 Size += Values[i]->SizeOf(DD, AbbrevData[i].getForm());
Jim Laskeyef42a012006-11-02 20:12:39 +00003931 }
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003932 }
3933 return Size;
3934}
3935
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003936/// EmitValue - Emit block data.
3937///
Anton Korobeynikov6a143592007-03-07 08:25:02 +00003938void DIEBlock::EmitValue(DwarfDebug &DD, unsigned Form) {
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003939 switch (Form) {
Jim Laskey072200c2007-01-29 18:51:14 +00003940 case DW_FORM_block1: DD.getAsm()->EmitInt8(Size); break;
3941 case DW_FORM_block2: DD.getAsm()->EmitInt16(Size); break;
3942 case DW_FORM_block4: DD.getAsm()->EmitInt32(Size); break;
3943 case DW_FORM_block: DD.getAsm()->EmitULEB128Bytes(Size); break;
Jim Laskeyf1cdea12007-01-25 15:12:02 +00003944 default: assert(0 && "Improper form for block"); break;
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003945 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003946
Owen Anderson873e1b52008-06-24 21:44:59 +00003947 const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev.getData();
Jim Laskeyef42a012006-11-02 20:12:39 +00003948
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003949 for (unsigned i = 0, N = Values.size(); i < N; ++i) {
Jim Laskeybacd3042007-02-21 22:48:45 +00003950 DD.getAsm()->EOL();
Jim Laskey072200c2007-01-29 18:51:14 +00003951 Values[i]->EmitValue(DD, AbbrevData[i].getForm());
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003952 }
3953}
3954
3955/// SizeOf - Determine size of block data in bytes.
3956///
Jim Laskey072200c2007-01-29 18:51:14 +00003957unsigned DIEBlock::SizeOf(const DwarfDebug &DD, unsigned Form) const {
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003958 switch (Form) {
3959 case DW_FORM_block1: return Size + sizeof(int8_t);
3960 case DW_FORM_block2: return Size + sizeof(int16_t);
3961 case DW_FORM_block4: return Size + sizeof(int32_t);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003962 case DW_FORM_block: return Size + TargetAsmInfo::getULEB128Size(Size);
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003963 default: assert(0 && "Improper form for block"); break;
3964 }
3965 return 0;
3966}
3967
Jim Laskeyb80af6f2006-03-03 21:00:14 +00003968//===----------------------------------------------------------------------===//
Jim Laskeyef42a012006-11-02 20:12:39 +00003969/// DIE Implementation
Jim Laskeyd18e2892006-01-20 20:34:06 +00003970
3971DIE::~DIE() {
Jim Laskeyef42a012006-11-02 20:12:39 +00003972 for (unsigned i = 0, N = Children.size(); i < N; ++i)
Jim Laskeyd18e2892006-01-20 20:34:06 +00003973 delete Children[i];
Jim Laskeyd18e2892006-01-20 20:34:06 +00003974}
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003975
Jim Laskeyb8509c52006-03-23 18:07:55 +00003976/// AddSiblingOffset - Add a sibling offset field to the front of the DIE.
3977///
3978void DIE::AddSiblingOffset() {
3979 DIEInteger *DI = new DIEInteger(0);
3980 Values.insert(Values.begin(), DI);
Jim Laskeya9c83fe2006-10-30 15:59:54 +00003981 Abbrev.AddFirstAttribute(DW_AT_sibling, DW_FORM_ref4);
Jim Laskeyb8509c52006-03-23 18:07:55 +00003982}
3983
Jim Laskeyef42a012006-11-02 20:12:39 +00003984/// Profile - Used to gather unique data for the value folding set.
Jim Laskeyd18e2892006-01-20 20:34:06 +00003985///
Jim Laskeyef42a012006-11-02 20:12:39 +00003986void DIE::Profile(FoldingSetNodeID &ID) {
3987 Abbrev.Profile(ID);
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00003988
Jim Laskeyef42a012006-11-02 20:12:39 +00003989 for (unsigned i = 0, N = Children.size(); i < N; ++i)
3990 ID.AddPointer(Children[i]);
3991
3992 for (unsigned j = 0, M = Values.size(); j < M; ++j)
3993 ID.AddPointer(Values[j]);
Jim Laskeyd8f77ba2006-01-27 15:20:54 +00003994}
Jim Laskeyef42a012006-11-02 20:12:39 +00003995
3996#ifndef NDEBUG
3997void DIE::print(std::ostream &O, unsigned IncIndent) {
3998 static unsigned IndentCount = 0;
3999 IndentCount += IncIndent;
4000 const std::string Indent(IndentCount, ' ');
4001 bool isBlock = Abbrev.getTag() == 0;
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00004002
Jim Laskeyef42a012006-11-02 20:12:39 +00004003 if (!isBlock) {
4004 O << Indent
4005 << "Die: "
4006 << "0x" << std::hex << (intptr_t)this << std::dec
4007 << ", Offset: " << Offset
4008 << ", Size: " << Size
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00004009 << "\n";
4010
Jim Laskeyef42a012006-11-02 20:12:39 +00004011 O << Indent
4012 << TagString(Abbrev.getTag())
Jim Laskey063e7652006-01-17 17:31:53 +00004013 << " "
Jim Laskeyef42a012006-11-02 20:12:39 +00004014 << ChildrenString(Abbrev.getChildrenFlag());
4015 } else {
4016 O << "Size: " << Size;
Jim Laskey063e7652006-01-17 17:31:53 +00004017 }
4018 O << "\n";
Jim Laskeya7cea6f2006-01-04 13:52:30 +00004019
Owen Anderson873e1b52008-06-24 21:44:59 +00004020 const SmallVector<DIEAbbrevData, 8> &Data = Abbrev.getData();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00004021
Jim Laskeyef42a012006-11-02 20:12:39 +00004022 IndentCount += 2;
4023 for (unsigned i = 0, N = Data.size(); i < N; ++i) {
4024 O << Indent;
Bill Wendling4e974012008-07-22 00:28:47 +00004025
4026 if (!isBlock)
Jim Laskeyef42a012006-11-02 20:12:39 +00004027 O << AttributeString(Data[i].getAttribute());
Bill Wendling4e974012008-07-22 00:28:47 +00004028 else
Jim Laskeyef42a012006-11-02 20:12:39 +00004029 O << "Blk[" << i << "]";
Bill Wendling4e974012008-07-22 00:28:47 +00004030
Jim Laskeyef42a012006-11-02 20:12:39 +00004031 O << " "
4032 << FormEncodingString(Data[i].getForm())
4033 << " ";
4034 Values[i]->print(O);
Jim Laskey0d086af2006-02-27 12:43:29 +00004035 O << "\n";
Jim Laskey063e7652006-01-17 17:31:53 +00004036 }
Jim Laskeyef42a012006-11-02 20:12:39 +00004037 IndentCount -= 2;
Jim Laskey063e7652006-01-17 17:31:53 +00004038
Jim Laskeyef42a012006-11-02 20:12:39 +00004039 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
4040 Children[j]->print(O, 4);
Jim Laskey063e7652006-01-17 17:31:53 +00004041 }
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00004042
Jim Laskeyef42a012006-11-02 20:12:39 +00004043 if (!isBlock) O << "\n";
4044 IndentCount -= IncIndent;
Jim Laskey19ef4ef2006-01-17 20:41:40 +00004045}
4046
Jim Laskeyef42a012006-11-02 20:12:39 +00004047void DIE::dump() {
Bill Wendlinge8156192006-12-07 01:30:32 +00004048 print(cerr);
Jim Laskey41886992006-04-07 16:34:46 +00004049}
Jim Laskeybd761842006-02-27 17:27:12 +00004050#endif
Jim Laskey65195462006-10-30 13:35:07 +00004051
4052//===----------------------------------------------------------------------===//
4053/// DwarfWriter Implementation
Jim Laskeyef42a012006-11-02 20:12:39 +00004054///
Jim Laskey65195462006-10-30 13:35:07 +00004055
Owen Andersoncb371882008-08-21 00:14:44 +00004056DwarfWriter::DwarfWriter(raw_ostream &OS, AsmPrinter *A,
Jim Laskey65195462006-10-30 13:35:07 +00004057 const TargetAsmInfo *T) {
Jim Laskey072200c2007-01-29 18:51:14 +00004058 DE = new DwarfException(OS, A, T);
4059 DD = new DwarfDebug(OS, A, T);
Jim Laskey65195462006-10-30 13:35:07 +00004060}
4061
4062DwarfWriter::~DwarfWriter() {
Jim Laskey072200c2007-01-29 18:51:14 +00004063 delete DE;
4064 delete DD;
Jim Laskey65195462006-10-30 13:35:07 +00004065}
4066
Jim Laskey44c3b9f2007-01-26 21:22:28 +00004067/// SetModuleInfo - Set machine module info when it's known that pass manager
4068/// has created it. Set by the target AsmPrinter.
4069void DwarfWriter::SetModuleInfo(MachineModuleInfo *MMI) {
Jim Laskey072200c2007-01-29 18:51:14 +00004070 DD->SetModuleInfo(MMI);
Jim Laskeyb82313f2007-02-01 16:31:34 +00004071 DE->SetModuleInfo(MMI);
Jim Laskey65195462006-10-30 13:35:07 +00004072}
4073
4074/// BeginModule - Emit all Dwarf sections that should come prior to the
4075/// content.
4076void DwarfWriter::BeginModule(Module *M) {
Jim Laskey072200c2007-01-29 18:51:14 +00004077 DE->BeginModule(M);
4078 DD->BeginModule(M);
Jim Laskey65195462006-10-30 13:35:07 +00004079}
4080
4081/// EndModule - Emit all Dwarf sections that should come after the content.
4082///
4083void DwarfWriter::EndModule() {
Jim Laskey072200c2007-01-29 18:51:14 +00004084 DE->EndModule();
4085 DD->EndModule();
Jim Laskey65195462006-10-30 13:35:07 +00004086}
4087
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00004088/// BeginFunction - Gather pre-function debug information. Assumes being
Jim Laskey65195462006-10-30 13:35:07 +00004089/// emitted immediately after the function entry point.
4090void DwarfWriter::BeginFunction(MachineFunction *MF) {
Jim Laskey072200c2007-01-29 18:51:14 +00004091 DE->BeginFunction(MF);
4092 DD->BeginFunction(MF);
Jim Laskey65195462006-10-30 13:35:07 +00004093}
4094
4095/// EndFunction - Gather and emit post-function debug information.
4096///
Bill Wendlingd751c642008-09-26 00:28:12 +00004097void DwarfWriter::EndFunction(MachineFunction *MF) {
4098 DD->EndFunction(MF);
Jim Laskeyb82313f2007-02-01 16:31:34 +00004099 DE->EndFunction();
Anton Korobeynikovffe31d72008-08-16 12:57:46 +00004100
Bill Wendlingc91d0b92008-07-22 00:53:37 +00004101 if (MachineModuleInfo *MMI = DD->getMMI() ? DD->getMMI() : DE->getMMI())
Jim Laskeyb82313f2007-02-01 16:31:34 +00004102 // Clear function debug information.
4103 MMI->EndFunction();
Jim Laskey65195462006-10-30 13:35:07 +00004104}