blob: e6fb24722ccfc4058aaec0c06be7f98bee716a36 [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"
Misha Brukman05794492004-06-24 17:31:42 +000030#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000031#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling381802f2008-01-26 06:51:24 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnerd3ec0b52010-01-20 21:16:14 +000033#include "llvm/CodeGen/MachineModuleInfoImpls.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 Lattner45111d12010-01-16 21:57:06 +000039#include "llvm/Target/Mangler.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000040#include "llvm/Target/TargetLoweringObjectFile.h"
41#include "llvm/Target/TargetRegisterInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetOptions.h"
44#include "llvm/Target/TargetRegistry.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 Lattnerd3ec0b52010-01-20 21:16:14 +000061 DenseMap<const MCSymbol*, const MCSymbol*> TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000062 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000063 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000064 public:
David Greene71847812009-07-14 20:18:05 +000065 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +000066 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000067 : AsmPrinter(O, TM, T, V),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000068 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000069
Misha Brukman5dfe3a92004-06-21 16:55:25 +000070 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000071 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000072 }
73
Nate Begeman21e463b2005-10-16 05:39:50 +000074 PPCTargetMachine &getTM() {
75 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000076 }
77
Nate Begemanadeb43d2005-07-20 22:42:00 +000078 unsigned enumRegToMachineReg(unsigned enumReg) {
79 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +000080 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +000081 case PPC::CR0: return 0;
82 case PPC::CR1: return 1;
83 case PPC::CR2: return 2;
84 case PPC::CR3: return 3;
85 case PPC::CR4: return 4;
86 case PPC::CR5: return 5;
87 case PPC::CR6: return 6;
88 case PPC::CR7: return 7;
89 }
Torok Edwinc23197a2009-07-14 16:55:14 +000090 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +000091 }
92
Nate Begemane59bf592004-08-14 22:09:10 +000093 /// printInstruction - This method is automatically generated by tablegen
94 /// from the instruction set description. This method returns true if the
95 /// machine instruction was sufficiently described to print it, otherwise it
96 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +000097 void printInstruction(const MachineInstr *MI);
Chris Lattnerd95148f2009-09-13 20:19:22 +000098 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +000099
Nate Begemane59bf592004-08-14 22:09:10 +0000100
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000101 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +0000102 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000103
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000104 /// stripRegisterPrefix - This method strips the character prefix from a
105 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000106 const char *stripRegisterPrefix(const char *RegName) {
107 switch (RegName[0]) {
108 case 'r':
109 case 'f':
110 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000111 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000112 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000113
Jim Laskey40ee69f2006-12-20 21:33:34 +0000114 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000115 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000116
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000117 /// printRegister - Print register according to target requirements.
118 ///
119 void printRegister(const MachineOperand &MO, bool R0AsZero) {
120 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000121 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000122
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000123 // If we should use 0 for R0.
124 if (R0AsZero && RegNo == PPC::R0) {
125 O << "0";
126 return;
127 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000128
Chris Lattner762ccea2009-09-13 20:31:40 +0000129 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000130 // Linux assembler (Others?) does not take register mnemonics.
131 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000132 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
133 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000134 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000135
Chris Lattner58873272006-02-01 22:38:46 +0000136 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000137 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000138 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000139 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000140 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000141 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000142 } else {
143 printOp(MO);
144 }
145 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000146
Chris Lattner58873272006-02-01 22:38:46 +0000147 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000148 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000149 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
150 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000151
152
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000153 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000154 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000155 value = (value << (32-5)) >> (32-5);
156 O << (int)value;
157 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000158 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000159 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000160 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000161 O << (unsigned int)value;
162 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000163 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000164 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000165 assert(value <= 63 && "Invalid u6imm argument!");
166 O << (unsigned int)value;
167 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000168 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000169 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000170 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000171 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000172 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000173 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000174 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000175 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000176 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000177 } else {
178 O << "lo16(";
179 printOp(MI->getOperand(OpNo));
180 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000181 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000182 else
183 O << ')';
184 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000185 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000186 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000187 // Branches can take an immediate operand. This is used by the branch
188 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000189 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000190 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000191 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000192 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000193 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000194 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000195 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000196 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000197 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000198 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
199 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000200 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000201 // Dynamically-resolved functions need a stub for the function.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000202 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
203 const MCSymbol *&StubSym =
204 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
205 if (StubSym == 0)
206 StubSym = GetGlobalValueSymbol(GV);
207 O << *Sym;
Chris Lattnera637c322005-12-16 00:22:14 +0000208 return;
209 }
210 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000211 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000212 SmallString<128> TempNameStr;
213 TempNameStr += StringRef(MO.getSymbolName());
214 TempNameStr += StringRef("$stub");
215
216 const MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
217 const MCSymbol *&StubSym =
218 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Chris Lattner717ce2b2010-01-21 20:43:39 +0000219 if (StubSym == 0)
Chris Lattner26141722010-01-21 19:58:19 +0000220 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000221 O << *Sym;
Chris Lattner9542f9712005-11-17 19:40:30 +0000222 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000223 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000224 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000225
Chris Lattner9542f9712005-11-17 19:40:30 +0000226 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000227 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000228 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000229 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000230 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000231 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000232 O << "\"L" << getFunctionNumber() << "$pb\"\n";
233 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000234 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000235 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000236 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000237 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000238 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000239 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000240 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000241 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000242 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000243 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000244 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000245 else
246 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000247 }
Nate Begemaned428532004-09-04 05:00:00 +0000248 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000249 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000250 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000251 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000252 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000253 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000254 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000255 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000256 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000257 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000258 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000259 else
260 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000261 }
262 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000263 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000264 unsigned CCReg = MI->getOperand(OpNo).getReg();
265 unsigned RegNo = enumRegToMachineReg(CCReg);
266 O << (0x80 >> RegNo);
267 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000268 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000269 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
270 printSymbolLo(MI, OpNo);
271 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000272 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000273 MI->getOperand(OpNo+1).getReg() == PPC::R0)
274 O << "0";
275 else
276 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000277 O << ')';
278 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000279 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000280 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000281 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000282 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000283 printSymbolLo(MI, OpNo);
284 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000285 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000286 MI->getOperand(OpNo+1).getReg() == PPC::R0)
287 O << "0";
288 else
289 printOperand(MI, OpNo+1);
290 O << ')';
291 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000292
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000293 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000294 // When used as the base register, r0 reads constant zero rather than
295 // the value contained in the register. For this reason, the darwin
296 // assembler requires that we print r0 as 0 (no r) when used as the base.
297 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000298 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000299 O << ", ";
300 printOperand(MI, OpNo+1);
301 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000302
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000303 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
304 const MachineOperand &MO = MI->getOperand(OpNo);
305
306 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
307
Chris Lattner75abc682010-01-16 02:09:06 +0000308 const MCSymbol *Sym = GetGlobalValueSymbol(MO.getGlobal());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000309
310 // Map symbol -> label of TOC entry.
Chris Lattner75abc682010-01-16 02:09:06 +0000311 const MCSymbol *&TOCEntry = TOC[Sym];
312 if (TOCEntry == 0)
313 TOCEntry = OutContext.
Chris Lattnera40128c2010-01-16 02:00:23 +0000314 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) + "C" +
315 Twine(LabelID++));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000316
Chris Lattner10b318b2010-01-17 21:43:43 +0000317 O << *TOCEntry << "@toc";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000318 }
319
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000320 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000321 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000322
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000323 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000324 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000325
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000326 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000327 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000328 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000329 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000330 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000331 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000332
333 virtual const char *getPassName() const {
334 return "Linux PPC Assembly Printer";
335 }
336
337 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000338 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000339
Jim Laskeybf111822006-12-21 20:26:09 +0000340 void getAnalysisUsage(AnalysisUsage &AU) const {
341 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000342 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000343 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000344 PPCAsmPrinter::getAnalysisUsage(AU);
345 }
Jim Laskeybf111822006-12-21 20:26:09 +0000346 };
347
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000348 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
349 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000350 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000351 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000352 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000353 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000354 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000355 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000356
357 virtual const char *getPassName() const {
358 return "Darwin PPC Assembly Printer";
359 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000360
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000361 bool runOnMachineFunction(MachineFunction &F);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000362 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000363 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000364
Chris Lattner73a1aa02010-01-20 21:36:48 +0000365 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Chris Lattner917d6282010-01-20 21:19:44 +0000366
Jim Laskeyb2efb852006-01-04 22:28:25 +0000367 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000368 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000369 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000370 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000371 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000372 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000373 };
374} // end of anonymous namespace
375
Nate Begemane59bf592004-08-14 22:09:10 +0000376// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000377#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000378
Chris Lattner9ba13e42005-11-17 19:25:59 +0000379void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000380 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000381 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000382 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000383
Nate Begeman37efe672006-04-22 18:53:45 +0000384 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner10b318b2010-01-17 21:43:43 +0000385 O << *GetMBBSymbol(MO.getMBB()->getNumber());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000386 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000387 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000388 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000389 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000390 // FIXME: PIC relocation model
391 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000392 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000393 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000394 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000395 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000396 case MachineOperand::MO_BlockAddress:
Chris Lattner10b318b2010-01-17 21:43:43 +0000397 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000398 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000399 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000400 // Computing the address of an external symbol, not calling it.
Chris Lattner75abc682010-01-16 02:09:06 +0000401 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000402 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner75abc682010-01-16 02:09:06 +0000403 return;
Chris Lattnera637c322005-12-16 00:22:14 +0000404 }
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000405
Chris Lattner75abc682010-01-16 02:09:06 +0000406 const MCSymbol *NLPSym =
407 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
408 MO.getSymbolName()+"$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000409 const MCSymbol *&StubSym =
410 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
411 if (StubSym == 0)
412 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
413
Chris Lattner10b318b2010-01-17 21:43:43 +0000414 O << *NLPSym;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000415 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000416 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000417 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000418 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000419 GlobalValue *GV = MO.getGlobal();
Chris Lattnera40128c2010-01-16 02:00:23 +0000420 MCSymbol *SymToPrint;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000421
Nate Begemanfcf4a422004-10-17 23:01:34 +0000422 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000423 if (TM.getRelocationModel() != Reloc::Static &&
424 (GV->isDeclaration() || GV->isWeakForLinker())) {
425 if (!GV->hasHiddenVisibility()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000426 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000427 const MCSymbol *&StubSym =
428 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(SymToPrint);
429 if (StubSym == 0)
430 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner8f831cb2009-07-15 01:14:44 +0000431 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
432 GV->hasAvailableExternallyLinkage()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000433 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000434
435 const MCSymbol *&StubSym =
436 MMI->getObjFileInfo<MachineModuleInfoMachO>().
437 getHiddenGVStubEntry(SymToPrint);
438 if (StubSym == 0)
439 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner8f831cb2009-07-15 01:14:44 +0000440 } else {
Chris Lattnera40128c2010-01-16 02:00:23 +0000441 SymToPrint = GetGlobalValueSymbol(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000442 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000443 } else {
Chris Lattnera40128c2010-01-16 02:00:23 +0000444 SymToPrint = GetGlobalValueSymbol(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000445 }
Chris Lattnera40128c2010-01-16 02:00:23 +0000446
Chris Lattner10b318b2010-01-17 21:43:43 +0000447 O << *SymToPrint;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000448
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000449 printOffset(MO.getOffset());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000450 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000451 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000452
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000453 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000454 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000455 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000456 }
457}
458
Chris Lattnere3f01572006-02-23 19:31:10 +0000459/// PrintAsmOperand - Print out an operand for an inline asm expression.
460///
461bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000462 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000463 const char *ExtraCode) {
464 // Does this asm operand have a single letter operand modifier?
465 if (ExtraCode && ExtraCode[0]) {
466 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000467
Chris Lattnere3f01572006-02-23 19:31:10 +0000468 switch (ExtraCode[0]) {
469 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000470 case 'c': // Don't print "$" before a global var name or constant.
471 // PPC never has a prefix.
472 printOperand(MI, OpNo);
473 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000474 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000475 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000476 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000477 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000478 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000479 return true;
480 ++OpNo; // Return the high-part.
481 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000482 case 'I':
483 // Write 'i' if an integer constant, otherwise nothing. Used to print
484 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000485 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000486 O << "i";
487 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000488 }
489 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000490
Chris Lattnere3f01572006-02-23 19:31:10 +0000491 printOperand(MI, OpNo);
492 return false;
493}
494
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000495// At the moment, all inline asm memory operands are a single register.
496// In any case, the output of this routine should always be just one
497// assembler operand.
498
Chris Lattner2c003e22006-02-24 20:27:40 +0000499bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000500 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000501 const char *ExtraCode) {
502 if (ExtraCode && ExtraCode[0])
503 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000504 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000505 O << "0(";
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000506 printOperand(MI, OpNo);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000507 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000508 return false;
509}
Chris Lattnere3f01572006-02-23 19:31:10 +0000510
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000511void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000512 const char *Modifier) {
513 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
514 unsigned Code = MI->getOperand(OpNo).getImm();
515 if (!strcmp(Modifier, "cc")) {
516 switch ((PPC::Predicate)Code) {
517 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
518 case PPC::PRED_LT: O << "lt"; return;
519 case PPC::PRED_LE: O << "le"; return;
520 case PPC::PRED_EQ: O << "eq"; return;
521 case PPC::PRED_GE: O << "ge"; return;
522 case PPC::PRED_GT: O << "gt"; return;
523 case PPC::PRED_NE: O << "ne"; return;
524 case PPC::PRED_UN: O << "un"; return;
525 case PPC::PRED_NU: O << "nu"; return;
526 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000527
Chris Lattneraf53a872006-11-04 05:27:39 +0000528 } else {
529 assert(!strcmp(Modifier, "reg") &&
530 "Need to specify 'cc' or 'reg' as predicate op modifier!");
531 // Don't print the register for 'always'.
532 if (Code == PPC::PRED_ALWAYS) return;
533 printOperand(MI, OpNo+1);
534 }
535}
536
537
Nate Begemane59bf592004-08-14 22:09:10 +0000538/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
539/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000540///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000541void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000542 ++EmittedInsts;
Chris Lattner634cca32009-09-09 20:34:59 +0000543
Devang Patelaf0e2722009-10-06 02:19:11 +0000544 processDebugLoc(MI, true);
Chris Lattner617742b2005-10-14 22:44:13 +0000545
Nate Begemanad5f65c2005-04-05 18:19:50 +0000546 // Check for slwi/srwi mnemonics.
Dale Johannesene89c5102010-01-06 02:20:18 +0000547 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000548 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000549 unsigned char SH = MI->getOperand(2).getImm();
550 unsigned char MB = MI->getOperand(3).getImm();
551 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000552 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000553 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000554 }
555 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000556 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000557 SH = 32-SH;
558 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000559 if (useSubstituteMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000560 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000561 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000562 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000563 O << ", " << (unsigned int)SH;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000564 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000565 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000566 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000567 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000568 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000569 printOperand(MI, 0);
570 O << ", ";
571 printOperand(MI, 1);
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000572 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000573 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000574 unsigned char SH = MI->getOperand(2).getImm();
575 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000576 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
577 if (63-SH == ME) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000578 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000579 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000580 printOperand(MI, 0);
581 O << ", ";
582 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000583 O << ", " << (unsigned int)SH;
Chris Lattner566c1b12006-11-18 01:23:56 +0000584 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000585 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000586
Dale Johannesene89c5102010-01-06 02:20:18 +0000587 if (!useSubstituteMnemonic)
588 printInstruction(MI);
589
David Greene1924aab2009-11-13 21:34:57 +0000590 if (VerboseAsm)
Chris Lattnerc5ea2632009-09-09 23:14:36 +0000591 EmitComments(*MI);
592 O << '\n';
Devang Patelaf0e2722009-10-06 02:19:11 +0000593
594 processDebugLoc(MI, false);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000595}
596
Jim Laskeybf111822006-12-21 20:26:09 +0000597/// runOnMachineFunction - This uses the printMachineInstruction()
598/// method to print assembly for each instruction.
599///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000600bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Jim Laskeybf111822006-12-21 20:26:09 +0000601 SetupMachineFunction(MF);
602 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000603
Jim Laskeybf111822006-12-21 20:26:09 +0000604 // Print out constants referenced by the function
605 EmitConstantPool(MF.getConstantPool());
606
607 // Print out labels for the function.
608 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000609 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000610
Jim Laskeybf111822006-12-21 20:26:09 +0000611 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000612 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000613 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000614 case Function::InternalLinkage: // Symbols default to internal.
615 break;
616 case Function::ExternalLinkage:
Chris Lattner10b318b2010-01-17 21:43:43 +0000617 O << "\t.global\t" << *CurrentFnSym << '\n' << "\t.type\t";
618 O << *CurrentFnSym << ", @function\n";
Jim Laskeybf111822006-12-21 20:26:09 +0000619 break;
Dale Johannesena60e51f2009-08-24 01:03:42 +0000620 case Function::LinkerPrivateLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +0000621 case Function::WeakAnyLinkage:
622 case Function::WeakODRLinkage:
623 case Function::LinkOnceAnyLinkage:
624 case Function::LinkOnceODRLinkage:
Chris Lattner10b318b2010-01-17 21:43:43 +0000625 O << "\t.global\t" << *CurrentFnSym << '\n';
626 O << "\t.weak\t" << *CurrentFnSym << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000627 break;
628 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000629
Chris Lattner12164412010-01-16 00:21:18 +0000630 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000631
Bill Wendling20c568f2009-06-30 22:38:32 +0000632 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000633
634 if (Subtarget.isPPC64()) {
635 // Emit an official procedure descriptor.
Chris Lattner12164412010-01-16 00:21:18 +0000636 // FIXME 64-bit SVR4: Use MCSection here!
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000637 O << "\t.section\t\".opd\",\"aw\"\n";
638 O << "\t.align 3\n";
Chris Lattner10b318b2010-01-17 21:43:43 +0000639 O << *CurrentFnSym << ":\n";
640 O << "\t.quad .L." << *CurrentFnSym << ",.TOC.@tocbase\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000641 O << "\t.previous\n";
Chris Lattner10b318b2010-01-17 21:43:43 +0000642 O << ".L." << *CurrentFnSym << ":\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000643 } else {
Chris Lattner10b318b2010-01-17 21:43:43 +0000644 O << *CurrentFnSym << ":\n";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000645 }
Jim Laskeybf111822006-12-21 20:26:09 +0000646
647 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000648 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000649
650 // Print out code for the function.
651 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
652 I != E; ++I) {
653 // Print a label for the basic block.
654 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000655 EmitBasicBlockStart(I);
Jim Laskeybf111822006-12-21 20:26:09 +0000656 }
657 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
658 II != E; ++II) {
659 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000660 printMachineInstruction(II);
661 }
662 }
663
Chris Lattner10b318b2010-01-17 21:43:43 +0000664 O << "\t.size\t" << *CurrentFnSym << ",.-" << *CurrentFnSym << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000665
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000666 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesenf94a3272008-12-03 19:33:10 +0000667
Jim Laskeybf111822006-12-21 20:26:09 +0000668 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000669 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000670
Bill Wendlingb1ec31d2009-11-09 21:20:14 +0000671 // Print out jump tables referenced by the function.
Chris Lattner44e87252010-01-25 22:41:33 +0000672 EmitJumpTableInfo(MF);
Bill Wendlingb1ec31d2009-11-09 21:20:14 +0000673
Jim Laskeybf111822006-12-21 20:26:09 +0000674 // We didn't modify anything.
675 return false;
676}
677
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000678bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
679 const TargetData *TD = TM.getTargetData();
680
681 bool isPPC64 = TD->getPointerSizeInBits() == 64;
682
683 if (isPPC64 && !TOC.empty()) {
684 // FIXME 64-bit SVR4: Use MCSection here?
685 O << "\t.section\t\".toc\",\"aw\"\n";
686
Chris Lattnera40128c2010-01-16 02:00:23 +0000687 // FIXME: This is nondeterminstic!
Chris Lattner75abc682010-01-16 02:09:06 +0000688 for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
689 E = TOC.end(); I != E; ++I) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000690 O << *I->second << ":\n";
691 O << "\t.tc " << *I->first << "[TC]," << *I->first << '\n';
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000692 }
693 }
694
695 return AsmPrinter::doFinalization(M);
696}
Jim Laskeybf111822006-12-21 20:26:09 +0000697
Nate Begemaned428532004-09-04 05:00:00 +0000698/// runOnMachineFunction - This uses the printMachineInstruction()
699/// method to print assembly for each instruction.
700///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000701bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner8b8b9512005-11-21 07:51:23 +0000702 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000703 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000704
Nate Begemaned428532004-09-04 05:00:00 +0000705 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000706 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000707
708 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000709 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000710 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000711
Chris Lattnera637c322005-12-16 00:22:14 +0000712 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000713 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000714 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000715 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000716 break;
717 case Function::ExternalLinkage:
Chris Lattner10b318b2010-01-17 21:43:43 +0000718 O << "\t.globl\t" << *CurrentFnSym << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000719 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000720 case Function::WeakAnyLinkage:
721 case Function::WeakODRLinkage:
722 case Function::LinkOnceAnyLinkage:
723 case Function::LinkOnceODRLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000724 case Function::LinkerPrivateLinkage:
Chris Lattner10b318b2010-01-17 21:43:43 +0000725 O << "\t.globl\t" << *CurrentFnSym << '\n';
726 O << "\t.weak_definition\t" << *CurrentFnSym << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000727 break;
728 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000729
Chris Lattner12164412010-01-16 00:21:18 +0000730 printVisibility(CurrentFnSym, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000731
Bill Wendling20c568f2009-06-30 22:38:32 +0000732 EmitAlignment(MF.getAlignment(), F);
Chris Lattner10b318b2010-01-17 21:43:43 +0000733 O << *CurrentFnSym << ":\n";
Nate Begemaned428532004-09-04 05:00:00 +0000734
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000735 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000736 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000737
Bill Wendling381802f2008-01-26 06:51:24 +0000738 // If the function is empty, then we need to emit *something*. Otherwise, the
739 // function's label might be associated with something that it wasn't meant to
740 // be associated with. We emit a noop in this situation.
741 MachineFunction::iterator I = MF.begin();
742
Bill Wendling824a7212008-01-26 09:03:52 +0000743 if (++I == MF.end() && MF.front().empty())
744 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000745
Nate Begemaned428532004-09-04 05:00:00 +0000746 // Print out code for the function.
747 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
748 I != E; ++I) {
749 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000750 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000751 EmitBasicBlockStart(I);
Chris Lattner1db1adb2005-08-21 19:09:33 +0000752 }
Bill Wendling381802f2008-01-26 06:51:24 +0000753 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
754 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000755 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000756 printMachineInstruction(II);
757 }
758 }
Nate Begemaned428532004-09-04 05:00:00 +0000759
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000760 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000761 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000762
Bill Wendling2718e432009-11-09 21:45:26 +0000763 // Print out jump tables referenced by the function.
Chris Lattner44e87252010-01-25 22:41:33 +0000764 EmitJumpTableInfo(MF);
Bill Wendling2718e432009-11-09 21:45:26 +0000765
Nate Begemaned428532004-09-04 05:00:00 +0000766 // We didn't modify anything.
767 return false;
768}
769
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000770
Bob Wilson812209a2009-09-30 22:06:26 +0000771void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000772 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000773 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000774 "ppc",
775 "ppc601",
776 "ppc602",
777 "ppc603",
778 "ppc7400",
779 "ppc750",
780 "ppc970",
781 "ppc64"
782 };
783
784 unsigned Directive = Subtarget.getDarwinDirective();
785 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
786 Directive = PPC::DIR_970;
787 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
788 Directive = PPC::DIR_7400;
789 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
790 Directive = PPC::DIR_64;
791 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000792 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000793
Jim Laskey2ada0852006-11-28 18:21:52 +0000794 // Prime text sections so they are adjacent. This reduces the likelihood a
795 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000796 TargetLoweringObjectFileMachO &TLOFMacho =
797 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000798 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000799 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000800 OutStreamer.SwitchSection(
801 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
802 MCSectionMachO::S_SYMBOL_STUBS |
803 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
804 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000805 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000806 OutStreamer.SwitchSection(
807 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
808 MCSectionMachO::S_SYMBOL_STUBS |
809 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
810 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000811 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000812 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000813}
814
Chris Lattner73a1aa02010-01-20 21:36:48 +0000815static const MCSymbol *GetLazyPtr(const MCSymbol *Sym, MCContext &Ctx) {
816 // Remove $stub suffix, add $lazy_ptr.
817 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
818 TmpStr += "$lazy_ptr";
819 return Ctx.GetOrCreateSymbol(TmpStr.str());
820}
821
822static const MCSymbol *GetAnonSym(const MCSymbol *Sym, MCContext &Ctx) {
823 // Add $tmp suffix to $stub, yielding $stub$tmp.
824 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
825 TmpStr += "$tmp";
826 return Ctx.GetOrCreateSymbol(TmpStr.str());
827}
828
829void PPCDarwinAsmPrinter::
830EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner917d6282010-01-20 21:19:44 +0000831 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
832
Chris Lattner2dfddee2009-08-03 22:52:21 +0000833 TargetLoweringObjectFileMachO &TLOFMacho =
834 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner917d6282010-01-20 21:19:44 +0000835
836 // .lazy_symbol_pointer
837 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattnerff4bc462009-08-10 01:39:42 +0000838
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000839 // Output stubs for dynamically-linked functions
Chris Lattner917d6282010-01-20 21:19:44 +0000840 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner2dfddee2009-08-03 22:52:21 +0000841 const MCSection *StubSection =
Chris Lattner917d6282010-01-20 21:19:44 +0000842 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
843 MCSectionMachO::S_SYMBOL_STUBS |
844 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
845 32, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000846 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000847 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +0000848 EmitAlignment(4);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000849
850 const MCSymbol *Stub = Stubs[i].first;
851 const MCSymbol *RawSym = Stubs[i].second;
852 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
853 const MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
854
855 O << *Stub << ":\n";
856 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +0000857 O << "\tmflr r0\n";
Chris Lattner73a1aa02010-01-20 21:36:48 +0000858 O << "\tbcl 20,31," << *AnonSymbol << '\n';
859 O << *AnonSymbol << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000860 O << "\tmflr r11\n";
Chris Lattner73a1aa02010-01-20 21:36:48 +0000861 O << "\taddis r11,r11,ha16(" << *LazyPtr << '-' << *AnonSymbol
Chris Lattner917d6282010-01-20 21:19:44 +0000862 << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000863 O << "\tmtlr r0\n";
Chris Lattner73a1aa02010-01-20 21:36:48 +0000864 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
865 << '-' << *AnonSymbol << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000866 O << "\tmtctr r12\n";
867 O << "\tbctr\n";
Chris Lattnerfe2fe702009-07-16 01:23:26 +0000868
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000869 OutStreamer.SwitchSection(LSPSection);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000870 O << *LazyPtr << ":\n";
871 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +0000872 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000873 }
Chris Lattner917d6282010-01-20 21:19:44 +0000874 O << '\n';
875 return;
Misha Brukman46fd00a2004-06-24 23:04:11 +0000876 }
Chris Lattner917d6282010-01-20 21:19:44 +0000877
878 const MCSection *StubSection =
879 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
880 MCSectionMachO::S_SYMBOL_STUBS |
881 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
882 16, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000883 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
884 const MCSymbol *Stub = Stubs[i].first;
885 const MCSymbol *RawSym = Stubs[i].second;
886 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
887
Chris Lattner917d6282010-01-20 21:19:44 +0000888 OutStreamer.SwitchSection(StubSection);
889 EmitAlignment(4);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000890 O << *Stub << ":\n";
891 O << "\t.indirect_symbol " << *RawSym << '\n';
892 O << "\tlis r11,ha16(" << *LazyPtr << ")\n";
893 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
Chris Lattner917d6282010-01-20 21:19:44 +0000894 << ")(r11)\n";
895 O << "\tmtctr r12\n";
896 O << "\tbctr\n";
897 OutStreamer.SwitchSection(LSPSection);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000898 O << *LazyPtr << ":\n";
899 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattner917d6282010-01-20 21:19:44 +0000900 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
901 }
902
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000903 O << '\n';
Chris Lattner917d6282010-01-20 21:19:44 +0000904}
905
906
907bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
908 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
909
910 // Darwin/PPC always uses mach-o.
911 TargetLoweringObjectFileMachO &TLOFMacho =
912 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
913 MachineModuleInfoMachO &MMIMacho =
914 MMI->getObjFileInfo<MachineModuleInfoMachO>();
915
Chris Lattner73a1aa02010-01-20 21:36:48 +0000916 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
917 if (!Stubs.empty())
918 EmitFunctionStubs(Stubs);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000919
Chris Lattner33adcfb2009-08-22 21:43:10 +0000920 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000921 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000922 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +0000923 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000924 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +0000925 E = Personalities.end(); I != E; ++I) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000926 if (*I) {
927 const MCSymbol *NLPSym =
Chris Lattner7a2ba942010-01-16 18:37:32 +0000928 GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000929 const MCSymbol *&StubSym = MMIMacho.getGVStubEntry(NLPSym);
930 StubSym = GetGlobalValueSymbol(*I);
931 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000932 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000933 }
934
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000935 // Output stubs for dynamically-linked functions.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000936 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000937
Chris Lattner2dfddee2009-08-03 22:52:21 +0000938 // Output macho stubs for external and common global variables.
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000939 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000940 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000941 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +0000942 EmitAlignment(isPPC64 ? 3 : 2);
943
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000944 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
945 O << *Stubs[i].first << ":\n";
946 O << "\t.indirect_symbol " << *Stubs[i].second << '\n';
Chris Lattner8f831cb2009-07-15 01:14:44 +0000947 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +0000948 }
Nate Begemane59bf592004-08-14 22:09:10 +0000949 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000950
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000951 Stubs = MMIMacho.GetHiddenGVStubList();
952 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000953 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000954 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000955
956 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
957 O << *Stubs[i].first << ":\n";
958 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << *Stubs[i].second << '\n';
Evan Chengae94e592008-12-05 01:06:39 +0000959 }
960 }
961
Chris Lattner5b0ac992005-11-01 00:12:36 +0000962 // Funny Darwin hack: This flag tells the linker that no global symbols
963 // contain code that falls through to other global symbols (e.g. the obvious
964 // implementation of multiple entry points). If this doesn't occur, the
965 // linker can safely perform dead code stripping. Since LLVM never generates
966 // code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000967 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +0000968
Dan Gohmanb8275a32007-07-25 19:33:14 +0000969 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000970}
Nate Begemaned428532004-09-04 05:00:00 +0000971
Chris Lattner4da1c822006-09-20 17:12:19 +0000972
973
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000974/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
975/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +0000976/// Darwin assembler can deal with.
977///
Daniel Dunbar78945782009-08-13 23:48:47 +0000978static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
979 TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +0000980 const MCAsmInfo *tai,
Daniel Dunbar78945782009-08-13 23:48:47 +0000981 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +0000982 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
983
Chris Lattner40bbebd2009-07-21 18:38:57 +0000984 if (Subtarget->isDarwin())
Daniel Dunbar67d894e2009-08-13 19:38:51 +0000985 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
986 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Chris Lattner4da1c822006-09-20 17:12:19 +0000987}
Anton Korobeynikov06be9972008-08-17 13:54:28 +0000988
Bob Wilsona96751f2009-06-23 23:59:40 +0000989// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000990extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000991 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000992 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
993}