blob: 4175d9c26cf05bb6535a002b374545d2f3825798 [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 Lattner76a3c482010-01-16 01:45:47 +000068 void Init(const GlobalValue *GV, AsmPrinter *Printer) {
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 Lattner76a3c482010-01-16 01:45:47 +000073 Stub = Printer->GetPrivateGlobalValueSymbolStub(GV, "$stub");
74 LazyPtr = Printer->GetPrivateGlobalValueSymbolStub(GV, "$lazy_ptr");
75 AnonSymbol = Printer->GetPrivateGlobalValueSymbolStub(GV, "$stub$tmp");
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);
Chris Lattner656bb202010-01-13 19:13:16 +000084 TmpStr += "$stub";
85 Stub = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner59b34fe2010-01-13 19:05:36 +000086 TmpStr.erase(TmpStr.end()-5, TmpStr.end()); // Remove $stub
87
88 TmpStr += "$lazy_ptr";
Chris Lattner656bb202010-01-13 19:13:16 +000089 LazyPtr = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner59b34fe2010-01-13 19:05:36 +000090 TmpStr.erase(TmpStr.end()-9, TmpStr.end()); // Remove $lazy_ptr
Chris Lattner48130352010-01-13 06:38:18 +000091
Chris Lattner59b34fe2010-01-13 19:05:36 +000092 TmpStr += "$stub$tmp";
Chris Lattner656bb202010-01-13 19:13:16 +000093 AnonSymbol = Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner9ec8fac2009-07-15 02:28:57 +000094 }
95 };
96
97 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000098 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000099 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000100 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +0000101 public:
David Greene71847812009-07-14 20:18:05 +0000102 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000103 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000104 : AsmPrinter(O, TM, T, V),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000105 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000106
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000107 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +0000108 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000109 }
110
Nate Begeman21e463b2005-10-16 05:39:50 +0000111 PPCTargetMachine &getTM() {
112 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +0000113 }
114
Nate Begemanadeb43d2005-07-20 22:42:00 +0000115 unsigned enumRegToMachineReg(unsigned enumReg) {
116 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000117 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +0000118 case PPC::CR0: return 0;
119 case PPC::CR1: return 1;
120 case PPC::CR2: return 2;
121 case PPC::CR3: return 3;
122 case PPC::CR4: return 4;
123 case PPC::CR5: return 5;
124 case PPC::CR6: return 6;
125 case PPC::CR7: return 7;
126 }
Torok Edwinc23197a2009-07-14 16:55:14 +0000127 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +0000128 }
129
Nate Begemane59bf592004-08-14 22:09:10 +0000130 /// printInstruction - This method is automatically generated by tablegen
131 /// from the instruction set description. This method returns true if the
132 /// machine instruction was sufficiently described to print it, otherwise it
133 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +0000134 void printInstruction(const MachineInstr *MI);
Chris Lattnerd95148f2009-09-13 20:19:22 +0000135 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +0000136
Nate Begemane59bf592004-08-14 22:09:10 +0000137
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000138 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +0000139 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000140
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000141 /// stripRegisterPrefix - This method strips the character prefix from a
142 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000143 const char *stripRegisterPrefix(const char *RegName) {
144 switch (RegName[0]) {
145 case 'r':
146 case 'f':
147 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000148 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000149 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000150
Jim Laskey40ee69f2006-12-20 21:33:34 +0000151 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000152 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000153
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000154 /// printRegister - Print register according to target requirements.
155 ///
156 void printRegister(const MachineOperand &MO, bool R0AsZero) {
157 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000158 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000159
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000160 // If we should use 0 for R0.
161 if (R0AsZero && RegNo == PPC::R0) {
162 O << "0";
163 return;
164 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000165
Chris Lattner762ccea2009-09-13 20:31:40 +0000166 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000167 // Linux assembler (Others?) does not take register mnemonics.
168 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000169 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
170 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000171 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000172
Chris Lattner58873272006-02-01 22:38:46 +0000173 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000174 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000175 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000176 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000177 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000178 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000179 } else {
180 printOp(MO);
181 }
182 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000183
Chris Lattner58873272006-02-01 22:38:46 +0000184 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000185 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000186 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
187 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000188
189
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000190 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000191 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000192 value = (value << (32-5)) >> (32-5);
193 O << (int)value;
194 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000195 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000196 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000197 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000198 O << (unsigned int)value;
199 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000200 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000201 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000202 assert(value <= 63 && "Invalid u6imm argument!");
203 O << (unsigned int)value;
204 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000205 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000206 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000207 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000208 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000209 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000210 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000211 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000212 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000213 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000214 } else {
215 O << "lo16(";
216 printOp(MI->getOperand(OpNo));
217 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000218 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000219 else
220 O << ')';
221 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000222 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000223 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000224 // Branches can take an immediate operand. This is used by the branch
225 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000226 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000227 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000228 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000229 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000230 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000231 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000232 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000233 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000234 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000235 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
236 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000237 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000238 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000239 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
Chris Lattner76a3c482010-01-16 01:45:47 +0000240 FnInfo.Init(GV, this);
Chris Lattner656bb202010-01-13 19:13:16 +0000241 FnInfo.Stub->print(O, MAI);
Chris Lattnera637c322005-12-16 00:22:14 +0000242 return;
243 }
244 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000245 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner48130352010-01-13 06:38:18 +0000246 SmallString<128> MangledName;
Chris Lattneree9250b2010-01-13 07:56:59 +0000247 Mang->getNameWithPrefix(MangledName, MO.getSymbolName());
Chris Lattner48130352010-01-13 06:38:18 +0000248 FnStubInfo &FnInfo = FnStubs[MangledName.str()];
Chris Lattner0b4bad52010-01-13 19:00:57 +0000249 FnInfo.Init(MO.getSymbolName(), Mang, OutContext);
Chris Lattner656bb202010-01-13 19:13:16 +0000250 FnInfo.Stub->print(O, MAI);
Chris Lattner9542f9712005-11-17 19:40:30 +0000251 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000252 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000253 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000254
Chris Lattner9542f9712005-11-17 19:40:30 +0000255 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000256 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000257 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000258 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000259 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000260 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000261 O << "\"L" << getFunctionNumber() << "$pb\"\n";
262 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000263 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000264 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000265 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000266 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000267 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000268 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000269 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000270 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000271 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000272 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000273 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000274 else
275 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000276 }
Nate Begemaned428532004-09-04 05:00:00 +0000277 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000278 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000279 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000280 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000281 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000282 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000283 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000284 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000285 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000286 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000287 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000288 else
289 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000290 }
291 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000292 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000293 unsigned CCReg = MI->getOperand(OpNo).getReg();
294 unsigned RegNo = enumRegToMachineReg(CCReg);
295 O << (0x80 >> RegNo);
296 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000297 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000298 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
299 printSymbolLo(MI, OpNo);
300 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000301 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000302 MI->getOperand(OpNo+1).getReg() == PPC::R0)
303 O << "0";
304 else
305 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000306 O << ')';
307 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000308 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000309 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000310 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000311 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000312 printSymbolLo(MI, OpNo);
313 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000314 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000315 MI->getOperand(OpNo+1).getReg() == PPC::R0)
316 O << "0";
317 else
318 printOperand(MI, OpNo+1);
319 O << ')';
320 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000321
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000322 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000323 // When used as the base register, r0 reads constant zero rather than
324 // the value contained in the register. For this reason, the darwin
325 // assembler requires that we print r0 as 0 (no r) when used as the base.
326 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000327 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000328 O << ", ";
329 printOperand(MI, OpNo+1);
330 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000331
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000332 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
333 const MachineOperand &MO = MI->getOperand(OpNo);
334
335 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
336
337 GlobalValue *GV = MO.getGlobal();
338
339 std::string Name = Mang->getMangledName(GV);
340
341 // Map symbol -> label of TOC entry.
342 if (TOC.count(Name) == 0) {
343 std::string Label;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000344 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000345 Label += "C";
346 Label += utostr(LabelID++);
347
348 TOC[Name] = Label;
349 }
350
351 O << TOC[Name] << "@toc";
352 }
353
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000354 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000355 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000356
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000357 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000358 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000359
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000360 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000361 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000362 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000363 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000364 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000365 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000366
367 virtual const char *getPassName() const {
368 return "Linux PPC Assembly Printer";
369 }
370
371 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000372 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000373
Jim Laskeybf111822006-12-21 20:26:09 +0000374 void getAnalysisUsage(AnalysisUsage &AU) const {
375 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000376 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000377 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000378 PPCAsmPrinter::getAnalysisUsage(AU);
379 }
380
Chris Lattner40bbebd2009-07-21 18:38:57 +0000381 void PrintGlobalVariable(const GlobalVariable *GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000382 };
383
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000384 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
385 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000386 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000387 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000388 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000389 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000390 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000391 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000392
393 virtual const char *getPassName() const {
394 return "Darwin PPC Assembly Printer";
395 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000396
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000397 bool runOnMachineFunction(MachineFunction &F);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000398 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000399 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000400
Jim Laskeyb2efb852006-01-04 22:28:25 +0000401 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000402 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000403 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000404 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000405 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000406 }
407
Chris Lattner40bbebd2009-07-21 18:38:57 +0000408 void PrintGlobalVariable(const GlobalVariable *GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000409 };
410} // end of anonymous namespace
411
Nate Begemane59bf592004-08-14 22:09:10 +0000412// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000413#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000414
Chris Lattner9ba13e42005-11-17 19:25:59 +0000415void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000416 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000417 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000418 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000419
Nate Begeman37efe672006-04-22 18:53:45 +0000420 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner325d3dc2009-09-13 17:14:04 +0000421 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000422 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000423 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000424 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000425 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000426 // FIXME: PIC relocation model
427 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000428 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000429 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000430 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000431 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000432 case MachineOperand::MO_BlockAddress:
433 GetBlockAddressSymbol(MO.getBlockAddress())->print(O, MAI);
434 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000435 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000436 // Computing the address of an external symbol, not calling it.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000437 std::string Name(MAI->getGlobalPrefix());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000438 Name += MO.getSymbolName();
439
Evan Cheng4c1aa862006-02-22 20:19:42 +0000440 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner8f831cb2009-07-15 01:14:44 +0000441 GVStubs[Name] = Name+"$non_lazy_ptr";
442 Name += "$non_lazy_ptr";
Chris Lattnera637c322005-12-16 00:22:14 +0000443 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000444 O << Name;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000445 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000446 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000447 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000448 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000449 GlobalValue *GV = MO.getGlobal();
Chris Lattner8f831cb2009-07-15 01:14:44 +0000450 std::string Name;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000451
Nate Begemanfcf4a422004-10-17 23:01:34 +0000452 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000453 if (TM.getRelocationModel() != Reloc::Static &&
454 (GV->isDeclaration() || GV->isWeakForLinker())) {
455 if (!GV->hasHiddenVisibility()) {
456 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
457 GVStubs[Mang->getMangledName(GV)] = Name;
458 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
459 GV->hasAvailableExternallyLinkage()) {
460 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
461 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
462 } else {
463 Name = Mang->getMangledName(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000464 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000465 } else {
466 Name = Mang->getMangledName(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000467 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000468 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000469
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000470 printOffset(MO.getOffset());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000471 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000472 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000473
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000474 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000475 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000476 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000477 }
478}
479
Chris Lattnere3f01572006-02-23 19:31:10 +0000480/// PrintAsmOperand - Print out an operand for an inline asm expression.
481///
482bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000483 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000484 const char *ExtraCode) {
485 // Does this asm operand have a single letter operand modifier?
486 if (ExtraCode && ExtraCode[0]) {
487 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000488
Chris Lattnere3f01572006-02-23 19:31:10 +0000489 switch (ExtraCode[0]) {
490 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000491 case 'c': // Don't print "$" before a global var name or constant.
492 // PPC never has a prefix.
493 printOperand(MI, OpNo);
494 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000495 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000496 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000497 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000498 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000499 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000500 return true;
501 ++OpNo; // Return the high-part.
502 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000503 case 'I':
504 // Write 'i' if an integer constant, otherwise nothing. Used to print
505 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000506 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000507 O << "i";
508 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000509 }
510 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000511
Chris Lattnere3f01572006-02-23 19:31:10 +0000512 printOperand(MI, OpNo);
513 return false;
514}
515
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000516// At the moment, all inline asm memory operands are a single register.
517// In any case, the output of this routine should always be just one
518// assembler operand.
519
Chris Lattner2c003e22006-02-24 20:27:40 +0000520bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000521 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000522 const char *ExtraCode) {
523 if (ExtraCode && ExtraCode[0])
524 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000525 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000526 O << "0(";
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000527 printOperand(MI, OpNo);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000528 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000529 return false;
530}
Chris Lattnere3f01572006-02-23 19:31:10 +0000531
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000532void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000533 const char *Modifier) {
534 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
535 unsigned Code = MI->getOperand(OpNo).getImm();
536 if (!strcmp(Modifier, "cc")) {
537 switch ((PPC::Predicate)Code) {
538 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
539 case PPC::PRED_LT: O << "lt"; return;
540 case PPC::PRED_LE: O << "le"; return;
541 case PPC::PRED_EQ: O << "eq"; return;
542 case PPC::PRED_GE: O << "ge"; return;
543 case PPC::PRED_GT: O << "gt"; return;
544 case PPC::PRED_NE: O << "ne"; return;
545 case PPC::PRED_UN: O << "un"; return;
546 case PPC::PRED_NU: O << "nu"; return;
547 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000548
Chris Lattneraf53a872006-11-04 05:27:39 +0000549 } else {
550 assert(!strcmp(Modifier, "reg") &&
551 "Need to specify 'cc' or 'reg' as predicate op modifier!");
552 // Don't print the register for 'always'.
553 if (Code == PPC::PRED_ALWAYS) return;
554 printOperand(MI, OpNo+1);
555 }
556}
557
558
Nate Begemane59bf592004-08-14 22:09:10 +0000559/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
560/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000561///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000562void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000563 ++EmittedInsts;
Chris Lattner634cca32009-09-09 20:34:59 +0000564
Devang Patelaf0e2722009-10-06 02:19:11 +0000565 processDebugLoc(MI, true);
Chris Lattner617742b2005-10-14 22:44:13 +0000566
Nate Begemanad5f65c2005-04-05 18:19:50 +0000567 // Check for slwi/srwi mnemonics.
Dale Johannesene89c5102010-01-06 02:20:18 +0000568 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000569 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000570 unsigned char SH = MI->getOperand(2).getImm();
571 unsigned char MB = MI->getOperand(3).getImm();
572 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000573 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000574 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000575 }
576 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000577 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000578 SH = 32-SH;
579 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000580 if (useSubstituteMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000581 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000582 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000583 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000584 O << ", " << (unsigned int)SH;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000585 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000586 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000587 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000588 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000589 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000590 printOperand(MI, 0);
591 O << ", ";
592 printOperand(MI, 1);
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000593 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000594 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000595 unsigned char SH = MI->getOperand(2).getImm();
596 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000597 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
598 if (63-SH == ME) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000599 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000600 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000601 printOperand(MI, 0);
602 O << ", ";
603 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000604 O << ", " << (unsigned int)SH;
Chris Lattner566c1b12006-11-18 01:23:56 +0000605 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000606 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000607
Dale Johannesene89c5102010-01-06 02:20:18 +0000608 if (!useSubstituteMnemonic)
609 printInstruction(MI);
610
David Greene1924aab2009-11-13 21:34:57 +0000611 if (VerboseAsm)
Chris Lattnerc5ea2632009-09-09 23:14:36 +0000612 EmitComments(*MI);
613 O << '\n';
Devang Patelaf0e2722009-10-06 02:19:11 +0000614
615 processDebugLoc(MI, false);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000616}
617
Jim Laskeybf111822006-12-21 20:26:09 +0000618/// runOnMachineFunction - This uses the printMachineInstruction()
619/// method to print assembly for each instruction.
620///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000621bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000622 this->MF = &MF;
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000623
Jim Laskeybf111822006-12-21 20:26:09 +0000624 SetupMachineFunction(MF);
625 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000626
Jim Laskeybf111822006-12-21 20:26:09 +0000627 // Print out constants referenced by the function
628 EmitConstantPool(MF.getConstantPool());
629
630 // Print out labels for the function.
631 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000632 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000633
Jim Laskeybf111822006-12-21 20:26:09 +0000634 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000635 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000636 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000637 case Function::InternalLinkage: // Symbols default to internal.
638 break;
639 case Function::ExternalLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000640 O << "\t.global\t";
641 CurrentFnSym->print(O, MAI);
642 O << '\n' << "\t.type\t";
643 CurrentFnSym->print(O, MAI);
644 O << ", @function\n";
Jim Laskeybf111822006-12-21 20:26:09 +0000645 break;
Dale Johannesena60e51f2009-08-24 01:03:42 +0000646 case Function::LinkerPrivateLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +0000647 case Function::WeakAnyLinkage:
648 case Function::WeakODRLinkage:
649 case Function::LinkOnceAnyLinkage:
650 case Function::LinkOnceODRLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000651 O << "\t.global\t";
652 CurrentFnSym->print(O, MAI);
653 O << '\n';
654 O << "\t.weak\t";
655 CurrentFnSym->print(O, MAI);
656 O << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000657 break;
658 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000659
Chris Lattner12164412010-01-16 00:21:18 +0000660 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000661
Bill Wendling20c568f2009-06-30 22:38:32 +0000662 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000663
664 if (Subtarget.isPPC64()) {
665 // Emit an official procedure descriptor.
Chris Lattner12164412010-01-16 00:21:18 +0000666 // FIXME 64-bit SVR4: Use MCSection here!
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000667 O << "\t.section\t\".opd\",\"aw\"\n";
668 O << "\t.align 3\n";
Chris Lattner12164412010-01-16 00:21:18 +0000669 CurrentFnSym->print(O, MAI);
670 O << ":\n";
671 O << "\t.quad .L.";
672 CurrentFnSym->print(O, MAI);
673 O << ",.TOC.@tocbase\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000674 O << "\t.previous\n";
Chris Lattner12164412010-01-16 00:21:18 +0000675 O << ".L.";
676 CurrentFnSym->print(O, MAI);
677 O << ":\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000678 } else {
Chris Lattner12164412010-01-16 00:21:18 +0000679 CurrentFnSym->print(O, MAI);
680 O << ":\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000681 }
Jim Laskeybf111822006-12-21 20:26:09 +0000682
683 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000684 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000685
686 // Print out code for the function.
687 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
688 I != E; ++I) {
689 // Print a label for the basic block.
690 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000691 EmitBasicBlockStart(I);
Jim Laskeybf111822006-12-21 20:26:09 +0000692 }
693 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
694 II != E; ++II) {
695 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000696 printMachineInstruction(II);
697 }
698 }
699
Chris Lattner12164412010-01-16 00:21:18 +0000700 O << "\t.size\t";
701 CurrentFnSym->print(O, MAI);
702 O << ",.-";
703 CurrentFnSym->print(O, MAI);
704 O << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000705
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000706 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesenf94a3272008-12-03 19:33:10 +0000707
Jim Laskeybf111822006-12-21 20:26:09 +0000708 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000709 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000710
Bill Wendlingb1ec31d2009-11-09 21:20:14 +0000711 // Print out jump tables referenced by the function.
712 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
713
Jim Laskeybf111822006-12-21 20:26:09 +0000714 // We didn't modify anything.
715 return false;
716}
717
Chris Lattner40bbebd2009-07-21 18:38:57 +0000718void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000719 const TargetData *TD = TM.getTargetData();
720
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000721 if (!GVar->hasInitializer())
722 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000723
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000724 // Check to see if this is a special global used by LLVM, if so, emit it.
725 if (EmitSpecialLLVMGlobal(GVar))
726 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000727
Chris Lattner9c093632010-01-16 01:12:01 +0000728 MCSymbol *GVarSym = GetGlobalValueSymbol(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000729
Chris Lattner9c093632010-01-16 01:12:01 +0000730 printVisibility(GVarSym, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000731
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000732 Constant *C = GVar->getInitializer();
733 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000734 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000735 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000736
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000737 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
738 TM));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000739
740 if (C->isNullValue() && /* FIXME: Verify correct */
741 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000742 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000743 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000744 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000745
746 if (GVar->hasExternalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +0000747 O << "\t.global ";
748 GVarSym->print(O, MAI);
749 O << '\n';
750 O << "\t.type ";
751 GVarSym->print(O, MAI);
752 O << ", @object\n";
753 GVarSym->print(O, MAI);
754 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000755 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000756 } else if (GVar->hasLocalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +0000757 O << MAI->getLCOMMDirective();
758 GVarSym->print(O, MAI);
759 O << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000760 } else {
Chris Lattner9c093632010-01-16 01:12:01 +0000761 O << ".comm ";
762 GVarSym->print(O, MAI);
763 O << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000764 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000765 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000766 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000767 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000768 O << "'";
769 }
770 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000771 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000772 }
773
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000774 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000775 case GlobalValue::LinkOnceAnyLinkage:
776 case GlobalValue::LinkOnceODRLinkage:
777 case GlobalValue::WeakAnyLinkage:
778 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000779 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000780 case GlobalValue::LinkerPrivateLinkage:
Chris Lattner9c093632010-01-16 01:12:01 +0000781 O << "\t.global ";
782 GVarSym->print(O, MAI);
783 O << "\n\t.type ";
784 GVarSym->print(O, MAI);
785 O << ", @object\n\t.weak ";
786 GVarSym->print(O, MAI);
787 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000788 break;
789 case GlobalValue::AppendingLinkage:
790 // FIXME: appending linkage variables should go into a section of
791 // their name or something. For now, just emit them as external.
792 case GlobalValue::ExternalLinkage:
793 // If external or appending, declare as a global symbol
Chris Lattner9c093632010-01-16 01:12:01 +0000794 O << "\t.global ";
795 GVarSym->print(O, MAI);
796 O << "\n\t.type ";
797 GVarSym->print(O, MAI);
798 O << ", @object\n";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000799 // FALL THROUGH
800 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000801 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000802 break;
803 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000804 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000805 }
806
807 EmitAlignment(Align, GVar);
Chris Lattner9c093632010-01-16 01:12:01 +0000808 GVarSym->print(O, MAI);
809 O << ":";
Evan Chengf1c0ae92009-03-24 00:17:40 +0000810 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000811 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000812 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000813 O << "'";
814 }
815 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000816
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000817 EmitGlobalConstant(C);
818 O << '\n';
819}
820
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000821bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
822 const TargetData *TD = TM.getTargetData();
823
824 bool isPPC64 = TD->getPointerSizeInBits() == 64;
825
826 if (isPPC64 && !TOC.empty()) {
827 // FIXME 64-bit SVR4: Use MCSection here?
828 O << "\t.section\t\".toc\",\"aw\"\n";
829
830 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
831 I != E; ++I) {
832 O << I->second << ":\n";
833 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
834 }
835 }
836
837 return AsmPrinter::doFinalization(M);
838}
Jim Laskeybf111822006-12-21 20:26:09 +0000839
Nate Begemaned428532004-09-04 05:00:00 +0000840/// runOnMachineFunction - This uses the printMachineInstruction()
841/// method to print assembly for each instruction.
842///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000843bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000844 this->MF = &MF;
845
Chris Lattner8b8b9512005-11-21 07:51:23 +0000846 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000847 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000848
Nate Begemaned428532004-09-04 05:00:00 +0000849 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000850 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000851
852 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000853 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000854 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000855
Chris Lattnera637c322005-12-16 00:22:14 +0000856 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000857 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000858 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000859 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000860 break;
861 case Function::ExternalLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000862 O << "\t.globl\t";
863 CurrentFnSym->print(O, MAI);
864 O << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000865 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000866 case Function::WeakAnyLinkage:
867 case Function::WeakODRLinkage:
868 case Function::LinkOnceAnyLinkage:
869 case Function::LinkOnceODRLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000870 case Function::LinkerPrivateLinkage:
Chris Lattner12164412010-01-16 00:21:18 +0000871 O << "\t.globl\t";
872 CurrentFnSym->print(O, MAI);
873 O << '\n';
874 O << "\t.weak_definition\t";
875 CurrentFnSym->print(O, MAI);
876 O << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000877 break;
878 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000879
Chris Lattner12164412010-01-16 00:21:18 +0000880 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000881
Bill Wendling20c568f2009-06-30 22:38:32 +0000882 EmitAlignment(MF.getAlignment(), F);
Chris Lattner12164412010-01-16 00:21:18 +0000883 CurrentFnSym->print(O, MAI);
884 O << ":\n";
Nate Begemaned428532004-09-04 05:00:00 +0000885
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000886 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000887 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000888
Bill Wendling381802f2008-01-26 06:51:24 +0000889 // If the function is empty, then we need to emit *something*. Otherwise, the
890 // function's label might be associated with something that it wasn't meant to
891 // be associated with. We emit a noop in this situation.
892 MachineFunction::iterator I = MF.begin();
893
Bill Wendling824a7212008-01-26 09:03:52 +0000894 if (++I == MF.end() && MF.front().empty())
895 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000896
Nate Begemaned428532004-09-04 05:00:00 +0000897 // Print out code for the function.
898 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
899 I != E; ++I) {
900 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000901 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000902 EmitBasicBlockStart(I);
Chris Lattner1db1adb2005-08-21 19:09:33 +0000903 }
Bill Wendling381802f2008-01-26 06:51:24 +0000904 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
905 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000906 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000907 printMachineInstruction(II);
908 }
909 }
Nate Begemaned428532004-09-04 05:00:00 +0000910
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000911 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000912 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000913
Bill Wendling2718e432009-11-09 21:45:26 +0000914 // Print out jump tables referenced by the function.
915 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
916
Nate Begemaned428532004-09-04 05:00:00 +0000917 // We didn't modify anything.
918 return false;
919}
920
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000921
Bob Wilson812209a2009-09-30 22:06:26 +0000922void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000923 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000924 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000925 "ppc",
926 "ppc601",
927 "ppc602",
928 "ppc603",
929 "ppc7400",
930 "ppc750",
931 "ppc970",
932 "ppc64"
933 };
934
935 unsigned Directive = Subtarget.getDarwinDirective();
936 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
937 Directive = PPC::DIR_970;
938 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
939 Directive = PPC::DIR_7400;
940 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
941 Directive = PPC::DIR_64;
942 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000943 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000944
Jim Laskey2ada0852006-11-28 18:21:52 +0000945 // Prime text sections so they are adjacent. This reduces the likelihood a
946 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000947 TargetLoweringObjectFileMachO &TLOFMacho =
948 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000949 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000950 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000951 OutStreamer.SwitchSection(
952 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
953 MCSectionMachO::S_SYMBOL_STUBS |
954 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
955 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000956 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000957 OutStreamer.SwitchSection(
958 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
959 MCSectionMachO::S_SYMBOL_STUBS |
960 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
961 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000962 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000963 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000964}
965
Chris Lattner40bbebd2009-07-21 18:38:57 +0000966void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000967 const TargetData *TD = TM.getTargetData();
968
969 if (!GVar->hasInitializer())
970 return; // External global require no code
971
972 // Check to see if this is a special global used by LLVM, if so, emit it.
973 if (EmitSpecialLLVMGlobal(GVar)) {
974 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000975 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000976 O << ".reference .constructors_used\n";
Daniel Dunbar03d76512009-07-25 23:55:21 +0000977 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000978 O << ".reference .destructors_used\n";
979 }
980 return;
981 }
982
Chris Lattner9c093632010-01-16 01:12:01 +0000983 MCSymbol *GVarSym = GetGlobalValueSymbol(GVar);
984 printVisibility(GVarSym, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000985
986 Constant *C = GVar->getInitializer();
987 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000988 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000989 unsigned Align = TD->getPreferredAlignmentLog(GVar);
990
Chris Lattnera87dea42009-07-31 18:48:30 +0000991 const MCSection *TheSection =
Chris Lattnere53a6002009-07-29 05:09:30 +0000992 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000993 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000994
Chris Lattner3b24c012009-08-04 05:35:56 +0000995 /// FIXME: Drive this off the section!
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000996 if (C->isNullValue() && /* FIXME: Verify correct */
997 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000998 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000999 GVar->isWeakForLinker()) &&
Chris Lattnerc440cc72009-07-24 04:08:17 +00001000 // Don't put things that should go in the cstring section into "comm".
Chris Lattner5fe575f2009-07-27 05:32:16 +00001001 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001002 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
1003
1004 if (GVar->hasExternalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001005 O << "\t.globl ";
1006 GVarSym->print(O, MAI);
1007 O << '\n';
1008 O << "\t.zerofill __DATA, __common, ";
1009 GVarSym->print(O, MAI);
1010 O << ", " << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +00001011 } else if (GVar->hasLocalLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001012 O << MAI->getLCOMMDirective();
1013 GVarSym->print(O, MAI);
1014 O << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001015 } else if (!GVar->hasCommonLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001016 O << "\t.globl ";
1017 GVarSym->print(O, MAI);
1018 O << '\n' << MAI->getWeakDefDirective();
1019 GVarSym->print(O, MAI);
1020 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001021 EmitAlignment(Align, GVar);
Chris Lattner9c093632010-01-16 01:12:01 +00001022 GVarSym->print(O, MAI);
1023 O << ":";
Evan Chengf1c0ae92009-03-24 00:17:40 +00001024 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001025 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001026 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001027 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001028 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001029 EmitGlobalConstant(C);
1030 return;
1031 } else {
Chris Lattner9c093632010-01-16 01:12:01 +00001032 O << ".comm ";
1033 GVarSym->print(O, MAI);
1034 O << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001035 // Darwin 9 and above support aligned common data.
1036 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001037 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001038 }
Evan Chengf1c0ae92009-03-24 00:17:40 +00001039 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001040 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001041 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001042 O << "'";
1043 }
1044 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001045 return;
1046 }
1047
1048 switch (GVar->getLinkage()) {
Chris Lattner9c093632010-01-16 01:12:01 +00001049 case GlobalValue::LinkOnceAnyLinkage:
1050 case GlobalValue::LinkOnceODRLinkage:
1051 case GlobalValue::WeakAnyLinkage:
1052 case GlobalValue::WeakODRLinkage:
1053 case GlobalValue::CommonLinkage:
1054 case GlobalValue::LinkerPrivateLinkage:
1055 O << "\t.globl ";
1056 GVarSym->print(O, MAI);
1057 O << "\n\t.weak_definition ";
1058 GVarSym->print(O, MAI);
1059 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001060 break;
Chris Lattner9c093632010-01-16 01:12:01 +00001061 case GlobalValue::AppendingLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001062 // FIXME: appending linkage variables should go into a section of
1063 // their name or something. For now, just emit them as external.
Chris Lattner9c093632010-01-16 01:12:01 +00001064 case GlobalValue::ExternalLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001065 // If external or appending, declare as a global symbol
Chris Lattner9c093632010-01-16 01:12:01 +00001066 O << "\t.globl ";
1067 GVarSym->print(O, MAI);
1068 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001069 // FALL THROUGH
Chris Lattner9c093632010-01-16 01:12:01 +00001070 case GlobalValue::InternalLinkage:
1071 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001072 break;
Chris Lattner9c093632010-01-16 01:12:01 +00001073 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001074 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001075 }
1076
1077 EmitAlignment(Align, GVar);
Chris Lattner9c093632010-01-16 01:12:01 +00001078 GVarSym->print(O, MAI);
1079 O << ":";
Evan Chengf1c0ae92009-03-24 00:17:40 +00001080 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001081 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001082 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001083 O << "'";
1084 }
1085 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001086
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001087 EmitGlobalConstant(C);
1088 O << '\n';
1089}
1090
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001091bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +00001092 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001093
Chris Lattner7e097e42006-06-27 01:02:25 +00001094 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1095
Chris Lattner2dfddee2009-08-03 22:52:21 +00001096 // Darwin/PPC always uses mach-o.
1097 TargetLoweringObjectFileMachO &TLOFMacho =
1098 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1099
Chris Lattnerff4bc462009-08-10 01:39:42 +00001100
1101 const MCSection *LSPSection = 0;
1102 if (!FnStubs.empty()) // .lazy_symbol_pointer
1103 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1104
1105
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001106 // Output stubs for dynamically-linked functions
Chris Lattnerea56f102009-07-15 00:55:58 +00001107 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattner2dfddee2009-08-03 22:52:21 +00001108 const MCSection *StubSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +00001109 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1110 MCSectionMachO::S_SYMBOL_STUBS |
1111 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1112 32, SectionKind::getText());
Chris Lattner0b4bad52010-01-13 19:00:57 +00001113 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001114 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001115 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +00001116 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001117 const FnStubInfo &Info = I->second;
Chris Lattner656bb202010-01-13 19:13:16 +00001118 Info.Stub->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001119 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001120 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001121 O << "\tmflr r0\n";
Chris Lattner0b4bad52010-01-13 19:00:57 +00001122 O << "\tbcl 20,31,";
Chris Lattner656bb202010-01-13 19:13:16 +00001123 Info.AnonSymbol->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001124 O << '\n';
Chris Lattner656bb202010-01-13 19:13:16 +00001125 Info.AnonSymbol->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001126 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001127 O << "\tmflr r11\n";
Chris Lattner0b4bad52010-01-13 19:00:57 +00001128 O << "\taddis r11,r11,ha16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001129 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001130 O << '-';
Chris Lattner656bb202010-01-13 19:13:16 +00001131 Info.AnonSymbol->print(O, MAI);
Evan Chengae94e592008-12-05 01:06:39 +00001132 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001133 O << "\tmtlr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001134 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001135 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001136 O << '-';
Chris Lattner656bb202010-01-13 19:13:16 +00001137 Info.AnonSymbol->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001138 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001139 O << "\tmtctr r12\n";
1140 O << "\tbctr\n";
Chris Lattnerfe2fe702009-07-16 01:23:26 +00001141
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001142 OutStreamer.SwitchSection(LSPSection);
Chris Lattner656bb202010-01-13 19:13:16 +00001143 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001144 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001145 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001146 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001147 }
Chris Lattnerea56f102009-07-15 00:55:58 +00001148 } else if (!FnStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001149 const MCSection *StubSection =
1150 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1151 MCSectionMachO::S_SYMBOL_STUBS |
1152 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1153 16, SectionKind::getText());
Chris Lattner2dfddee2009-08-03 22:52:21 +00001154
Chris Lattner9ec8fac2009-07-15 02:28:57 +00001155 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001156 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001157 OutStreamer.SwitchSection(StubSection);
Chris Lattnerdeea4162005-12-13 04:33:58 +00001158 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001159 const FnStubInfo &Info = I->second;
Chris Lattner656bb202010-01-13 19:13:16 +00001160 Info.Stub->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001161 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001162 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner0b4bad52010-01-13 19:00:57 +00001163 O << "\tlis r11,ha16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001164 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001165 O << ")\n";
Chris Lattner1a87c052009-07-15 02:36:21 +00001166 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattner656bb202010-01-13 19:13:16 +00001167 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001168 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001169 O << "\tmtctr r12\n";
1170 O << "\tbctr\n";
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001171 OutStreamer.SwitchSection(LSPSection);
Chris Lattner656bb202010-01-13 19:13:16 +00001172 Info.LazyPtr->print(O, MAI);
Chris Lattner0b4bad52010-01-13 19:00:57 +00001173 O << ":\n";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001174 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001175 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001176 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001177 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001178
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001179 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001180
Chris Lattner33adcfb2009-08-22 21:43:10 +00001181 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001182 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001183 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +00001184 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001185 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +00001186 E = Personalities.end(); I != E; ++I) {
1187 if (*I)
1188 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner0f6c8f22009-07-15 01:16:38 +00001189 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +00001190 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001191 }
1192
Chris Lattner2dfddee2009-08-03 22:52:21 +00001193 // Output macho stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001194 if (!GVStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001195 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001196 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +00001197 EmitAlignment(isPPC64 ? 3 : 2);
1198
Chris Lattner8f831cb2009-07-15 01:14:44 +00001199 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1200 E = GVStubs.end(); I != E; ++I) {
1201 O << I->second << ":\n";
1202 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1203 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001204 }
Nate Begemane59bf592004-08-14 22:09:10 +00001205 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001206
Evan Chengae94e592008-12-05 01:06:39 +00001207 if (!HiddenGVStubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001208 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +00001209 EmitAlignment(isPPC64 ? 3 : 2);
1210 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1211 E = HiddenGVStubs.end(); I != E; ++I) {
1212 O << I->second << ":\n";
1213 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chengae94e592008-12-05 01:06:39 +00001214 }
1215 }
1216
Chris Lattner5b0ac992005-11-01 00:12:36 +00001217 // Funny Darwin hack: This flag tells the linker that no global symbols
1218 // contain code that falls through to other global symbols (e.g. the obvious
1219 // implementation of multiple entry points). If this doesn't occur, the
1220 // linker can safely perform dead code stripping. Since LLVM never generates
1221 // code that does this, it is always safe to set.
Chris Lattner74cd3b72009-10-19 18:03:08 +00001222 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +00001223
Dan Gohmanb8275a32007-07-25 19:33:14 +00001224 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001225}
Nate Begemaned428532004-09-04 05:00:00 +00001226
Chris Lattner4da1c822006-09-20 17:12:19 +00001227
1228
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001229/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1230/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001231/// Darwin assembler can deal with.
1232///
Daniel Dunbar78945782009-08-13 23:48:47 +00001233static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1234 TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +00001235 const MCAsmInfo *tai,
Daniel Dunbar78945782009-08-13 23:48:47 +00001236 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001237 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1238
Chris Lattner40bbebd2009-07-21 18:38:57 +00001239 if (Subtarget->isDarwin())
Daniel Dunbar67d894e2009-08-13 19:38:51 +00001240 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1241 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Chris Lattner4da1c822006-09-20 17:12:19 +00001242}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001243
Bob Wilsona96751f2009-06-23 23:59:40 +00001244// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001245extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001246 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001247 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1248}