blob: 63454894bd7862baf8cbbc4a3977eea09e208159 [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000010// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
Chris Lattner83660c52004-07-28 20:18:53 +000012// the output mechanism used by `llc'.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000013//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000014// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
Misha Brukman218bec72004-06-29 17:13:26 +000016//
Misha Brukman5dfe3a92004-06-21 16:55:25 +000017//===----------------------------------------------------------------------===//
18
Misha Brukman05794492004-06-24 17:31:42 +000019#define DEBUG_TYPE "asmprinter"
Chris Lattner26689592005-10-14 23:51:18 +000020#include "PPC.h"
Chris Lattnerdf4ed632006-11-17 22:10:59 +000021#include "PPCPredicates.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000022#include "PPCTargetMachine.h"
Chris Lattner26689592005-10-14 23:51:18 +000023#include "PPCSubtarget.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000028#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000029#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000030#include "llvm/CodeGen/MachineModuleInfo.h"
Misha Brukman05794492004-06-24 17:31:42 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000032#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling381802f2008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000034#include "llvm/MC/MCAsmInfo.h"
Chris Lattner0b4bad52010-01-13 19:00:57 +000035#include "llvm/MC/MCContext.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000036#include "llvm/MC/MCSectionMachO.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000037#include "llvm/MC/MCStreamer.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000038#include "llvm/MC/MCSymbol.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000039#include "llvm/Target/TargetLoweringObjectFile.h"
40#include "llvm/Target/TargetRegisterInfo.h"
41#include "llvm/Target/TargetInstrInfo.h"
42#include "llvm/Target/TargetOptions.h"
43#include "llvm/Target/TargetRegistry.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000044#include "llvm/Support/Mangler.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000045#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000046#include "llvm/Support/CommandLine.h"
47#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000048#include "llvm/Support/ErrorHandling.h"
David Greene71847812009-07-14 20:18:05 +000049#include "llvm/Support/FormattedStream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000050#include "llvm/ADT/Statistic.h"
51#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000052#include "llvm/ADT/StringSet.h"
Chris Lattner48130352010-01-13 06:38:18 +000053#include "llvm/ADT/SmallString.h"
Chris Lattnera3840792004-08-16 23:25:21 +000054using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000055
Chris Lattner95b2c7d2006-12-19 22:59:26 +000056STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukman5dfe3a92004-06-21 16:55:25 +000057
Chris Lattner95b2c7d2006-12-19 22:59:26 +000058namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000059 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +000060 protected:
Chris Lattner9ec8fac2009-07-15 02:28:57 +000061 struct FnStubInfo {
Chris Lattner656bb202010-01-13 19:13:16 +000062 MCSymbol *Stub, *LazyPtr, *AnonSymbol;
Chris Lattner9ec8fac2009-07-15 02:28:57 +000063
Chris Lattner0b4bad52010-01-13 19:00:57 +000064 FnStubInfo() {
Chris Lattner656bb202010-01-13 19:13:16 +000065 Stub = LazyPtr = AnonSymbol = 0;
Chris Lattner0b4bad52010-01-13 19:00:57 +000066 }
Chris Lattner9ec8fac2009-07-15 02:28:57 +000067
Chris Lattner656bb202010-01-13 19:13:16 +000068 void Init(const GlobalValue *GV, Mangler *Mang, MCContext &Ctx) {
Chris Lattner9ec8fac2009-07-15 02:28:57 +000069 // Already initialized.
Chris Lattner656bb202010-01-13 19:13:16 +000070 if (Stub != 0) return;
Chris Lattner59b34fe2010-01-13 19:05:36 +000071
72 // Get the names.
Chris Lattner656bb202010-01-13 19:13:16 +000073 SmallString<128> TmpStr;
74 Mang->getNameWithPrefix(TmpStr, GV, true);
75 MakeSymbols(TmpStr, Ctx);
Chris Lattner9ec8fac2009-07-15 02:28:57 +000076 }
77
Chris Lattner0b4bad52010-01-13 19:00:57 +000078 void Init(StringRef GVName, Mangler *Mang, MCContext &Ctx) {
Chris Lattner656bb202010-01-13 19:13:16 +000079 assert(!GVName.empty() && "external symbol name shouldn't be empty");
80 if (Stub != 0) return; // Already initialized.
Chris Lattneree9250b2010-01-13 07:56:59 +000081 // Get the names for the external symbol name.
Chris Lattner48130352010-01-13 06:38:18 +000082 SmallString<128> TmpStr;
Chris Lattner656bb202010-01-13 19:13:16 +000083 Mang->getNameWithPrefix(TmpStr, GVName, Mangler::Private);
84 MakeSymbols(TmpStr, Ctx);
85 }
86
87 void MakeSymbols(SmallString<128> &TmpStr, MCContext &Ctx) {
88 TmpStr += "$stub";
89 Stub = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner59b34fe2010-01-13 19:05:36 +000090 TmpStr.erase(TmpStr.end()-5, TmpStr.end()); // Remove $stub
91
92 TmpStr += "$lazy_ptr";
Chris Lattner656bb202010-01-13 19:13:16 +000093 LazyPtr = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner59b34fe2010-01-13 19:05:36 +000094 TmpStr.erase(TmpStr.end()-9, TmpStr.end()); // Remove $lazy_ptr
Chris Lattner48130352010-01-13 06:38:18 +000095
Chris Lattner59b34fe2010-01-13 19:05:36 +000096 TmpStr += "$stub$tmp";
Chris Lattner656bb202010-01-13 19:13:16 +000097 AnonSymbol = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner9ec8fac2009-07-15 02:28:57 +000098 }
99 };
100
101 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000102 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +0000103 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000104 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +0000105 public:
David Greene71847812009-07-14 20:18:05 +0000106 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000107 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000108 : AsmPrinter(O, TM, T, V),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000109 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000110
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000111 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +0000112 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000113 }
114
Nate Begeman21e463b2005-10-16 05:39:50 +0000115 PPCTargetMachine &getTM() {
116 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +0000117 }
118
Nate Begemanadeb43d2005-07-20 22:42:00 +0000119 unsigned enumRegToMachineReg(unsigned enumReg) {
120 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000121 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +0000122 case PPC::CR0: return 0;
123 case PPC::CR1: return 1;
124 case PPC::CR2: return 2;
125 case PPC::CR3: return 3;
126 case PPC::CR4: return 4;
127 case PPC::CR5: return 5;
128 case PPC::CR6: return 6;
129 case PPC::CR7: return 7;
130 }
Torok Edwinc23197a2009-07-14 16:55:14 +0000131 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +0000132 }
133
Nate Begemane59bf592004-08-14 22:09:10 +0000134 /// printInstruction - This method is automatically generated by tablegen
135 /// from the instruction set description. This method returns true if the
136 /// machine instruction was sufficiently described to print it, otherwise it
137 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +0000138 void printInstruction(const MachineInstr *MI);
Chris Lattnerd95148f2009-09-13 20:19:22 +0000139 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +0000140
Nate Begemane59bf592004-08-14 22:09:10 +0000141
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000142 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +0000143 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000144
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000145 /// stripRegisterPrefix - This method strips the character prefix from a
146 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000147 const char *stripRegisterPrefix(const char *RegName) {
148 switch (RegName[0]) {
149 case 'r':
150 case 'f':
151 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000152 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000153 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000154
Jim Laskey40ee69f2006-12-20 21:33:34 +0000155 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000156 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000157
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000158 /// printRegister - Print register according to target requirements.
159 ///
160 void printRegister(const MachineOperand &MO, bool R0AsZero) {
161 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000162 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000163
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000164 // If we should use 0 for R0.
165 if (R0AsZero && RegNo == PPC::R0) {
166 O << "0";
167 return;
168 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000169
Chris Lattner762ccea2009-09-13 20:31:40 +0000170 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000171 // Linux assembler (Others?) does not take register mnemonics.
172 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000173 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
174 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000175 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000176
Chris Lattner58873272006-02-01 22:38:46 +0000177 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000178 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000179 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000180 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000181 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000182 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000183 } else {
184 printOp(MO);
185 }
186 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000187
Chris Lattner58873272006-02-01 22:38:46 +0000188 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000189 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000190 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
191 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000192
193
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000194 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000195 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000196 value = (value << (32-5)) >> (32-5);
197 O << (int)value;
198 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000199 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000200 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000201 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000202 O << (unsigned int)value;
203 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000204 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000205 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000206 assert(value <= 63 && "Invalid u6imm argument!");
207 O << (unsigned int)value;
208 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000209 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000210 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000211 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000212 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000213 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000214 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000215 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000216 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000217 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000218 } else {
219 O << "lo16(";
220 printOp(MI->getOperand(OpNo));
221 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000222 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000223 else
224 O << ')';
225 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000226 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000227 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000228 // Branches can take an immediate operand. This is used by the branch
229 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000230 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000231 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000232 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000233 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000234 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000235 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000236 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000237 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000238 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000239 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
240 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000241 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000242 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000243 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
Chris Lattner656bb202010-01-13 19:13:16 +0000244 FnInfo.Init(GV, Mang, OutContext);
245 FnInfo.Stub->print(O, MAI);
Chris Lattnera637c322005-12-16 00:22:14 +0000246 return;
247 }
248 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000249 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner48130352010-01-13 06:38:18 +0000250 SmallString<128> MangledName;
Chris Lattneree9250b2010-01-13 07:56:59 +0000251 Mang->getNameWithPrefix(MangledName, MO.getSymbolName());
Chris Lattner48130352010-01-13 06:38:18 +0000252 FnStubInfo &FnInfo = FnStubs[MangledName.str()];
Chris Lattner0b4bad52010-01-13 19:00:57 +0000253 FnInfo.Init(MO.getSymbolName(), Mang, OutContext);
Chris Lattner656bb202010-01-13 19:13:16 +0000254 FnInfo.Stub->print(O, MAI);
Chris Lattner9542f9712005-11-17 19:40:30 +0000255 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000256 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000257 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000258
Chris Lattner9542f9712005-11-17 19:40:30 +0000259 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000260 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000261 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000262 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000263 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000264 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000265 O << "\"L" << getFunctionNumber() << "$pb\"\n";
266 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000267 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000268 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000269 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000270 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000271 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000272 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000273 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000274 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000275 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000276 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000277 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000278 else
279 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000280 }
Nate Begemaned428532004-09-04 05:00:00 +0000281 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000282 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000283 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000284 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000285 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000286 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000287 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000288 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000289 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000290 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000291 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000292 else
293 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000294 }
295 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000296 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000297 unsigned CCReg = MI->getOperand(OpNo).getReg();
298 unsigned RegNo = enumRegToMachineReg(CCReg);
299 O << (0x80 >> RegNo);
300 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000301 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000302 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
303 printSymbolLo(MI, OpNo);
304 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000305 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000306 MI->getOperand(OpNo+1).getReg() == PPC::R0)
307 O << "0";
308 else
309 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000310 O << ')';
311 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000312 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000313 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000314 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000315 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000316 printSymbolLo(MI, OpNo);
317 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000318 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000319 MI->getOperand(OpNo+1).getReg() == PPC::R0)
320 O << "0";
321 else
322 printOperand(MI, OpNo+1);
323 O << ')';
324 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000325
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000326 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000327 // When used as the base register, r0 reads constant zero rather than
328 // the value contained in the register. For this reason, the darwin
329 // assembler requires that we print r0 as 0 (no r) when used as the base.
330 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000331 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000332 O << ", ";
333 printOperand(MI, OpNo+1);
334 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000335
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000336 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
337 const MachineOperand &MO = MI->getOperand(OpNo);
338
339 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
340
341 GlobalValue *GV = MO.getGlobal();
342
343 std::string Name = Mang->getMangledName(GV);
344
345 // Map symbol -> label of TOC entry.
346 if (TOC.count(Name) == 0) {
347 std::string Label;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000348 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000349 Label += "C";
350 Label += utostr(LabelID++);
351
352 TOC[Name] = Label;
353 }
354
355 O << TOC[Name] << "@toc";
356 }
357
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000358 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000359 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000360
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000361 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000362 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000363
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000364 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000365 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000366 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000367 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000368 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000369 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000370
371 virtual const char *getPassName() const {
372 return "Linux PPC Assembly Printer";
373 }
374
375 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000376 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000377
Jim Laskeybf111822006-12-21 20:26:09 +0000378 void getAnalysisUsage(AnalysisUsage &AU) const {
379 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000380 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000381 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000382 PPCAsmPrinter::getAnalysisUsage(AU);
383 }
384
Chris Lattner40bbebd2009-07-21 18:38:57 +0000385 void PrintGlobalVariable(const GlobalVariable *GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000386 };
387
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000388 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
389 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000390 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000391 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000392 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000393 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000394 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000395 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000396
397 virtual const char *getPassName() const {
398 return "Darwin PPC Assembly Printer";
399 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000400
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000401 bool runOnMachineFunction(MachineFunction &F);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000402 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000403 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000404
Jim Laskeyb2efb852006-01-04 22:28:25 +0000405 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000406 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000407 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000408 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000409 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000410 }
411
Chris Lattner40bbebd2009-07-21 18:38:57 +0000412 void PrintGlobalVariable(const GlobalVariable *GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000413 };
414} // end of anonymous namespace
415
Nate Begemane59bf592004-08-14 22:09:10 +0000416// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000417#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000418
Chris Lattner9ba13e42005-11-17 19:25:59 +0000419void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000420 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000421 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000422 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000423
Nate Begeman37efe672006-04-22 18:53:45 +0000424 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner325d3dc2009-09-13 17:14:04 +0000425 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000426 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000427 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000428 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000429 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000430 // FIXME: PIC relocation model
431 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000432 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000433 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000434 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000435 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000436 case MachineOperand::MO_BlockAddress:
437 GetBlockAddressSymbol(MO.getBlockAddress())->print(O, MAI);
438 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000439 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000440 // Computing the address of an external symbol, not calling it.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000441 std::string Name(MAI->getGlobalPrefix());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000442 Name += MO.getSymbolName();
443
Evan Cheng4c1aa862006-02-22 20:19:42 +0000444 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner8f831cb2009-07-15 01:14:44 +0000445 GVStubs[Name] = Name+"$non_lazy_ptr";
446 Name += "$non_lazy_ptr";
Chris Lattnera637c322005-12-16 00:22:14 +0000447 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000448 O << Name;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000449 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000450 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000451 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000452 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000453 GlobalValue *GV = MO.getGlobal();
Chris Lattner8f831cb2009-07-15 01:14:44 +0000454 std::string Name;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000455
Nate Begemanfcf4a422004-10-17 23:01:34 +0000456 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000457 if (TM.getRelocationModel() != Reloc::Static &&
458 (GV->isDeclaration() || GV->isWeakForLinker())) {
459 if (!GV->hasHiddenVisibility()) {
460 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
461 GVStubs[Mang->getMangledName(GV)] = Name;
462 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
463 GV->hasAvailableExternallyLinkage()) {
464 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
465 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
466 } else {
467 Name = Mang->getMangledName(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000468 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000469 } else {
470 Name = Mang->getMangledName(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000471 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000472 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000473
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000474 printOffset(MO.getOffset());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000475 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000476 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000477
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000478 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000479 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000480 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000481 }
482}
483
Chris Lattnere3f01572006-02-23 19:31:10 +0000484/// PrintAsmOperand - Print out an operand for an inline asm expression.
485///
486bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000487 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000488 const char *ExtraCode) {
489 // Does this asm operand have a single letter operand modifier?
490 if (ExtraCode && ExtraCode[0]) {
491 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000492
Chris Lattnere3f01572006-02-23 19:31:10 +0000493 switch (ExtraCode[0]) {
494 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000495 case 'c': // Don't print "$" before a global var name or constant.
496 // PPC never has a prefix.
497 printOperand(MI, OpNo);
498 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000499 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000500 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000501 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000502 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000503 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000504 return true;
505 ++OpNo; // Return the high-part.
506 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000507 case 'I':
508 // Write 'i' if an integer constant, otherwise nothing. Used to print
509 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000510 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000511 O << "i";
512 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000513 }
514 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000515
Chris Lattnere3f01572006-02-23 19:31:10 +0000516 printOperand(MI, OpNo);
517 return false;
518}
519
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000520// At the moment, all inline asm memory operands are a single register.
521// In any case, the output of this routine should always be just one
522// assembler operand.
523
Chris Lattner2c003e22006-02-24 20:27:40 +0000524bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000525 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000526 const char *ExtraCode) {
527 if (ExtraCode && ExtraCode[0])
528 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000529 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000530 O << "0(";
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000531 printOperand(MI, OpNo);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000532 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000533 return false;
534}
Chris Lattnere3f01572006-02-23 19:31:10 +0000535
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000536void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000537 const char *Modifier) {
538 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
539 unsigned Code = MI->getOperand(OpNo).getImm();
540 if (!strcmp(Modifier, "cc")) {
541 switch ((PPC::Predicate)Code) {
542 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
543 case PPC::PRED_LT: O << "lt"; return;
544 case PPC::PRED_LE: O << "le"; return;
545 case PPC::PRED_EQ: O << "eq"; return;
546 case PPC::PRED_GE: O << "ge"; return;
547 case PPC::PRED_GT: O << "gt"; return;
548 case PPC::PRED_NE: O << "ne"; return;
549 case PPC::PRED_UN: O << "un"; return;
550 case PPC::PRED_NU: O << "nu"; return;
551 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000552
Chris Lattneraf53a872006-11-04 05:27:39 +0000553 } else {
554 assert(!strcmp(Modifier, "reg") &&
555 "Need to specify 'cc' or 'reg' as predicate op modifier!");
556 // Don't print the register for 'always'.
557 if (Code == PPC::PRED_ALWAYS) return;
558 printOperand(MI, OpNo+1);
559 }
560}
561
562
Nate Begemane59bf592004-08-14 22:09:10 +0000563/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
564/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000565///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000566void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000567 ++EmittedInsts;
Chris Lattner634cca32009-09-09 20:34:59 +0000568
Devang Patelaf0e2722009-10-06 02:19:11 +0000569 processDebugLoc(MI, true);
Chris Lattner617742b2005-10-14 22:44:13 +0000570
Nate Begemanad5f65c2005-04-05 18:19:50 +0000571 // Check for slwi/srwi mnemonics.
Dale Johannesene89c5102010-01-06 02:20:18 +0000572 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000573 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000574 unsigned char SH = MI->getOperand(2).getImm();
575 unsigned char MB = MI->getOperand(3).getImm();
576 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000577 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000578 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000579 }
580 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000581 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000582 SH = 32-SH;
583 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000584 if (useSubstituteMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000585 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000586 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000587 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000588 O << ", " << (unsigned int)SH;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000589 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000590 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000591 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000592 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000593 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000594 printOperand(MI, 0);
595 O << ", ";
596 printOperand(MI, 1);
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000597 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000598 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000599 unsigned char SH = MI->getOperand(2).getImm();
600 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000601 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
602 if (63-SH == ME) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000603 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000604 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000605 printOperand(MI, 0);
606 O << ", ";
607 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000608 O << ", " << (unsigned int)SH;
Chris Lattner566c1b12006-11-18 01:23:56 +0000609 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000610 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000611
Dale Johannesene89c5102010-01-06 02:20:18 +0000612 if (!useSubstituteMnemonic)
613 printInstruction(MI);
614
David Greene1924aab2009-11-13 21:34:57 +0000615 if (VerboseAsm)
Chris Lattnerc5ea2632009-09-09 23:14:36 +0000616 EmitComments(*MI);
617 O << '\n';
Devang Patelaf0e2722009-10-06 02:19:11 +0000618
619 processDebugLoc(MI, false);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000620}
621
Jim Laskeybf111822006-12-21 20:26:09 +0000622/// runOnMachineFunction - This uses the printMachineInstruction()
623/// method to print assembly for each instruction.
624///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000625bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000626 this->MF = &MF;
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000627
Jim Laskeybf111822006-12-21 20:26:09 +0000628 SetupMachineFunction(MF);
629 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000630
Jim Laskeybf111822006-12-21 20:26:09 +0000631 // Print out constants referenced by the function
632 EmitConstantPool(MF.getConstantPool());
633
634 // Print out labels for the function.
635 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000636 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000637
Jim Laskeybf111822006-12-21 20:26:09 +0000638 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000639 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000640 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000641 case Function::InternalLinkage: // Symbols default to internal.
642 break;
643 case Function::ExternalLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000644 O << "\t.global\t";
645 CurrentFnSym->print(O, MAI);
646 O << '\n' << "\t.type\t";
647 CurrentFnSym->print(O, MAI);
648 O << ", @function\n";
Jim Laskeybf111822006-12-21 20:26:09 +0000649 break;
Dale Johannesena60e51f2009-08-24 01:03:42 +0000650 case Function::LinkerPrivateLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +0000651 case Function::WeakAnyLinkage:
652 case Function::WeakODRLinkage:
653 case Function::LinkOnceAnyLinkage:
654 case Function::LinkOnceODRLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000655 O << "\t.global\t";
656 CurrentFnSym->print(O, MAI);
657 O << '\n';
658 O << "\t.weak\t";
659 CurrentFnSym->print(O, MAI);
660 O << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000661 break;
662 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000663
Chris Lattner12164412010-01-16 00:21:18 +0000664 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000665
Bill Wendling20c568f2009-06-30 22:38:32 +0000666 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000667
668 if (Subtarget.isPPC64()) {
669 // Emit an official procedure descriptor.
Chris Lattner12164412010-01-16 00:21:18 +0000670 // FIXME 64-bit SVR4: Use MCSection here!
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000671 O << "\t.section\t\".opd\",\"aw\"\n";
672 O << "\t.align 3\n";
Chris Lattner12164412010-01-16 00:21:18 +0000673 CurrentFnSym->print(O, MAI);
674 O << ":\n";
675 O << "\t.quad .L.";
676 CurrentFnSym->print(O, MAI);
677 O << ",.TOC.@tocbase\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000678 O << "\t.previous\n";
Chris Lattner12164412010-01-16 00:21:18 +0000679 O << ".L.";
680 CurrentFnSym->print(O, MAI);
681 O << ":\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000682 } else {
Chris Lattner12164412010-01-16 00:21:18 +0000683 CurrentFnSym->print(O, MAI);
684 O << ":\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000685 }
Jim Laskeybf111822006-12-21 20:26:09 +0000686
687 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000688 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000689
690 // Print out code for the function.
691 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
692 I != E; ++I) {
693 // Print a label for the basic block.
694 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000695 EmitBasicBlockStart(I);
Jim Laskeybf111822006-12-21 20:26:09 +0000696 }
697 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
698 II != E; ++II) {
699 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000700 printMachineInstruction(II);
701 }
702 }
703
Chris Lattner12164412010-01-16 00:21:18 +0000704 O << "\t.size\t";
705 CurrentFnSym->print(O, MAI);
706 O << ",.-";
707 CurrentFnSym->print(O, MAI);
708 O << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000709
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000710 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesenf94a3272008-12-03 19:33:10 +0000711
Jim Laskeybf111822006-12-21 20:26:09 +0000712 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000713 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000714
Bill Wendlingb1ec31d2009-11-09 21:20:14 +0000715 // Print out jump tables referenced by the function.
716 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
717
Jim Laskeybf111822006-12-21 20:26:09 +0000718 // We didn't modify anything.
719 return false;
720}
721
Chris Lattner40bbebd2009-07-21 18:38:57 +0000722void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000723 const TargetData *TD = TM.getTargetData();
724
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000725 if (!GVar->hasInitializer())
726 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000727
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000728 // Check to see if this is a special global used by LLVM, if so, emit it.
729 if (EmitSpecialLLVMGlobal(GVar))
730 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000731
Chris Lattner9c093632010-01-16 01:12:01 +0000732 MCSymbol *GVarSym = GetGlobalValueSymbol(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000733
Chris Lattner9c093632010-01-16 01:12:01 +0000734 printVisibility(GVarSym, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000735
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000736 Constant *C = GVar->getInitializer();
737 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000738 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000739 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000740
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000741 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
742 TM));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000743
744 if (C->isNullValue() && /* FIXME: Verify correct */
745 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000746 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000747 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000748 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000749
750 if (GVar->hasExternalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +0000751 O << "\t.global ";
752 GVarSym->print(O, MAI);
753 O << '\n';
754 O << "\t.type ";
755 GVarSym->print(O, MAI);
756 O << ", @object\n";
757 GVarSym->print(O, MAI);
758 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000759 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000760 } else if (GVar->hasLocalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +0000761 O << MAI->getLCOMMDirective();
762 GVarSym->print(O, MAI);
763 O << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000764 } else {
Chris Lattner9c093632010-01-16 01:12:01 +0000765 O << ".comm ";
766 GVarSym->print(O, MAI);
767 O << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000768 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000769 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000770 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000771 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000772 O << "'";
773 }
774 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000775 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000776 }
777
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000778 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000779 case GlobalValue::LinkOnceAnyLinkage:
780 case GlobalValue::LinkOnceODRLinkage:
781 case GlobalValue::WeakAnyLinkage:
782 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000783 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000784 case GlobalValue::LinkerPrivateLinkage:
Chris Lattner9c093632010-01-16 01:12:01 +0000785 O << "\t.global ";
786 GVarSym->print(O, MAI);
787 O << "\n\t.type ";
788 GVarSym->print(O, MAI);
789 O << ", @object\n\t.weak ";
790 GVarSym->print(O, MAI);
791 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000792 break;
793 case GlobalValue::AppendingLinkage:
794 // FIXME: appending linkage variables should go into a section of
795 // their name or something. For now, just emit them as external.
796 case GlobalValue::ExternalLinkage:
797 // If external or appending, declare as a global symbol
Chris Lattner9c093632010-01-16 01:12:01 +0000798 O << "\t.global ";
799 GVarSym->print(O, MAI);
800 O << "\n\t.type ";
801 GVarSym->print(O, MAI);
802 O << ", @object\n";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000803 // FALL THROUGH
804 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000805 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000806 break;
807 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000808 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000809 }
810
811 EmitAlignment(Align, GVar);
Chris Lattner9c093632010-01-16 01:12:01 +0000812 GVarSym->print(O, MAI);
813 O << ":";
Evan Chengf1c0ae92009-03-24 00:17:40 +0000814 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000815 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000816 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000817 O << "'";
818 }
819 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000820
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000821 EmitGlobalConstant(C);
822 O << '\n';
823}
824
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000825bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
826 const TargetData *TD = TM.getTargetData();
827
828 bool isPPC64 = TD->getPointerSizeInBits() == 64;
829
830 if (isPPC64 && !TOC.empty()) {
831 // FIXME 64-bit SVR4: Use MCSection here?
832 O << "\t.section\t\".toc\",\"aw\"\n";
833
834 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
835 I != E; ++I) {
836 O << I->second << ":\n";
837 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
838 }
839 }
840
841 return AsmPrinter::doFinalization(M);
842}
Jim Laskeybf111822006-12-21 20:26:09 +0000843
Nate Begemaned428532004-09-04 05:00:00 +0000844/// runOnMachineFunction - This uses the printMachineInstruction()
845/// method to print assembly for each instruction.
846///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000847bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000848 this->MF = &MF;
849
Chris Lattner8b8b9512005-11-21 07:51:23 +0000850 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000851 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000852
Nate Begemaned428532004-09-04 05:00:00 +0000853 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000854 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000855
856 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000857 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000858 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000859
Chris Lattnera637c322005-12-16 00:22:14 +0000860 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000861 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000862 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000863 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000864 break;
865 case Function::ExternalLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000866 O << "\t.globl\t";
867 CurrentFnSym->print(O, MAI);
868 O << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000869 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000870 case Function::WeakAnyLinkage:
871 case Function::WeakODRLinkage:
872 case Function::LinkOnceAnyLinkage:
873 case Function::LinkOnceODRLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000874 case Function::LinkerPrivateLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000875 O << "\t.globl\t";
876 CurrentFnSym->print(O, MAI);
877 O << '\n';
878 O << "\t.weak_definition\t";
879 CurrentFnSym->print(O, MAI);
880 O << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000881 break;
882 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000883
Chris Lattner12164412010-01-16 00:21:18 +0000884 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000885
Bill Wendling20c568f2009-06-30 22:38:32 +0000886 EmitAlignment(MF.getAlignment(), F);
Chris Lattner12164412010-01-16 00:21:18 +0000887 CurrentFnSym->print(O, MAI);
888 O << ":\n";
Nate Begemaned428532004-09-04 05:00:00 +0000889
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000890 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000891 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000892
Bill Wendling381802f2008-01-26 06:51:24 +0000893 // If the function is empty, then we need to emit *something*. Otherwise, the
894 // function's label might be associated with something that it wasn't meant to
895 // be associated with. We emit a noop in this situation.
896 MachineFunction::iterator I = MF.begin();
897
Bill Wendling824a7212008-01-26 09:03:52 +0000898 if (++I == MF.end() && MF.front().empty())
899 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000900
Nate Begemaned428532004-09-04 05:00:00 +0000901 // Print out code for the function.
902 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
903 I != E; ++I) {
904 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000905 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000906 EmitBasicBlockStart(I);
Chris Lattner1db1adb2005-08-21 19:09:33 +0000907 }
Bill Wendling381802f2008-01-26 06:51:24 +0000908 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
909 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000910 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000911 printMachineInstruction(II);
912 }
913 }
Nate Begemaned428532004-09-04 05:00:00 +0000914
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000915 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000916 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000917
Bill Wendling2718e432009-11-09 21:45:26 +0000918 // Print out jump tables referenced by the function.
919 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
920
Nate Begemaned428532004-09-04 05:00:00 +0000921 // We didn't modify anything.
922 return false;
923}
924
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000925
Bob Wilson812209a2009-09-30 22:06:26 +0000926void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000927 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000928 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000929 "ppc",
930 "ppc601",
931 "ppc602",
932 "ppc603",
933 "ppc7400",
934 "ppc750",
935 "ppc970",
936 "ppc64"
937 };
938
939 unsigned Directive = Subtarget.getDarwinDirective();
940 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
941 Directive = PPC::DIR_970;
942 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
943 Directive = PPC::DIR_7400;
944 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
945 Directive = PPC::DIR_64;
946 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000947 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000948
Jim Laskey2ada0852006-11-28 18:21:52 +0000949 // Prime text sections so they are adjacent. This reduces the likelihood a
950 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000951 TargetLoweringObjectFileMachO &TLOFMacho =
952 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000953 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000954 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000955 OutStreamer.SwitchSection(
956 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
957 MCSectionMachO::S_SYMBOL_STUBS |
958 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
959 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000960 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000961 OutStreamer.SwitchSection(
962 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
963 MCSectionMachO::S_SYMBOL_STUBS |
964 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
965 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000966 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000967 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000968}
969
Chris Lattner40bbebd2009-07-21 18:38:57 +0000970void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000971 const TargetData *TD = TM.getTargetData();
972
973 if (!GVar->hasInitializer())
974 return; // External global require no code
975
976 // Check to see if this is a special global used by LLVM, if so, emit it.
977 if (EmitSpecialLLVMGlobal(GVar)) {
978 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000979 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000980 O << ".reference .constructors_used\n";
Daniel Dunbar03d76512009-07-25 23:55:21 +0000981 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000982 O << ".reference .destructors_used\n";
983 }
984 return;
985 }
986
Chris Lattner9c093632010-01-16 01:12:01 +0000987 MCSymbol *GVarSym = GetGlobalValueSymbol(GVar);
988 printVisibility(GVarSym, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000989
990 Constant *C = GVar->getInitializer();
991 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000992 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000993 unsigned Align = TD->getPreferredAlignmentLog(GVar);
994
Chris Lattnera87dea42009-07-31 18:48:30 +0000995 const MCSection *TheSection =
Chris Lattnere53a6002009-07-29 05:09:30 +0000996 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000997 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000998
Chris Lattner3b24c012009-08-04 05:35:56 +0000999 /// FIXME: Drive this off the section!
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001000 if (C->isNullValue() && /* FIXME: Verify correct */
1001 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +00001002 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +00001003 GVar->isWeakForLinker()) &&
Chris Lattnerc440cc72009-07-24 04:08:17 +00001004 // Don't put things that should go in the cstring section into "comm".
Chris Lattner5fe575f2009-07-27 05:32:16 +00001005 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001006 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
1007
1008 if (GVar->hasExternalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001009 O << "\t.globl ";
1010 GVarSym->print(O, MAI);
1011 O << '\n';
1012 O << "\t.zerofill __DATA, __common, ";
1013 GVarSym->print(O, MAI);
1014 O << ", " << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +00001015 } else if (GVar->hasLocalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001016 O << MAI->getLCOMMDirective();
1017 GVarSym->print(O, MAI);
1018 O << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001019 } else if (!GVar->hasCommonLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001020 O << "\t.globl ";
1021 GVarSym->print(O, MAI);
1022 O << '\n' << MAI->getWeakDefDirective();
1023 GVarSym->print(O, MAI);
1024 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001025 EmitAlignment(Align, GVar);
Chris Lattner9c093632010-01-16 01:12:01 +00001026 GVarSym->print(O, MAI);
1027 O << ":";
Evan Chengf1c0ae92009-03-24 00:17:40 +00001028 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001029 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001030 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001031 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001032 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001033 EmitGlobalConstant(C);
1034 return;
1035 } else {
Chris Lattner9c093632010-01-16 01:12:01 +00001036 O << ".comm ";
1037 GVarSym->print(O, MAI);
1038 O << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001039 // Darwin 9 and above support aligned common data.
1040 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001041 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001042 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001043 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001044 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001045 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001046 O << "'";
1047 }
1048 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001049 return;
1050 }
1051
1052 switch (GVar->getLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001053 case GlobalValue::LinkOnceAnyLinkage:
1054 case GlobalValue::LinkOnceODRLinkage:
1055 case GlobalValue::WeakAnyLinkage:
1056 case GlobalValue::WeakODRLinkage:
1057 case GlobalValue::CommonLinkage:
1058 case GlobalValue::LinkerPrivateLinkage:
1059 O << "\t.globl ";
1060 GVarSym->print(O, MAI);
1061 O << "\n\t.weak_definition ";
1062 GVarSym->print(O, MAI);
1063 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001064 break;
Chris Lattner9c093632010-01-16 01:12:01 +00001065 case GlobalValue::AppendingLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001066 // FIXME: appending linkage variables should go into a section of
1067 // their name or something. For now, just emit them as external.
Chris Lattner9c093632010-01-16 01:12:01 +00001068 case GlobalValue::ExternalLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001069 // If external or appending, declare as a global symbol
Chris Lattner9c093632010-01-16 01:12:01 +00001070 O << "\t.globl ";
1071 GVarSym->print(O, MAI);
1072 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001073 // FALL THROUGH
Chris Lattner9c093632010-01-16 01:12:01 +00001074 case GlobalValue::InternalLinkage:
1075 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001076 break;
Chris Lattner9c093632010-01-16 01:12:01 +00001077 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001078 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001079 }
1080
1081 EmitAlignment(Align, GVar);
Chris Lattner9c093632010-01-16 01:12:01 +00001082 GVarSym->print(O, MAI);
1083 O << ":";
Evan Chengf1c0ae92009-03-24 00:17:40 +00001084 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001085 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001086 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001087 O << "'";
1088 }
1089 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001090
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001091 EmitGlobalConstant(C);
1092 O << '\n';
1093}
1094
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001095bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +00001096 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001097
Chris Lattner7e097e42006-06-27 01:02:25 +00001098 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1099
Chris Lattner2dfddee2009-08-03 22:52:21 +00001100 // Darwin/PPC always uses mach-o.
1101 TargetLoweringObjectFileMachO &TLOFMacho =
1102 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1103
Chris Lattnerff4bc462009-08-10 01:39:42 +00001104
1105 const MCSection *LSPSection = 0;
1106 if (!FnStubs.empty()) // .lazy_symbol_pointer
1107 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1108
1109
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001110 // Output stubs for dynamically-linked functions
Chris Lattnerea56f102009-07-15 00:55:58 +00001111 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattner2dfddee2009-08-03 22:52:21 +00001112 const MCSection *StubSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +00001113 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1114 MCSectionMachO::S_SYMBOL_STUBS |
1115 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1116 32, SectionKind::getText());
Chris Lattner0b4bad52010-01-13 19:00:57 +00001117 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001118 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001119 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +00001120 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001121 const FnStubInfo &Info = I->second;
Chris Lattner656bb202010-01-13 19:13:16 +00001122 Info.Stub->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001123 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001124 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001125 O << "\tmflr r0\n";
Chris Lattner0b4bad52010-01-13 19:00:57 +00001126 O << "\tbcl 20,31,";
Chris Lattner656bb202010-01-13 19:13:16 +00001127 Info.AnonSymbol->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001128 O << '\n';
Chris Lattner656bb202010-01-13 19:13:16 +00001129 Info.AnonSymbol->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001130 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001131 O << "\tmflr r11\n";
Chris Lattner0b4bad52010-01-13 19:00:57 +00001132 O << "\taddis r11,r11,ha16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001133 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001134 O << '-';
Chris Lattner656bb202010-01-13 19:13:16 +00001135 Info.AnonSymbol->print(O, MAI);
Evan Chengae94e592008-12-05 01:06:39 +00001136 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001137 O << "\tmtlr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001138 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001139 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001140 O << '-';
Chris Lattner656bb202010-01-13 19:13:16 +00001141 Info.AnonSymbol->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001142 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001143 O << "\tmtctr r12\n";
1144 O << "\tbctr\n";
Chris Lattnerfe2fe702009-07-16 01:23:26 +00001145
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001146 OutStreamer.SwitchSection(LSPSection);
Chris Lattner656bb202010-01-13 19:13:16 +00001147 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001148 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001149 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001150 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001151 }
Chris Lattnerea56f102009-07-15 00:55:58 +00001152 } else if (!FnStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001153 const MCSection *StubSection =
1154 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1155 MCSectionMachO::S_SYMBOL_STUBS |
1156 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1157 16, SectionKind::getText());
Chris Lattner2dfddee2009-08-03 22:52:21 +00001158
Chris Lattner9ec8fac2009-07-15 02:28:57 +00001159 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001160 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001161 OutStreamer.SwitchSection(StubSection);
Chris Lattnerdeea4162005-12-13 04:33:58 +00001162 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001163 const FnStubInfo &Info = I->second;
Chris Lattner656bb202010-01-13 19:13:16 +00001164 Info.Stub->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001165 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001166 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner0b4bad52010-01-13 19:00:57 +00001167 O << "\tlis r11,ha16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001168 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001169 O << ")\n";
Chris Lattner1a87c052009-07-15 02:36:21 +00001170 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001171 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001172 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001173 O << "\tmtctr r12\n";
1174 O << "\tbctr\n";
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001175 OutStreamer.SwitchSection(LSPSection);
Chris Lattner656bb202010-01-13 19:13:16 +00001176 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001177 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001178 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001179 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001180 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001181 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001182
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001183 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001184
Chris Lattner33adcfb2009-08-22 21:43:10 +00001185 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001186 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001187 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +00001188 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001189 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +00001190 E = Personalities.end(); I != E; ++I) {
1191 if (*I)
1192 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner0f6c8f22009-07-15 01:16:38 +00001193 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +00001194 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001195 }
1196
Chris Lattner2dfddee2009-08-03 22:52:21 +00001197 // Output macho stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001198 if (!GVStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001199 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001200 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +00001201 EmitAlignment(isPPC64 ? 3 : 2);
1202
Chris Lattner8f831cb2009-07-15 01:14:44 +00001203 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1204 E = GVStubs.end(); I != E; ++I) {
1205 O << I->second << ":\n";
1206 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1207 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001208 }
Nate Begemane59bf592004-08-14 22:09:10 +00001209 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001210
Evan Chengae94e592008-12-05 01:06:39 +00001211 if (!HiddenGVStubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001212 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +00001213 EmitAlignment(isPPC64 ? 3 : 2);
1214 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1215 E = HiddenGVStubs.end(); I != E; ++I) {
1216 O << I->second << ":\n";
1217 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chengae94e592008-12-05 01:06:39 +00001218 }
1219 }
1220
Chris Lattner5b0ac992005-11-01 00:12:36 +00001221 // Funny Darwin hack: This flag tells the linker that no global symbols
1222 // contain code that falls through to other global symbols (e.g. the obvious
1223 // implementation of multiple entry points). If this doesn't occur, the
1224 // linker can safely perform dead code stripping. Since LLVM never generates
1225 // code that does this, it is always safe to set.
Chris Lattner74cd3b72009-10-19 18:03:08 +00001226 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +00001227
Dan Gohmanb8275a32007-07-25 19:33:14 +00001228 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001229}
Nate Begemaned428532004-09-04 05:00:00 +00001230
Chris Lattner4da1c822006-09-20 17:12:19 +00001231
1232
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001233/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1234/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001235/// Darwin assembler can deal with.
1236///
Daniel Dunbar78945782009-08-13 23:48:47 +00001237static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1238 TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +00001239 const MCAsmInfo *tai,
Daniel Dunbar78945782009-08-13 23:48:47 +00001240 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001241 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1242
Chris Lattner40bbebd2009-07-21 18:38:57 +00001243 if (Subtarget->isDarwin())
Daniel Dunbar67d894e2009-08-13 19:38:51 +00001244 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1245 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Chris Lattner4da1c822006-09-20 17:12:19 +00001246}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001247
Bob Wilsona96751f2009-06-23 23:59:40 +00001248// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001249extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001250 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001251 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1252}