blob: ea3549ff4afee191ccca3dba580145fb4be1b492 [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/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000051#include "llvm/ADT/StringSet.h"
Chris Lattner48130352010-01-13 06:38:18 +000052#include "llvm/ADT/SmallString.h"
Chris Lattnera3840792004-08-16 23:25:21 +000053using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000054
Chris Lattner95b2c7d2006-12-19 22:59:26 +000055namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000056 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +000057 protected:
Chris Lattnerd3ec0b52010-01-20 21:16:14 +000058 DenseMap<const MCSymbol*, const MCSymbol*> TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000059 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000060 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000061 public:
David Greene71847812009-07-14 20:18:05 +000062 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +000063 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000064 : AsmPrinter(O, TM, T, V),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000065 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000066
Misha Brukman5dfe3a92004-06-21 16:55:25 +000067 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000068 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000069 }
70
Nate Begeman21e463b2005-10-16 05:39:50 +000071 PPCTargetMachine &getTM() {
72 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000073 }
74
Nate Begemanadeb43d2005-07-20 22:42:00 +000075 unsigned enumRegToMachineReg(unsigned enumReg) {
76 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +000077 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +000078 case PPC::CR0: return 0;
79 case PPC::CR1: return 1;
80 case PPC::CR2: return 2;
81 case PPC::CR3: return 3;
82 case PPC::CR4: return 4;
83 case PPC::CR5: return 5;
84 case PPC::CR6: return 6;
85 case PPC::CR7: return 7;
86 }
Torok Edwinc23197a2009-07-14 16:55:14 +000087 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +000088 }
89
Nate Begemane59bf592004-08-14 22:09:10 +000090 /// printInstruction - This method is automatically generated by tablegen
91 /// from the instruction set description. This method returns true if the
92 /// machine instruction was sufficiently described to print it, otherwise it
93 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +000094 void printInstruction(const MachineInstr *MI);
Chris Lattnerd95148f2009-09-13 20:19:22 +000095 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +000096
Nate Begemane59bf592004-08-14 22:09:10 +000097
Chris Lattnerd49fe1b2010-01-28 01:28:58 +000098 virtual void EmitInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +000099 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000100
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000101 /// stripRegisterPrefix - This method strips the character prefix from a
102 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000103 const char *stripRegisterPrefix(const char *RegName) {
104 switch (RegName[0]) {
105 case 'r':
106 case 'f':
107 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000108 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000109 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000110
Jim Laskey40ee69f2006-12-20 21:33:34 +0000111 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000112 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000113
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000114 /// printRegister - Print register according to target requirements.
115 ///
116 void printRegister(const MachineOperand &MO, bool R0AsZero) {
117 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000118 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000119
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000120 // If we should use 0 for R0.
121 if (R0AsZero && RegNo == PPC::R0) {
122 O << "0";
123 return;
124 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000125
Chris Lattner762ccea2009-09-13 20:31:40 +0000126 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000127 // Linux assembler (Others?) does not take register mnemonics.
128 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000129 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
130 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000131 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000132
Chris Lattner58873272006-02-01 22:38:46 +0000133 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000134 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000135 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000136 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000137 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000138 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000139 } else {
140 printOp(MO);
141 }
142 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000143
Chris Lattner58873272006-02-01 22:38:46 +0000144 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000145 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000146 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
147 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000148
149
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000150 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000151 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000152 value = (value << (32-5)) >> (32-5);
153 O << (int)value;
154 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000155 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000156 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000157 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000158 O << (unsigned int)value;
159 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000160 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000161 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000162 assert(value <= 63 && "Invalid u6imm argument!");
163 O << (unsigned int)value;
164 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000165 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000166 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000167 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000168 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000169 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000170 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000171 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000172 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000173 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000174 } else {
175 O << "lo16(";
176 printOp(MI->getOperand(OpNo));
177 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000178 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000179 else
180 O << ')';
181 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000182 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000183 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000184 // Branches can take an immediate operand. This is used by the branch
185 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000186 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000187 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000188 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000189 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000190 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000191 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000192 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000193 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000194 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000195 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
196 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000197 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000198 // Dynamically-resolved functions need a stub for the function.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000199 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
200 const MCSymbol *&StubSym =
201 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
202 if (StubSym == 0)
203 StubSym = GetGlobalValueSymbol(GV);
204 O << *Sym;
Chris Lattnera637c322005-12-16 00:22:14 +0000205 return;
206 }
207 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000208 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000209 SmallString<128> TempNameStr;
210 TempNameStr += StringRef(MO.getSymbolName());
211 TempNameStr += StringRef("$stub");
212
213 const MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
214 const MCSymbol *&StubSym =
215 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Chris Lattner717ce2b2010-01-21 20:43:39 +0000216 if (StubSym == 0)
Chris Lattner26141722010-01-21 19:58:19 +0000217 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000218 O << *Sym;
Chris Lattner9542f9712005-11-17 19:40:30 +0000219 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000220 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000221 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000222
Chris Lattner9542f9712005-11-17 19:40:30 +0000223 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000224 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000225 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000226 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000227 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000228 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000229 O << "\"L" << getFunctionNumber() << "$pb\"\n";
230 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000231 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000232 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000233 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000234 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000235 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000236 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000237 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000238 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000239 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000240 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000241 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000242 else
243 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000244 }
Nate Begemaned428532004-09-04 05:00:00 +0000245 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000246 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000247 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000248 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000249 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000250 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000251 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000252 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000253 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000254 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000255 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000256 else
257 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000258 }
259 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000260 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000261 unsigned CCReg = MI->getOperand(OpNo).getReg();
262 unsigned RegNo = enumRegToMachineReg(CCReg);
263 O << (0x80 >> RegNo);
264 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000265 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000266 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
267 printSymbolLo(MI, OpNo);
268 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000269 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000270 MI->getOperand(OpNo+1).getReg() == PPC::R0)
271 O << "0";
272 else
273 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000274 O << ')';
275 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000276 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000277 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000278 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000279 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000280 printSymbolLo(MI, OpNo);
281 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000282 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000283 MI->getOperand(OpNo+1).getReg() == PPC::R0)
284 O << "0";
285 else
286 printOperand(MI, OpNo+1);
287 O << ')';
288 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000289
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000290 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000291 // When used as the base register, r0 reads constant zero rather than
292 // the value contained in the register. For this reason, the darwin
293 // assembler requires that we print r0 as 0 (no r) when used as the base.
294 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000295 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000296 O << ", ";
297 printOperand(MI, OpNo+1);
298 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000299
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000300 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
301 const MachineOperand &MO = MI->getOperand(OpNo);
302
303 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
304
Chris Lattner75abc682010-01-16 02:09:06 +0000305 const MCSymbol *Sym = GetGlobalValueSymbol(MO.getGlobal());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000306
307 // Map symbol -> label of TOC entry.
Chris Lattner75abc682010-01-16 02:09:06 +0000308 const MCSymbol *&TOCEntry = TOC[Sym];
309 if (TOCEntry == 0)
310 TOCEntry = OutContext.
Chris Lattnera40128c2010-01-16 02:00:23 +0000311 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) + "C" +
312 Twine(LabelID++));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000313
Chris Lattner10b318b2010-01-17 21:43:43 +0000314 O << *TOCEntry << "@toc";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000315 }
316
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000317 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000318 const char *Modifier);
Nate Begemaned428532004-09-04 05:00:00 +0000319 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000320
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000321 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000322 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000323 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000324 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000325 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000326 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000327
328 virtual const char *getPassName() const {
329 return "Linux PPC Assembly Printer";
330 }
331
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000332 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000333
Chris Lattner2cf72512010-01-27 07:21:55 +0000334 virtual void EmitFunctionEntryLabel();
335
Jim Laskeybf111822006-12-21 20:26:09 +0000336 void getAnalysisUsage(AnalysisUsage &AU) const {
337 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000338 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000339 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000340 PPCAsmPrinter::getAnalysisUsage(AU);
341 }
Jim Laskeybf111822006-12-21 20:26:09 +0000342 };
343
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000344 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
345 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000346 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000347 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000348 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000349 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000350 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000351 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000352
353 virtual const char *getPassName() const {
354 return "Darwin PPC Assembly Printer";
355 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000356
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000357 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000358 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000359
Chris Lattner73a1aa02010-01-20 21:36:48 +0000360 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Chris Lattner917d6282010-01-20 21:19:44 +0000361
Jim Laskeyb2efb852006-01-04 22:28:25 +0000362 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000363 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000364 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000365 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000366 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000367 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000368 };
369} // end of anonymous namespace
370
Nate Begemane59bf592004-08-14 22:09:10 +0000371// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000372#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000373
Chris Lattner9ba13e42005-11-17 19:25:59 +0000374void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000375 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000376 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000377 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000378
Nate Begeman37efe672006-04-22 18:53:45 +0000379 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerf71cb012010-01-26 04:55:51 +0000380 O << *MO.getMBB()->getSymbol(OutContext);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000381 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000382 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000383 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000384 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000385 // FIXME: PIC relocation model
386 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000387 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000388 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000389 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000390 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000391 case MachineOperand::MO_BlockAddress:
Chris Lattner10b318b2010-01-17 21:43:43 +0000392 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000393 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000394 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000395 // Computing the address of an external symbol, not calling it.
Chris Lattner75abc682010-01-16 02:09:06 +0000396 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000397 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner75abc682010-01-16 02:09:06 +0000398 return;
Chris Lattnera637c322005-12-16 00:22:14 +0000399 }
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000400
Chris Lattner75abc682010-01-16 02:09:06 +0000401 const MCSymbol *NLPSym =
402 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
403 MO.getSymbolName()+"$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000404 const MCSymbol *&StubSym =
405 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
406 if (StubSym == 0)
407 StubSym = GetExternalSymbolSymbol(MO.getSymbolName());
408
Chris Lattner10b318b2010-01-17 21:43:43 +0000409 O << *NLPSym;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000410 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000411 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000412 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000413 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000414 GlobalValue *GV = MO.getGlobal();
Chris Lattnera40128c2010-01-16 02:00:23 +0000415 MCSymbol *SymToPrint;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000416
Nate Begemanfcf4a422004-10-17 23:01:34 +0000417 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000418 if (TM.getRelocationModel() != Reloc::Static &&
419 (GV->isDeclaration() || GV->isWeakForLinker())) {
420 if (!GV->hasHiddenVisibility()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000421 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000422 const MCSymbol *&StubSym =
423 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(SymToPrint);
424 if (StubSym == 0)
425 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner8f831cb2009-07-15 01:14:44 +0000426 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
427 GV->hasAvailableExternallyLinkage()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000428 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000429
430 const MCSymbol *&StubSym =
431 MMI->getObjFileInfo<MachineModuleInfoMachO>().
432 getHiddenGVStubEntry(SymToPrint);
433 if (StubSym == 0)
434 StubSym = GetGlobalValueSymbol(GV);
Chris Lattner8f831cb2009-07-15 01:14:44 +0000435 } else {
Chris Lattnera40128c2010-01-16 02:00:23 +0000436 SymToPrint = GetGlobalValueSymbol(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000437 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000438 } else {
Chris Lattnera40128c2010-01-16 02:00:23 +0000439 SymToPrint = GetGlobalValueSymbol(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000440 }
Chris Lattnera40128c2010-01-16 02:00:23 +0000441
Chris Lattner10b318b2010-01-17 21:43:43 +0000442 O << *SymToPrint;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000443
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000444 printOffset(MO.getOffset());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000445 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000446 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000447
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000448 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000449 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000450 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000451 }
452}
453
Chris Lattnere3f01572006-02-23 19:31:10 +0000454/// PrintAsmOperand - Print out an operand for an inline asm expression.
455///
456bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000457 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000458 const char *ExtraCode) {
459 // Does this asm operand have a single letter operand modifier?
460 if (ExtraCode && ExtraCode[0]) {
461 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000462
Chris Lattnere3f01572006-02-23 19:31:10 +0000463 switch (ExtraCode[0]) {
464 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000465 case 'c': // Don't print "$" before a global var name or constant.
466 // PPC never has a prefix.
467 printOperand(MI, OpNo);
468 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000469 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000470 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000471 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000472 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000473 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000474 return true;
475 ++OpNo; // Return the high-part.
476 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000477 case 'I':
478 // Write 'i' if an integer constant, otherwise nothing. Used to print
479 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000480 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000481 O << "i";
482 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000483 }
484 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000485
Chris Lattnere3f01572006-02-23 19:31:10 +0000486 printOperand(MI, OpNo);
487 return false;
488}
489
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000490// At the moment, all inline asm memory operands are a single register.
491// In any case, the output of this routine should always be just one
492// assembler operand.
493
Chris Lattner2c003e22006-02-24 20:27:40 +0000494bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000495 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000496 const char *ExtraCode) {
497 if (ExtraCode && ExtraCode[0])
498 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000499 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000500 O << "0(";
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000501 printOperand(MI, OpNo);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000502 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000503 return false;
504}
Chris Lattnere3f01572006-02-23 19:31:10 +0000505
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000506void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000507 const char *Modifier) {
508 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
509 unsigned Code = MI->getOperand(OpNo).getImm();
510 if (!strcmp(Modifier, "cc")) {
511 switch ((PPC::Predicate)Code) {
512 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
513 case PPC::PRED_LT: O << "lt"; return;
514 case PPC::PRED_LE: O << "le"; return;
515 case PPC::PRED_EQ: O << "eq"; return;
516 case PPC::PRED_GE: O << "ge"; return;
517 case PPC::PRED_GT: O << "gt"; return;
518 case PPC::PRED_NE: O << "ne"; return;
519 case PPC::PRED_UN: O << "un"; return;
520 case PPC::PRED_NU: O << "nu"; return;
521 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000522
Chris Lattneraf53a872006-11-04 05:27:39 +0000523 } else {
524 assert(!strcmp(Modifier, "reg") &&
525 "Need to specify 'cc' or 'reg' as predicate op modifier!");
526 // Don't print the register for 'always'.
527 if (Code == PPC::PRED_ALWAYS) return;
528 printOperand(MI, OpNo+1);
529 }
530}
531
532
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000533/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
Nate Begemane59bf592004-08-14 22:09:10 +0000534/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000535///
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000536void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Nate Begemanad5f65c2005-04-05 18:19:50 +0000537 // Check for slwi/srwi mnemonics.
538 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000539 unsigned char SH = MI->getOperand(2).getImm();
540 unsigned char MB = MI->getOperand(3).getImm();
541 unsigned char ME = MI->getOperand(4).getImm();
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000542 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000543 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000544 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000545 }
546 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000547 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000548 SH = 32-SH;
549 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000550 if (useSubstituteMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000551 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000552 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000553 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000554 O << ", " << (unsigned int)SH;
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000555 return;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000556 }
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000557 }
558
559 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
560 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
561 O << "\tmr ";
562 printOperand(MI, 0);
563 O << ", ";
564 printOperand(MI, 1);
565 return;
566 }
567
568 if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000569 unsigned char SH = MI->getOperand(2).getImm();
570 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000571 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
572 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000573 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000574 printOperand(MI, 0);
575 O << ", ";
576 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000577 O << ", " << (unsigned int)SH;
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000578 return;
Chris Lattner566c1b12006-11-18 01:23:56 +0000579 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000580 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000581
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000582 printInstruction(MI);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000583}
584
Chris Lattner2cf72512010-01-27 07:21:55 +0000585void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
586 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
587 return AsmPrinter::EmitFunctionEntryLabel();
588
589 // Emit an official procedure descriptor.
590 // FIXME 64-bit SVR4: Use MCSection here!
591 O << "\t.section\t\".opd\",\"aw\"\n";
592 O << "\t.align 3\n";
593 OutStreamer.EmitLabel(CurrentFnSym);
594 O << "\t.quad .L." << *CurrentFnSym << ",.TOC.@tocbase\n";
595 O << "\t.previous\n";
596 O << ".L." << *CurrentFnSym << ":\n";
597}
598
599
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000600bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
601 const TargetData *TD = TM.getTargetData();
602
603 bool isPPC64 = TD->getPointerSizeInBits() == 64;
604
605 if (isPPC64 && !TOC.empty()) {
606 // FIXME 64-bit SVR4: Use MCSection here?
607 O << "\t.section\t\".toc\",\"aw\"\n";
608
Chris Lattnera40128c2010-01-16 02:00:23 +0000609 // FIXME: This is nondeterminstic!
Chris Lattner75abc682010-01-16 02:09:06 +0000610 for (DenseMap<const MCSymbol*, const MCSymbol*>::iterator I = TOC.begin(),
611 E = TOC.end(); I != E; ++I) {
Chris Lattner10b318b2010-01-17 21:43:43 +0000612 O << *I->second << ":\n";
613 O << "\t.tc " << *I->first << "[TC]," << *I->first << '\n';
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000614 }
615 }
616
617 return AsmPrinter::doFinalization(M);
618}
Jim Laskeybf111822006-12-21 20:26:09 +0000619
Bob Wilson812209a2009-09-30 22:06:26 +0000620void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000621 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000622 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000623 "ppc",
624 "ppc601",
625 "ppc602",
626 "ppc603",
627 "ppc7400",
628 "ppc750",
629 "ppc970",
630 "ppc64"
631 };
632
633 unsigned Directive = Subtarget.getDarwinDirective();
634 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
635 Directive = PPC::DIR_970;
636 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
637 Directive = PPC::DIR_7400;
638 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
639 Directive = PPC::DIR_64;
640 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000641 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000642
Jim Laskey2ada0852006-11-28 18:21:52 +0000643 // Prime text sections so they are adjacent. This reduces the likelihood a
644 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000645 TargetLoweringObjectFileMachO &TLOFMacho =
646 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000647 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000648 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000649 OutStreamer.SwitchSection(
650 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
651 MCSectionMachO::S_SYMBOL_STUBS |
652 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
653 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000654 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000655 OutStreamer.SwitchSection(
656 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
657 MCSectionMachO::S_SYMBOL_STUBS |
658 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
659 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000660 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000661 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000662}
663
Chris Lattner73a1aa02010-01-20 21:36:48 +0000664static const MCSymbol *GetLazyPtr(const MCSymbol *Sym, MCContext &Ctx) {
665 // Remove $stub suffix, add $lazy_ptr.
666 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
667 TmpStr += "$lazy_ptr";
668 return Ctx.GetOrCreateSymbol(TmpStr.str());
669}
670
671static const MCSymbol *GetAnonSym(const MCSymbol *Sym, MCContext &Ctx) {
672 // Add $tmp suffix to $stub, yielding $stub$tmp.
673 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
674 TmpStr += "$tmp";
675 return Ctx.GetOrCreateSymbol(TmpStr.str());
676}
677
678void PPCDarwinAsmPrinter::
679EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner917d6282010-01-20 21:19:44 +0000680 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
681
Chris Lattner2dfddee2009-08-03 22:52:21 +0000682 TargetLoweringObjectFileMachO &TLOFMacho =
683 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner917d6282010-01-20 21:19:44 +0000684
685 // .lazy_symbol_pointer
686 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattnerff4bc462009-08-10 01:39:42 +0000687
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000688 // Output stubs for dynamically-linked functions
Chris Lattner917d6282010-01-20 21:19:44 +0000689 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner2dfddee2009-08-03 22:52:21 +0000690 const MCSection *StubSection =
Chris Lattner917d6282010-01-20 21:19:44 +0000691 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
692 MCSectionMachO::S_SYMBOL_STUBS |
693 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
694 32, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000695 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000696 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +0000697 EmitAlignment(4);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000698
699 const MCSymbol *Stub = Stubs[i].first;
700 const MCSymbol *RawSym = Stubs[i].second;
701 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
702 const MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
703
704 O << *Stub << ":\n";
705 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +0000706 O << "\tmflr r0\n";
Chris Lattner73a1aa02010-01-20 21:36:48 +0000707 O << "\tbcl 20,31," << *AnonSymbol << '\n';
708 O << *AnonSymbol << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000709 O << "\tmflr r11\n";
Chris Lattner73a1aa02010-01-20 21:36:48 +0000710 O << "\taddis r11,r11,ha16(" << *LazyPtr << '-' << *AnonSymbol
Chris Lattner917d6282010-01-20 21:19:44 +0000711 << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000712 O << "\tmtlr r0\n";
Chris Lattner73a1aa02010-01-20 21:36:48 +0000713 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
714 << '-' << *AnonSymbol << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000715 O << "\tmtctr r12\n";
716 O << "\tbctr\n";
Chris Lattnerfe2fe702009-07-16 01:23:26 +0000717
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000718 OutStreamer.SwitchSection(LSPSection);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000719 O << *LazyPtr << ":\n";
720 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +0000721 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000722 }
Chris Lattner917d6282010-01-20 21:19:44 +0000723 O << '\n';
724 return;
Misha Brukman46fd00a2004-06-24 23:04:11 +0000725 }
Chris Lattner917d6282010-01-20 21:19:44 +0000726
727 const MCSection *StubSection =
728 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
729 MCSectionMachO::S_SYMBOL_STUBS |
730 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
731 16, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000732 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
733 const MCSymbol *Stub = Stubs[i].first;
734 const MCSymbol *RawSym = Stubs[i].second;
735 const MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
736
Chris Lattner917d6282010-01-20 21:19:44 +0000737 OutStreamer.SwitchSection(StubSection);
738 EmitAlignment(4);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000739 O << *Stub << ":\n";
740 O << "\t.indirect_symbol " << *RawSym << '\n';
741 O << "\tlis r11,ha16(" << *LazyPtr << ")\n";
742 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(" << *LazyPtr
Chris Lattner917d6282010-01-20 21:19:44 +0000743 << ")(r11)\n";
744 O << "\tmtctr r12\n";
745 O << "\tbctr\n";
746 OutStreamer.SwitchSection(LSPSection);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000747 O << *LazyPtr << ":\n";
748 O << "\t.indirect_symbol " << *RawSym << '\n';
Chris Lattner917d6282010-01-20 21:19:44 +0000749 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
750 }
751
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000752 O << '\n';
Chris Lattner917d6282010-01-20 21:19:44 +0000753}
754
755
756bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
757 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
758
759 // Darwin/PPC always uses mach-o.
760 TargetLoweringObjectFileMachO &TLOFMacho =
761 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
762 MachineModuleInfoMachO &MMIMacho =
763 MMI->getObjFileInfo<MachineModuleInfoMachO>();
764
Chris Lattner73a1aa02010-01-20 21:36:48 +0000765 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
766 if (!Stubs.empty())
767 EmitFunctionStubs(Stubs);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000768
Chris Lattner33adcfb2009-08-22 21:43:10 +0000769 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000770 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000771 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +0000772 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000773 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +0000774 E = Personalities.end(); I != E; ++I) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000775 if (*I) {
776 const MCSymbol *NLPSym =
Chris Lattner7a2ba942010-01-16 18:37:32 +0000777 GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000778 const MCSymbol *&StubSym = MMIMacho.getGVStubEntry(NLPSym);
779 StubSym = GetGlobalValueSymbol(*I);
780 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000781 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000782 }
783
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000784 // Output stubs for dynamically-linked functions.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000785 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000786
Chris Lattner2dfddee2009-08-03 22:52:21 +0000787 // Output macho stubs for external and common global variables.
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000788 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000789 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000790 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +0000791 EmitAlignment(isPPC64 ? 3 : 2);
792
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000793 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
794 O << *Stubs[i].first << ":\n";
795 O << "\t.indirect_symbol " << *Stubs[i].second << '\n';
Chris Lattner8f831cb2009-07-15 01:14:44 +0000796 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +0000797 }
Nate Begemane59bf592004-08-14 22:09:10 +0000798 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000799
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000800 Stubs = MMIMacho.GetHiddenGVStubList();
801 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000802 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000803 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000804
805 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
806 O << *Stubs[i].first << ":\n";
807 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << *Stubs[i].second << '\n';
Evan Chengae94e592008-12-05 01:06:39 +0000808 }
809 }
810
Chris Lattner5b0ac992005-11-01 00:12:36 +0000811 // Funny Darwin hack: This flag tells the linker that no global symbols
812 // contain code that falls through to other global symbols (e.g. the obvious
813 // implementation of multiple entry points). If this doesn't occur, the
814 // linker can safely perform dead code stripping. Since LLVM never generates
815 // code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000816 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +0000817
Dan Gohmanb8275a32007-07-25 19:33:14 +0000818 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000819}
Nate Begemaned428532004-09-04 05:00:00 +0000820
Chris Lattner4da1c822006-09-20 17:12:19 +0000821
822
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000823/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
824/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +0000825/// Darwin assembler can deal with.
826///
Daniel Dunbar78945782009-08-13 23:48:47 +0000827static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
828 TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +0000829 const MCAsmInfo *tai,
Daniel Dunbar78945782009-08-13 23:48:47 +0000830 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +0000831 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
832
Chris Lattner40bbebd2009-07-21 18:38:57 +0000833 if (Subtarget->isDarwin())
Daniel Dunbar67d894e2009-08-13 19:38:51 +0000834 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
835 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Chris Lattner4da1c822006-09-20 17:12:19 +0000836}
Anton Korobeynikov06be9972008-08-17 13:54:28 +0000837
Bob Wilsona96751f2009-06-23 23:59:40 +0000838// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000839extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000840 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000841 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
842}