blob: b973acd404a62621bda3783d5e0c3e01b663f678 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
12// the output mechanism used by `llc'.
13//
14// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
16//
17//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "asmprinter"
20#include "PPC.h"
21#include "PPCPredicates.h"
22#include "PPCTargetMachine.h"
23#include "PPCSubtarget.h"
24#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
28#include "llvm/CodeGen/AsmPrinter.h"
29#include "llvm/CodeGen/DwarfWriter.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030#include "llvm/CodeGen/MachineFunctionPass.h"
31#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling36ccaea2008-01-26 06:51:24 +000032#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnerc2cfe152010-01-20 21:16:14 +000033#include "llvm/CodeGen/MachineModuleInfoImpls.h"
Anton Korobeynikov84d365c2010-02-15 22:37:53 +000034#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000035#include "llvm/MC/MCAsmInfo.h"
Chris Lattner9bc87482010-01-13 19:00:57 +000036#include "llvm/MC/MCContext.h"
Bill Wendlingd4fba932010-03-11 23:39:44 +000037#include "llvm/MC/MCExpr.h"
Chris Lattner7f1ac7f2009-08-10 18:15:01 +000038#include "llvm/MC/MCSectionMachO.h"
Chris Lattner73266f92009-08-19 05:49:37 +000039#include "llvm/MC/MCStreamer.h"
Chris Lattnerc6f802d2009-09-13 17:14:04 +000040#include "llvm/MC/MCSymbol.h"
Chris Lattner31a54742010-01-16 21:57:06 +000041#include "llvm/Target/Mangler.h"
Chris Lattnere6ad12f2009-07-31 18:48:30 +000042#include "llvm/Target/TargetRegisterInfo.h"
43#include "llvm/Target/TargetInstrInfo.h"
44#include "llvm/Target/TargetOptions.h"
45#include "llvm/Target/TargetRegistry.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046#include "llvm/Support/MathExtras.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000047#include "llvm/Support/ErrorHandling.h"
Chris Lattner3eac1ed2010-04-04 08:18:47 +000048#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049#include "llvm/ADT/StringExtras.h"
Evan Chenga65854f2008-12-05 01:06:39 +000050#include "llvm/ADT/StringSet.h"
Chris Lattnera38b2872010-01-13 06:38:18 +000051#include "llvm/ADT/SmallString.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052using namespace llvm;
53
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054namespace {
Nick Lewycky492d06e2009-10-25 06:33:48 +000055 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +000056 protected:
Chris Lattner82d07b72010-04-04 07:05:53 +000057 DenseMap<MCSymbol*, MCSymbol*> TOC;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 const PPCSubtarget &Subtarget;
Tilmann Scheller72cf2812009-08-15 11:54:46 +000059 uint64_t LabelID;
Bill Wendling4f405312009-02-24 08:30:20 +000060 public:
Chris Lattner3eac1ed2010-04-04 08:18:47 +000061 explicit PPCAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
62 : AsmPrinter(TM, Streamer),
Tilmann Scheller72cf2812009-08-15 11:54:46 +000063 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064
65 virtual const char *getPassName() const {
66 return "PowerPC Assembly Printer";
67 }
68
69 PPCTargetMachine &getTM() {
70 return static_cast<PPCTargetMachine&>(TM);
71 }
72
73 unsigned enumRegToMachineReg(unsigned enumReg) {
74 switch (enumReg) {
Edwin Törökbd448e32009-07-14 16:55:14 +000075 default: llvm_unreachable("Unhandled register!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076 case PPC::CR0: return 0;
77 case PPC::CR1: return 1;
78 case PPC::CR2: return 2;
79 case PPC::CR3: return 3;
80 case PPC::CR4: return 4;
81 case PPC::CR5: return 5;
82 case PPC::CR6: return 6;
83 case PPC::CR7: return 7;
84 }
Edwin Törökbd448e32009-07-14 16:55:14 +000085 llvm_unreachable(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 }
87
88 /// printInstruction - This method is automatically generated by tablegen
89 /// from the instruction set description. This method returns true if the
90 /// machine instruction was sufficiently described to print it, otherwise it
91 /// returns false.
Chris Lattner4e972532010-04-04 04:47:45 +000092 void printInstruction(const MachineInstr *MI, raw_ostream &O);
Chris Lattner213703c2009-09-13 20:19:22 +000093 static const char *getRegisterName(unsigned RegNo);
Chris Lattner92221692009-09-13 20:08:00 +000094
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095
Chris Lattner1d40b372010-01-28 01:28:58 +000096 virtual void EmitInstruction(const MachineInstr *MI);
Chris Lattner4e972532010-04-04 04:47:45 +000097 void printOp(const MachineOperand &MO, raw_ostream &O);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +000098
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099 /// stripRegisterPrefix - This method strips the character prefix from a
100 /// register name so that only the number is left. Used by for linux asm.
101 const char *stripRegisterPrefix(const char *RegName) {
102 switch (RegName[0]) {
103 case 'r':
104 case 'f':
105 case 'v': return RegName + 1;
106 case 'c': if (RegName[1] == 'r') return RegName + 2;
107 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000108
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000109 return RegName;
110 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000111
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000112 /// printRegister - Print register according to target requirements.
113 ///
Chris Lattner4e972532010-04-04 04:47:45 +0000114 void printRegister(const MachineOperand &MO, bool R0AsZero, raw_ostream &O){
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 unsigned RegNo = MO.getReg();
Dan Gohman1e57df32008-02-10 18:45:23 +0000116 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000117
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 // If we should use 0 for R0.
119 if (R0AsZero && RegNo == PPC::R0) {
120 O << "0";
121 return;
122 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000123
Chris Lattnerf0a25de2009-09-13 20:31:40 +0000124 const char *RegName = getRegisterName(RegNo);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000125 // Linux assembler (Others?) does not take register mnemonics.
126 // FIXME - What about special registers used in mfspr/mtspr?
127 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
128 O << RegName;
129 }
130
Chris Lattner4e972532010-04-04 04:47:45 +0000131 void printOperand(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000132 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000133 if (MO.isReg()) {
Chris Lattner4e972532010-04-04 04:47:45 +0000134 printRegister(MO, false, O);
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000135 } else if (MO.isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000136 O << MO.getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000137 } else {
Chris Lattner4e972532010-04-04 04:47:45 +0000138 printOp(MO, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 }
140 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000141
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner3eb5dc12010-04-04 05:29:35 +0000143 unsigned AsmVariant, const char *ExtraCode,
144 raw_ostream &O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000145 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner3eb5dc12010-04-04 05:29:35 +0000146 unsigned AsmVariant, const char *ExtraCode,
147 raw_ostream &O);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000148
149
Chris Lattner4e972532010-04-04 04:47:45 +0000150 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo,
151 raw_ostream &O) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000152 char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 value = (value << (32-5)) >> (32-5);
154 O << (int)value;
155 }
Chris Lattner4e972532010-04-04 04:47:45 +0000156 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo,
157 raw_ostream &O) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000158 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159 assert(value <= 31 && "Invalid u5imm argument!");
160 O << (unsigned int)value;
161 }
Chris Lattner4e972532010-04-04 04:47:45 +0000162 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo,
163 raw_ostream &O) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000164 unsigned char value = MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000165 assert(value <= 63 && "Invalid u6imm argument!");
166 O << (unsigned int)value;
167 }
Chris Lattner4e972532010-04-04 04:47:45 +0000168 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo,
169 raw_ostream &O) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000170 O << (short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000171 }
Chris Lattner4e972532010-04-04 04:47:45 +0000172 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo,
173 raw_ostream &O) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000174 O << (unsigned short)MI->getOperand(OpNo).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175 }
Chris Lattner4e972532010-04-04 04:47:45 +0000176 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo,
177 raw_ostream &O) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000178 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000179 O << (short)(MI->getOperand(OpNo).getImm()*4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180 } else {
181 O << "lo16(";
Chris Lattner4e972532010-04-04 04:47:45 +0000182 printOp(MI->getOperand(OpNo), O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000184 O << "-\"L" << getFunctionNumber() << "$pb\")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185 else
186 O << ')';
187 }
188 }
Chris Lattner4e972532010-04-04 04:47:45 +0000189 void printBranchOperand(const MachineInstr *MI, unsigned OpNo,
190 raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191 // Branches can take an immediate operand. This is used by the branch
192 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000193 if (MI->getOperand(OpNo).isImm()) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000194 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000195 } else {
Chris Lattner4e972532010-04-04 04:47:45 +0000196 printOp(MI->getOperand(OpNo), O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197 }
198 }
Chris Lattner4e972532010-04-04 04:47:45 +0000199 void printCallOperand(const MachineInstr *MI, unsigned OpNo,
200 raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201 const MachineOperand &MO = MI->getOperand(OpNo);
202 if (TM.getRelocationModel() != Reloc::Static) {
203 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
204 GlobalValue *GV = MO.getGlobal();
Chris Lattner0fd4feb2009-07-02 16:08:53 +0000205 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000206 // Dynamically-resolved functions need a stub for the function.
Chris Lattnerd5a83252010-01-20 21:36:48 +0000207 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
Bill Wendlingce996512010-03-10 22:34:10 +0000208 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd5a83252010-01-20 21:36:48 +0000209 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingce996512010-03-10 22:34:10 +0000210 if (StubSym.getPointer() == 0)
211 StubSym = MachineModuleInfoImpl::
Chris Lattner2acc03c2010-03-12 21:19:23 +0000212 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000213 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000214 return;
215 }
216 }
217 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattnerd5a83252010-01-20 21:36:48 +0000218 SmallString<128> TempNameStr;
219 TempNameStr += StringRef(MO.getSymbolName());
220 TempNameStr += StringRef("$stub");
221
Chris Lattner77653062010-02-03 06:18:30 +0000222 MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
Bill Wendlingce996512010-03-10 22:34:10 +0000223 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd5a83252010-01-20 21:36:48 +0000224 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingce996512010-03-10 22:34:10 +0000225 if (StubSym.getPointer() == 0)
226 StubSym = MachineModuleInfoImpl::
227 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000228 O << *Sym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229 return;
230 }
231 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000232
Chris Lattner4e972532010-04-04 04:47:45 +0000233 printOp(MI->getOperand(OpNo), O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000234 }
Chris Lattner4e972532010-04-04 04:47:45 +0000235 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo,
236 raw_ostream &O) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000237 O << (int)MI->getOperand(OpNo).getImm()*4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000238 }
Chris Lattner4e972532010-04-04 04:47:45 +0000239 void printPICLabel(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Evan Cheng477013c2007-10-14 05:57:21 +0000240 O << "\"L" << getFunctionNumber() << "$pb\"\n";
241 O << "\"L" << getFunctionNumber() << "$pb\":";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000242 }
Chris Lattner4e972532010-04-04 04:47:45 +0000243 void printSymbolHi(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000244 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner4e972532010-04-04 04:47:45 +0000245 printS16ImmOperand(MI, OpNo, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 } else {
247 if (Subtarget.isDarwin()) O << "ha16(";
Chris Lattner4e972532010-04-04 04:47:45 +0000248 printOp(MI->getOperand(OpNo), O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000250 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 if (Subtarget.isDarwin())
252 O << ')';
253 else
254 O << "@ha";
255 }
256 }
Chris Lattner4e972532010-04-04 04:47:45 +0000257 void printSymbolLo(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000258 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner4e972532010-04-04 04:47:45 +0000259 printS16ImmOperand(MI, OpNo, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000260 } else {
261 if (Subtarget.isDarwin()) O << "lo16(";
Chris Lattner4e972532010-04-04 04:47:45 +0000262 printOp(MI->getOperand(OpNo), O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng477013c2007-10-14 05:57:21 +0000264 O << "-\"L" << getFunctionNumber() << "$pb\"";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000265 if (Subtarget.isDarwin())
266 O << ')';
267 else
268 O << "@l";
269 }
270 }
Chris Lattner4e972532010-04-04 04:47:45 +0000271 void printcrbitm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000272 unsigned CCReg = MI->getOperand(OpNo).getReg();
273 unsigned RegNo = enumRegToMachineReg(CCReg);
274 O << (0x80 >> RegNo);
275 }
276 // The new addressing mode printers.
Chris Lattner4e972532010-04-04 04:47:45 +0000277 void printMemRegImm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
278 printSymbolLo(MI, OpNo, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000279 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000280 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 MI->getOperand(OpNo+1).getReg() == PPC::R0)
282 O << "0";
283 else
Chris Lattner4e972532010-04-04 04:47:45 +0000284 printOperand(MI, OpNo+1, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000285 O << ')';
286 }
Chris Lattner4e972532010-04-04 04:47:45 +0000287 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo,
288 raw_ostream &O) {
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000289 if (MI->getOperand(OpNo).isImm())
Chris Lattner4e972532010-04-04 04:47:45 +0000290 printS16X4ImmOperand(MI, OpNo, O);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000291 else
Chris Lattner4e972532010-04-04 04:47:45 +0000292 printSymbolLo(MI, OpNo, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000293 O << '(';
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000294 if (MI->getOperand(OpNo+1).isReg() &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000295 MI->getOperand(OpNo+1).getReg() == PPC::R0)
296 O << "0";
297 else
Chris Lattner4e972532010-04-04 04:47:45 +0000298 printOperand(MI, OpNo+1, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000299 O << ')';
300 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000301
Chris Lattner4e972532010-04-04 04:47:45 +0000302 void printMemRegReg(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 // When used as the base register, r0 reads constant zero rather than
304 // the value contained in the register. For this reason, the darwin
305 // assembler requires that we print r0 as 0 (no r) when used as the base.
306 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattner4e972532010-04-04 04:47:45 +0000307 printRegister(MO, true, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000308 O << ", ";
Chris Lattner4e972532010-04-04 04:47:45 +0000309 printOperand(MI, OpNo+1, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000310 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000311
Chris Lattner4e972532010-04-04 04:47:45 +0000312 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo,
313 raw_ostream &O) {
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000314 const MachineOperand &MO = MI->getOperand(OpNo);
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000315 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
Chris Lattner82d07b72010-04-04 07:05:53 +0000316 MCSymbol *Sym = Mang->getSymbol(MO.getGlobal());
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000317
318 // Map symbol -> label of TOC entry.
Chris Lattner82d07b72010-04-04 07:05:53 +0000319 MCSymbol *&TOCEntry = TOC[Sym];
Chris Lattnerc3009922010-01-16 02:09:06 +0000320 if (TOCEntry == 0)
321 TOCEntry = OutContext.
Chris Lattner3b197832010-03-30 18:10:53 +0000322 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) +
323 "C" + Twine(LabelID++));
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000324
Chris Lattnerce409842010-01-17 21:43:43 +0000325 O << *TOCEntry << "@toc";
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000326 }
327
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000328 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner4e972532010-04-04 04:47:45 +0000329 raw_ostream &O, const char *Modifier);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330 };
331
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000332 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky492d06e2009-10-25 06:33:48 +0000333 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000334 public:
Chris Lattner3eac1ed2010-04-04 08:18:47 +0000335 explicit PPCLinuxAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
336 : PPCAsmPrinter(TM, Streamer) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000337
338 virtual const char *getPassName() const {
339 return "Linux PPC Assembly Printer";
340 }
341
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000342 bool doFinalization(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000343
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000344 virtual void EmitFunctionEntryLabel();
345
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000346 void getAnalysisUsage(AnalysisUsage &AU) const {
347 AU.setPreservesAll();
348 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000349 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000350 PPCAsmPrinter::getAnalysisUsage(AU);
351 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 };
353
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000354 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
355 /// OS X
Nick Lewycky492d06e2009-10-25 06:33:48 +0000356 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
Bill Wendling4f405312009-02-24 08:30:20 +0000357 public:
Chris Lattner3eac1ed2010-04-04 08:18:47 +0000358 explicit PPCDarwinAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
359 : PPCAsmPrinter(TM, Streamer) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000360
361 virtual const char *getPassName() const {
362 return "Darwin PPC Assembly Printer";
363 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000364
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000365 bool doFinalization(Module &M);
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000366 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000367
Chris Lattnerd5a83252010-01-20 21:36:48 +0000368 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Chris Lattner5b187502010-01-20 21:19:44 +0000369
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000370 void getAnalysisUsage(AnalysisUsage &AU) const {
371 AU.setPreservesAll();
372 AU.addRequired<MachineModuleInfo>();
Devang Patelaa1e8432009-01-08 23:40:34 +0000373 AU.addRequired<DwarfWriter>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000374 PPCAsmPrinter::getAnalysisUsage(AU);
375 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000376 };
377} // end of anonymous namespace
378
379// Include the auto-generated portion of the assembly writer
380#include "PPCGenAsmWriter.inc"
381
Chris Lattner4e972532010-04-04 04:47:45 +0000382void PPCAsmPrinter::printOp(const MachineOperand &MO, raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000383 switch (MO.getType()) {
384 case MachineOperand::MO_Immediate:
Edwin Törökbd448e32009-07-14 16:55:14 +0000385 llvm_unreachable("printOp() does not handle immediate values");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000386
387 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnerd13daf82010-03-13 21:04:28 +0000388 O << *MO.getMBB()->getSymbol();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389 return;
390 case MachineOperand::MO_JumpTableIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000391 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000392 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 // FIXME: PIC relocation model
394 return;
395 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000396 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner6017d482007-12-30 23:10:15 +0000397 << '_' << MO.getIndex();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000398 return;
Bob Wilsone8cbca92009-11-04 21:31:18 +0000399 case MachineOperand::MO_BlockAddress:
Chris Lattnerce409842010-01-17 21:43:43 +0000400 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilsone8cbca92009-11-04 21:31:18 +0000401 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000402 case MachineOperand::MO_ExternalSymbol: {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000403 // Computing the address of an external symbol, not calling it.
Chris Lattnerc3009922010-01-16 02:09:06 +0000404 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000405 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattnerc3009922010-01-16 02:09:06 +0000406 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000407 }
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000408
Chris Lattner77653062010-02-03 06:18:30 +0000409 MCSymbol *NLPSym =
Chris Lattnerc3009922010-01-16 02:09:06 +0000410 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
411 MO.getSymbolName()+"$non_lazy_ptr");
Bill Wendlingce996512010-03-10 22:34:10 +0000412 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000413 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
Bill Wendlingce996512010-03-10 22:34:10 +0000414 if (StubSym.getPointer() == 0)
415 StubSym = MachineModuleInfoImpl::
416 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000417
Chris Lattnerce409842010-01-17 21:43:43 +0000418 O << *NLPSym;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 return;
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000420 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000421 case MachineOperand::MO_GlobalAddress: {
422 // Computing the address of a global symbol, not calling it.
423 GlobalValue *GV = MO.getGlobal();
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000424 MCSymbol *SymToPrint;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000425
426 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000427 if (TM.getRelocationModel() != Reloc::Static &&
428 (GV->isDeclaration() || GV->isWeakForLinker())) {
429 if (!GV->hasHiddenVisibility()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000430 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Bill Wendlingce996512010-03-10 22:34:10 +0000431 MachineModuleInfoImpl::StubValueTy &StubSym =
432 MMI->getObjFileInfo<MachineModuleInfoMachO>()
433 .getGVStubEntry(SymToPrint);
434 if (StubSym.getPointer() == 0)
435 StubSym = MachineModuleInfoImpl::
Chris Lattner2acc03c2010-03-12 21:19:23 +0000436 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000437 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
438 GV->hasAvailableExternallyLinkage()) {
Chris Lattnera6f2a102010-01-16 18:37:32 +0000439 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000440
Bill Wendlingce996512010-03-10 22:34:10 +0000441 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000442 MMI->getObjFileInfo<MachineModuleInfoMachO>().
443 getHiddenGVStubEntry(SymToPrint);
Bill Wendlingce996512010-03-10 22:34:10 +0000444 if (StubSym.getPointer() == 0)
445 StubSym = MachineModuleInfoImpl::
Chris Lattner2acc03c2010-03-12 21:19:23 +0000446 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000447 } else {
Chris Lattner2acc03c2010-03-12 21:19:23 +0000448 SymToPrint = Mang->getSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000449 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000450 } else {
Chris Lattner2acc03c2010-03-12 21:19:23 +0000451 SymToPrint = Mang->getSymbol(GV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000452 }
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000453
Chris Lattnerce409842010-01-17 21:43:43 +0000454 O << *SymToPrint;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000455
Chris Lattner6d718812010-04-03 22:28:33 +0000456 printOffset(MO.getOffset(), O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000457 return;
458 }
459
460 default:
461 O << "<unknown operand type: " << MO.getType() << ">";
462 return;
463 }
464}
465
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466/// PrintAsmOperand - Print out an operand for an inline asm expression.
467///
468bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000469 unsigned AsmVariant,
Chris Lattner3eb5dc12010-04-04 05:29:35 +0000470 const char *ExtraCode, raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000471 // Does this asm operand have a single letter operand modifier?
472 if (ExtraCode && ExtraCode[0]) {
473 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000474
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 switch (ExtraCode[0]) {
476 default: return true; // Unknown modifier.
477 case 'c': // Don't print "$" before a global var name or constant.
478 // PPC never has a prefix.
Chris Lattner4e972532010-04-04 04:47:45 +0000479 printOperand(MI, OpNo, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000480 return false;
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000481 case 'L': // Write second word of DImode reference.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000482 // Verify that this operand has two consecutive registers.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000483 if (!MI->getOperand(OpNo).isReg() ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000484 OpNo+1 == MI->getNumOperands() ||
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000485 !MI->getOperand(OpNo+1).isReg())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000486 return true;
487 ++OpNo; // Return the high-part.
488 break;
489 case 'I':
490 // Write 'i' if an integer constant, otherwise nothing. Used to print
491 // addi vs add, etc.
Dan Gohmanb9f4fa72008-10-03 15:45:36 +0000492 if (MI->getOperand(OpNo).isImm())
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 O << "i";
494 return false;
495 }
496 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000497
Chris Lattner4e972532010-04-04 04:47:45 +0000498 printOperand(MI, OpNo, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000499 return false;
500}
501
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000502// At the moment, all inline asm memory operands are a single register.
503// In any case, the output of this routine should always be just one
504// assembler operand.
505
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000506bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000507 unsigned AsmVariant,
Chris Lattner3eb5dc12010-04-04 05:29:35 +0000508 const char *ExtraCode,
509 raw_ostream &O) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000510 if (ExtraCode && ExtraCode[0])
511 return true; // Unknown modifier.
Dale Johannesen0a42b9662009-08-18 00:18:39 +0000512 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen5e699502009-08-26 18:10:32 +0000513 O << "0(";
Chris Lattner4e972532010-04-04 04:47:45 +0000514 printOperand(MI, OpNo, O);
Dale Johannesen5e699502009-08-26 18:10:32 +0000515 O << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000516 return false;
517}
518
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000519void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner4e972532010-04-04 04:47:45 +0000520 raw_ostream &O, const char *Modifier){
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000521 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
522 unsigned Code = MI->getOperand(OpNo).getImm();
523 if (!strcmp(Modifier, "cc")) {
524 switch ((PPC::Predicate)Code) {
525 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
526 case PPC::PRED_LT: O << "lt"; return;
527 case PPC::PRED_LE: O << "le"; return;
528 case PPC::PRED_EQ: O << "eq"; return;
529 case PPC::PRED_GE: O << "ge"; return;
530 case PPC::PRED_GT: O << "gt"; return;
531 case PPC::PRED_NE: O << "ne"; return;
532 case PPC::PRED_UN: O << "un"; return;
533 case PPC::PRED_NU: O << "nu"; return;
534 }
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000535
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000536 } else {
537 assert(!strcmp(Modifier, "reg") &&
538 "Need to specify 'cc' or 'reg' as predicate op modifier!");
539 // Don't print the register for 'always'.
540 if (Code == PPC::PRED_ALWAYS) return;
Chris Lattner4e972532010-04-04 04:47:45 +0000541 printOperand(MI, OpNo+1, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000542 }
543}
544
545
Chris Lattner1d40b372010-01-28 01:28:58 +0000546/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000547/// the current output stream.
548///
Chris Lattner1d40b372010-01-28 01:28:58 +0000549void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Chris Lattner82d07b72010-04-04 07:05:53 +0000550 SmallString<128> Str;
551 raw_svector_ostream O(Str);
552
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000553 // Check for slwi/srwi mnemonics.
554 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000555 unsigned char SH = MI->getOperand(2).getImm();
556 unsigned char MB = MI->getOperand(3).getImm();
557 unsigned char ME = MI->getOperand(4).getImm();
Chris Lattner1d40b372010-01-28 01:28:58 +0000558 bool useSubstituteMnemonic = false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000559 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000560 O << "\tslwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 }
562 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesen760acc02010-01-06 02:20:18 +0000563 O << "\tsrwi "; useSubstituteMnemonic = true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000564 SH = 32-SH;
565 }
Dale Johannesen760acc02010-01-06 02:20:18 +0000566 if (useSubstituteMnemonic) {
Chris Lattner4e972532010-04-04 04:47:45 +0000567 printOperand(MI, 0, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 O << ", ";
Chris Lattner4e972532010-04-04 04:47:45 +0000569 printOperand(MI, 1, O);
Dale Johannesen760acc02010-01-06 02:20:18 +0000570 O << ", " << (unsigned int)SH;
Chris Lattner82d07b72010-04-04 07:05:53 +0000571 OutStreamer.EmitRawText(O.str());
Chris Lattner1d40b372010-01-28 01:28:58 +0000572 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573 }
Chris Lattner1d40b372010-01-28 01:28:58 +0000574 }
575
576 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
577 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
578 O << "\tmr ";
Chris Lattner4e972532010-04-04 04:47:45 +0000579 printOperand(MI, 0, O);
Chris Lattner1d40b372010-01-28 01:28:58 +0000580 O << ", ";
Chris Lattner4e972532010-04-04 04:47:45 +0000581 printOperand(MI, 1, O);
Chris Lattner82d07b72010-04-04 07:05:53 +0000582 OutStreamer.EmitRawText(O.str());
Chris Lattner1d40b372010-01-28 01:28:58 +0000583 return;
584 }
585
586 if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattnera96056a2007-12-30 20:49:49 +0000587 unsigned char SH = MI->getOperand(2).getImm();
588 unsigned char ME = MI->getOperand(3).getImm();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000589 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
590 if (63-SH == ME) {
Nate Begemanbd5cdf12008-02-05 08:49:09 +0000591 O << "\tsldi ";
Chris Lattner4e972532010-04-04 04:47:45 +0000592 printOperand(MI, 0, O);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 O << ", ";
Chris Lattner4e972532010-04-04 04:47:45 +0000594 printOperand(MI, 1, O);
Dale Johannesen760acc02010-01-06 02:20:18 +0000595 O << ", " << (unsigned int)SH;
Chris Lattner82d07b72010-04-04 07:05:53 +0000596 OutStreamer.EmitRawText(O.str());
Chris Lattner1d40b372010-01-28 01:28:58 +0000597 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000598 }
599 }
600
Chris Lattner82d07b72010-04-04 07:05:53 +0000601 printInstruction(MI, O);
602 OutStreamer.EmitRawText(O.str());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000603}
604
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000605void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
606 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
607 return AsmPrinter::EmitFunctionEntryLabel();
608
609 // Emit an official procedure descriptor.
610 // FIXME 64-bit SVR4: Use MCSection here!
Chris Lattner82d07b72010-04-04 07:05:53 +0000611 OutStreamer.EmitRawText(StringRef("\t.section\t\".opd\",\"aw\""));
612 OutStreamer.EmitRawText(StringRef("\t.align 3"));
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000613 OutStreamer.EmitLabel(CurrentFnSym);
Chris Lattner82d07b72010-04-04 07:05:53 +0000614 OutStreamer.EmitRawText("\t.quad .L." + Twine(CurrentFnSym->getName()) +
615 ",.TOC.@tocbase");
616 OutStreamer.EmitRawText(StringRef("\t.previous"));
617 OutStreamer.EmitRawText(".L." + Twine(CurrentFnSym->getName()) + ":");
Chris Lattneraec7a8a2010-01-27 07:21:55 +0000618}
619
620
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000621bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
622 const TargetData *TD = TM.getTargetData();
623
624 bool isPPC64 = TD->getPointerSizeInBits() == 64;
625
626 if (isPPC64 && !TOC.empty()) {
627 // FIXME 64-bit SVR4: Use MCSection here?
Chris Lattner82d07b72010-04-04 07:05:53 +0000628 OutStreamer.EmitRawText(StringRef("\t.section\t\".toc\",\"aw\""));
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000629
Chris Lattner5eeaf2a2010-01-16 02:00:23 +0000630 // FIXME: This is nondeterminstic!
Chris Lattner82d07b72010-04-04 07:05:53 +0000631 for (DenseMap<MCSymbol*, MCSymbol*>::iterator I = TOC.begin(),
Chris Lattnerc3009922010-01-16 02:09:06 +0000632 E = TOC.end(); I != E; ++I) {
Chris Lattner82d07b72010-04-04 07:05:53 +0000633 OutStreamer.EmitLabel(I->second);
634 OutStreamer.EmitRawText("\t.tc " + Twine(I->first->getName()) +
635 "[TC]," + I->first->getName());
Tilmann Scheller72cf2812009-08-15 11:54:46 +0000636 }
637 }
638
639 return AsmPrinter::doFinalization(M);
640}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000641
Bob Wilsonb5f835e2009-09-30 22:06:26 +0000642void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohman12300e12008-03-25 21:45:14 +0000643 static const char *const CPUDirectives[] = {
Dale Johannesen161badc2008-02-14 23:35:16 +0000644 "",
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000645 "ppc",
646 "ppc601",
647 "ppc602",
648 "ppc603",
649 "ppc7400",
650 "ppc750",
651 "ppc970",
652 "ppc64"
653 };
654
655 unsigned Directive = Subtarget.getDarwinDirective();
656 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
657 Directive = PPC::DIR_970;
658 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
659 Directive = PPC::DIR_7400;
660 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
661 Directive = PPC::DIR_64;
662 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Chris Lattner82d07b72010-04-04 07:05:53 +0000663 OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive]));
Anton Korobeynikov28f86d12008-08-08 18:22:59 +0000664
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000665 // Prime text sections so they are adjacent. This reduces the likelihood a
666 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattnerf4815552009-08-03 22:52:21 +0000667 TargetLoweringObjectFileMachO &TLOFMacho =
668 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner73266f92009-08-19 05:49:37 +0000669 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000670 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner73266f92009-08-19 05:49:37 +0000671 OutStreamer.SwitchSection(
672 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
673 MCSectionMachO::S_SYMBOL_STUBS |
674 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
675 32, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner73266f92009-08-19 05:49:37 +0000677 OutStreamer.SwitchSection(
678 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
679 MCSectionMachO::S_SYMBOL_STUBS |
680 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
681 16, SectionKind::getText()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000682 }
Chris Lattner73266f92009-08-19 05:49:37 +0000683 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000684}
685
Chris Lattner9bc9f692010-04-04 07:12:28 +0000686static MCSymbol *GetLazyPtr(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattnerd5a83252010-01-20 21:36:48 +0000687 // Remove $stub suffix, add $lazy_ptr.
688 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
689 TmpStr += "$lazy_ptr";
Chris Lattner3b197832010-03-30 18:10:53 +0000690 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000691}
692
Chris Lattner9bc9f692010-04-04 07:12:28 +0000693static MCSymbol *GetAnonSym(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattnerd5a83252010-01-20 21:36:48 +0000694 // Add $tmp suffix to $stub, yielding $stub$tmp.
695 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
696 TmpStr += "$tmp";
Chris Lattner3b197832010-03-30 18:10:53 +0000697 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000698}
699
700void PPCDarwinAsmPrinter::
701EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner5b187502010-01-20 21:19:44 +0000702 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
703
Chris Lattnerf4815552009-08-03 22:52:21 +0000704 TargetLoweringObjectFileMachO &TLOFMacho =
705 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner5b187502010-01-20 21:19:44 +0000706
707 // .lazy_symbol_pointer
708 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattner72a676a2009-08-10 01:39:42 +0000709
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000710 // Output stubs for dynamically-linked functions
Chris Lattner5b187502010-01-20 21:19:44 +0000711 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerf4815552009-08-03 22:52:21 +0000712 const MCSection *StubSection =
Chris Lattner5b187502010-01-20 21:19:44 +0000713 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
714 MCSectionMachO::S_SYMBOL_STUBS |
715 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
716 32, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000717 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner73266f92009-08-19 05:49:37 +0000718 OutStreamer.SwitchSection(StubSection);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000719 EmitAlignment(4);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000720
Chris Lattner82d07b72010-04-04 07:05:53 +0000721 MCSymbol *Stub = Stubs[i].first;
Chris Lattner9bc9f692010-04-04 07:12:28 +0000722 MCSymbol *RawSym = Stubs[i].second.getPointer();
723 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
724 MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000725
Chris Lattner82d07b72010-04-04 07:05:53 +0000726 OutStreamer.EmitLabel(Stub);
Chris Lattner9bc9f692010-04-04 07:12:28 +0000727 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
728 // FIXME: MCize this.
Chris Lattner5c30d712010-04-04 07:17:25 +0000729 OutStreamer.EmitRawText(StringRef("\tmflr r0"));
730 OutStreamer.EmitRawText("\tbcl 20,31," + Twine(AnonSymbol->getName()));
Chris Lattner9bc9f692010-04-04 07:12:28 +0000731 OutStreamer.EmitLabel(AnonSymbol);
Chris Lattner5c30d712010-04-04 07:17:25 +0000732 OutStreamer.EmitRawText(StringRef("\tmflr r11"));
733 OutStreamer.EmitRawText("\taddis r11,r11,ha16("+Twine(LazyPtr->getName())+
734 "-" + AnonSymbol->getName() + ")");
735 OutStreamer.EmitRawText(StringRef("\tmtlr r0"));
736
737 if (isPPC64)
738 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
739 "-" + AnonSymbol->getName() + ")(r11)");
740 else
741 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
742 "-" + AnonSymbol->getName() + ")(r11)");
743 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
744 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattnerc0a7f1d2009-07-16 01:23:26 +0000745
Chris Lattner73266f92009-08-19 05:49:37 +0000746 OutStreamer.SwitchSection(LSPSection);
Chris Lattner9bc9f692010-04-04 07:12:28 +0000747 OutStreamer.EmitLabel(LazyPtr);
748 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner5c30d712010-04-04 07:17:25 +0000749
750 if (isPPC64)
751 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
752 else
753 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754 }
Chris Lattner82d07b72010-04-04 07:05:53 +0000755 OutStreamer.AddBlankLine();
Chris Lattner5b187502010-01-20 21:19:44 +0000756 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000757 }
Chris Lattner5b187502010-01-20 21:19:44 +0000758
759 const MCSection *StubSection =
760 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
761 MCSectionMachO::S_SYMBOL_STUBS |
762 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
763 16, SectionKind::getText());
Chris Lattnerd5a83252010-01-20 21:36:48 +0000764 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner82d07b72010-04-04 07:05:53 +0000765 MCSymbol *Stub = Stubs[i].first;
Chris Lattner9bc9f692010-04-04 07:12:28 +0000766 MCSymbol *RawSym = Stubs[i].second.getPointer();
767 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
Chris Lattnerd5a83252010-01-20 21:36:48 +0000768
Chris Lattner5b187502010-01-20 21:19:44 +0000769 OutStreamer.SwitchSection(StubSection);
770 EmitAlignment(4);
Chris Lattner82d07b72010-04-04 07:05:53 +0000771 OutStreamer.EmitLabel(Stub);
Chris Lattner9bc9f692010-04-04 07:12:28 +0000772 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner5c30d712010-04-04 07:17:25 +0000773 OutStreamer.EmitRawText("\tlis r11,ha16(" + Twine(LazyPtr->getName()) +")");
774 if (isPPC64)
775 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
776 ")(r11)");
777 else
778 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
779 ")(r11)");
780 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
781 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattner5b187502010-01-20 21:19:44 +0000782 OutStreamer.SwitchSection(LSPSection);
Chris Lattner9bc9f692010-04-04 07:12:28 +0000783 OutStreamer.EmitLabel(LazyPtr);
784 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner5c30d712010-04-04 07:17:25 +0000785
786 if (isPPC64)
787 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
788 else
789 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Chris Lattner5b187502010-01-20 21:19:44 +0000790 }
791
Chris Lattner9bc9f692010-04-04 07:12:28 +0000792 OutStreamer.AddBlankLine();
Chris Lattner5b187502010-01-20 21:19:44 +0000793}
794
795
796bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
797 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
798
799 // Darwin/PPC always uses mach-o.
800 TargetLoweringObjectFileMachO &TLOFMacho =
801 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
802 MachineModuleInfoMachO &MMIMacho =
803 MMI->getObjFileInfo<MachineModuleInfoMachO>();
804
Chris Lattnerd5a83252010-01-20 21:36:48 +0000805 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
806 if (!Stubs.empty())
807 EmitFunctionStubs(Stubs);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000808
Chris Lattnera5ef4d32009-08-22 21:43:10 +0000809 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000810 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen85535762008-04-02 00:25:04 +0000811 // Only referenced functions get into the Personalities list.
Chris Lattner2424eac2009-06-24 19:09:55 +0000812 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000813 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000814 E = Personalities.end(); I != E; ++I) {
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000815 if (*I) {
Chris Lattner77653062010-02-03 06:18:30 +0000816 MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Bill Wendlingce996512010-03-10 22:34:10 +0000817 MachineModuleInfoImpl::StubValueTy &StubSym =
818 MMIMacho.getGVStubEntry(NLPSym);
Chris Lattner2acc03c2010-03-12 21:19:23 +0000819 StubSym = MachineModuleInfoImpl::StubValueTy(Mang->getSymbol(*I), true);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000820 }
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000821 }
Dale Johannesenfb3ac732007-11-20 23:24:42 +0000822 }
823
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000824 // Output stubs for dynamically-linked functions.
Chris Lattnerd5a83252010-01-20 21:36:48 +0000825 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000826
Chris Lattnerf4815552009-08-03 22:52:21 +0000827 // Output macho stubs for external and common global variables.
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000828 if (!Stubs.empty()) {
Chris Lattner72a676a2009-08-10 01:39:42 +0000829 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner73266f92009-08-19 05:49:37 +0000830 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattner2d61eaa2009-08-10 17:58:51 +0000831 EmitAlignment(isPPC64 ? 3 : 2);
832
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000833 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendlingd4fba932010-03-11 23:39:44 +0000834 // L_foo$stub:
835 OutStreamer.EmitLabel(Stubs[i].first);
836 // .indirect_symbol _foo
837 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
838 OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
Bill Wendling87913bf2010-03-12 02:00:43 +0000839
840 if (MCSym.getInt())
841 // External to current translation unit.
842 OutStreamer.EmitIntValue(0, isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
843 else
844 // Internal to current translation unit.
Bill Wendlingdfd093f2010-03-31 18:47:10 +0000845 //
846 // When we place the LSDA into the TEXT section, the type info pointers
847 // need to be indirect and pc-rel. We accomplish this by using NLPs.
848 // However, sometimes the types are local to the file. So we need to
849 // fill in the value for the NLP in those cases.
Bill Wendling87913bf2010-03-12 02:00:43 +0000850 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
851 OutContext),
852 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000853 }
Bill Wendlingd4fba932010-03-11 23:39:44 +0000854
855 Stubs.clear();
856 OutStreamer.AddBlankLine();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000857 }
858
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000859 Stubs = MMIMacho.GetHiddenGVStubList();
860 if (!Stubs.empty()) {
Chris Lattner73266f92009-08-19 05:49:37 +0000861 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner83cf1ec2009-07-15 01:14:44 +0000862 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerc2cfe152010-01-20 21:16:14 +0000863
864 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendlingd4fba932010-03-11 23:39:44 +0000865 // L_foo$stub:
866 OutStreamer.EmitLabel(Stubs[i].first);
867 // .long _foo
868 OutStreamer.EmitValue(MCSymbolRefExpr::
869 Create(Stubs[i].second.getPointer(),
870 OutContext),
871 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Evan Chenga65854f2008-12-05 01:06:39 +0000872 }
Bill Wendlingd4fba932010-03-11 23:39:44 +0000873
874 Stubs.clear();
875 OutStreamer.AddBlankLine();
Evan Chenga65854f2008-12-05 01:06:39 +0000876 }
877
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000878 // Funny Darwin hack: This flag tells the linker that no global symbols
879 // contain code that falls through to other global symbols (e.g. the obvious
880 // implementation of multiple entry points). If this doesn't occur, the
881 // linker can safely perform dead code stripping. Since LLVM never generates
882 // code that does this, it is always safe to set.
Chris Lattner2d7c8142010-01-23 06:39:22 +0000883 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000884
Dan Gohman4a558a32007-07-25 19:33:14 +0000885 return AsmPrinter::doFinalization(M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000886}
887
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000888/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
889/// for a MachineFunction to the given output stream, in a format that the
890/// Darwin assembler can deal with.
891///
Chris Lattner3eac1ed2010-04-04 08:18:47 +0000892static AsmPrinter *createPPCAsmPrinterPass(TargetMachine &tm,
Chris Lattnerf4853452010-03-13 20:55:24 +0000893 MCStreamer &Streamer) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000894 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
895
Chris Lattnerae982212009-07-21 18:38:57 +0000896 if (Subtarget->isDarwin())
Chris Lattner3eac1ed2010-04-04 08:18:47 +0000897 return new PPCDarwinAsmPrinter(tm, Streamer);
898 return new PPCLinuxAsmPrinter(tm, Streamer);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000899}
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +0000900
Bob Wilsonebbc1c42009-06-23 23:59:40 +0000901// Force static initialization.
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000902extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000903 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000904 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
905}