blob: 039bb4dffacf55d3b6da88928bf25a3d18d5e9fd [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"
Dale Johannesenefc3a632010-04-26 20:05:01 +000024#include "llvm/Analysis/DebugInfo.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000025#include "llvm/Constants.h"
26#include "llvm/DerivedTypes.h"
27#include "llvm/Module.h"
28#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000029#include "llvm/CodeGen/AsmPrinter.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"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000034#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000035#include "llvm/MC/MCAsmInfo.h"
Chris Lattner0b4bad52010-01-13 19:00:57 +000036#include "llvm/MC/MCContext.h"
Bill Wendling08d726c2010-03-11 23:39:44 +000037#include "llvm/MC/MCExpr.h"
Chris Lattner293ef9a2010-11-14 19:53:02 +000038#include "llvm/MC/MCInst.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000039#include "llvm/MC/MCSectionMachO.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000040#include "llvm/MC/MCStreamer.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000041#include "llvm/MC/MCSymbol.h"
Chris Lattner45111d12010-01-16 21:57:06 +000042#include "llvm/Target/Mangler.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000043#include "llvm/Target/TargetRegisterInfo.h"
44#include "llvm/Target/TargetInstrInfo.h"
45#include "llvm/Target/TargetOptions.h"
46#include "llvm/Target/TargetRegistry.h"
Chris Lattner293ef9a2010-11-14 19:53:02 +000047#include "llvm/Support/CommandLine.h"
Devang Patel40e0bad2010-08-04 22:07:50 +000048#include "llvm/Support/Debug.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000049#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000050#include "llvm/Support/ErrorHandling.h"
Chris Lattnerb23569a2010-04-04 08:18:47 +000051#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000052#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000053#include "llvm/ADT/StringSet.h"
Chris Lattner48130352010-01-13 06:38:18 +000054#include "llvm/ADT/SmallString.h"
Chris Lattner60d5b5f2010-11-14 19:40:38 +000055#include "InstPrinter/PPCInstPrinter.h"
Chris Lattnera3840792004-08-16 23:25:21 +000056using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000057
Chris Lattner293ef9a2010-11-14 19:53:02 +000058// This option tells the asmprinter to use the new (experimental) MCInstPrinter
59// path.
60static cl::opt<bool> UseInstPrinter("enable-ppc-inst-printer",
Chris Lattnera7217c82010-11-14 21:12:33 +000061 cl::ReallyHidden
62 //, cl::init(true)
63 );
Chris Lattner293ef9a2010-11-14 19:53:02 +000064
Chris Lattner95b2c7d2006-12-19 22:59:26 +000065namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000066 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +000067 protected:
Chris Lattner9d7efd32010-04-04 07:05:53 +000068 DenseMap<MCSymbol*, MCSymbol*> TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000069 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000070 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000071 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +000072 explicit PPCAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
73 : AsmPrinter(TM, Streamer),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000074 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000075
Misha Brukman5dfe3a92004-06-21 16:55:25 +000076 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000077 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000078 }
79
Nate Begemanadeb43d2005-07-20 22:42:00 +000080 unsigned enumRegToMachineReg(unsigned enumReg) {
81 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +000082 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +000083 case PPC::CR0: return 0;
84 case PPC::CR1: return 1;
85 case PPC::CR2: return 2;
86 case PPC::CR3: return 3;
87 case PPC::CR4: return 4;
88 case PPC::CR5: return 5;
89 case PPC::CR6: return 6;
90 case PPC::CR7: return 7;
91 }
Torok Edwinc23197a2009-07-14 16:55:14 +000092 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +000093 }
94
Nate Begemane59bf592004-08-14 22:09:10 +000095 /// printInstruction - This method is automatically generated by tablegen
96 /// from the instruction set description. This method returns true if the
97 /// machine instruction was sufficiently described to print it, otherwise it
98 /// returns false.
Chris Lattner35c33bd2010-04-04 04:47:45 +000099 void printInstruction(const MachineInstr *MI, raw_ostream &O);
Chris Lattnerd95148f2009-09-13 20:19:22 +0000100 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +0000101
Nate Begemane59bf592004-08-14 22:09:10 +0000102
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000103 virtual void EmitInstruction(const MachineInstr *MI);
Chris Lattner35c33bd2010-04-04 04:47:45 +0000104 void printOp(const MachineOperand &MO, raw_ostream &O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000105
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000106 /// stripRegisterPrefix - This method strips the character prefix from a
107 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000108 const char *stripRegisterPrefix(const char *RegName) {
109 switch (RegName[0]) {
110 case 'r':
111 case 'f':
112 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000113 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000114 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000115
Jim Laskey40ee69f2006-12-20 21:33:34 +0000116 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000117 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000118
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000119 /// printRegister - Print register according to target requirements.
120 ///
Chris Lattner35c33bd2010-04-04 04:47:45 +0000121 void printRegister(const MachineOperand &MO, bool R0AsZero, raw_ostream &O){
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000122 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000123 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000124
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000125 // If we should use 0 for R0.
126 if (R0AsZero && RegNo == PPC::R0) {
127 O << "0";
128 return;
129 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000130
Chris Lattner762ccea2009-09-13 20:31:40 +0000131 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000132 // Linux assembler (Others?) does not take register mnemonics.
133 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000134 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
135 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000136 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000137
Chris Lattner35c33bd2010-04-04 04:47:45 +0000138 void printOperand(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000139 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000140 if (MO.isReg()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000141 printRegister(MO, false, O);
Dan Gohmand735b802008-10-03 15:45:36 +0000142 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000143 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000144 } else {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000145 printOp(MO, O);
Chris Lattner7bb424f2004-08-14 23:27:29 +0000146 }
147 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000148
Chris Lattner58873272006-02-01 22:38:46 +0000149 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000150 unsigned AsmVariant, const char *ExtraCode,
151 raw_ostream &O);
Chris Lattner2c003e22006-02-24 20:27:40 +0000152 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000153 unsigned AsmVariant, const char *ExtraCode,
154 raw_ostream &O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000155
156
Chris Lattner35c33bd2010-04-04 04:47:45 +0000157 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo,
158 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000159 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000160 value = (value << (32-5)) >> (32-5);
161 O << (int)value;
162 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000163 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo,
164 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000165 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000166 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000167 O << (unsigned int)value;
168 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000169 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo,
170 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000171 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000172 assert(value <= 63 && "Invalid u6imm argument!");
173 O << (unsigned int)value;
174 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000175 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo,
176 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000177 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000178 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000179 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo,
180 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000181 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000182 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000183 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo,
184 raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000185 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000186 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000187 } else {
188 O << "lo16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000189 printOp(MI->getOperand(OpNo), O);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000190 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000191 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000192 else
193 O << ')';
194 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000195 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000196 void printBranchOperand(const MachineInstr *MI, unsigned OpNo,
197 raw_ostream &O) {
Nate Begemaned428532004-09-04 05:00:00 +0000198 // Branches can take an immediate operand. This is used by the branch
199 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000200 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000201 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000202 } else {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000203 printOp(MI->getOperand(OpNo), O);
Nate Begemaned428532004-09-04 05:00:00 +0000204 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000205 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000206 void printCallOperand(const MachineInstr *MI, unsigned OpNo,
207 raw_ostream &O) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000208 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000209 if (TM.getRelocationModel() != Reloc::Static) {
Devang Patela00adba2010-04-27 22:24:37 +0000210 if (MO.isGlobal()) {
Dan Gohman46510a72010-04-15 01:51:59 +0000211 const GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000212 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000213 // Dynamically-resolved functions need a stub for the function.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000214 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
Bill Wendlingcebae362010-03-10 22:34:10 +0000215 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattner73a1aa02010-01-20 21:36:48 +0000216 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000217 if (StubSym.getPointer() == 0)
218 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000219 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000220 O << *Sym;
Chris Lattnera637c322005-12-16 00:22:14 +0000221 return;
222 }
223 }
Devang Patela00adba2010-04-27 22:24:37 +0000224 if (MO.isSymbol()) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000225 SmallString<128> TempNameStr;
226 TempNameStr += StringRef(MO.getSymbolName());
227 TempNameStr += StringRef("$stub");
228
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000229 MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
Bill Wendlingcebae362010-03-10 22:34:10 +0000230 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattner73a1aa02010-01-20 21:36:48 +0000231 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000232 if (StubSym.getPointer() == 0)
233 StubSym = MachineModuleInfoImpl::
234 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000235 O << *Sym;
Chris Lattner9542f9712005-11-17 19:40:30 +0000236 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000237 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000238 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000239
Chris Lattner35c33bd2010-04-04 04:47:45 +0000240 printOp(MI->getOperand(OpNo), O);
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000241 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000242 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo,
243 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000244 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000245 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000246 void printPICLabel(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000247 O << "\"L" << getFunctionNumber() << "$pb\"\n";
248 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000249 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000250 void printSymbolHi(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000251 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000252 printS16ImmOperand(MI, OpNo, O);
Nate Begeman2497e632005-07-21 20:44:43 +0000253 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000254 if (Subtarget.isDarwin()) O << "ha16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000255 printOp(MI->getOperand(OpNo), O);
Chris Lattner35d86fe2006-07-26 21:12:04 +0000256 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000257 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000258 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000259 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000260 else
261 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000262 }
Nate Begemaned428532004-09-04 05:00:00 +0000263 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000264 void printSymbolLo(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000265 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000266 printS16ImmOperand(MI, OpNo, O);
Nate Begemaned428532004-09-04 05:00:00 +0000267 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000268 if (Subtarget.isDarwin()) O << "lo16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000269 printOp(MI->getOperand(OpNo), O);
Chris Lattner35d86fe2006-07-26 21:12:04 +0000270 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000271 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000272 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000273 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000274 else
275 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000276 }
277 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000278 void printcrbitm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000279 unsigned CCReg = MI->getOperand(OpNo).getReg();
280 unsigned RegNo = enumRegToMachineReg(CCReg);
281 O << (0x80 >> RegNo);
282 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000283 // The new addressing mode printers.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000284 void printMemRegImm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
285 printSymbolLo(MI, OpNo, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000286 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000287 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000288 MI->getOperand(OpNo+1).getReg() == PPC::R0)
289 O << "0";
290 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000291 printOperand(MI, OpNo+1, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000292 O << ')';
293 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000294 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo,
295 raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000296 if (MI->getOperand(OpNo).isImm())
Chris Lattner35c33bd2010-04-04 04:47:45 +0000297 printS16X4ImmOperand(MI, OpNo, O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000298 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000299 printSymbolLo(MI, OpNo, O);
Chris Lattnere5ba5802006-03-22 05:26:03 +0000300 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000301 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000302 MI->getOperand(OpNo+1).getReg() == PPC::R0)
303 O << "0";
304 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000305 printOperand(MI, OpNo+1, O);
Chris Lattnere5ba5802006-03-22 05:26:03 +0000306 O << ')';
307 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000308
Chris Lattner35c33bd2010-04-04 04:47:45 +0000309 void printMemRegReg(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Nate Begeman88276b82005-12-19 23:40:42 +0000310 // When used as the base register, r0 reads constant zero rather than
311 // the value contained in the register. For this reason, the darwin
312 // assembler requires that we print r0 as 0 (no r) when used as the base.
313 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattner35c33bd2010-04-04 04:47:45 +0000314 printRegister(MO, true, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000315 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000316 printOperand(MI, OpNo+1, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000317 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000318
Chris Lattner35c33bd2010-04-04 04:47:45 +0000319 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo,
320 raw_ostream &O) {
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000321 const MachineOperand &MO = MI->getOperand(OpNo);
Devang Patela00adba2010-04-27 22:24:37 +0000322 assert(MO.isGlobal());
Chris Lattner9d7efd32010-04-04 07:05:53 +0000323 MCSymbol *Sym = Mang->getSymbol(MO.getGlobal());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000324
325 // Map symbol -> label of TOC entry.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000326 MCSymbol *&TOCEntry = TOC[Sym];
Chris Lattner75abc682010-01-16 02:09:06 +0000327 if (TOCEntry == 0)
328 TOCEntry = OutContext.
Chris Lattner9b97a732010-03-30 18:10:53 +0000329 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) +
330 "C" + Twine(LabelID++));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000331
Chris Lattner10b318b2010-01-17 21:43:43 +0000332 O << *TOCEntry << "@toc";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000333 }
334
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000335 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000336 raw_ostream &O, const char *Modifier);
Devang Patel40e0bad2010-08-04 22:07:50 +0000337
338 MachineLocation getDebugValueLocation(const MachineInstr *MI) const {
339
340 MachineLocation Location;
341 assert (MI->getNumOperands() == 4 && "Invalid no. of machine operands!");
342 // Frame address. Currently handles register +- offset only.
343 if (MI->getOperand(0).isReg() && MI->getOperand(2).isImm())
344 Location.set(MI->getOperand(0).getReg(), MI->getOperand(2).getImm());
345 else {
346 DEBUG(dbgs() << "DBG_VALUE instruction ignored! " << *MI << "\n");
347 }
348 return Location;
349 }
Nate Begemaned428532004-09-04 05:00:00 +0000350 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000351
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000352 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000353 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000354 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +0000355 explicit PPCLinuxAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
356 : PPCAsmPrinter(TM, Streamer) {}
Jim Laskeybf111822006-12-21 20:26:09 +0000357
358 virtual const char *getPassName() const {
359 return "Linux PPC Assembly Printer";
360 }
361
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000362 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000363
Chris Lattner2cf72512010-01-27 07:21:55 +0000364 virtual void EmitFunctionEntryLabel();
Jim Laskeybf111822006-12-21 20:26:09 +0000365 };
366
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000367 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
368 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000369 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000370 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +0000371 explicit PPCDarwinAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
372 : PPCAsmPrinter(TM, Streamer) {}
Nate Begemaned428532004-09-04 05:00:00 +0000373
374 virtual const char *getPassName() const {
375 return "Darwin PPC Assembly Printer";
376 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000377
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000378 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000379 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000380
Chris Lattner73a1aa02010-01-20 21:36:48 +0000381 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000382 };
383} // end of anonymous namespace
384
Nate Begemane59bf592004-08-14 22:09:10 +0000385// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000386#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000387
Chris Lattner35c33bd2010-04-04 04:47:45 +0000388void PPCAsmPrinter::printOp(const MachineOperand &MO, raw_ostream &O) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000389 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000390 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000391 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000392
Nate Begeman37efe672006-04-22 18:53:45 +0000393 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000394 O << *MO.getMBB()->getSymbol();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000395 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000396 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000397 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000398 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000399 // FIXME: PIC relocation model
400 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000401 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000402 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000403 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000404 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000405 case MachineOperand::MO_BlockAddress:
Chris Lattner10b318b2010-01-17 21:43:43 +0000406 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000407 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000408 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000409 // Computing the address of an external symbol, not calling it.
Chris Lattner75abc682010-01-16 02:09:06 +0000410 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000411 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner75abc682010-01-16 02:09:06 +0000412 return;
Chris Lattnera637c322005-12-16 00:22:14 +0000413 }
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000414
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000415 MCSymbol *NLPSym =
Chris Lattner75abc682010-01-16 02:09:06 +0000416 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
417 MO.getSymbolName()+"$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000418 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000419 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000420 if (StubSym.getPointer() == 0)
421 StubSym = MachineModuleInfoImpl::
422 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000423
Chris Lattner10b318b2010-01-17 21:43:43 +0000424 O << *NLPSym;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000425 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000426 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000427 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000428 // Computing the address of a global symbol, not calling it.
Dan Gohman46510a72010-04-15 01:51:59 +0000429 const GlobalValue *GV = MO.getGlobal();
Chris Lattnera40128c2010-01-16 02:00:23 +0000430 MCSymbol *SymToPrint;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000431
Nate Begemanfcf4a422004-10-17 23:01:34 +0000432 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000433 if (TM.getRelocationModel() != Reloc::Static &&
434 (GV->isDeclaration() || GV->isWeakForLinker())) {
435 if (!GV->hasHiddenVisibility()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000436 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000437 MachineModuleInfoImpl::StubValueTy &StubSym =
438 MMI->getObjFileInfo<MachineModuleInfoMachO>()
439 .getGVStubEntry(SymToPrint);
440 if (StubSym.getPointer() == 0)
441 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000442 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000443 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
444 GV->hasAvailableExternallyLinkage()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000445 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000446
Bill Wendlingcebae362010-03-10 22:34:10 +0000447 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000448 MMI->getObjFileInfo<MachineModuleInfoMachO>().
449 getHiddenGVStubEntry(SymToPrint);
Bill Wendlingcebae362010-03-10 22:34:10 +0000450 if (StubSym.getPointer() == 0)
451 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000452 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000453 } else {
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000454 SymToPrint = Mang->getSymbol(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000455 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000456 } else {
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000457 SymToPrint = Mang->getSymbol(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000458 }
Chris Lattnera40128c2010-01-16 02:00:23 +0000459
Chris Lattner10b318b2010-01-17 21:43:43 +0000460 O << *SymToPrint;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000461
Chris Lattner0c08d092010-04-03 22:28:33 +0000462 printOffset(MO.getOffset(), O);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000463 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000464 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000465
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000466 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000467 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000468 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000469 }
470}
471
Chris Lattnere3f01572006-02-23 19:31:10 +0000472/// PrintAsmOperand - Print out an operand for an inline asm expression.
473///
474bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000475 unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000476 const char *ExtraCode, raw_ostream &O) {
Chris Lattnere3f01572006-02-23 19:31:10 +0000477 // Does this asm operand have a single letter operand modifier?
478 if (ExtraCode && ExtraCode[0]) {
479 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000480
Chris Lattnere3f01572006-02-23 19:31:10 +0000481 switch (ExtraCode[0]) {
482 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000483 case 'c': // Don't print "$" before a global var name or constant.
484 // PPC never has a prefix.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000485 printOperand(MI, OpNo, O);
Chris Lattner78192b62007-01-25 02:52:50 +0000486 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000487 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000488 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000489 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000490 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000491 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000492 return true;
493 ++OpNo; // Return the high-part.
494 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000495 case 'I':
496 // Write 'i' if an integer constant, otherwise nothing. Used to print
497 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000498 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000499 O << "i";
500 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000501 }
502 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000503
Chris Lattner35c33bd2010-04-04 04:47:45 +0000504 printOperand(MI, OpNo, O);
Chris Lattnere3f01572006-02-23 19:31:10 +0000505 return false;
506}
507
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000508// At the moment, all inline asm memory operands are a single register.
509// In any case, the output of this routine should always be just one
510// assembler operand.
511
Chris Lattner2c003e22006-02-24 20:27:40 +0000512bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000513 unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000514 const char *ExtraCode,
515 raw_ostream &O) {
Chris Lattner2c003e22006-02-24 20:27:40 +0000516 if (ExtraCode && ExtraCode[0])
517 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000518 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000519 O << "0(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000520 printOperand(MI, OpNo, O);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000521 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000522 return false;
523}
Chris Lattnere3f01572006-02-23 19:31:10 +0000524
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000525void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000526 raw_ostream &O, const char *Modifier){
Chris Lattneraf53a872006-11-04 05:27:39 +0000527 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
528 unsigned Code = MI->getOperand(OpNo).getImm();
529 if (!strcmp(Modifier, "cc")) {
530 switch ((PPC::Predicate)Code) {
531 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
532 case PPC::PRED_LT: O << "lt"; return;
533 case PPC::PRED_LE: O << "le"; return;
534 case PPC::PRED_EQ: O << "eq"; return;
535 case PPC::PRED_GE: O << "ge"; return;
536 case PPC::PRED_GT: O << "gt"; return;
537 case PPC::PRED_NE: O << "ne"; return;
538 case PPC::PRED_UN: O << "un"; return;
539 case PPC::PRED_NU: O << "nu"; return;
540 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000541
Chris Lattneraf53a872006-11-04 05:27:39 +0000542 } else {
543 assert(!strcmp(Modifier, "reg") &&
544 "Need to specify 'cc' or 'reg' as predicate op modifier!");
545 // Don't print the register for 'always'.
546 if (Code == PPC::PRED_ALWAYS) return;
Chris Lattner35c33bd2010-04-04 04:47:45 +0000547 printOperand(MI, OpNo+1, O);
Chris Lattneraf53a872006-11-04 05:27:39 +0000548 }
549}
550
551
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000552/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
Nate Begemane59bf592004-08-14 22:09:10 +0000553/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000554///
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000555void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Chris Lattner293ef9a2010-11-14 19:53:02 +0000556 if (UseInstPrinter) {
Chris Lattner293ef9a2010-11-14 19:53:02 +0000557 // Lower multi-instruction pseudo operations.
558 switch (MI->getOpcode()) {
559 default: break;
560 // TODO: implement me.
561 }
562
563 MCInst TmpInst;
Chris Lattnera7217c82010-11-14 21:12:33 +0000564 LowerPPCMachineInstrToMCInst(MI, TmpInst, *this);
Chris Lattner293ef9a2010-11-14 19:53:02 +0000565 OutStreamer.EmitInstruction(TmpInst);
566 return;
567 }
568
569
Chris Lattner9d7efd32010-04-04 07:05:53 +0000570 SmallString<128> Str;
571 raw_svector_ostream O(Str);
572
Dale Johannesenefc3a632010-04-26 20:05:01 +0000573 if (MI->getOpcode() == TargetOpcode::DBG_VALUE) {
574 unsigned NOps = MI->getNumOperands();
575 assert(NOps==4);
576 O << '\t' << MAI->getCommentString() << "DEBUG_VALUE: ";
577 // cast away const; DIetc do not take const operands for some reason.
578 DIVariable V(const_cast<MDNode *>(MI->getOperand(NOps-1).getMetadata()));
579 O << V.getName();
580 O << " <- ";
581 // Frame address. Currently handles register +- offset only.
582 assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
583 O << '['; printOperand(MI, 0, O); O << '+'; printOperand(MI, 1, O);
584 O << ']';
585 O << "+";
586 printOperand(MI, NOps-2, O);
587 OutStreamer.EmitRawText(O.str());
588 return;
589 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000590 // Check for slwi/srwi mnemonics.
591 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000592 unsigned char SH = MI->getOperand(2).getImm();
593 unsigned char MB = MI->getOperand(3).getImm();
594 unsigned char ME = MI->getOperand(4).getImm();
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000595 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000596 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000597 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000598 }
599 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000600 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000601 SH = 32-SH;
602 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000603 if (useSubstituteMnemonic) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000604 printOperand(MI, 0, O);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000605 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000606 printOperand(MI, 1, O);
Dale Johannesene89c5102010-01-06 02:20:18 +0000607 O << ", " << (unsigned int)SH;
Chris Lattner9d7efd32010-04-04 07:05:53 +0000608 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000609 return;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000610 }
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000611 }
612
613 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
614 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
615 O << "\tmr ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000616 printOperand(MI, 0, O);
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000617 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000618 printOperand(MI, 1, O);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000619 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000620 return;
621 }
622
623 if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000624 unsigned char SH = MI->getOperand(2).getImm();
625 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000626 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
627 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000628 O << "\tsldi ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000629 printOperand(MI, 0, O);
Chris Lattner566c1b12006-11-18 01:23:56 +0000630 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000631 printOperand(MI, 1, O);
Dale Johannesene89c5102010-01-06 02:20:18 +0000632 O << ", " << (unsigned int)SH;
Chris Lattner9d7efd32010-04-04 07:05:53 +0000633 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000634 return;
Chris Lattner566c1b12006-11-18 01:23:56 +0000635 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000636 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000637
Chris Lattner9d7efd32010-04-04 07:05:53 +0000638 printInstruction(MI, O);
639 OutStreamer.EmitRawText(O.str());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000640}
641
Chris Lattner2cf72512010-01-27 07:21:55 +0000642void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
643 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
644 return AsmPrinter::EmitFunctionEntryLabel();
645
646 // Emit an official procedure descriptor.
647 // FIXME 64-bit SVR4: Use MCSection here!
Chris Lattner9d7efd32010-04-04 07:05:53 +0000648 OutStreamer.EmitRawText(StringRef("\t.section\t\".opd\",\"aw\""));
649 OutStreamer.EmitRawText(StringRef("\t.align 3"));
Chris Lattner2cf72512010-01-27 07:21:55 +0000650 OutStreamer.EmitLabel(CurrentFnSym);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000651 OutStreamer.EmitRawText("\t.quad .L." + Twine(CurrentFnSym->getName()) +
652 ",.TOC.@tocbase");
653 OutStreamer.EmitRawText(StringRef("\t.previous"));
654 OutStreamer.EmitRawText(".L." + Twine(CurrentFnSym->getName()) + ":");
Chris Lattner2cf72512010-01-27 07:21:55 +0000655}
656
657
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000658bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
659 const TargetData *TD = TM.getTargetData();
660
661 bool isPPC64 = TD->getPointerSizeInBits() == 64;
662
663 if (isPPC64 && !TOC.empty()) {
664 // FIXME 64-bit SVR4: Use MCSection here?
Chris Lattner9d7efd32010-04-04 07:05:53 +0000665 OutStreamer.EmitRawText(StringRef("\t.section\t\".toc\",\"aw\""));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000666
Chris Lattnera40128c2010-01-16 02:00:23 +0000667 // FIXME: This is nondeterminstic!
Chris Lattner9d7efd32010-04-04 07:05:53 +0000668 for (DenseMap<MCSymbol*, MCSymbol*>::iterator I = TOC.begin(),
Chris Lattner75abc682010-01-16 02:09:06 +0000669 E = TOC.end(); I != E; ++I) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000670 OutStreamer.EmitLabel(I->second);
671 OutStreamer.EmitRawText("\t.tc " + Twine(I->first->getName()) +
672 "[TC]," + I->first->getName());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000673 }
674 }
675
676 return AsmPrinter::doFinalization(M);
677}
Jim Laskeybf111822006-12-21 20:26:09 +0000678
Bob Wilson812209a2009-09-30 22:06:26 +0000679void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000680 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000681 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000682 "ppc",
683 "ppc601",
684 "ppc602",
685 "ppc603",
686 "ppc7400",
687 "ppc750",
688 "ppc970",
689 "ppc64"
690 };
691
692 unsigned Directive = Subtarget.getDarwinDirective();
693 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
694 Directive = PPC::DIR_970;
695 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
696 Directive = PPC::DIR_7400;
697 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
698 Directive = PPC::DIR_64;
699 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Chris Lattner9d7efd32010-04-04 07:05:53 +0000700 OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive]));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000701
Jim Laskey2ada0852006-11-28 18:21:52 +0000702 // Prime text sections so they are adjacent. This reduces the likelihood a
703 // large data or debug section causes a branch to exceed 16M limit.
Dan Gohman0d805c32010-04-17 16:44:48 +0000704 const TargetLoweringObjectFileMachO &TLOFMacho =
705 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000706 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000707 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000708 OutStreamer.SwitchSection(
Chris Lattner22772212010-04-08 20:40:11 +0000709 OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000710 MCSectionMachO::S_SYMBOL_STUBS |
711 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
712 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000713 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000714 OutStreamer.SwitchSection(
Chris Lattner22772212010-04-08 20:40:11 +0000715 OutContext.getMachOSection("__TEXT","__symbol_stub1",
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000716 MCSectionMachO::S_SYMBOL_STUBS |
717 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
718 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000719 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000720 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000721}
722
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000723static MCSymbol *GetLazyPtr(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000724 // Remove $stub suffix, add $lazy_ptr.
725 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
726 TmpStr += "$lazy_ptr";
Chris Lattner9b97a732010-03-30 18:10:53 +0000727 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000728}
729
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000730static MCSymbol *GetAnonSym(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000731 // Add $tmp suffix to $stub, yielding $stub$tmp.
732 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
733 TmpStr += "$tmp";
Chris Lattner9b97a732010-03-30 18:10:53 +0000734 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000735}
736
737void PPCDarwinAsmPrinter::
738EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner917d6282010-01-20 21:19:44 +0000739 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
740
Dan Gohman0d805c32010-04-17 16:44:48 +0000741 const TargetLoweringObjectFileMachO &TLOFMacho =
742 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner917d6282010-01-20 21:19:44 +0000743
744 // .lazy_symbol_pointer
745 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattnerff4bc462009-08-10 01:39:42 +0000746
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000747 // Output stubs for dynamically-linked functions
Chris Lattner917d6282010-01-20 21:19:44 +0000748 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner2dfddee2009-08-03 22:52:21 +0000749 const MCSection *StubSection =
Chris Lattner22772212010-04-08 20:40:11 +0000750 OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
751 MCSectionMachO::S_SYMBOL_STUBS |
752 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
753 32, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000754 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000755 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +0000756 EmitAlignment(4);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000757
Chris Lattner9d7efd32010-04-04 07:05:53 +0000758 MCSymbol *Stub = Stubs[i].first;
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000759 MCSymbol *RawSym = Stubs[i].second.getPointer();
760 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
761 MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000762
Chris Lattner9d7efd32010-04-04 07:05:53 +0000763 OutStreamer.EmitLabel(Stub);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000764 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
765 // FIXME: MCize this.
Chris Lattner1841b342010-04-04 07:17:25 +0000766 OutStreamer.EmitRawText(StringRef("\tmflr r0"));
767 OutStreamer.EmitRawText("\tbcl 20,31," + Twine(AnonSymbol->getName()));
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000768 OutStreamer.EmitLabel(AnonSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000769 OutStreamer.EmitRawText(StringRef("\tmflr r11"));
770 OutStreamer.EmitRawText("\taddis r11,r11,ha16("+Twine(LazyPtr->getName())+
771 "-" + AnonSymbol->getName() + ")");
772 OutStreamer.EmitRawText(StringRef("\tmtlr r0"));
773
774 if (isPPC64)
775 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
776 "-" + AnonSymbol->getName() + ")(r11)");
777 else
778 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
779 "-" + AnonSymbol->getName() + ")(r11)");
780 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
781 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattnerfe2fe702009-07-16 01:23:26 +0000782
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000783 OutStreamer.SwitchSection(LSPSection);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000784 OutStreamer.EmitLabel(LazyPtr);
785 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000786
787 if (isPPC64)
788 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
789 else
790 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Chris Lattnerdeea4162005-12-13 04:33:58 +0000791 }
Chris Lattner9d7efd32010-04-04 07:05:53 +0000792 OutStreamer.AddBlankLine();
Chris Lattner917d6282010-01-20 21:19:44 +0000793 return;
Misha Brukman46fd00a2004-06-24 23:04:11 +0000794 }
Chris Lattner917d6282010-01-20 21:19:44 +0000795
796 const MCSection *StubSection =
Chris Lattner22772212010-04-08 20:40:11 +0000797 OutContext.getMachOSection("__TEXT","__symbol_stub1",
798 MCSectionMachO::S_SYMBOL_STUBS |
799 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
800 16, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000801 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000802 MCSymbol *Stub = Stubs[i].first;
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000803 MCSymbol *RawSym = Stubs[i].second.getPointer();
804 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000805
Chris Lattner917d6282010-01-20 21:19:44 +0000806 OutStreamer.SwitchSection(StubSection);
807 EmitAlignment(4);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000808 OutStreamer.EmitLabel(Stub);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000809 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000810 OutStreamer.EmitRawText("\tlis r11,ha16(" + Twine(LazyPtr->getName()) +")");
811 if (isPPC64)
812 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
813 ")(r11)");
814 else
815 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
816 ")(r11)");
817 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
818 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattner917d6282010-01-20 21:19:44 +0000819 OutStreamer.SwitchSection(LSPSection);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000820 OutStreamer.EmitLabel(LazyPtr);
821 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000822
823 if (isPPC64)
824 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
825 else
826 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Chris Lattner917d6282010-01-20 21:19:44 +0000827 }
828
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000829 OutStreamer.AddBlankLine();
Chris Lattner917d6282010-01-20 21:19:44 +0000830}
831
832
833bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
834 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
835
836 // Darwin/PPC always uses mach-o.
Dan Gohman0d805c32010-04-17 16:44:48 +0000837 const TargetLoweringObjectFileMachO &TLOFMacho =
838 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner917d6282010-01-20 21:19:44 +0000839 MachineModuleInfoMachO &MMIMacho =
840 MMI->getObjFileInfo<MachineModuleInfoMachO>();
841
Chris Lattner73a1aa02010-01-20 21:36:48 +0000842 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
843 if (!Stubs.empty())
844 EmitFunctionStubs(Stubs);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000845
Chris Lattner33adcfb2009-08-22 21:43:10 +0000846 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000847 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000848 // Only referenced functions get into the Personalities list.
Dan Gohman46510a72010-04-15 01:51:59 +0000849 const std::vector<const Function*> &Personalities = MMI->getPersonalities();
850 for (std::vector<const Function*>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +0000851 E = Personalities.end(); I != E; ++I) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000852 if (*I) {
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000853 MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000854 MachineModuleInfoImpl::StubValueTy &StubSym =
855 MMIMacho.getGVStubEntry(NLPSym);
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000856 StubSym = MachineModuleInfoImpl::StubValueTy(Mang->getSymbol(*I), true);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000857 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000858 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000859 }
860
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000861 // Output stubs for dynamically-linked functions.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000862 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000863
Chris Lattner2dfddee2009-08-03 22:52:21 +0000864 // Output macho stubs for external and common global variables.
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000865 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000866 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000867 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +0000868 EmitAlignment(isPPC64 ? 3 : 2);
869
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000870 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendling08d726c2010-03-11 23:39:44 +0000871 // L_foo$stub:
872 OutStreamer.EmitLabel(Stubs[i].first);
873 // .indirect_symbol _foo
874 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
875 OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
Bill Wendling53351a12010-03-12 02:00:43 +0000876
877 if (MCSym.getInt())
878 // External to current translation unit.
879 OutStreamer.EmitIntValue(0, isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
880 else
881 // Internal to current translation unit.
Bill Wendling5e1b55d2010-03-31 18:47:10 +0000882 //
883 // When we place the LSDA into the TEXT section, the type info pointers
884 // need to be indirect and pc-rel. We accomplish this by using NLPs.
885 // However, sometimes the types are local to the file. So we need to
886 // fill in the value for the NLP in those cases.
Bill Wendling53351a12010-03-12 02:00:43 +0000887 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
888 OutContext),
889 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Chris Lattnerdeea4162005-12-13 04:33:58 +0000890 }
Bill Wendling08d726c2010-03-11 23:39:44 +0000891
892 Stubs.clear();
893 OutStreamer.AddBlankLine();
Nate Begemane59bf592004-08-14 22:09:10 +0000894 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000895
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000896 Stubs = MMIMacho.GetHiddenGVStubList();
897 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000898 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000899 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000900
901 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendling08d726c2010-03-11 23:39:44 +0000902 // L_foo$stub:
903 OutStreamer.EmitLabel(Stubs[i].first);
904 // .long _foo
905 OutStreamer.EmitValue(MCSymbolRefExpr::
906 Create(Stubs[i].second.getPointer(),
907 OutContext),
908 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Evan Chengae94e592008-12-05 01:06:39 +0000909 }
Bill Wendling08d726c2010-03-11 23:39:44 +0000910
911 Stubs.clear();
912 OutStreamer.AddBlankLine();
Evan Chengae94e592008-12-05 01:06:39 +0000913 }
914
Chris Lattner5b0ac992005-11-01 00:12:36 +0000915 // Funny Darwin hack: This flag tells the linker that no global symbols
916 // contain code that falls through to other global symbols (e.g. the obvious
917 // implementation of multiple entry points). If this doesn't occur, the
918 // linker can safely perform dead code stripping. Since LLVM never generates
919 // code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000920 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +0000921
Dan Gohmanb8275a32007-07-25 19:33:14 +0000922 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000923}
Nate Begemaned428532004-09-04 05:00:00 +0000924
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000925/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
926/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +0000927/// Darwin assembler can deal with.
928///
Chris Lattnerb23569a2010-04-04 08:18:47 +0000929static AsmPrinter *createPPCAsmPrinterPass(TargetMachine &tm,
Chris Lattner11d53c12010-03-13 20:55:24 +0000930 MCStreamer &Streamer) {
Jim Laskeybf111822006-12-21 20:26:09 +0000931 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
932
Chris Lattner40bbebd2009-07-21 18:38:57 +0000933 if (Subtarget->isDarwin())
Chris Lattnerb23569a2010-04-04 08:18:47 +0000934 return new PPCDarwinAsmPrinter(tm, Streamer);
935 return new PPCLinuxAsmPrinter(tm, Streamer);
Chris Lattner4da1c822006-09-20 17:12:19 +0000936}
Anton Korobeynikov06be9972008-08-17 13:54:28 +0000937
Chris Lattner60d5b5f2010-11-14 19:40:38 +0000938static MCInstPrinter *createPPCMCInstPrinter(const Target &T,
939 unsigned SyntaxVariant,
940 const MCAsmInfo &MAI) {
Chris Lattner0d1b7d92010-11-14 20:02:39 +0000941 return new PPCInstPrinter(MAI, SyntaxVariant);
Chris Lattner60d5b5f2010-11-14 19:40:38 +0000942}
943
944
Bob Wilsona96751f2009-06-23 23:59:40 +0000945// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000946extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000947 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000948 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
Chris Lattner60d5b5f2010-11-14 19:40:38 +0000949
950 TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
Chris Lattnerfd6688f2010-11-14 21:42:53 +0000951 TargetRegistry::RegisterMCInstPrinter(ThePPC64Target, createPPCMCInstPrinter);
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000952}