blob: 8ea182537d2122e66008224b52ac0e66320aaaa5 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
12// the output mechanism used by `llc'.
13//
14// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
16//
17//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "asmprinter"
20#include "PPC.h"
21#include "PPCPredicates.h"
22#include "PPCTargetMachine.h"
23#include "PPCSubtarget.h"
24#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
28#include "llvm/CodeGen/AsmPrinter.h"
29#include "llvm/CodeGen/DwarfWriter.h"
30#include "llvm/CodeGen/MachineModuleInfo.h"
31#include "llvm/CodeGen/MachineFunctionPass.h"
32#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling36ccaea2008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034#include "llvm/Support/Mangler.h"
35#include "llvm/Support/MathExtras.h"
36#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/Debug.h"
38#include "llvm/Support/Compiler.h"
Owen Anderson847b99b2008-08-21 00:14:44 +000039#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000041#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetOptions.h"
44#include "llvm/ADT/Statistic.h"
45#include "llvm/ADT/StringExtras.h"
46#include <set>
47using namespace llvm;
48
49STATISTIC(EmittedInsts, "Number of machine instrs printed");
50
51namespace {
52 struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
53 std::set<std::string> FnStubs, GVStubs;
54 const PPCSubtarget &Subtarget;
55
Owen Anderson847b99b2008-08-21 00:14:44 +000056 PPCAsmPrinter(raw_ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
Dan Gohmanf17a25c2007-07-18 16:29:46 +000057 : AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) {
58 }
59
60 virtual const char *getPassName() const {
61 return "PowerPC Assembly Printer";
62 }
63
64 PPCTargetMachine &getTM() {
65 return static_cast<PPCTargetMachine&>(TM);
66 }
67
68 unsigned enumRegToMachineReg(unsigned enumReg) {
69 switch (enumReg) {
70 default: assert(0 && "Unhandled register!"); break;
71 case PPC::CR0: return 0;
72 case PPC::CR1: return 1;
73 case PPC::CR2: return 2;
74 case PPC::CR3: return 3;
75 case PPC::CR4: return 4;
76 case PPC::CR5: return 5;
77 case PPC::CR6: return 6;
78 case PPC::CR7: return 7;
79 }
80 abort();
81 }
82
83 /// printInstruction - This method is automatically generated by tablegen
84 /// from the instruction set description. This method returns true if the
85 /// machine instruction was sufficiently described to print it, otherwise it
86 /// returns false.
87 bool printInstruction(const MachineInstr *MI);
88
89 void printMachineInstruction(const MachineInstr *MI);
90 void printOp(const MachineOperand &MO);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +000091
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092 /// stripRegisterPrefix - This method strips the character prefix from a
93 /// register name so that only the number is left. Used by for linux asm.
94 const char *stripRegisterPrefix(const char *RegName) {
95 switch (RegName[0]) {
96 case 'r':
97 case 'f':
98 case 'v': return RegName + 1;
99 case 'c': if (RegName[1] == 'r') return RegName + 2;
100 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000101
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 return RegName;
103 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000104
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000105 /// printRegister - Print register according to target requirements.
106 ///
107 void printRegister(const MachineOperand &MO, bool R0AsZero) {
108 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000109 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000110
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000111 // If we should use 0 for R0.
112 if (R0AsZero && RegNo == PPC::R0) {
113 O << "0";
114 return;
115 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000116
Bill Wendling8eeb9792008-02-26 21:11:01 +0000117 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 // Linux assembler (Others?) does not take register mnemonics.
119 // FIXME - What about special registers used in mfspr/mtspr?
120 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
121 O << RegName;
122 }
123
124 void printOperand(const MachineInstr *MI, unsigned OpNo) {
125 const MachineOperand &MO = MI->getOperand(OpNo);
126 if (MO.isRegister()) {
127 printRegister(MO, false);
128 } else if (MO.isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000129 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130 } else {
131 printOp(MO);
132 }
133 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000134
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
136 unsigned AsmVariant, const char *ExtraCode);
137 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
138 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000139
140
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000141 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000142 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 value = (value << (32-5)) >> (32-5);
144 O << (int)value;
145 }
146 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000147 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 assert(value <= 31 && "Invalid u5imm argument!");
149 O << (unsigned int)value;
150 }
151 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000152 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 assert(value <= 63 && "Invalid u6imm argument!");
154 O << (unsigned int)value;
155 }
156 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000157 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000158 }
159 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000160 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000161 }
162 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
163 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000164 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 } else {
166 O << "lo16(";
167 printOp(MI->getOperand(OpNo));
168 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000169 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170 else
171 O << ')';
172 }
173 }
174 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
175 // Branches can take an immediate operand. This is used by the branch
176 // selection pass to print $+8, an eight byte displacement from the PC.
177 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000178 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000179 } else {
180 printOp(MI->getOperand(OpNo));
181 }
182 }
183 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
184 const MachineOperand &MO = MI->getOperand(OpNo);
185 if (TM.getRelocationModel() != Reloc::Static) {
186 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
187 GlobalValue *GV = MO.getGlobal();
188 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +0000189 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000190 // Dynamically-resolved functions need a stub for the function.
191 std::string Name = Mang->getValueName(GV);
192 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000193 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000194 if (GV->hasExternalWeakLinkage())
195 ExtWeakSymbols.insert(GV);
196 return;
197 }
198 }
199 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
200 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
201 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000202 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000203 return;
204 }
205 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000206
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000207 printOp(MI->getOperand(OpNo));
208 }
209 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000210 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 }
212 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000213 O << "\"L" << getFunctionNumber() << "$pb\"\n";
214 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000215 }
216 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
217 if (MI->getOperand(OpNo).isImmediate()) {
218 printS16ImmOperand(MI, OpNo);
219 } else {
220 if (Subtarget.isDarwin()) O << "ha16(";
221 printOp(MI->getOperand(OpNo));
222 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000223 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224 if (Subtarget.isDarwin())
225 O << ')';
226 else
227 O << "@ha";
228 }
229 }
230 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
231 if (MI->getOperand(OpNo).isImmediate()) {
232 printS16ImmOperand(MI, OpNo);
233 } else {
234 if (Subtarget.isDarwin()) O << "lo16(";
235 printOp(MI->getOperand(OpNo));
236 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000237 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 if (Subtarget.isDarwin())
239 O << ')';
240 else
241 O << "@l";
242 }
243 }
244 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
245 unsigned CCReg = MI->getOperand(OpNo).getReg();
246 unsigned RegNo = enumRegToMachineReg(CCReg);
247 O << (0x80 >> RegNo);
248 }
249 // The new addressing mode printers.
250 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
251 printSymbolLo(MI, OpNo);
252 O << '(';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000253 if (MI->getOperand(OpNo+1).isRegister() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254 MI->getOperand(OpNo+1).getReg() == PPC::R0)
255 O << "0";
256 else
257 printOperand(MI, OpNo+1);
258 O << ')';
259 }
260 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
261 if (MI->getOperand(OpNo).isImmediate())
262 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000263 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000264 printSymbolLo(MI, OpNo);
265 O << '(';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000266 if (MI->getOperand(OpNo+1).isRegister() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000267 MI->getOperand(OpNo+1).getReg() == PPC::R0)
268 O << "0";
269 else
270 printOperand(MI, OpNo+1);
271 O << ')';
272 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000273
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
275 // When used as the base register, r0 reads constant zero rather than
276 // the value contained in the register. For this reason, the darwin
277 // assembler requires that we print r0 as 0 (no r) when used as the base.
278 const MachineOperand &MO = MI->getOperand(OpNo);
279 printRegister(MO, true);
280 O << ", ";
281 printOperand(MI, OpNo+1);
282 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000283
284 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 const char *Modifier);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000286
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
288 virtual bool doFinalization(Module &M) = 0;
289
290 virtual void EmitExternalGlobal(const GlobalVariable *GV);
291 };
292
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000293 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
294 struct VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295
296 DwarfWriter DW;
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000297 MachineModuleInfo *MMI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000298
Owen Anderson847b99b2008-08-21 00:14:44 +0000299 PPCLinuxAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300 const TargetAsmInfo *T)
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000301 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000302 }
303
304 virtual const char *getPassName() const {
305 return "Linux PPC Assembly Printer";
306 }
307
308 bool runOnMachineFunction(MachineFunction &F);
309 bool doInitialization(Module &M);
310 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000311
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000312 void getAnalysisUsage(AnalysisUsage &AU) const {
313 AU.setPreservesAll();
314 AU.addRequired<MachineModuleInfo>();
315 PPCAsmPrinter::getAnalysisUsage(AU);
316 }
317
318 /// getSectionForFunction - Return the section that we should emit the
319 /// specified function body into.
320 virtual std::string getSectionForFunction(const Function &F) const;
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000321 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000322 };
323
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000324 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
325 /// OS X
326 struct VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
327
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328 DwarfWriter DW;
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000329 MachineModuleInfo *MMI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330
Owen Anderson847b99b2008-08-21 00:14:44 +0000331 PPCDarwinAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000332 const TargetAsmInfo *T)
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000333 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000334 }
335
336 virtual const char *getPassName() const {
337 return "Darwin PPC Assembly Printer";
338 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000339
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000340 bool runOnMachineFunction(MachineFunction &F);
341 bool doInitialization(Module &M);
342 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000343
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 void getAnalysisUsage(AnalysisUsage &AU) const {
345 AU.setPreservesAll();
346 AU.addRequired<MachineModuleInfo>();
347 PPCAsmPrinter::getAnalysisUsage(AU);
348 }
349
350 /// getSectionForFunction - Return the section that we should emit the
351 /// specified function body into.
352 virtual std::string getSectionForFunction(const Function &F) const;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000353 void printModuleLevelGV(const GlobalVariable* GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000354 };
355} // end of anonymous namespace
356
357// Include the auto-generated portion of the assembly writer
358#include "PPCGenAsmWriter.inc"
359
360void PPCAsmPrinter::printOp(const MachineOperand &MO) {
361 switch (MO.getType()) {
362 case MachineOperand::MO_Immediate:
363 cerr << "printOp() does not handle immediate values\n";
364 abort();
365 return;
366
367 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000368 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000369 return;
370 case MachineOperand::MO_JumpTableIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000371 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000372 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000373 // FIXME: PIC relocation model
374 return;
375 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000376 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000377 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000378 return;
379 case MachineOperand::MO_ExternalSymbol:
380 // Computing the address of an external symbol, not calling it.
381 if (TM.getRelocationModel() != Reloc::Static) {
382 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
383 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000384 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000385 return;
386 }
387 O << TAI->getGlobalPrefix() << MO.getSymbolName();
388 return;
389 case MachineOperand::MO_GlobalAddress: {
390 // Computing the address of a global symbol, not calling it.
391 GlobalValue *GV = MO.getGlobal();
392 std::string Name = Mang->getValueName(GV);
393
394 // External or weakly linked global variables need non-lazily-resolved stubs
395 if (TM.getRelocationModel() != Reloc::Static) {
396 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +0000397 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000399 printSuffixedName(Name, "$non_lazy_ptr");
Dale Johannesencaf11182008-05-16 20:09:25 +0000400 if (GV->hasExternalWeakLinkage())
401 ExtWeakSymbols.insert(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000402 return;
403 }
404 }
405 O << Name;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000406
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407 if (MO.getOffset() > 0)
408 O << "+" << MO.getOffset();
409 else if (MO.getOffset() < 0)
410 O << MO.getOffset();
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000411
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412 if (GV->hasExternalWeakLinkage())
413 ExtWeakSymbols.insert(GV);
414 return;
415 }
416
417 default:
418 O << "<unknown operand type: " << MO.getType() << ">";
419 return;
420 }
421}
422
423/// EmitExternalGlobal - In this case we need to use the indirect symbol.
424///
425void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
426 std::string Name = getGlobalLinkName(GV);
427 if (TM.getRelocationModel() != Reloc::Static) {
428 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000429 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000430 return;
431 }
432 O << Name;
433}
434
435/// PrintAsmOperand - Print out an operand for an inline asm expression.
436///
437bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000438 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439 const char *ExtraCode) {
440 // Does this asm operand have a single letter operand modifier?
441 if (ExtraCode && ExtraCode[0]) {
442 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000443
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000444 switch (ExtraCode[0]) {
445 default: return true; // Unknown modifier.
446 case 'c': // Don't print "$" before a global var name or constant.
447 // PPC never has a prefix.
448 printOperand(MI, OpNo);
449 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000450 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000451 // Verify that this operand has two consecutive registers.
452 if (!MI->getOperand(OpNo).isRegister() ||
453 OpNo+1 == MI->getNumOperands() ||
454 !MI->getOperand(OpNo+1).isRegister())
455 return true;
456 ++OpNo; // Return the high-part.
457 break;
458 case 'I':
459 // Write 'i' if an integer constant, otherwise nothing. Used to print
460 // addi vs add, etc.
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000461 if (MI->getOperand(OpNo).isImmediate())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000462 O << "i";
463 return false;
464 }
465 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000466
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000467 printOperand(MI, OpNo);
468 return false;
469}
470
471bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000472 unsigned AsmVariant,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000473 const char *ExtraCode) {
474 if (ExtraCode && ExtraCode[0])
475 return true; // Unknown modifier.
476 if (MI->getOperand(OpNo).isRegister())
477 printMemRegReg(MI, OpNo);
478 else
479 printMemRegImm(MI, OpNo);
480 return false;
481}
482
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000483void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 const char *Modifier) {
485 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
486 unsigned Code = MI->getOperand(OpNo).getImm();
487 if (!strcmp(Modifier, "cc")) {
488 switch ((PPC::Predicate)Code) {
489 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
490 case PPC::PRED_LT: O << "lt"; return;
491 case PPC::PRED_LE: O << "le"; return;
492 case PPC::PRED_EQ: O << "eq"; return;
493 case PPC::PRED_GE: O << "ge"; return;
494 case PPC::PRED_GT: O << "gt"; return;
495 case PPC::PRED_NE: O << "ne"; return;
496 case PPC::PRED_UN: O << "un"; return;
497 case PPC::PRED_NU: O << "nu"; return;
498 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000499
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000500 } else {
501 assert(!strcmp(Modifier, "reg") &&
502 "Need to specify 'cc' or 'reg' as predicate op modifier!");
503 // Don't print the register for 'always'.
504 if (Code == PPC::PRED_ALWAYS) return;
505 printOperand(MI, OpNo+1);
506 }
507}
508
509
510/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
511/// the current output stream.
512///
513void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
514 ++EmittedInsts;
515
516 // Check for slwi/srwi mnemonics.
517 if (MI->getOpcode() == PPC::RLWINM) {
518 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000519 unsigned char SH = MI->getOperand(2).getImm();
520 unsigned char MB = MI->getOperand(3).getImm();
521 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000522 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000523 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 }
525 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000526 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 SH = 32-SH;
528 }
529 if (FoundMnemonic) {
530 printOperand(MI, 0);
531 O << ", ";
532 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000533 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000534 return;
535 }
536 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
537 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000538 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000539 printOperand(MI, 0);
540 O << ", ";
541 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000542 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 return;
544 }
545 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000546 unsigned char SH = MI->getOperand(2).getImm();
547 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
549 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000550 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000551 printOperand(MI, 0);
552 O << ", ";
553 printOperand(MI, 1);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000554 O << ", " << (unsigned int)SH << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000555 return;
556 }
557 }
558
559 if (printInstruction(MI))
560 return; // Printer was automatically generated
561
562 assert(0 && "Unhandled instruction in asm writer!");
563 abort();
564 return;
565}
566
567/// runOnMachineFunction - This uses the printMachineInstruction()
568/// method to print assembly for each instruction.
569///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000570bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571
572 SetupMachineFunction(MF);
573 O << "\n\n";
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000574
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000575 // Print out constants referenced by the function
576 EmitConstantPool(MF.getConstantPool());
577
578 // Print out labels for the function.
579 const Function *F = MF.getFunction();
580 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000581
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000582 switch (F->getLinkage()) {
583 default: assert(0 && "Unknown linkage type!");
584 case Function::InternalLinkage: // Symbols default to internal.
585 break;
586 case Function::ExternalLinkage:
587 O << "\t.global\t" << CurrentFnName << '\n'
588 << "\t.type\t" << CurrentFnName << ", @function\n";
589 break;
590 case Function::WeakLinkage:
591 case Function::LinkOnceLinkage:
592 O << "\t.global\t" << CurrentFnName << '\n';
593 O << "\t.weak\t" << CurrentFnName << '\n';
594 break;
595 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000596
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000597 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000598
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000599 EmitAlignment(2, F);
600 O << CurrentFnName << ":\n";
601
602 // Emit pre-function debug information.
603 DW.BeginFunction(&MF);
604
605 // Print out code for the function.
606 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
607 I != E; ++I) {
608 // Print a label for the basic block.
609 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000610 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000611 O << '\n';
612 }
613 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
614 II != E; ++II) {
615 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000616 printMachineInstruction(II);
617 }
618 }
619
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000620 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000621
622 // Print out jump tables referenced by the function.
623 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000624
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625 // Emit post-function debug information.
626 DW.EndFunction();
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000627
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628 // We didn't modify anything.
629 return false;
630}
631
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000632bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohman4a558a32007-07-25 19:33:14 +0000633 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000634
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000635 // Emit initial debug information.
636 DW.BeginModule(&M);
637
638 // AsmPrinter::doInitialization should have done this analysis.
639 MMI = getAnalysisToUpdate<MachineModuleInfo>();
640 assert(MMI);
641 DW.SetModuleInfo(MMI);
642
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000643 // GNU as handles section names wrapped in quotes
644 Mang->setUseQuotes(true);
645
646 SwitchToTextSection(TAI->getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000647
Dan Gohman4a558a32007-07-25 19:33:14 +0000648 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000649}
650
Chris Lattner2b638a72008-02-15 19:04:54 +0000651/// PrintUnmangledNameSafely - Print out the printable characters in the name.
652/// Don't print things like \n or \0.
Owen Anderson847b99b2008-08-21 00:14:44 +0000653static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
Chris Lattner2b638a72008-02-15 19:04:54 +0000654 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
655 Name != E; ++Name)
656 if (isprint(*Name))
657 OS << *Name;
658}
659
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000660void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000661 const TargetData *TD = TM.getTargetData();
662
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000663 if (!GVar->hasInitializer())
664 return; // External global require no code
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000665
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000666 // Check to see if this is a special global used by LLVM, if so, emit it.
667 if (EmitSpecialLLVMGlobal(GVar))
668 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000669
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000670 std::string name = Mang->getValueName(GVar);
671 std::string SectionName = TAI->SectionForGlobal(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000673 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000674
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000675 Constant *C = GVar->getInitializer();
676 const Type *Type = C->getType();
677 unsigned Size = TD->getABITypeSize(Type);
678 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000679
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000680 SwitchToDataSection(SectionName.c_str());
681
682 if (C->isNullValue() && /* FIXME: Verify correct */
683 !GVar->hasSection() &&
684 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
685 GVar->isWeakForLinker())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000687
688 if (GVar->hasExternalLinkage()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000689 O << "\t.global " << name << '\n';
690 O << "\t.type " << name << ", @object\n";
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000691 O << name << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000692 O << "\t.zero " << Size << '\n';
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000693 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000694 O << TAI->getLCOMMDirective() << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000695 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000696 O << ".comm " << name << ',' << Size;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 }
Chris Lattner2b638a72008-02-15 19:04:54 +0000698 O << "\t\t" << TAI->getCommentString() << " '";
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000699 PrintUnmangledNameSafely(GVar, O);
Chris Lattner2b638a72008-02-15 19:04:54 +0000700 O << "'\n";
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000701 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 }
703
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000704 switch (GVar->getLinkage()) {
705 case GlobalValue::LinkOnceLinkage:
706 case GlobalValue::WeakLinkage:
707 case GlobalValue::CommonLinkage:
708 O << "\t.global " << name << '\n'
709 << "\t.type " << name << ", @object\n"
710 << "\t.weak " << name << '\n';
711 break;
712 case GlobalValue::AppendingLinkage:
713 // FIXME: appending linkage variables should go into a section of
714 // their name or something. For now, just emit them as external.
715 case GlobalValue::ExternalLinkage:
716 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000717 O << "\t.global " << name << '\n'
Anton Korobeynikov894be4b2008-08-08 18:23:49 +0000718 << "\t.type " << name << ", @object\n";
719 // FALL THROUGH
720 case GlobalValue::InternalLinkage:
721 break;
722 default:
723 cerr << "Unknown linkage type!";
724 abort();
725 }
726
727 EmitAlignment(Align, GVar);
728 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
729 PrintUnmangledNameSafely(GVar, O);
730 O << "'\n";
731
732 // If the initializer is a extern weak symbol, remember to emit the weak
733 // reference!
734 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
735 if (GV->hasExternalWeakLinkage())
736 ExtWeakSymbols.insert(GV);
737
738 EmitGlobalConstant(C);
739 O << '\n';
740}
741
742bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
743 // Print out module-level global variables here.
744 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
745 I != E; ++I)
746 printModuleLevelGV(I);
747
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000748 // TODO
749
750 // Emit initial debug information.
751 DW.EndModule();
752
Dan Gohman4a558a32007-07-25 19:33:14 +0000753 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754}
755
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000756std::string PPCLinuxAsmPrinter::getSectionForFunction(const Function &F) const {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000757 return TAI->SectionForGlobal(&F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758}
759
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000760std::string PPCDarwinAsmPrinter::getSectionForFunction(const Function &F) const {
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000761 return TAI->SectionForGlobal(&F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000762}
763
764/// runOnMachineFunction - This uses the printMachineInstruction()
765/// method to print assembly for each instruction.
766///
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000767bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000768 SetupMachineFunction(MF);
769 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000770
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000771 // Print out constants referenced by the function
772 EmitConstantPool(MF.getConstantPool());
773
774 // Print out labels for the function.
775 const Function *F = MF.getFunction();
776 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000777
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000778 switch (F->getLinkage()) {
779 default: assert(0 && "Unknown linkage type!");
780 case Function::InternalLinkage: // Symbols default to internal.
781 break;
782 case Function::ExternalLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000783 O << "\t.globl\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000784 break;
785 case Function::WeakLinkage:
786 case Function::LinkOnceLinkage:
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000787 O << "\t.globl\t" << CurrentFnName << '\n';
788 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789 break;
790 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000791
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000792 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000793
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000794 EmitAlignment(OptimizeForSize ? 2 : 4, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000795 O << CurrentFnName << ":\n";
796
797 // Emit pre-function debug information.
798 DW.BeginFunction(&MF);
799
Bill Wendling36ccaea2008-01-26 06:51:24 +0000800 // If the function is empty, then we need to emit *something*. Otherwise, the
801 // function's label might be associated with something that it wasn't meant to
802 // be associated with. We emit a noop in this situation.
803 MachineFunction::iterator I = MF.begin();
804
Bill Wendlingb5880a72008-01-26 09:03:52 +0000805 if (++I == MF.end() && MF.front().empty())
806 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000807
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808 // Print out code for the function.
809 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
810 I != E; ++I) {
811 // Print a label for the basic block.
812 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000813 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 O << '\n';
815 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000816 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
817 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000818 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000819 printMachineInstruction(II);
820 }
821 }
822
823 // Print out jump tables referenced by the function.
824 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000825
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000826 // Emit post-function debug information.
827 DW.EndFunction();
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000828
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000829 // We didn't modify anything.
830 return false;
831}
832
833
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000834bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000835 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000836 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000837 "ppc",
838 "ppc601",
839 "ppc602",
840 "ppc603",
841 "ppc7400",
842 "ppc750",
843 "ppc970",
844 "ppc64"
845 };
846
847 unsigned Directive = Subtarget.getDarwinDirective();
848 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
849 Directive = PPC::DIR_970;
850 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
851 Directive = PPC::DIR_7400;
852 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
853 Directive = PPC::DIR_64;
854 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000855 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000856
Dan Gohman4a558a32007-07-25 19:33:14 +0000857 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000858
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000859 // Emit initial debug information.
860 DW.BeginModule(&M);
861
862 // We need this for Personality functions.
863 // AsmPrinter::doInitialization should have done this analysis.
864 MMI = getAnalysisToUpdate<MachineModuleInfo>();
865 assert(MMI);
866 DW.SetModuleInfo(MMI);
867
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868 // Darwin wants symbols to be quoted if they have complex names.
869 Mang->setUseQuotes(true);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000870
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000871 // Prime text sections so they are adjacent. This reduces the likelihood a
872 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen3c788322008-01-11 00:54:37 +0000873 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000874 "pure_instructions");
875 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000876 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000877 "pure_instructions,32");
878 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000879 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000880 "pure_instructions,16");
881 }
882 SwitchToTextSection(TAI->getTextSection());
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000883
Dan Gohman4a558a32007-07-25 19:33:14 +0000884 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885}
886
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000887void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
888 const TargetData *TD = TM.getTargetData();
889
890 if (!GVar->hasInitializer())
891 return; // External global require no code
892
893 // Check to see if this is a special global used by LLVM, if so, emit it.
894 if (EmitSpecialLLVMGlobal(GVar)) {
895 if (TM.getRelocationModel() == Reloc::Static) {
896 if (GVar->getName() == "llvm.global_ctors")
897 O << ".reference .constructors_used\n";
898 else if (GVar->getName() == "llvm.global_dtors")
899 O << ".reference .destructors_used\n";
900 }
901 return;
902 }
903
904 std::string name = Mang->getValueName(GVar);
905 std::string SectionName = TAI->SectionForGlobal(GVar);
906
Anton Korobeynikov78d69aa2008-08-08 18:25:07 +0000907 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000908
909 Constant *C = GVar->getInitializer();
910 const Type *Type = C->getType();
911 unsigned Size = TD->getABITypeSize(Type);
912 unsigned Align = TD->getPreferredAlignmentLog(GVar);
913
914 SwitchToDataSection(SectionName.c_str());
915
916 if (C->isNullValue() && /* FIXME: Verify correct */
917 !GVar->hasSection() &&
918 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
919 GVar->isWeakForLinker())) {
920 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
921
922 if (GVar->hasExternalLinkage()) {
923 O << "\t.globl " << name << '\n';
924 O << "\t.zerofill __DATA, __common, " << name << ", "
925 << Size << ", " << Align;
926 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000927 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000928 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000929 O << "\t.globl " << name << '\n'
930 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000931 EmitAlignment(Align, GVar);
932 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
933 PrintUnmangledNameSafely(GVar, O);
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000934 O << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000935 EmitGlobalConstant(C);
936 return;
937 } else {
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000938 O << ".comm " << name << ',' << Size;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000939 // Darwin 9 and above support aligned common data.
940 if (Subtarget.isDarwin9())
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000941 O << ',' << Align;
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000942 }
943 O << "\t\t" << TAI->getCommentString() << " '";
944 PrintUnmangledNameSafely(GVar, O);
945 O << "'\n";
946 return;
947 }
948
949 switch (GVar->getLinkage()) {
950 case GlobalValue::LinkOnceLinkage:
951 case GlobalValue::WeakLinkage:
952 case GlobalValue::CommonLinkage:
953 O << "\t.globl " << name << '\n'
954 << "\t.weak_definition " << name << '\n';
955 break;
956 case GlobalValue::AppendingLinkage:
957 // FIXME: appending linkage variables should go into a section of
958 // their name or something. For now, just emit them as external.
959 case GlobalValue::ExternalLinkage:
960 // If external or appending, declare as a global symbol
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +0000961 O << "\t.globl " << name << '\n';
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000962 // FALL THROUGH
963 case GlobalValue::InternalLinkage:
964 break;
965 default:
966 cerr << "Unknown linkage type!";
967 abort();
968 }
969
970 EmitAlignment(Align, GVar);
971 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
972 PrintUnmangledNameSafely(GVar, O);
973 O << "'\n";
974
975 // If the initializer is a extern weak symbol, remember to emit the weak
976 // reference!
977 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
978 if (GV->hasExternalWeakLinkage())
979 ExtWeakSymbols.insert(GV);
980
981 EmitGlobalConstant(C);
982 O << '\n';
983}
984
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000985bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000986 const TargetData *TD = TM.getTargetData();
987
988 // Print out module-level global variables here.
989 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikov248e9c52008-08-08 18:23:25 +0000990 I != E; ++I)
991 printModuleLevelGV(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992
993 bool isPPC64 = TD->getPointerSizeInBits() == 64;
994
995 // Output stubs for dynamically-linked functions
996 if (TM.getRelocationModel() == Reloc::PIC_) {
997 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
998 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000999 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 "pure_instructions,32");
1001 EmitAlignment(4);
Dale Johannesena21b5202008-05-19 21:38:18 +00001002 std::string p = *i;
1003 std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ;
1004 printSuffixedName(p, "$stub");
1005 O << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001006 O << "\t.indirect_symbol " << *i << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001007 O << "\tmflr r0\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001008 O << "\tbcl 20,31," << L0p << '\n';
Dale Johannesena21b5202008-05-19 21:38:18 +00001009 O << L0p << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010 O << "\tmflr r11\n";
Dale Johannesena21b5202008-05-19 21:38:18 +00001011 O << "\taddis r11,r11,ha16(";
1012 printSuffixedName(p, "$lazy_ptr");
1013 O << "-" << L0p << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001014 O << "\tmtlr r0\n";
1015 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001016 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001017 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001018 O << "\tlwzu r12,lo16(";
1019 printSuffixedName(p, "$lazy_ptr");
1020 O << "-" << L0p << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 O << "\tmtctr r12\n";
1022 O << "\tbctr\n";
1023 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001024 printSuffixedName(p, "$lazy_ptr");
1025 O << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001026 O << "\t.indirect_symbol " << *i << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001027 if (isPPC64)
1028 O << "\t.quad dyld_stub_binding_helper\n";
1029 else
1030 O << "\t.long dyld_stub_binding_helper\n";
1031 }
1032 } else {
1033 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1034 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001035 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001036 "pure_instructions,16");
1037 EmitAlignment(4);
Dale Johannesena21b5202008-05-19 21:38:18 +00001038 std::string p = *i;
1039 printSuffixedName(p, "$stub");
1040 O << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001041 O << "\t.indirect_symbol " << *i << '\n';
Dale Johannesena21b5202008-05-19 21:38:18 +00001042 O << "\tlis r11,ha16(";
1043 printSuffixedName(p, "$lazy_ptr");
1044 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001045 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001046 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001048 O << "\tlwzu r12,lo16(";
1049 printSuffixedName(p, "$lazy_ptr");
1050 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 O << "\tmtctr r12\n";
1052 O << "\tbctr\n";
1053 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001054 printSuffixedName(p, "$lazy_ptr");
1055 O << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001056 O << "\t.indirect_symbol " << *i << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001057 if (isPPC64)
1058 O << "\t.quad dyld_stub_binding_helper\n";
1059 else
1060 O << "\t.long dyld_stub_binding_helper\n";
1061 }
1062 }
1063
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001064 O << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001065
Dale Johannesen85535762008-04-02 00:25:04 +00001066 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001067 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001068 // Only referenced functions get into the Personalities list.
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001069 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1070
1071 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1072 E = Personalities.end(); I != E; ++I)
1073 if (*I) GVStubs.insert("_" + (*I)->getName());
1074 }
1075
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001076 // Output stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001077 if (!GVStubs.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001078 SwitchToDataSection(".non_lazy_symbol_pointer");
1079 for (std::set<std::string>::iterator I = GVStubs.begin(),
1080 E = GVStubs.end(); I != E; ++I) {
Dale Johannesena21b5202008-05-19 21:38:18 +00001081 std::string p = *I;
1082 printSuffixedName(p, "$non_lazy_ptr");
1083 O << ":\n";
Anton Korobeynikovdaf7efe2008-08-08 18:24:10 +00001084 O << "\t.indirect_symbol " << *I << '\n';
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 if (isPPC64)
1086 O << "\t.quad\t0\n";
1087 else
1088 O << "\t.long\t0\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001089 }
1090 }
1091
1092 // Emit initial debug information.
1093 DW.EndModule();
1094
1095 // Funny Darwin hack: This flag tells the linker that no global symbols
1096 // contain code that falls through to other global symbols (e.g. the obvious
1097 // implementation of multiple entry points). If this doesn't occur, the
1098 // linker can safely perform dead code stripping. Since LLVM never generates
1099 // code that does this, it is always safe to set.
1100 O << "\t.subsections_via_symbols\n";
1101
Dan Gohman4a558a32007-07-25 19:33:14 +00001102 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001103}
1104
1105
1106
1107/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1108/// for a MachineFunction to the given output stream, in a format that the
1109/// Darwin assembler can deal with.
1110///
Owen Anderson847b99b2008-08-21 00:14:44 +00001111FunctionPass *llvm::createPPCAsmPrinterPass(raw_ostream &o,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001112 PPCTargetMachine &tm) {
1113 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1114
1115 if (Subtarget->isDarwin()) {
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001116 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001117 } else {
Anton Korobeynikov28f86d12008-08-08 18:22:59 +00001118 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 }
1120}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +00001121
1122namespace {
1123 static struct Register {
1124 Register() {
1125 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1126 }
1127 } Registrator;
1128}