blob: 5d86329e9b9b3a7efff357d02c987f69c48498e5 [file] [log] [blame]
Devang Patele4b27562009-08-28 23:24:31 +00001
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +00002//===-- PIC16DebugInfo.cpp - Implementation for PIC16 Debug Information ======//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10//
11// This file contains the helper functions for representing debug information.
12//
13//===----------------------------------------------------------------------===//
14
15#include "PIC16.h"
Sanjiv Gupta753ec152009-10-15 19:26:25 +000016#include "PIC16ABINames.h"
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +000017#include "PIC16DebugInfo.h"
18#include "llvm/GlobalVariable.h"
Sanjiv Guptabde79422009-06-16 09:45:18 +000019#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnere4d110b2009-08-22 20:56:12 +000020#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerb23569a2010-04-04 08:18:47 +000021#include "llvm/MC/MCStreamer.h"
Devang Patel1e86a662009-06-19 22:08:58 +000022#include "llvm/Support/DebugLoc.h"
Devang Patel715c6622009-08-10 22:11:20 +000023#include "llvm/ADT/SmallString.h"
Chris Lattnerb23569a2010-04-04 08:18:47 +000024#include "llvm/ADT/StringExtras.h"
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +000025using namespace llvm;
26
Sanjiv Guptabde79422009-06-16 09:45:18 +000027/// PopulateDebugInfo - Populate the TypeNo, Aux[] and TagName from Ty.
28///
29void PIC16DbgInfo::PopulateDebugInfo (DIType Ty, unsigned short &TypeNo,
30 bool &HasAux, int Aux[],
31 std::string &TagName) {
Devang Patel6ceea332009-08-31 18:49:10 +000032 if (Ty.isBasicType())
Sanjiv Guptabde79422009-06-16 09:45:18 +000033 PopulateBasicTypeInfo (Ty, TypeNo);
Devang Patel6ceea332009-08-31 18:49:10 +000034 else if (Ty.isCompositeType())
Sanjiv Guptabde79422009-06-16 09:45:18 +000035 PopulateCompositeTypeInfo (Ty, TypeNo, HasAux, Aux, TagName);
Sanjiv Guptacf1e5be2009-10-15 09:48:25 +000036 else if (Ty.isDerivedType())
37 PopulateDerivedTypeInfo (Ty, TypeNo, HasAux, Aux, TagName);
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +000038 else {
39 TypeNo = PIC16Dbg::T_NULL;
40 HasAux = false;
41 }
42 return;
43}
44
Sanjiv Guptabde79422009-06-16 09:45:18 +000045/// PopulateBasicTypeInfo- Populate TypeNo for basic type from Ty.
46///
47void PIC16DbgInfo::PopulateBasicTypeInfo (DIType Ty, unsigned short &TypeNo) {
Devang Patel5ccdd102009-09-29 18:40:58 +000048 std::string Name = Ty.getName();
Sanjiv Guptabde79422009-06-16 09:45:18 +000049 unsigned short BaseTy = GetTypeDebugNumber(Name);
50 TypeNo = TypeNo << PIC16Dbg::S_BASIC;
51 TypeNo = TypeNo | (0xffff & BaseTy);
52}
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +000053
Sanjiv Guptabde79422009-06-16 09:45:18 +000054/// PopulateDerivedTypeInfo - Populate TypeNo, Aux[], TagName for derived type
55/// from Ty. Derived types are mostly pointers.
56///
57void PIC16DbgInfo::PopulateDerivedTypeInfo (DIType Ty, unsigned short &TypeNo,
58 bool &HasAux, int Aux[],
59 std::string &TagName) {
60
61 switch(Ty.getTag())
62 {
63 case dwarf::DW_TAG_pointer_type:
64 TypeNo = TypeNo << PIC16Dbg::S_DERIVED;
65 TypeNo = TypeNo | PIC16Dbg::DT_PTR;
66 break;
67 default:
68 TypeNo = TypeNo << PIC16Dbg::S_DERIVED;
69 }
70
Dan Gohmanf451cb82010-02-10 16:03:48 +000071 // We also need to encode the information about the base type of
Sanjiv Guptabde79422009-06-16 09:45:18 +000072 // pointer in TypeNo.
Devang Patele4b27562009-08-28 23:24:31 +000073 DIType BaseType = DIDerivedType(Ty.getNode()).getTypeDerivedFrom();
Sanjiv Guptabde79422009-06-16 09:45:18 +000074 PopulateDebugInfo(BaseType, TypeNo, HasAux, Aux, TagName);
75}
76
77/// PopulateArrayTypeInfo - Populate TypeNo, Aux[] for array from Ty.
78void PIC16DbgInfo::PopulateArrayTypeInfo (DIType Ty, unsigned short &TypeNo,
79 bool &HasAux, int Aux[],
80 std::string &TagName) {
81
Devang Patele4b27562009-08-28 23:24:31 +000082 DICompositeType CTy = DICompositeType(Ty.getNode());
Sanjiv Guptabde79422009-06-16 09:45:18 +000083 DIArray Elements = CTy.getTypeArray();
84 unsigned short size = 1;
85 unsigned short Dimension[4]={0,0,0,0};
86 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
87 DIDescriptor Element = Elements.getElement(i);
88 if (Element.getTag() == dwarf::DW_TAG_subrange_type) {
89 TypeNo = TypeNo << PIC16Dbg::S_DERIVED;
90 TypeNo = TypeNo | PIC16Dbg::DT_ARY;
Devang Patele4b27562009-08-28 23:24:31 +000091 DISubrange SubRange = DISubrange(Element.getNode());
Sanjiv Guptabde79422009-06-16 09:45:18 +000092 Dimension[i] = SubRange.getHi() - SubRange.getLo() + 1;
93 // Each dimension is represented by 2 bytes starting at byte 9.
94 Aux[8+i*2+0] = Dimension[i];
95 Aux[8+i*2+1] = Dimension[i] >> 8;
96 size = size * Dimension[i];
97 }
98 }
99 HasAux = true;
100 // In auxillary entry for array, 7th and 8th byte represent array size.
101 Aux[6] = size & 0xff;
102 Aux[7] = size >> 8;
103 DIType BaseType = CTy.getTypeDerivedFrom();
104 PopulateDebugInfo(BaseType, TypeNo, HasAux, Aux, TagName);
105}
106
107/// PopulateStructOrUnionTypeInfo - Populate TypeNo, Aux[] , TagName for
108/// structure or union.
109///
110void PIC16DbgInfo::PopulateStructOrUnionTypeInfo (DIType Ty,
111 unsigned short &TypeNo,
112 bool &HasAux, int Aux[],
113 std::string &TagName) {
Devang Patele4b27562009-08-28 23:24:31 +0000114 DICompositeType CTy = DICompositeType(Ty.getNode());
Sanjiv Guptabde79422009-06-16 09:45:18 +0000115 TypeNo = TypeNo << PIC16Dbg::S_BASIC;
116 if (Ty.getTag() == dwarf::DW_TAG_structure_type)
117 TypeNo = TypeNo | PIC16Dbg::T_STRUCT;
118 else
119 TypeNo = TypeNo | PIC16Dbg::T_UNION;
Devang Patel5ccdd102009-09-29 18:40:58 +0000120 TagName = CTy.getName();
Sanjiv Guptabde79422009-06-16 09:45:18 +0000121 // UniqueSuffix is .number where number is obtained from
122 // llvm.dbg.composite<number>.
Devang Patel715c6622009-08-10 22:11:20 +0000123 // FIXME: This will break when composite type is not represented by
Sanjiv Guptabfa79b82009-08-15 14:36:48 +0000124 // llvm.dbg.composite* global variable. Since we need to revisit
125 // PIC16DebugInfo implementation anyways after the MDNodes based
126 // framework is done, let us continue with the way it is.
Devang Patele4b27562009-08-28 23:24:31 +0000127 std::string UniqueSuffix = "." + Ty.getNode()->getNameStr().substr(18);
Sanjiv Guptabde79422009-06-16 09:45:18 +0000128 TagName += UniqueSuffix;
129 unsigned short size = CTy.getSizeInBits()/8;
130 // 7th and 8th byte represent size.
131 HasAux = true;
132 Aux[6] = size & 0xff;
133 Aux[7] = size >> 8;
134}
135
136/// PopulateEnumTypeInfo - Populate TypeNo for enum from Ty.
137void PIC16DbgInfo::PopulateEnumTypeInfo (DIType Ty, unsigned short &TypeNo) {
138 TypeNo = TypeNo << PIC16Dbg::S_BASIC;
139 TypeNo = TypeNo | PIC16Dbg::T_ENUM;
140}
141
142/// PopulateCompositeTypeInfo - Populate TypeNo, Aux[] and TagName for
143/// composite types from Ty.
144///
145void PIC16DbgInfo::PopulateCompositeTypeInfo (DIType Ty, unsigned short &TypeNo,
146 bool &HasAux, int Aux[],
147 std::string &TagName) {
148 switch (Ty.getTag()) {
149 case dwarf::DW_TAG_array_type: {
150 PopulateArrayTypeInfo (Ty, TypeNo, HasAux, Aux, TagName);
151 break;
152 }
153 case dwarf:: DW_TAG_union_type:
154 case dwarf::DW_TAG_structure_type: {
155 PopulateStructOrUnionTypeInfo (Ty, TypeNo, HasAux, Aux, TagName);
156 break;
157 }
158 case dwarf::DW_TAG_enumeration_type: {
159 PopulateEnumTypeInfo (Ty, TypeNo);
160 break;
161 }
162 default:
163 TypeNo = TypeNo << PIC16Dbg::S_DERIVED;
164 }
165}
166
167/// GetTypeDebugNumber - Get debug type number for given type.
168///
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +0000169unsigned PIC16DbgInfo::GetTypeDebugNumber(std::string &type) {
170 if (type == "char")
171 return PIC16Dbg::T_CHAR;
172 else if (type == "short")
173 return PIC16Dbg::T_SHORT;
174 else if (type == "int")
175 return PIC16Dbg::T_INT;
176 else if (type == "long")
177 return PIC16Dbg::T_LONG;
178 else if (type == "unsigned char")
179 return PIC16Dbg::T_UCHAR;
180 else if (type == "unsigned short")
181 return PIC16Dbg::T_USHORT;
182 else if (type == "unsigned int")
183 return PIC16Dbg::T_UINT;
184 else if (type == "unsigned long")
185 return PIC16Dbg::T_ULONG;
186 else
187 return 0;
188}
Sanjiv Guptabde79422009-06-16 09:45:18 +0000189
190/// GetStorageClass - Get storage class for give debug variable.
191///
192short PIC16DbgInfo::getStorageClass(DIGlobalVariable DIGV) {
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +0000193 short ClassNo;
Sanjiv Guptacf1e5be2009-10-15 09:48:25 +0000194 if (PAN::isLocalName(DIGV.getName())) {
Sanjiv Guptaa57bc3b2009-05-22 13:58:45 +0000195 // Generating C_AUTO here fails due to error in linker. Change it once
196 // linker is fixed.
197 ClassNo = PIC16Dbg::C_STAT;
198 }
199 else if (DIGV.isLocalToUnit())
200 ClassNo = PIC16Dbg::C_STAT;
201 else
202 ClassNo = PIC16Dbg::C_EXT;
203 return ClassNo;
204}
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000205
Sanjiv Guptabde79422009-06-16 09:45:18 +0000206/// BeginModule - Emit necessary debug info to start a Module and do other
207/// required initializations.
208void PIC16DbgInfo::BeginModule(Module &M) {
209 // Emit file directive for module.
Devang Patel22516662009-08-06 20:53:24 +0000210 DebugInfoFinder DbgFinder;
211 DbgFinder.processModule(M);
212 if (DbgFinder.compile_unit_count() != 0) {
Devang Patel92c55112009-07-06 23:28:36 +0000213 // FIXME : What if more then one CUs are present in a module ?
Devang Patele4b27562009-08-28 23:24:31 +0000214 MDNode *CU = *DbgFinder.compile_unit_begin();
Sanjiv Guptabde79422009-06-16 09:45:18 +0000215 EmitDebugDirectives = true;
216 SwitchToCU(CU);
217 }
Sanjiv Guptabde79422009-06-16 09:45:18 +0000218 // Emit debug info for decls of composite types.
Sanjiv Guptadcb6da32009-06-13 17:35:54 +0000219 EmitCompositeTypeDecls(M);
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000220}
221
Sanjiv Guptabde79422009-06-16 09:45:18 +0000222/// Helper to find first valid debug loc for a function.
223///
224static const DebugLoc GetDebugLocForFunction(const MachineFunction &MF) {
225 DebugLoc DL;
226 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
227 I != E; ++I) {
228 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
229 II != E; ++II) {
230 DL = II->getDebugLoc();
231 if (!DL.isUnknown())
232 return DL;
233 }
234 }
235 return DL;
236}
237
238/// BeginFunction - Emit necessary debug info to start a function.
239///
240void PIC16DbgInfo::BeginFunction(const MachineFunction &MF) {
241 if (! EmitDebugDirectives) return;
242
243 // Retreive the first valid debug Loc and process it.
244 const DebugLoc &DL = GetDebugLocForFunction(MF);
Sanjiv Gupta394a1a22009-08-07 11:00:02 +0000245 // Emit debug info only if valid debug info is available.
246 if (!DL.isUnknown()) {
247 ChangeDebugLoc(MF, DL, true);
248 EmitFunctBeginDI(MF.getFunction());
249 }
Sanjiv Guptabde79422009-06-16 09:45:18 +0000250 // Set current line to 0 so that.line directive is genearted after .bf.
251 CurLine = 0;
252}
253
254/// ChangeDebugLoc - Take necessary steps when DebugLoc changes.
255/// CurFile and CurLine may change as a result of this.
256///
257void PIC16DbgInfo::ChangeDebugLoc(const MachineFunction &MF,
258 const DebugLoc &DL, bool IsInBeginFunction) {
Chris Lattnerde4845c2010-04-02 19:42:39 +0000259 if (!EmitDebugDirectives) return;
260 assert(!DL.isUnknown() && "can't change to invalid debug loc");
Sanjiv Guptabde79422009-06-16 09:45:18 +0000261
Chris Lattnerde4845c2010-04-02 19:42:39 +0000262 SwitchToCU(DL.getScope(MF.getFunction()->getContext()));
263 SwitchToLine(DL.getLine(), IsInBeginFunction);
Sanjiv Guptabde79422009-06-16 09:45:18 +0000264}
265
266/// SwitchToLine - Emit line directive for a new line.
267///
268void PIC16DbgInfo::SwitchToLine(unsigned Line, bool IsInBeginFunction) {
269 if (CurLine == Line) return;
Chris Lattnerb23569a2010-04-04 08:18:47 +0000270 if (!IsInBeginFunction)
271 OS.EmitRawText("\n\t.line " + Twine(Line));
Sanjiv Guptabde79422009-06-16 09:45:18 +0000272 CurLine = Line;
273}
274
275/// EndFunction - Emit .ef for end of function.
276///
277void PIC16DbgInfo::EndFunction(const MachineFunction &MF) {
278 if (! EmitDebugDirectives) return;
Sanjiv Gupta394a1a22009-08-07 11:00:02 +0000279 const DebugLoc &DL = GetDebugLocForFunction(MF);
280 // Emit debug info only if valid debug info is available.
281 if (!DL.isUnknown())
282 EmitFunctEndDI(MF.getFunction(), CurLine);
Sanjiv Guptabde79422009-06-16 09:45:18 +0000283}
284
285/// EndModule - Emit .eof for end of module.
286///
287void PIC16DbgInfo::EndModule(Module &M) {
288 if (! EmitDebugDirectives) return;
289 EmitVarDebugInfo(M);
Chris Lattnerb23569a2010-04-04 08:18:47 +0000290 if (CurFile != "") OS.EmitRawText(StringRef("\n\t.eof"));
Sanjiv Guptabde79422009-06-16 09:45:18 +0000291}
292
293/// EmitCompositeTypeElements - Emit debug information for members of a
294/// composite type.
295///
296void PIC16DbgInfo::EmitCompositeTypeElements (DICompositeType CTy,
Sanjiv Guptabfa79b82009-08-15 14:36:48 +0000297 std::string SuffixNo) {
Sanjiv Guptabde79422009-06-16 09:45:18 +0000298 unsigned long Value = 0;
299 DIArray Elements = CTy.getTypeArray();
300 for (unsigned i = 0, N = Elements.getNumElements(); i < N; i++) {
301 DIDescriptor Element = Elements.getElement(i);
302 unsigned short TypeNo = 0;
303 bool HasAux = false;
304 int ElementAux[PIC16Dbg::AuxSize] = { 0 };
305 std::string TagName = "";
Devang Patele4b27562009-08-28 23:24:31 +0000306 DIDerivedType DITy(Element.getNode());
Sanjiv Guptabde79422009-06-16 09:45:18 +0000307 unsigned short ElementSize = DITy.getSizeInBits()/8;
308 // Get mangleddd name for this structure/union element.
Benjamin Kramer1c3451f2009-11-25 18:26:09 +0000309 std::string MangMemName = DITy.getName().str() + SuffixNo;
Sanjiv Guptabde79422009-06-16 09:45:18 +0000310 PopulateDebugInfo(DITy, TypeNo, HasAux, ElementAux, TagName);
Daniel Dunbar1c723b72009-06-26 02:03:52 +0000311 short Class = 0;
Sanjiv Guptabde79422009-06-16 09:45:18 +0000312 if( CTy.getTag() == dwarf::DW_TAG_union_type)
313 Class = PIC16Dbg::C_MOU;
314 else if (CTy.getTag() == dwarf::DW_TAG_structure_type)
315 Class = PIC16Dbg::C_MOS;
Devang Patel715c6622009-08-10 22:11:20 +0000316 EmitSymbol(MangMemName.c_str(), Class, TypeNo, Value);
Sanjiv Guptabde79422009-06-16 09:45:18 +0000317 if (CTy.getTag() == dwarf::DW_TAG_structure_type)
318 Value += ElementSize;
319 if (HasAux)
Devang Patel715c6622009-08-10 22:11:20 +0000320 EmitAuxEntry(MangMemName.c_str(), ElementAux, PIC16Dbg::AuxSize, TagName);
Sanjiv Guptabde79422009-06-16 09:45:18 +0000321 }
322}
323
324/// EmitCompositeTypeDecls - Emit composite type declarations like structure
325/// and union declarations.
326///
Sanjiv Guptadcb6da32009-06-13 17:35:54 +0000327void PIC16DbgInfo::EmitCompositeTypeDecls(Module &M) {
Devang Patel715c6622009-08-10 22:11:20 +0000328 DebugInfoFinder DbgFinder;
329 DbgFinder.processModule(M);
Sanjiv Guptabfa79b82009-08-15 14:36:48 +0000330 for (DebugInfoFinder::iterator I = DbgFinder.type_begin(),
331 E = DbgFinder.type_end(); I != E; ++I) {
Devang Patel715c6622009-08-10 22:11:20 +0000332 DICompositeType CTy(*I);
Devang Patel3c91b052010-03-08 20:52:55 +0000333 if (!CTy.Verify())
Devang Patel715c6622009-08-10 22:11:20 +0000334 continue;
335 if (CTy.getTag() == dwarf::DW_TAG_union_type ||
336 CTy.getTag() == dwarf::DW_TAG_structure_type ) {
Sanjiv Guptabfa79b82009-08-15 14:36:48 +0000337 // Get the number after llvm.dbg.composite and make UniqueSuffix from
338 // it.
Devang Patele4b27562009-08-28 23:24:31 +0000339 std::string DIVar = CTy.getNode()->getNameStr();
Sanjiv Guptabfa79b82009-08-15 14:36:48 +0000340 std::string UniqueSuffix = "." + DIVar.substr(18);
Benjamin Kramer1c3451f2009-11-25 18:26:09 +0000341 std::string MangledCTyName = CTy.getName().str() + UniqueSuffix;
Devang Patel715c6622009-08-10 22:11:20 +0000342 unsigned short size = CTy.getSizeInBits()/8;
343 int Aux[PIC16Dbg::AuxSize] = {0};
344 // 7th and 8th byte represent size of structure/union.
345 Aux[6] = size & 0xff;
346 Aux[7] = size >> 8;
347 // Emit .def for structure/union tag.
348 if( CTy.getTag() == dwarf::DW_TAG_union_type)
349 EmitSymbol(MangledCTyName.c_str(), PIC16Dbg::C_UNTAG);
350 else if (CTy.getTag() == dwarf::DW_TAG_structure_type)
351 EmitSymbol(MangledCTyName.c_str(), PIC16Dbg::C_STRTAG);
352
353 // Emit auxiliary debug information for structure/union tag.
354 EmitAuxEntry(MangledCTyName.c_str(), Aux, PIC16Dbg::AuxSize);
355
356 // Emit members.
Sanjiv Guptabfa79b82009-08-15 14:36:48 +0000357 EmitCompositeTypeElements (CTy, UniqueSuffix);
Devang Patel715c6622009-08-10 22:11:20 +0000358
359 // Emit mangled Symbol for end of structure/union.
Sanjiv Guptabfa79b82009-08-15 14:36:48 +0000360 std::string EOSSymbol = ".eos" + UniqueSuffix;
Devang Patel715c6622009-08-10 22:11:20 +0000361 EmitSymbol(EOSSymbol.c_str(), PIC16Dbg::C_EOS);
362 EmitAuxEntry(EOSSymbol.c_str(), Aux, PIC16Dbg::AuxSize,
363 MangledCTyName.c_str());
Sanjiv Guptadcb6da32009-06-13 17:35:54 +0000364 }
365 }
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000366}
367
Devang Patel715c6622009-08-10 22:11:20 +0000368
Sanjiv Guptabde79422009-06-16 09:45:18 +0000369/// EmitFunctBeginDI - Emit .bf for function.
370///
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000371void PIC16DbgInfo::EmitFunctBeginDI(const Function *F) {
372 std::string FunctName = F->getName();
Sanjiv Guptadcb6da32009-06-13 17:35:54 +0000373 if (EmitDebugDirectives) {
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000374 std::string FunctBeginSym = ".bf." + FunctName;
375 std::string BlockBeginSym = ".bb." + FunctName;
376
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000377 int BFAux[PIC16Dbg::AuxSize] = {0};
Sanjiv Guptabde79422009-06-16 09:45:18 +0000378 BFAux[4] = CurLine;
379 BFAux[5] = CurLine >> 8;
380
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000381 // Emit debug directives for beginning of function.
382 EmitSymbol(FunctBeginSym, PIC16Dbg::C_FCN);
383 EmitAuxEntry(FunctBeginSym, BFAux, PIC16Dbg::AuxSize);
Sanjiv Guptabde79422009-06-16 09:45:18 +0000384
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000385 EmitSymbol(BlockBeginSym, PIC16Dbg::C_BLOCK);
386 EmitAuxEntry(BlockBeginSym, BFAux, PIC16Dbg::AuxSize);
387 }
388}
389
Sanjiv Guptabde79422009-06-16 09:45:18 +0000390/// EmitFunctEndDI - Emit .ef for function end.
391///
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000392void PIC16DbgInfo::EmitFunctEndDI(const Function *F, unsigned Line) {
393 std::string FunctName = F->getName();
Sanjiv Guptadcb6da32009-06-13 17:35:54 +0000394 if (EmitDebugDirectives) {
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000395 std::string FunctEndSym = ".ef." + FunctName;
396 std::string BlockEndSym = ".eb." + FunctName;
397
398 // Emit debug directives for end of function.
399 EmitSymbol(BlockEndSym, PIC16Dbg::C_BLOCK);
400 int EFAux[PIC16Dbg::AuxSize] = {0};
401 // 5th and 6th byte stand for line number.
Sanjiv Guptabde79422009-06-16 09:45:18 +0000402 EFAux[4] = CurLine;
403 EFAux[5] = CurLine >> 8;
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000404 EmitAuxEntry(BlockEndSym, EFAux, PIC16Dbg::AuxSize);
405 EmitSymbol(FunctEndSym, PIC16Dbg::C_FCN);
406 EmitAuxEntry(FunctEndSym, EFAux, PIC16Dbg::AuxSize);
407 }
408}
409
410/// EmitAuxEntry - Emit Auxiliary debug information.
411///
Sanjiv Guptabde79422009-06-16 09:45:18 +0000412void PIC16DbgInfo::EmitAuxEntry(const std::string VarName, int Aux[], int Num,
413 std::string TagName) {
Chris Lattnerb23569a2010-04-04 08:18:47 +0000414 std::string Tmp;
Sanjiv Guptabde79422009-06-16 09:45:18 +0000415 // TagName is emitted in case of structure/union objects.
Chris Lattnerb23569a2010-04-04 08:18:47 +0000416 if (!TagName.empty()) Tmp += ", " + TagName;
417
Sanjiv Guptabde79422009-06-16 09:45:18 +0000418 for (int i = 0; i<Num; i++)
Chris Lattnerb23569a2010-04-04 08:18:47 +0000419 Tmp += "," + utostr(Aux[i] && 0xff);
420
421 OS.EmitRawText("\n\t.dim " + Twine(VarName) + ", 1" + Tmp);
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000422}
423
Sanjiv Guptabde79422009-06-16 09:45:18 +0000424/// EmitSymbol - Emit .def for a symbol. Value is offset for the member.
425///
Chris Lattnerb23569a2010-04-04 08:18:47 +0000426void PIC16DbgInfo::EmitSymbol(std::string Name, short Class,
427 unsigned short Type, unsigned long Value) {
428 std::string Tmp;
Sanjiv Guptadcb6da32009-06-13 17:35:54 +0000429 if (Value > 0)
Chris Lattnerb23569a2010-04-04 08:18:47 +0000430 Tmp = ", value = " + utostr(Value);
431
432 OS.EmitRawText("\n\t.def " + Twine(Name) + ", type = " + utostr(Type) +
433 ", class = " + utostr(Class) + Tmp);
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000434}
435
Sanjiv Guptabde79422009-06-16 09:45:18 +0000436/// EmitVarDebugInfo - Emit debug information for all variables.
437///
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000438void PIC16DbgInfo::EmitVarDebugInfo(Module &M) {
Devang Patel22516662009-08-06 20:53:24 +0000439 DebugInfoFinder DbgFinder;
440 DbgFinder.processModule(M);
Devang Patele4b27562009-08-28 23:24:31 +0000441
Devang Patel22516662009-08-06 20:53:24 +0000442 for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(),
443 E = DbgFinder.global_variable_end(); I != E; ++I) {
Devang Patel92c55112009-07-06 23:28:36 +0000444 DIGlobalVariable DIGV(*I);
445 DIType Ty = DIGV.getType();
446 unsigned short TypeNo = 0;
447 bool HasAux = false;
448 int Aux[PIC16Dbg::AuxSize] = { 0 };
449 std::string TagName = "";
Sanjiv Guptacf1e5be2009-10-15 09:48:25 +0000450 std::string VarName = DIGV.getName();
451 VarName = MAI->getGlobalPrefix() + VarName;
Devang Patel92c55112009-07-06 23:28:36 +0000452 PopulateDebugInfo(Ty, TypeNo, HasAux, Aux, TagName);
453 // Emit debug info only if type information is availaible.
454 if (TypeNo != PIC16Dbg::T_NULL) {
Chris Lattnerb23569a2010-04-04 08:18:47 +0000455 OS.EmitRawText("\t.type " + Twine(VarName) + ", " + Twine(TypeNo));
Devang Patel92c55112009-07-06 23:28:36 +0000456 short ClassNo = getStorageClass(DIGV);
Chris Lattnerb23569a2010-04-04 08:18:47 +0000457 OS.EmitRawText("\t.class " + Twine(VarName) + ", " + Twine(ClassNo));
458 if (HasAux)
Devang Patel92c55112009-07-06 23:28:36 +0000459 EmitAuxEntry(VarName, Aux, PIC16Dbg::AuxSize, TagName);
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000460 }
461 }
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000462}
463
Sanjiv Guptabde79422009-06-16 09:45:18 +0000464/// SwitchToCU - Switch to a new compilation unit.
465///
Devang Patele4b27562009-08-28 23:24:31 +0000466void PIC16DbgInfo::SwitchToCU(MDNode *CU) {
Sanjiv Guptabde79422009-06-16 09:45:18 +0000467 // Get the file path from CU.
468 DICompileUnit cu(CU);
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000469 std::string DirName = cu.getDirectory();
470 std::string FileName = cu.getFilename();
471 std::string FilePath = DirName + "/" + FileName;
Sanjiv Guptabde79422009-06-16 09:45:18 +0000472
Sanjiv Gupta9a501cf2009-11-14 07:22:25 +0000473 // Nothing to do if source file is still same.
474 if ( FilePath == CurFile ) return;
Sanjiv Guptabde79422009-06-16 09:45:18 +0000475
476 // Else, close the current one and start a new.
Chris Lattnerb23569a2010-04-04 08:18:47 +0000477 if (CurFile != "")
478 OS.EmitRawText(StringRef("\t.eof"));
479 OS.EmitRawText("\n\t.file\t\"" + Twine(FilePath) + "\"");
Sanjiv Guptabde79422009-06-16 09:45:18 +0000480 CurFile = FilePath;
481 CurLine = 0;
Sanjiv Guptadd4694b2009-05-28 18:24:11 +0000482}
Sanjiv Gupta3fc7e532009-06-03 16:27:49 +0000483
Sanjiv Guptabde79422009-06-16 09:45:18 +0000484/// EmitEOF - Emit .eof for end of file.
485///
Sanjiv Gupta3fc7e532009-06-03 16:27:49 +0000486void PIC16DbgInfo::EmitEOF() {
487 if (CurFile != "")
Chris Lattnerb23569a2010-04-04 08:18:47 +0000488 OS.EmitRawText(StringRef("\t.EOF"));
Sanjiv Gupta3fc7e532009-06-03 16:27:49 +0000489}
490