blob: b7b2a95149539dd8678947c50cf8ac51e40af3b6 [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"
39#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000040#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetOptions.h"
43#include "llvm/ADT/Statistic.h"
44#include "llvm/ADT/StringExtras.h"
45#include <set>
46using namespace llvm;
47
48STATISTIC(EmittedInsts, "Number of machine instrs printed");
49
50namespace {
51 struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
52 std::set<std::string> FnStubs, GVStubs;
53 const PPCSubtarget &Subtarget;
54
55 PPCAsmPrinter(std::ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
56 : AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) {
57 }
58
59 virtual const char *getPassName() const {
60 return "PowerPC Assembly Printer";
61 }
62
63 PPCTargetMachine &getTM() {
64 return static_cast<PPCTargetMachine&>(TM);
65 }
66
67 unsigned enumRegToMachineReg(unsigned enumReg) {
68 switch (enumReg) {
69 default: assert(0 && "Unhandled register!"); break;
70 case PPC::CR0: return 0;
71 case PPC::CR1: return 1;
72 case PPC::CR2: return 2;
73 case PPC::CR3: return 3;
74 case PPC::CR4: return 4;
75 case PPC::CR5: return 5;
76 case PPC::CR6: return 6;
77 case PPC::CR7: return 7;
78 }
79 abort();
80 }
81
82 /// printInstruction - This method is automatically generated by tablegen
83 /// from the instruction set description. This method returns true if the
84 /// machine instruction was sufficiently described to print it, otherwise it
85 /// returns false.
86 bool printInstruction(const MachineInstr *MI);
87
88 void printMachineInstruction(const MachineInstr *MI);
89 void printOp(const MachineOperand &MO);
90
91 /// stripRegisterPrefix - This method strips the character prefix from a
92 /// register name so that only the number is left. Used by for linux asm.
93 const char *stripRegisterPrefix(const char *RegName) {
94 switch (RegName[0]) {
95 case 'r':
96 case 'f':
97 case 'v': return RegName + 1;
98 case 'c': if (RegName[1] == 'r') return RegName + 2;
99 }
100
101 return RegName;
102 }
103
104 /// printRegister - Print register according to target requirements.
105 ///
106 void printRegister(const MachineOperand &MO, bool R0AsZero) {
107 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000108 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109
110 // If we should use 0 for R0.
111 if (R0AsZero && RegNo == PPC::R0) {
112 O << "0";
113 return;
114 }
115
Bill Wendling8eeb9792008-02-26 21:11:01 +0000116 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 // Linux assembler (Others?) does not take register mnemonics.
118 // FIXME - What about special registers used in mfspr/mtspr?
119 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
120 O << RegName;
121 }
122
123 void printOperand(const MachineInstr *MI, unsigned OpNo) {
124 const MachineOperand &MO = MI->getOperand(OpNo);
125 if (MO.isRegister()) {
126 printRegister(MO, false);
127 } else if (MO.isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000128 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 } else {
130 printOp(MO);
131 }
132 }
133
134 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
135 unsigned AsmVariant, const char *ExtraCode);
136 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
137 unsigned AsmVariant, const char *ExtraCode);
138
139
140 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000141 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 value = (value << (32-5)) >> (32-5);
143 O << (int)value;
144 }
145 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000146 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000147 assert(value <= 31 && "Invalid u5imm argument!");
148 O << (unsigned int)value;
149 }
150 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000151 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 assert(value <= 63 && "Invalid u6imm argument!");
153 O << (unsigned int)value;
154 }
155 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000156 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 }
158 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000159 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 }
161 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
162 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000163 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 } else {
165 O << "lo16(";
166 printOp(MI->getOperand(OpNo));
167 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000168 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 else
170 O << ')';
171 }
172 }
173 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
174 // Branches can take an immediate operand. This is used by the branch
175 // selection pass to print $+8, an eight byte displacement from the PC.
176 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000177 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178 } else {
179 printOp(MI->getOperand(OpNo));
180 }
181 }
182 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
183 const MachineOperand &MO = MI->getOperand(OpNo);
184 if (TM.getRelocationModel() != Reloc::Static) {
185 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
186 GlobalValue *GV = MO.getGlobal();
187 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +0000188 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189 // Dynamically-resolved functions need a stub for the function.
190 std::string Name = Mang->getValueName(GV);
191 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000192 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 if (GV->hasExternalWeakLinkage())
194 ExtWeakSymbols.insert(GV);
195 return;
196 }
197 }
198 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
199 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
200 FnStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000201 printSuffixedName(Name, "$stub");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000202 return;
203 }
204 }
205
206 printOp(MI->getOperand(OpNo));
207 }
208 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000209 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 }
211 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng477013c2007-10-14 05:57:21 +0000212 O << "\"L" << getFunctionNumber() << "$pb\"\n";
213 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 }
215 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
216 if (MI->getOperand(OpNo).isImmediate()) {
217 printS16ImmOperand(MI, OpNo);
218 } else {
219 if (Subtarget.isDarwin()) O << "ha16(";
220 printOp(MI->getOperand(OpNo));
221 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000222 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000223 if (Subtarget.isDarwin())
224 O << ')';
225 else
226 O << "@ha";
227 }
228 }
229 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
230 if (MI->getOperand(OpNo).isImmediate()) {
231 printS16ImmOperand(MI, OpNo);
232 } else {
233 if (Subtarget.isDarwin()) O << "lo16(";
234 printOp(MI->getOperand(OpNo));
235 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000236 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000237 if (Subtarget.isDarwin())
238 O << ')';
239 else
240 O << "@l";
241 }
242 }
243 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
244 unsigned CCReg = MI->getOperand(OpNo).getReg();
245 unsigned RegNo = enumRegToMachineReg(CCReg);
246 O << (0x80 >> RegNo);
247 }
248 // The new addressing mode printers.
249 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
250 printSymbolLo(MI, OpNo);
251 O << '(';
252 if (MI->getOperand(OpNo+1).isRegister() &&
253 MI->getOperand(OpNo+1).getReg() == PPC::R0)
254 O << "0";
255 else
256 printOperand(MI, OpNo+1);
257 O << ')';
258 }
259 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
260 if (MI->getOperand(OpNo).isImmediate())
261 printS16X4ImmOperand(MI, OpNo);
262 else
263 printSymbolLo(MI, OpNo);
264 O << '(';
265 if (MI->getOperand(OpNo+1).isRegister() &&
266 MI->getOperand(OpNo+1).getReg() == PPC::R0)
267 O << "0";
268 else
269 printOperand(MI, OpNo+1);
270 O << ')';
271 }
272
273 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
274 // When used as the base register, r0 reads constant zero rather than
275 // the value contained in the register. For this reason, the darwin
276 // assembler requires that we print r0 as 0 (no r) when used as the base.
277 const MachineOperand &MO = MI->getOperand(OpNo);
278 printRegister(MO, true);
279 O << ", ";
280 printOperand(MI, OpNo+1);
281 }
282
283 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
284 const char *Modifier);
285
286 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
287 virtual bool doFinalization(Module &M) = 0;
288
289 virtual void EmitExternalGlobal(const GlobalVariable *GV);
290 };
291
292 /// LinuxAsmPrinter - PowerPC assembly printer, customized for Linux
293 struct VISIBILITY_HIDDEN LinuxAsmPrinter : public PPCAsmPrinter {
294
295 DwarfWriter DW;
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000296 MachineModuleInfo *MMI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000297
298 LinuxAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
299 const TargetAsmInfo *T)
Dale Johannesen2f6aa072008-07-09 21:24:07 +0000300 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301 }
302
303 virtual const char *getPassName() const {
304 return "Linux PPC Assembly Printer";
305 }
306
307 bool runOnMachineFunction(MachineFunction &F);
308 bool doInitialization(Module &M);
309 bool doFinalization(Module &M);
310
311 void getAnalysisUsage(AnalysisUsage &AU) const {
312 AU.setPreservesAll();
313 AU.addRequired<MachineModuleInfo>();
314 PPCAsmPrinter::getAnalysisUsage(AU);
315 }
316
317 /// getSectionForFunction - Return the section that we should emit the
318 /// specified function body into.
319 virtual std::string getSectionForFunction(const Function &F) const;
320 };
321
322 /// DarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac OS
323 /// X
324 struct VISIBILITY_HIDDEN DarwinAsmPrinter : public PPCAsmPrinter {
325
326 DwarfWriter DW;
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000327 MachineModuleInfo *MMI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000328
329 DarwinAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
330 const TargetAsmInfo *T)
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000331 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000332 }
333
334 virtual const char *getPassName() const {
335 return "Darwin PPC Assembly Printer";
336 }
337
338 bool runOnMachineFunction(MachineFunction &F);
339 bool doInitialization(Module &M);
340 bool doFinalization(Module &M);
341
342 void getAnalysisUsage(AnalysisUsage &AU) const {
343 AU.setPreservesAll();
344 AU.addRequired<MachineModuleInfo>();
345 PPCAsmPrinter::getAnalysisUsage(AU);
346 }
347
348 /// getSectionForFunction - Return the section that we should emit the
349 /// specified function body into.
350 virtual std::string getSectionForFunction(const Function &F) const;
351 };
352} // end of anonymous namespace
353
354// Include the auto-generated portion of the assembly writer
355#include "PPCGenAsmWriter.inc"
356
357void PPCAsmPrinter::printOp(const MachineOperand &MO) {
358 switch (MO.getType()) {
359 case MachineOperand::MO_Immediate:
360 cerr << "printOp() does not handle immediate values\n";
361 abort();
362 return;
363
364 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner6017d482007-12-30 23:10:15 +0000365 printBasicBlockLabel(MO.getMBB());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 return;
367 case MachineOperand::MO_JumpTableIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000368 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000369 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 // FIXME: PIC relocation model
371 return;
372 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng477013c2007-10-14 05:57:21 +0000373 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000374 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 return;
376 case MachineOperand::MO_ExternalSymbol:
377 // Computing the address of an external symbol, not calling it.
378 if (TM.getRelocationModel() != Reloc::Static) {
379 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
380 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000381 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382 return;
383 }
384 O << TAI->getGlobalPrefix() << MO.getSymbolName();
385 return;
386 case MachineOperand::MO_GlobalAddress: {
387 // Computing the address of a global symbol, not calling it.
388 GlobalValue *GV = MO.getGlobal();
389 std::string Name = Mang->getValueName(GV);
390
391 // External or weakly linked global variables need non-lazily-resolved stubs
392 if (TM.getRelocationModel() != Reloc::Static) {
393 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesen49c44122008-05-14 20:12:51 +0000394 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000395 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000396 printSuffixedName(Name, "$non_lazy_ptr");
Dale Johannesencaf11182008-05-16 20:09:25 +0000397 if (GV->hasExternalWeakLinkage())
398 ExtWeakSymbols.insert(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000399 return;
400 }
401 }
402 O << Name;
403
404 if (MO.getOffset() > 0)
405 O << "+" << MO.getOffset();
406 else if (MO.getOffset() < 0)
407 O << MO.getOffset();
408
409 if (GV->hasExternalWeakLinkage())
410 ExtWeakSymbols.insert(GV);
411 return;
412 }
413
414 default:
415 O << "<unknown operand type: " << MO.getType() << ">";
416 return;
417 }
418}
419
420/// EmitExternalGlobal - In this case we need to use the indirect symbol.
421///
422void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
423 std::string Name = getGlobalLinkName(GV);
424 if (TM.getRelocationModel() != Reloc::Static) {
425 GVStubs.insert(Name);
Dale Johannesena21b5202008-05-19 21:38:18 +0000426 printSuffixedName(Name, "$non_lazy_ptr");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000427 return;
428 }
429 O << Name;
430}
431
432/// PrintAsmOperand - Print out an operand for an inline asm expression.
433///
434bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
435 unsigned AsmVariant,
436 const char *ExtraCode) {
437 // Does this asm operand have a single letter operand modifier?
438 if (ExtraCode && ExtraCode[0]) {
439 if (ExtraCode[1] != 0) return true; // Unknown modifier.
440
441 switch (ExtraCode[0]) {
442 default: return true; // Unknown modifier.
443 case 'c': // Don't print "$" before a global var name or constant.
444 // PPC never has a prefix.
445 printOperand(MI, OpNo);
446 return false;
447 case 'L': // Write second word of DImode reference.
448 // Verify that this operand has two consecutive registers.
449 if (!MI->getOperand(OpNo).isRegister() ||
450 OpNo+1 == MI->getNumOperands() ||
451 !MI->getOperand(OpNo+1).isRegister())
452 return true;
453 ++OpNo; // Return the high-part.
454 break;
455 case 'I':
456 // Write 'i' if an integer constant, otherwise nothing. Used to print
457 // addi vs add, etc.
Dan Gohman38a9a9f2007-09-14 20:33:02 +0000458 if (MI->getOperand(OpNo).isImmediate())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000459 O << "i";
460 return false;
461 }
462 }
463
464 printOperand(MI, OpNo);
465 return false;
466}
467
468bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
469 unsigned AsmVariant,
470 const char *ExtraCode) {
471 if (ExtraCode && ExtraCode[0])
472 return true; // Unknown modifier.
473 if (MI->getOperand(OpNo).isRegister())
474 printMemRegReg(MI, OpNo);
475 else
476 printMemRegImm(MI, OpNo);
477 return false;
478}
479
480void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
481 const char *Modifier) {
482 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
483 unsigned Code = MI->getOperand(OpNo).getImm();
484 if (!strcmp(Modifier, "cc")) {
485 switch ((PPC::Predicate)Code) {
486 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
487 case PPC::PRED_LT: O << "lt"; return;
488 case PPC::PRED_LE: O << "le"; return;
489 case PPC::PRED_EQ: O << "eq"; return;
490 case PPC::PRED_GE: O << "ge"; return;
491 case PPC::PRED_GT: O << "gt"; return;
492 case PPC::PRED_NE: O << "ne"; return;
493 case PPC::PRED_UN: O << "un"; return;
494 case PPC::PRED_NU: O << "nu"; return;
495 }
496
497 } else {
498 assert(!strcmp(Modifier, "reg") &&
499 "Need to specify 'cc' or 'reg' as predicate op modifier!");
500 // Don't print the register for 'always'.
501 if (Code == PPC::PRED_ALWAYS) return;
502 printOperand(MI, OpNo+1);
503 }
504}
505
506
507/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
508/// the current output stream.
509///
510void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
511 ++EmittedInsts;
512
513 // Check for slwi/srwi mnemonics.
514 if (MI->getOpcode() == PPC::RLWINM) {
515 bool FoundMnemonic = false;
Chris Lattnera96056a2007-12-30 20:49:49 +0000516 unsigned char SH = MI->getOperand(2).getImm();
517 unsigned char MB = MI->getOperand(3).getImm();
518 unsigned char ME = MI->getOperand(4).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000519 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000520 O << "\tslwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521 }
522 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000523 O << "\tsrwi "; FoundMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000524 SH = 32-SH;
525 }
526 if (FoundMnemonic) {
527 printOperand(MI, 0);
528 O << ", ";
529 printOperand(MI, 1);
530 O << ", " << (unsigned int)SH << "\n";
531 return;
532 }
533 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
534 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000535 O << "\tmr ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 printOperand(MI, 0);
537 O << ", ";
538 printOperand(MI, 1);
539 O << "\n";
540 return;
541 }
542 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000543 unsigned char SH = MI->getOperand(2).getImm();
544 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
546 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000547 O << "\tsldi ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 printOperand(MI, 0);
549 O << ", ";
550 printOperand(MI, 1);
551 O << ", " << (unsigned int)SH << "\n";
552 return;
553 }
554 }
555
556 if (printInstruction(MI))
557 return; // Printer was automatically generated
558
559 assert(0 && "Unhandled instruction in asm writer!");
560 abort();
561 return;
562}
563
564/// runOnMachineFunction - This uses the printMachineInstruction()
565/// method to print assembly for each instruction.
566///
567bool LinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
568 DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>());
569
570 SetupMachineFunction(MF);
571 O << "\n\n";
572
573 // Print out constants referenced by the function
574 EmitConstantPool(MF.getConstantPool());
575
576 // Print out labels for the function.
577 const Function *F = MF.getFunction();
578 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
579
580 switch (F->getLinkage()) {
581 default: assert(0 && "Unknown linkage type!");
582 case Function::InternalLinkage: // Symbols default to internal.
583 break;
584 case Function::ExternalLinkage:
585 O << "\t.global\t" << CurrentFnName << '\n'
586 << "\t.type\t" << CurrentFnName << ", @function\n";
587 break;
588 case Function::WeakLinkage:
589 case Function::LinkOnceLinkage:
590 O << "\t.global\t" << CurrentFnName << '\n';
591 O << "\t.weak\t" << CurrentFnName << '\n';
592 break;
593 }
594
595 if (F->hasHiddenVisibility())
596 if (const char *Directive = TAI->getHiddenDirective())
597 O << Directive << CurrentFnName << "\n";
598
599 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
620 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << "\n";
621
622 // Print out jump tables referenced by the function.
623 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
624
625 // Emit post-function debug information.
626 DW.EndFunction();
627
628 // We didn't modify anything.
629 return false;
630}
631
632bool LinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohman4a558a32007-07-25 19:33:14 +0000633 bool Result = AsmPrinter::doInitialization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +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());
647
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.
653static void PrintUnmangledNameSafely(const Value *V, std::ostream &OS) {
654 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
655 Name != E; ++Name)
656 if (isprint(*Name))
657 OS << *Name;
658}
659
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000660bool LinuxAsmPrinter::doFinalization(Module &M) {
661 const TargetData *TD = TM.getTargetData();
662
663 // Print out module-level global variables here.
664 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
665 I != E; ++I) {
666 if (!I->hasInitializer()) continue; // External global require no code
667
668 // Check to see if this is a special global used by LLVM, if so, emit it.
669 if (EmitSpecialLLVMGlobal(I))
670 continue;
671
672 std::string name = Mang->getValueName(I);
673
674 if (I->hasHiddenVisibility())
675 if (const char *Directive = TAI->getHiddenDirective())
676 O << Directive << name << "\n";
677
678 Constant *C = I->getInitializer();
Duncan Sands8157ef42007-11-05 00:04:43 +0000679 unsigned Size = TD->getABITypeSize(C->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000680 unsigned Align = TD->getPreferredAlignmentLog(I);
681
682 if (C->isNullValue() && /* FIXME: Verify correct */
Dale Johannesen49c44122008-05-14 20:12:51 +0000683 !I->hasSection() && (I->hasCommonLinkage() ||
684 I->hasInternalLinkage() || I->hasWeakLinkage() ||
Evan Cheng65c0fbc2007-09-21 00:41:19 +0000685 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000686 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
687 if (I->hasExternalLinkage()) {
688 O << "\t.global " << name << '\n';
689 O << "\t.type " << name << ", @object\n";
Nick Lewyckyc6583752007-11-04 17:32:10 +0000690 if (TAI->getBSSSection())
691 SwitchToDataSection(TAI->getBSSSection(), I);
Nick Lewycky3246a9c2007-07-25 03:48:45 +0000692 O << name << ":\n";
693 O << "\t.zero " << Size << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000694 } else if (I->hasInternalLinkage()) {
695 SwitchToDataSection("\t.data", I);
696 O << TAI->getLCOMMDirective() << name << "," << Size;
697 } else {
698 SwitchToDataSection("\t.data", I);
699 O << ".comm " << name << "," << Size;
700 }
Chris Lattner2b638a72008-02-15 19:04:54 +0000701 O << "\t\t" << TAI->getCommentString() << " '";
702 PrintUnmangledNameSafely(I, O);
703 O << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 } else {
705 switch (I->getLinkage()) {
706 case GlobalValue::LinkOnceLinkage:
707 case GlobalValue::WeakLinkage:
Dale Johannesen49c44122008-05-14 20:12:51 +0000708 case GlobalValue::CommonLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000709 O << "\t.global " << name << '\n'
710 << "\t.type " << name << ", @object\n"
711 << "\t.weak " << name << '\n';
712 SwitchToDataSection("\t.data", I);
713 break;
714 case GlobalValue::AppendingLinkage:
715 // FIXME: appending linkage variables should go into a section of
716 // their name or something. For now, just emit them as external.
717 case GlobalValue::ExternalLinkage:
718 // If external or appending, declare as a global symbol
719 O << "\t.global " << name << "\n"
720 << "\t.type " << name << ", @object\n";
721 // FALL THROUGH
722 case GlobalValue::InternalLinkage:
723 if (I->isConstant()) {
724 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
725 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
726 SwitchToDataSection(TAI->getCStringSection(), I);
727 break;
728 }
729 }
730
731 // FIXME: special handling for ".ctors" & ".dtors" sections
732 if (I->hasSection() &&
733 (I->getSection() == ".ctors" ||
734 I->getSection() == ".dtors")) {
735 std::string SectionName = ".section " + I->getSection()
736 + ",\"aw\",@progbits";
737 SwitchToDataSection(SectionName.c_str());
738 } else {
739 if (I->isConstant() && TAI->getReadOnlySection())
740 SwitchToDataSection(TAI->getReadOnlySection(), I);
741 else
742 SwitchToDataSection(TAI->getDataSection(), I);
743 }
744 break;
745 default:
746 cerr << "Unknown linkage type!";
747 abort();
748 }
749
750 EmitAlignment(Align, I);
Chris Lattner2b638a72008-02-15 19:04:54 +0000751 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
752 PrintUnmangledNameSafely(I, O);
753 O << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754
755 // If the initializer is a extern weak symbol, remember to emit the weak
756 // reference!
757 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
758 if (GV->hasExternalWeakLinkage())
759 ExtWeakSymbols.insert(GV);
760
761 EmitGlobalConstant(C);
762 O << '\n';
763 }
764 }
765
766 // TODO
767
768 // Emit initial debug information.
769 DW.EndModule();
770
Dan Gohman4a558a32007-07-25 19:33:14 +0000771 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772}
773
774std::string LinuxAsmPrinter::getSectionForFunction(const Function &F) const {
775 switch (F.getLinkage()) {
776 default: assert(0 && "Unknown linkage type!");
777 case Function::ExternalLinkage:
778 case Function::InternalLinkage: return TAI->getTextSection();
779 case Function::WeakLinkage:
780 case Function::LinkOnceLinkage:
781 return ".text";
782 }
783}
784
785std::string DarwinAsmPrinter::getSectionForFunction(const Function &F) const {
786 switch (F.getLinkage()) {
787 default: assert(0 && "Unknown linkage type!");
788 case Function::ExternalLinkage:
789 case Function::InternalLinkage: return TAI->getTextSection();
790 case Function::WeakLinkage:
791 case Function::LinkOnceLinkage:
Dale Johannesen3c788322008-01-11 00:54:37 +0000792 return "\t.section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000793 }
794}
795
796/// runOnMachineFunction - This uses the printMachineInstruction()
797/// method to print assembly for each instruction.
798///
799bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800
801 SetupMachineFunction(MF);
802 O << "\n\n";
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000803
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000804 // Print out constants referenced by the function
805 EmitConstantPool(MF.getConstantPool());
806
807 // Print out labels for the function.
808 const Function *F = MF.getFunction();
809 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
810
811 switch (F->getLinkage()) {
812 default: assert(0 && "Unknown linkage type!");
813 case Function::InternalLinkage: // Symbols default to internal.
814 break;
815 case Function::ExternalLinkage:
816 O << "\t.globl\t" << CurrentFnName << "\n";
817 break;
818 case Function::WeakLinkage:
819 case Function::LinkOnceLinkage:
820 O << "\t.globl\t" << CurrentFnName << "\n";
821 O << "\t.weak_definition\t" << CurrentFnName << "\n";
822 break;
823 }
824
825 if (F->hasHiddenVisibility())
826 if (const char *Directive = TAI->getHiddenDirective())
827 O << Directive << CurrentFnName << "\n";
828
Evan Cheng2e8d3d42008-03-25 22:29:46 +0000829 EmitAlignment(OptimizeForSize ? 2 : 4, F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000830 O << CurrentFnName << ":\n";
831
832 // Emit pre-function debug information.
833 DW.BeginFunction(&MF);
834
Bill Wendling36ccaea2008-01-26 06:51:24 +0000835 // If the function is empty, then we need to emit *something*. Otherwise, the
836 // function's label might be associated with something that it wasn't meant to
837 // be associated with. We emit a noop in this situation.
838 MachineFunction::iterator I = MF.begin();
839
Bill Wendlingb5880a72008-01-26 09:03:52 +0000840 if (++I == MF.end() && MF.front().empty())
841 O << "\tnop\n";
Bill Wendling36ccaea2008-01-26 06:51:24 +0000842
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843 // Print out code for the function.
844 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
845 I != E; ++I) {
846 // Print a label for the basic block.
847 if (I != MF.begin()) {
Evan Cheng45c1edb2008-02-28 00:43:03 +0000848 printBasicBlockLabel(I, true, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000849 O << '\n';
850 }
Bill Wendling36ccaea2008-01-26 06:51:24 +0000851 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
852 II != IE; ++II) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000853 // Print the assembly for the instruction.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000854 printMachineInstruction(II);
855 }
856 }
857
858 // Print out jump tables referenced by the function.
859 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
860
861 // Emit post-function debug information.
862 DW.EndFunction();
863
864 // We didn't modify anything.
865 return false;
866}
867
868
869bool DarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000870 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000871 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872 "ppc",
873 "ppc601",
874 "ppc602",
875 "ppc603",
876 "ppc7400",
877 "ppc750",
878 "ppc970",
879 "ppc64"
880 };
881
882 unsigned Directive = Subtarget.getDarwinDirective();
883 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
884 Directive = PPC::DIR_970;
885 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
886 Directive = PPC::DIR_7400;
887 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
888 Directive = PPC::DIR_64;
889 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
890 O << "\t.machine " << CPUDirectives[Directive] << "\n";
891
Dan Gohman4a558a32007-07-25 19:33:14 +0000892 bool Result = AsmPrinter::doInitialization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000893
Dale Johannesen58e0eeb2008-07-09 20:43:39 +0000894 // Emit initial debug information.
895 DW.BeginModule(&M);
896
897 // We need this for Personality functions.
898 // AsmPrinter::doInitialization should have done this analysis.
899 MMI = getAnalysisToUpdate<MachineModuleInfo>();
900 assert(MMI);
901 DW.SetModuleInfo(MMI);
902
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000903 // Darwin wants symbols to be quoted if they have complex names.
904 Mang->setUseQuotes(true);
905
906 // Prime text sections so they are adjacent. This reduces the likelihood a
907 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen3c788322008-01-11 00:54:37 +0000908 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909 "pure_instructions");
910 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000911 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000912 "pure_instructions,32");
913 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen3c788322008-01-11 00:54:37 +0000914 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000915 "pure_instructions,16");
916 }
917 SwitchToTextSection(TAI->getTextSection());
918
Dan Gohman4a558a32007-07-25 19:33:14 +0000919 return Result;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000920}
921
922bool DarwinAsmPrinter::doFinalization(Module &M) {
923 const TargetData *TD = TM.getTargetData();
924
925 // Print out module-level global variables here.
926 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
927 I != E; ++I) {
928 if (!I->hasInitializer()) continue; // External global require no code
929
930 // Check to see if this is a special global used by LLVM, if so, emit it.
931 if (EmitSpecialLLVMGlobal(I)) {
932 if (TM.getRelocationModel() == Reloc::Static) {
933 if (I->getName() == "llvm.global_ctors")
934 O << ".reference .constructors_used\n";
935 else if (I->getName() == "llvm.global_dtors")
936 O << ".reference .destructors_used\n";
937 }
938 continue;
939 }
940
941 std::string name = Mang->getValueName(I);
942
943 if (I->hasHiddenVisibility())
944 if (const char *Directive = TAI->getHiddenDirective())
945 O << Directive << name << "\n";
946
947 Constant *C = I->getInitializer();
948 const Type *Type = C->getType();
Duncan Sands8157ef42007-11-05 00:04:43 +0000949 unsigned Size = TD->getABITypeSize(Type);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000950 unsigned Align = TD->getPreferredAlignmentLog(I);
951
952 if (C->isNullValue() && /* FIXME: Verify correct */
Dale Johannesen49c44122008-05-14 20:12:51 +0000953 !I->hasSection() && (I->hasCommonLinkage() ||
954 I->hasInternalLinkage() || I->hasWeakLinkage() ||
Dale Johannesen50085da2008-01-17 23:04:07 +0000955 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000956 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
957 if (I->hasExternalLinkage()) {
958 O << "\t.globl " << name << '\n';
959 O << "\t.zerofill __DATA, __common, " << name << ", "
960 << Size << ", " << Align;
961 } else if (I->hasInternalLinkage()) {
962 SwitchToDataSection("\t.data", I);
963 O << TAI->getLCOMMDirective() << name << "," << Size << "," << Align;
Dale Johannesencaf11182008-05-16 20:09:25 +0000964 } else if (!I->hasCommonLinkage()) {
965 O << "\t.globl " << name << "\n"
966 << TAI->getWeakDefDirective() << name << "\n";
967 SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
968 EmitAlignment(Align, I);
969 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
970 PrintUnmangledNameSafely(I, O);
971 O << "\n";
972 EmitGlobalConstant(C);
973 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000974 } else {
975 SwitchToDataSection("\t.data", I);
976 O << ".comm " << name << "," << Size;
Chris Lattner9b7677d2008-01-02 19:35:16 +0000977 // Darwin 9 and above support aligned common data.
978 if (Subtarget.isDarwin9())
979 O << "," << Align;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000980 }
Chris Lattner2b638a72008-02-15 19:04:54 +0000981 O << "\t\t" << TAI->getCommentString() << " '";
982 PrintUnmangledNameSafely(I, O);
983 O << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984 } else {
985 switch (I->getLinkage()) {
986 case GlobalValue::LinkOnceLinkage:
987 case GlobalValue::WeakLinkage:
Dale Johannesen49c44122008-05-14 20:12:51 +0000988 case GlobalValue::CommonLinkage:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 O << "\t.globl " << name << '\n'
990 << "\t.weak_definition " << name << '\n';
Dale Johannesen1c365122008-05-24 00:10:20 +0000991 if (!I->isConstant())
992 SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
993 else {
994 const ArrayType *AT = dyn_cast<ArrayType>(Type);
995 if (AT && AT->getElementType()==Type::Int8Ty)
996 SwitchToDataSection("\t.section __TEXT,__const_coal,coalesced", I);
997 else
998 SwitchToDataSection("\t.section __DATA,__const_coal,coalesced", I);
999 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 break;
1001 case GlobalValue::AppendingLinkage:
1002 // FIXME: appending linkage variables should go into a section of
1003 // their name or something. For now, just emit them as external.
1004 case GlobalValue::ExternalLinkage:
1005 // If external or appending, declare as a global symbol
1006 O << "\t.globl " << name << "\n";
1007 // FALL THROUGH
1008 case GlobalValue::InternalLinkage:
1009 if (I->isConstant()) {
1010 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
1011 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
1012 SwitchToDataSection(TAI->getCStringSection(), I);
1013 break;
1014 }
1015 }
Dale Johannesenae4f62f2008-01-23 00:58:14 +00001016 if (I->hasSection()) {
1017 // Honor all section names on Darwin; ObjC uses this
1018 std::string SectionName = ".section " + I->getSection();
1019 SwitchToDataSection(SectionName.c_str());
1020 } else if (!I->isConstant())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 SwitchToDataSection(TAI->getDataSection(), I);
1022 else {
1023 // Read-only data.
1024 bool HasReloc = C->ContainsRelocations();
1025 if (HasReloc &&
1026 TM.getRelocationModel() != Reloc::Static)
1027 SwitchToDataSection("\t.const_data\n");
1028 else if (!HasReloc && Size == 4 &&
1029 TAI->getFourByteConstantSection())
1030 SwitchToDataSection(TAI->getFourByteConstantSection(), I);
1031 else if (!HasReloc && Size == 8 &&
1032 TAI->getEightByteConstantSection())
1033 SwitchToDataSection(TAI->getEightByteConstantSection(), I);
1034 else if (!HasReloc && Size == 16 &&
1035 TAI->getSixteenByteConstantSection())
1036 SwitchToDataSection(TAI->getSixteenByteConstantSection(), I);
1037 else if (TAI->getReadOnlySection())
1038 SwitchToDataSection(TAI->getReadOnlySection(), I);
1039 else
1040 SwitchToDataSection(TAI->getDataSection(), I);
1041 }
1042 break;
1043 default:
1044 cerr << "Unknown linkage type!";
1045 abort();
1046 }
1047
1048 EmitAlignment(Align, I);
Chris Lattner2b638a72008-02-15 19:04:54 +00001049 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
1050 PrintUnmangledNameSafely(I, O);
1051 O << "'\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001052
1053 // If the initializer is a extern weak symbol, remember to emit the weak
1054 // reference!
1055 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
1056 if (GV->hasExternalWeakLinkage())
1057 ExtWeakSymbols.insert(GV);
1058
1059 EmitGlobalConstant(C);
1060 O << '\n';
1061 }
1062 }
1063
1064 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1065
1066 // Output stubs for dynamically-linked functions
1067 if (TM.getRelocationModel() == Reloc::PIC_) {
1068 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1069 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001070 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001071 "pure_instructions,32");
1072 EmitAlignment(4);
Dale Johannesena21b5202008-05-19 21:38:18 +00001073 std::string p = *i;
1074 std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ;
1075 printSuffixedName(p, "$stub");
1076 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001077 O << "\t.indirect_symbol " << *i << "\n";
1078 O << "\tmflr r0\n";
Dale Johannesena21b5202008-05-19 21:38:18 +00001079 O << "\tbcl 20,31," << L0p << "\n";
1080 O << L0p << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001081 O << "\tmflr r11\n";
Dale Johannesena21b5202008-05-19 21:38:18 +00001082 O << "\taddis r11,r11,ha16(";
1083 printSuffixedName(p, "$lazy_ptr");
1084 O << "-" << L0p << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001085 O << "\tmtlr r0\n";
1086 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001087 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001088 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001089 O << "\tlwzu r12,lo16(";
1090 printSuffixedName(p, "$lazy_ptr");
1091 O << "-" << L0p << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092 O << "\tmtctr r12\n";
1093 O << "\tbctr\n";
1094 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001095 printSuffixedName(p, "$lazy_ptr");
1096 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001097 O << "\t.indirect_symbol " << *i << "\n";
1098 if (isPPC64)
1099 O << "\t.quad dyld_stub_binding_helper\n";
1100 else
1101 O << "\t.long dyld_stub_binding_helper\n";
1102 }
1103 } else {
1104 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1105 i != e; ++i) {
Dale Johannesen3c788322008-01-11 00:54:37 +00001106 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001107 "pure_instructions,16");
1108 EmitAlignment(4);
Dale Johannesena21b5202008-05-19 21:38:18 +00001109 std::string p = *i;
1110 printSuffixedName(p, "$stub");
1111 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001112 O << "\t.indirect_symbol " << *i << "\n";
Dale Johannesena21b5202008-05-19 21:38:18 +00001113 O << "\tlis r11,ha16(";
1114 printSuffixedName(p, "$lazy_ptr");
1115 O << ")\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001116 if (isPPC64)
Dale Johannesena21b5202008-05-19 21:38:18 +00001117 O << "\tldu r12,lo16(";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001118 else
Dale Johannesena21b5202008-05-19 21:38:18 +00001119 O << "\tlwzu r12,lo16(";
1120 printSuffixedName(p, "$lazy_ptr");
1121 O << ")(r11)\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001122 O << "\tmtctr r12\n";
1123 O << "\tbctr\n";
1124 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesena21b5202008-05-19 21:38:18 +00001125 printSuffixedName(p, "$lazy_ptr");
1126 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 O << "\t.indirect_symbol " << *i << "\n";
1128 if (isPPC64)
1129 O << "\t.quad dyld_stub_binding_helper\n";
1130 else
1131 O << "\t.long dyld_stub_binding_helper\n";
1132 }
1133 }
1134
1135 O << "\n";
1136
Dale Johannesen85535762008-04-02 00:25:04 +00001137 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001138 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +00001139 // Only referenced functions get into the Personalities list.
Dale Johannesenfb3ac732007-11-20 23:24:42 +00001140 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1141
1142 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1143 E = Personalities.end(); I != E; ++I)
1144 if (*I) GVStubs.insert("_" + (*I)->getName());
1145 }
1146
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147 // Output stubs for external and common global variables.
Dan Gohman3f7d94b2007-10-03 19:26:29 +00001148 if (!GVStubs.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149 SwitchToDataSection(".non_lazy_symbol_pointer");
1150 for (std::set<std::string>::iterator I = GVStubs.begin(),
1151 E = GVStubs.end(); I != E; ++I) {
Dale Johannesena21b5202008-05-19 21:38:18 +00001152 std::string p = *I;
1153 printSuffixedName(p, "$non_lazy_ptr");
1154 O << ":\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001155 O << "\t.indirect_symbol " << *I << "\n";
1156 if (isPPC64)
1157 O << "\t.quad\t0\n";
1158 else
1159 O << "\t.long\t0\n";
1160
1161 }
1162 }
1163
1164 // Emit initial debug information.
1165 DW.EndModule();
1166
1167 // Funny Darwin hack: This flag tells the linker that no global symbols
1168 // contain code that falls through to other global symbols (e.g. the obvious
1169 // implementation of multiple entry points). If this doesn't occur, the
1170 // linker can safely perform dead code stripping. Since LLVM never generates
1171 // code that does this, it is always safe to set.
1172 O << "\t.subsections_via_symbols\n";
1173
Dan Gohman4a558a32007-07-25 19:33:14 +00001174 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001175}
1176
1177
1178
1179/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1180/// for a MachineFunction to the given output stream, in a format that the
1181/// Darwin assembler can deal with.
1182///
1183FunctionPass *llvm::createPPCAsmPrinterPass(std::ostream &o,
1184 PPCTargetMachine &tm) {
1185 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1186
1187 if (Subtarget->isDarwin()) {
1188 return new DarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
1189 } else {
1190 return new LinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
1191 }
1192}
1193