Indentation change.
[llvm/avr.git] / lib / CodeGen / AsmPrinter / DwarfPrinter.cpp
blob955c073d7163d07c92f32ae380d2962e704060f3
1 //===--- lib/CodeGen/DwarfPrinter.cpp - Dwarf Printer ---------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Emit general DWARF directives.
11 //
12 //===----------------------------------------------------------------------===//
14 #include "DwarfPrinter.h"
15 #include "llvm/Module.h"
16 #include "llvm/CodeGen/AsmPrinter.h"
17 #include "llvm/CodeGen/MachineFrameInfo.h"
18 #include "llvm/CodeGen/MachineModuleInfo.h"
19 #include "llvm/Support/Dwarf.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Target/TargetAsmInfo.h"
22 #include "llvm/Target/TargetData.h"
23 #include "llvm/Target/TargetFrameInfo.h"
24 #include "llvm/Target/TargetRegisterInfo.h"
26 using namespace llvm;
28 Dwarf::Dwarf(raw_ostream &OS, AsmPrinter *A, const TargetAsmInfo *T,
29 const char *flavor)
30 : O(OS), Asm(A), TAI(T), TD(Asm->TM.getTargetData()),
31 RI(Asm->TM.getRegisterInfo()), M(NULL), MF(NULL), MMI(NULL),
32 SubprogramCount(0), Flavor(flavor), SetCounter(1) {}
34 void Dwarf::PrintRelDirective(bool Force32Bit, bool isInSection) const {
35 if (isInSection && TAI->getDwarfSectionOffsetDirective())
36 O << TAI->getDwarfSectionOffsetDirective();
37 else if (Force32Bit || TD->getPointerSize() == sizeof(int32_t))
38 O << TAI->getData32bitsDirective();
39 else
40 O << TAI->getData64bitsDirective();
43 /// PrintLabelName - Print label name in form used by Dwarf writer.
44 ///
45 void Dwarf::PrintLabelName(const char *Tag, unsigned Number) const {
46 O << TAI->getPrivateGlobalPrefix() << Tag;
47 if (Number) O << Number;
49 void Dwarf::PrintLabelName(const char *Tag, unsigned Number,
50 const char *Suffix) const {
51 O << TAI->getPrivateGlobalPrefix() << Tag;
52 if (Number) O << Number;
53 O << Suffix;
56 /// EmitLabel - Emit location label for internal use by Dwarf.
57 ///
58 void Dwarf::EmitLabel(const char *Tag, unsigned Number) const {
59 PrintLabelName(Tag, Number);
60 O << ":\n";
63 /// EmitReference - Emit a reference to a label.
64 ///
65 void Dwarf::EmitReference(const char *Tag, unsigned Number,
66 bool IsPCRelative, bool Force32Bit) const {
67 PrintRelDirective(Force32Bit);
68 PrintLabelName(Tag, Number);
69 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
71 void Dwarf::EmitReference(const std::string &Name, bool IsPCRelative,
72 bool Force32Bit) const {
73 PrintRelDirective(Force32Bit);
74 O << Name;
75 if (IsPCRelative) O << "-" << TAI->getPCSymbol();
78 /// EmitDifference - Emit the difference between two labels. Some assemblers do
79 /// not behave with absolute expressions with data directives, so there is an
80 /// option (needsSet) to use an intermediary set expression.
81 void Dwarf::EmitDifference(const char *TagHi, unsigned NumberHi,
82 const char *TagLo, unsigned NumberLo,
83 bool IsSmall) {
84 if (TAI->needsSet()) {
85 O << "\t.set\t";
86 PrintLabelName("set", SetCounter, Flavor);
87 O << ",";
88 PrintLabelName(TagHi, NumberHi);
89 O << "-";
90 PrintLabelName(TagLo, NumberLo);
91 O << "\n";
93 PrintRelDirective(IsSmall);
94 PrintLabelName("set", SetCounter, Flavor);
95 ++SetCounter;
96 } else {
97 PrintRelDirective(IsSmall);
98 PrintLabelName(TagHi, NumberHi);
99 O << "-";
100 PrintLabelName(TagLo, NumberLo);
104 void Dwarf::EmitSectionOffset(const char* Label, const char* Section,
105 unsigned LabelNumber, unsigned SectionNumber,
106 bool IsSmall, bool isEH,
107 bool useSet) {
108 bool printAbsolute = false;
109 if (isEH)
110 printAbsolute = TAI->isAbsoluteEHSectionOffsets();
111 else
112 printAbsolute = TAI->isAbsoluteDebugSectionOffsets();
114 if (TAI->needsSet() && useSet) {
115 O << "\t.set\t";
116 PrintLabelName("set", SetCounter, Flavor);
117 O << ",";
118 PrintLabelName(Label, LabelNumber);
120 if (!printAbsolute) {
121 O << "-";
122 PrintLabelName(Section, SectionNumber);
125 O << "\n";
126 PrintRelDirective(IsSmall);
127 PrintLabelName("set", SetCounter, Flavor);
128 ++SetCounter;
129 } else {
130 PrintRelDirective(IsSmall, true);
131 PrintLabelName(Label, LabelNumber);
133 if (!printAbsolute) {
134 O << "-";
135 PrintLabelName(Section, SectionNumber);
140 /// EmitFrameMoves - Emit frame instructions to describe the layout of the
141 /// frame.
142 void Dwarf::EmitFrameMoves(const char *BaseLabel, unsigned BaseLabelID,
143 const std::vector<MachineMove> &Moves, bool isEH) {
144 int stackGrowth =
145 Asm->TM.getFrameInfo()->getStackGrowthDirection() ==
146 TargetFrameInfo::StackGrowsUp ?
147 TD->getPointerSize() : -TD->getPointerSize();
148 bool IsLocal = BaseLabel && strcmp(BaseLabel, "label") == 0;
150 for (unsigned i = 0, N = Moves.size(); i < N; ++i) {
151 const MachineMove &Move = Moves[i];
152 unsigned LabelID = Move.getLabelID();
154 if (LabelID) {
155 LabelID = MMI->MappedLabel(LabelID);
157 // Throw out move if the label is invalid.
158 if (!LabelID) continue;
161 const MachineLocation &Dst = Move.getDestination();
162 const MachineLocation &Src = Move.getSource();
164 // Advance row if new location.
165 if (BaseLabel && LabelID && (BaseLabelID != LabelID || !IsLocal)) {
166 Asm->EmitInt8(dwarf::DW_CFA_advance_loc4);
167 Asm->EOL("DW_CFA_advance_loc4");
168 EmitDifference("label", LabelID, BaseLabel, BaseLabelID, true);
169 Asm->EOL();
171 BaseLabelID = LabelID;
172 BaseLabel = "label";
173 IsLocal = true;
176 // If advancing cfa.
177 if (Dst.isReg() && Dst.getReg() == MachineLocation::VirtualFP) {
178 if (!Src.isReg()) {
179 if (Src.getReg() == MachineLocation::VirtualFP) {
180 Asm->EmitInt8(dwarf::DW_CFA_def_cfa_offset);
181 Asm->EOL("DW_CFA_def_cfa_offset");
182 } else {
183 Asm->EmitInt8(dwarf::DW_CFA_def_cfa);
184 Asm->EOL("DW_CFA_def_cfa");
185 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Src.getReg(), isEH));
186 Asm->EOL("Register");
189 int Offset = -Src.getOffset();
191 Asm->EmitULEB128Bytes(Offset);
192 Asm->EOL("Offset");
193 } else {
194 llvm_unreachable("Machine move not supported yet.");
196 } else if (Src.isReg() &&
197 Src.getReg() == MachineLocation::VirtualFP) {
198 if (Dst.isReg()) {
199 Asm->EmitInt8(dwarf::DW_CFA_def_cfa_register);
200 Asm->EOL("DW_CFA_def_cfa_register");
201 Asm->EmitULEB128Bytes(RI->getDwarfRegNum(Dst.getReg(), isEH));
202 Asm->EOL("Register");
203 } else {
204 llvm_unreachable("Machine move not supported yet.");
206 } else {
207 unsigned Reg = RI->getDwarfRegNum(Src.getReg(), isEH);
208 int Offset = Dst.getOffset() / stackGrowth;
210 if (Offset < 0) {
211 Asm->EmitInt8(dwarf::DW_CFA_offset_extended_sf);
212 Asm->EOL("DW_CFA_offset_extended_sf");
213 Asm->EmitULEB128Bytes(Reg);
214 Asm->EOL("Reg");
215 Asm->EmitSLEB128Bytes(Offset);
216 Asm->EOL("Offset");
217 } else if (Reg < 64) {
218 Asm->EmitInt8(dwarf::DW_CFA_offset + Reg);
219 if (Asm->isVerbose())
220 Asm->EOL("DW_CFA_offset + Reg (" + utostr(Reg) + ")");
221 else
222 Asm->EOL();
223 Asm->EmitULEB128Bytes(Offset);
224 Asm->EOL("Offset");
225 } else {
226 Asm->EmitInt8(dwarf::DW_CFA_offset_extended);
227 Asm->EOL("DW_CFA_offset_extended");
228 Asm->EmitULEB128Bytes(Reg);
229 Asm->EOL("Reg");
230 Asm->EmitULEB128Bytes(Offset);
231 Asm->EOL("Offset");