blob: 833a83ede62a487a423c77adec82c2dbdb8c48c5 [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 Lattnerf9bdedd2009-08-10 18:15:01 +000038#include "llvm/MC/MCSectionMachO.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000039#include "llvm/MC/MCStreamer.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000040#include "llvm/MC/MCSymbol.h"
Chris Lattner45111d12010-01-16 21:57:06 +000041#include "llvm/Target/Mangler.h"
Chris Lattnera87dea42009-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"
Devang Patel40e0bad2010-08-04 22:07:50 +000046#include "llvm/Support/Debug.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000047#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000048#include "llvm/Support/ErrorHandling.h"
Chris Lattnerb23569a2010-04-04 08:18:47 +000049#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000050#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000051#include "llvm/ADT/StringSet.h"
Chris Lattner48130352010-01-13 06:38:18 +000052#include "llvm/ADT/SmallString.h"
Chris Lattner60d5b5f2010-11-14 19:40:38 +000053#include "InstPrinter/PPCInstPrinter.h"
Chris Lattnera3840792004-08-16 23:25:21 +000054using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000055
Chris Lattner95b2c7d2006-12-19 22:59:26 +000056namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000057 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +000058 protected:
Chris Lattner9d7efd32010-04-04 07:05:53 +000059 DenseMap<MCSymbol*, MCSymbol*> TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000060 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000061 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000062 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +000063 explicit PPCAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
64 : AsmPrinter(TM, Streamer),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000065 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000066
Misha Brukman5dfe3a92004-06-21 16:55:25 +000067 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000068 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000069 }
70
Nate Begemanadeb43d2005-07-20 22:42:00 +000071 unsigned enumRegToMachineReg(unsigned enumReg) {
72 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +000073 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +000074 case PPC::CR0: return 0;
75 case PPC::CR1: return 1;
76 case PPC::CR2: return 2;
77 case PPC::CR3: return 3;
78 case PPC::CR4: return 4;
79 case PPC::CR5: return 5;
80 case PPC::CR6: return 6;
81 case PPC::CR7: return 7;
82 }
Torok Edwinc23197a2009-07-14 16:55:14 +000083 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +000084 }
85
Nate Begemane59bf592004-08-14 22:09:10 +000086 /// printInstruction - This method is automatically generated by tablegen
87 /// from the instruction set description. This method returns true if the
88 /// machine instruction was sufficiently described to print it, otherwise it
89 /// returns false.
Chris Lattner35c33bd2010-04-04 04:47:45 +000090 void printInstruction(const MachineInstr *MI, raw_ostream &O);
Chris Lattnerd95148f2009-09-13 20:19:22 +000091 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +000092
Nate Begemane59bf592004-08-14 22:09:10 +000093
Chris Lattnerd49fe1b2010-01-28 01:28:58 +000094 virtual void EmitInstruction(const MachineInstr *MI);
Chris Lattner35c33bd2010-04-04 04:47:45 +000095 void printOp(const MachineOperand &MO, raw_ostream &O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +000096
Jim Laskeyb608a4d2006-12-20 20:56:46 +000097 /// stripRegisterPrefix - This method strips the character prefix from a
98 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +000099 const char *stripRegisterPrefix(const char *RegName) {
100 switch (RegName[0]) {
101 case 'r':
102 case 'f':
103 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000104 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000105 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000106
Jim Laskey40ee69f2006-12-20 21:33:34 +0000107 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000108 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000109
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000110 /// printRegister - Print register according to target requirements.
111 ///
Chris Lattner35c33bd2010-04-04 04:47:45 +0000112 void printRegister(const MachineOperand &MO, bool R0AsZero, raw_ostream &O){
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000113 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000114 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000115
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000116 // If we should use 0 for R0.
117 if (R0AsZero && RegNo == PPC::R0) {
118 O << "0";
119 return;
120 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000121
Chris Lattner762ccea2009-09-13 20:31:40 +0000122 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000123 // Linux assembler (Others?) does not take register mnemonics.
124 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000125 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
126 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000127 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000128
Chris Lattner35c33bd2010-04-04 04:47:45 +0000129 void printOperand(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000130 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000131 if (MO.isReg()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000132 printRegister(MO, false, O);
Dan Gohmand735b802008-10-03 15:45:36 +0000133 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000134 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000135 } else {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000136 printOp(MO, O);
Chris Lattner7bb424f2004-08-14 23:27:29 +0000137 }
138 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000139
Chris Lattner58873272006-02-01 22:38:46 +0000140 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000141 unsigned AsmVariant, const char *ExtraCode,
142 raw_ostream &O);
Chris Lattner2c003e22006-02-24 20:27:40 +0000143 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000144 unsigned AsmVariant, const char *ExtraCode,
145 raw_ostream &O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000146
147
Chris Lattner35c33bd2010-04-04 04:47:45 +0000148 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo,
149 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000150 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000151 value = (value << (32-5)) >> (32-5);
152 O << (int)value;
153 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000154 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo,
155 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000156 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000157 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000158 O << (unsigned int)value;
159 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000160 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo,
161 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000162 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000163 assert(value <= 63 && "Invalid u6imm argument!");
164 O << (unsigned int)value;
165 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000166 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo,
167 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000168 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000169 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000170 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo,
171 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000172 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000173 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000174 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo,
175 raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000176 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000177 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000178 } else {
179 O << "lo16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000180 printOp(MI->getOperand(OpNo), O);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000181 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000182 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000183 else
184 O << ')';
185 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000186 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000187 void printBranchOperand(const MachineInstr *MI, unsigned OpNo,
188 raw_ostream &O) {
Nate Begemaned428532004-09-04 05:00:00 +0000189 // Branches can take an immediate operand. This is used by the branch
190 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000191 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000192 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000193 } else {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000194 printOp(MI->getOperand(OpNo), O);
Nate Begemaned428532004-09-04 05:00:00 +0000195 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000196 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000197 void printCallOperand(const MachineInstr *MI, unsigned OpNo,
198 raw_ostream &O) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000199 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000200 if (TM.getRelocationModel() != Reloc::Static) {
Devang Patela00adba2010-04-27 22:24:37 +0000201 if (MO.isGlobal()) {
Dan Gohman46510a72010-04-15 01:51:59 +0000202 const GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000203 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000204 // Dynamically-resolved functions need a stub for the function.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000205 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
Bill Wendlingcebae362010-03-10 22:34:10 +0000206 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattner73a1aa02010-01-20 21:36:48 +0000207 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000208 if (StubSym.getPointer() == 0)
209 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000210 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000211 O << *Sym;
Chris Lattnera637c322005-12-16 00:22:14 +0000212 return;
213 }
214 }
Devang Patela00adba2010-04-27 22:24:37 +0000215 if (MO.isSymbol()) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000216 SmallString<128> TempNameStr;
217 TempNameStr += StringRef(MO.getSymbolName());
218 TempNameStr += StringRef("$stub");
219
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000220 MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
Bill Wendlingcebae362010-03-10 22:34:10 +0000221 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattner73a1aa02010-01-20 21:36:48 +0000222 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000223 if (StubSym.getPointer() == 0)
224 StubSym = MachineModuleInfoImpl::
225 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000226 O << *Sym;
Chris Lattner9542f9712005-11-17 19:40:30 +0000227 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000228 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000229 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000230
Chris Lattner35c33bd2010-04-04 04:47:45 +0000231 printOp(MI->getOperand(OpNo), O);
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000232 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000233 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo,
234 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000235 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000236 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000237 void printPICLabel(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000238 O << "\"L" << getFunctionNumber() << "$pb\"\n";
239 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000240 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000241 void printSymbolHi(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000242 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000243 printS16ImmOperand(MI, OpNo, O);
Nate Begeman2497e632005-07-21 20:44:43 +0000244 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000245 if (Subtarget.isDarwin()) O << "ha16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000246 printOp(MI->getOperand(OpNo), O);
Chris Lattner35d86fe2006-07-26 21:12:04 +0000247 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000248 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000249 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000250 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000251 else
252 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000253 }
Nate Begemaned428532004-09-04 05:00:00 +0000254 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000255 void printSymbolLo(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000256 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000257 printS16ImmOperand(MI, OpNo, O);
Nate Begemaned428532004-09-04 05:00:00 +0000258 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000259 if (Subtarget.isDarwin()) O << "lo16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000260 printOp(MI->getOperand(OpNo), O);
Chris Lattner35d86fe2006-07-26 21:12:04 +0000261 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000262 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000263 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000264 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000265 else
266 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000267 }
268 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000269 void printcrbitm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000270 unsigned CCReg = MI->getOperand(OpNo).getReg();
271 unsigned RegNo = enumRegToMachineReg(CCReg);
272 O << (0x80 >> RegNo);
273 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000274 // The new addressing mode printers.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000275 void printMemRegImm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
276 printSymbolLo(MI, OpNo, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000277 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000278 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000279 MI->getOperand(OpNo+1).getReg() == PPC::R0)
280 O << "0";
281 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000282 printOperand(MI, OpNo+1, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000283 O << ')';
284 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000285 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo,
286 raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000287 if (MI->getOperand(OpNo).isImm())
Chris Lattner35c33bd2010-04-04 04:47:45 +0000288 printS16X4ImmOperand(MI, OpNo, O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000289 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000290 printSymbolLo(MI, OpNo, O);
Chris Lattnere5ba5802006-03-22 05:26:03 +0000291 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000292 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000293 MI->getOperand(OpNo+1).getReg() == PPC::R0)
294 O << "0";
295 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000296 printOperand(MI, OpNo+1, O);
Chris Lattnere5ba5802006-03-22 05:26:03 +0000297 O << ')';
298 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000299
Chris Lattner35c33bd2010-04-04 04:47:45 +0000300 void printMemRegReg(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Nate Begeman88276b82005-12-19 23:40:42 +0000301 // When used as the base register, r0 reads constant zero rather than
302 // the value contained in the register. For this reason, the darwin
303 // assembler requires that we print r0 as 0 (no r) when used as the base.
304 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattner35c33bd2010-04-04 04:47:45 +0000305 printRegister(MO, true, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000306 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000307 printOperand(MI, OpNo+1, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000308 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000309
Chris Lattner35c33bd2010-04-04 04:47:45 +0000310 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo,
311 raw_ostream &O) {
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000312 const MachineOperand &MO = MI->getOperand(OpNo);
Devang Patela00adba2010-04-27 22:24:37 +0000313 assert(MO.isGlobal());
Chris Lattner9d7efd32010-04-04 07:05:53 +0000314 MCSymbol *Sym = Mang->getSymbol(MO.getGlobal());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000315
316 // Map symbol -> label of TOC entry.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000317 MCSymbol *&TOCEntry = TOC[Sym];
Chris Lattner75abc682010-01-16 02:09:06 +0000318 if (TOCEntry == 0)
319 TOCEntry = OutContext.
Chris Lattner9b97a732010-03-30 18:10:53 +0000320 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) +
321 "C" + Twine(LabelID++));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000322
Chris Lattner10b318b2010-01-17 21:43:43 +0000323 O << *TOCEntry << "@toc";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000324 }
325
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000326 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000327 raw_ostream &O, const char *Modifier);
Devang Patel40e0bad2010-08-04 22:07:50 +0000328
329 MachineLocation getDebugValueLocation(const MachineInstr *MI) const {
330
331 MachineLocation Location;
332 assert (MI->getNumOperands() == 4 && "Invalid no. of machine operands!");
333 // Frame address. Currently handles register +- offset only.
334 if (MI->getOperand(0).isReg() && MI->getOperand(2).isImm())
335 Location.set(MI->getOperand(0).getReg(), MI->getOperand(2).getImm());
336 else {
337 DEBUG(dbgs() << "DBG_VALUE instruction ignored! " << *MI << "\n");
338 }
339 return Location;
340 }
Nate Begemaned428532004-09-04 05:00:00 +0000341 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000342
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000343 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000344 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000345 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +0000346 explicit PPCLinuxAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
347 : PPCAsmPrinter(TM, Streamer) {}
Jim Laskeybf111822006-12-21 20:26:09 +0000348
349 virtual const char *getPassName() const {
350 return "Linux PPC Assembly Printer";
351 }
352
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000353 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000354
Chris Lattner2cf72512010-01-27 07:21:55 +0000355 virtual void EmitFunctionEntryLabel();
Jim Laskeybf111822006-12-21 20:26:09 +0000356 };
357
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000358 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
359 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000360 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000361 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +0000362 explicit PPCDarwinAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
363 : PPCAsmPrinter(TM, Streamer) {}
Nate Begemaned428532004-09-04 05:00:00 +0000364
365 virtual const char *getPassName() const {
366 return "Darwin PPC Assembly Printer";
367 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000368
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000369 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000370 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000371
Chris Lattner73a1aa02010-01-20 21:36:48 +0000372 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000373 };
374} // end of anonymous namespace
375
Nate Begemane59bf592004-08-14 22:09:10 +0000376// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000377#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000378
Chris Lattner35c33bd2010-04-04 04:47:45 +0000379void PPCAsmPrinter::printOp(const MachineOperand &MO, raw_ostream &O) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000380 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000381 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000382 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000383
Nate Begeman37efe672006-04-22 18:53:45 +0000384 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000385 O << *MO.getMBB()->getSymbol();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000386 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000387 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000388 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000389 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000390 // FIXME: PIC relocation model
391 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000392 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000393 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000394 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000395 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000396 case MachineOperand::MO_BlockAddress:
Chris Lattner10b318b2010-01-17 21:43:43 +0000397 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000398 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000399 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000400 // Computing the address of an external symbol, not calling it.
Chris Lattner75abc682010-01-16 02:09:06 +0000401 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000402 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner75abc682010-01-16 02:09:06 +0000403 return;
Chris Lattnera637c322005-12-16 00:22:14 +0000404 }
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000405
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000406 MCSymbol *NLPSym =
Chris Lattner75abc682010-01-16 02:09:06 +0000407 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
408 MO.getSymbolName()+"$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000409 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000410 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000411 if (StubSym.getPointer() == 0)
412 StubSym = MachineModuleInfoImpl::
413 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000414
Chris Lattner10b318b2010-01-17 21:43:43 +0000415 O << *NLPSym;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000416 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000417 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000418 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000419 // Computing the address of a global symbol, not calling it.
Dan Gohman46510a72010-04-15 01:51:59 +0000420 const GlobalValue *GV = MO.getGlobal();
Chris Lattnera40128c2010-01-16 02:00:23 +0000421 MCSymbol *SymToPrint;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000422
Nate Begemanfcf4a422004-10-17 23:01:34 +0000423 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000424 if (TM.getRelocationModel() != Reloc::Static &&
425 (GV->isDeclaration() || GV->isWeakForLinker())) {
426 if (!GV->hasHiddenVisibility()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000427 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000428 MachineModuleInfoImpl::StubValueTy &StubSym =
429 MMI->getObjFileInfo<MachineModuleInfoMachO>()
430 .getGVStubEntry(SymToPrint);
431 if (StubSym.getPointer() == 0)
432 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000433 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000434 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
435 GV->hasAvailableExternallyLinkage()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000436 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000437
Bill Wendlingcebae362010-03-10 22:34:10 +0000438 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000439 MMI->getObjFileInfo<MachineModuleInfoMachO>().
440 getHiddenGVStubEntry(SymToPrint);
Bill Wendlingcebae362010-03-10 22:34:10 +0000441 if (StubSym.getPointer() == 0)
442 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000443 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000444 } else {
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000445 SymToPrint = Mang->getSymbol(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000446 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000447 } else {
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000448 SymToPrint = Mang->getSymbol(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000449 }
Chris Lattnera40128c2010-01-16 02:00:23 +0000450
Chris Lattner10b318b2010-01-17 21:43:43 +0000451 O << *SymToPrint;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000452
Chris Lattner0c08d092010-04-03 22:28:33 +0000453 printOffset(MO.getOffset(), O);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000454 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000455 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000456
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000457 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000458 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000459 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000460 }
461}
462
Chris Lattnere3f01572006-02-23 19:31:10 +0000463/// PrintAsmOperand - Print out an operand for an inline asm expression.
464///
465bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000466 unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000467 const char *ExtraCode, raw_ostream &O) {
Chris Lattnere3f01572006-02-23 19:31:10 +0000468 // Does this asm operand have a single letter operand modifier?
469 if (ExtraCode && ExtraCode[0]) {
470 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000471
Chris Lattnere3f01572006-02-23 19:31:10 +0000472 switch (ExtraCode[0]) {
473 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000474 case 'c': // Don't print "$" before a global var name or constant.
475 // PPC never has a prefix.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000476 printOperand(MI, OpNo, O);
Chris Lattner78192b62007-01-25 02:52:50 +0000477 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000478 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000479 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000480 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000481 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000482 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000483 return true;
484 ++OpNo; // Return the high-part.
485 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000486 case 'I':
487 // Write 'i' if an integer constant, otherwise nothing. Used to print
488 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000489 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000490 O << "i";
491 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000492 }
493 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000494
Chris Lattner35c33bd2010-04-04 04:47:45 +0000495 printOperand(MI, OpNo, O);
Chris Lattnere3f01572006-02-23 19:31:10 +0000496 return false;
497}
498
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000499// At the moment, all inline asm memory operands are a single register.
500// In any case, the output of this routine should always be just one
501// assembler operand.
502
Chris Lattner2c003e22006-02-24 20:27:40 +0000503bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000504 unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000505 const char *ExtraCode,
506 raw_ostream &O) {
Chris Lattner2c003e22006-02-24 20:27:40 +0000507 if (ExtraCode && ExtraCode[0])
508 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000509 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000510 O << "0(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000511 printOperand(MI, OpNo, O);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000512 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000513 return false;
514}
Chris Lattnere3f01572006-02-23 19:31:10 +0000515
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000516void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000517 raw_ostream &O, const char *Modifier){
Chris Lattneraf53a872006-11-04 05:27:39 +0000518 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
519 unsigned Code = MI->getOperand(OpNo).getImm();
520 if (!strcmp(Modifier, "cc")) {
521 switch ((PPC::Predicate)Code) {
522 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
523 case PPC::PRED_LT: O << "lt"; return;
524 case PPC::PRED_LE: O << "le"; return;
525 case PPC::PRED_EQ: O << "eq"; return;
526 case PPC::PRED_GE: O << "ge"; return;
527 case PPC::PRED_GT: O << "gt"; return;
528 case PPC::PRED_NE: O << "ne"; return;
529 case PPC::PRED_UN: O << "un"; return;
530 case PPC::PRED_NU: O << "nu"; return;
531 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000532
Chris Lattneraf53a872006-11-04 05:27:39 +0000533 } else {
534 assert(!strcmp(Modifier, "reg") &&
535 "Need to specify 'cc' or 'reg' as predicate op modifier!");
536 // Don't print the register for 'always'.
537 if (Code == PPC::PRED_ALWAYS) return;
Chris Lattner35c33bd2010-04-04 04:47:45 +0000538 printOperand(MI, OpNo+1, O);
Chris Lattneraf53a872006-11-04 05:27:39 +0000539 }
540}
541
542
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000543/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
Nate Begemane59bf592004-08-14 22:09:10 +0000544/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000545///
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000546void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000547 SmallString<128> Str;
548 raw_svector_ostream O(Str);
549
Dale Johannesenefc3a632010-04-26 20:05:01 +0000550 if (MI->getOpcode() == TargetOpcode::DBG_VALUE) {
551 unsigned NOps = MI->getNumOperands();
552 assert(NOps==4);
553 O << '\t' << MAI->getCommentString() << "DEBUG_VALUE: ";
554 // cast away const; DIetc do not take const operands for some reason.
555 DIVariable V(const_cast<MDNode *>(MI->getOperand(NOps-1).getMetadata()));
556 O << V.getName();
557 O << " <- ";
558 // Frame address. Currently handles register +- offset only.
559 assert(MI->getOperand(0).isReg() && MI->getOperand(1).isImm());
560 O << '['; printOperand(MI, 0, O); O << '+'; printOperand(MI, 1, O);
561 O << ']';
562 O << "+";
563 printOperand(MI, NOps-2, O);
564 OutStreamer.EmitRawText(O.str());
565 return;
566 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000567 // Check for slwi/srwi mnemonics.
568 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000569 unsigned char SH = MI->getOperand(2).getImm();
570 unsigned char MB = MI->getOperand(3).getImm();
571 unsigned char ME = MI->getOperand(4).getImm();
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000572 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000573 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000574 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000575 }
576 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000577 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000578 SH = 32-SH;
579 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000580 if (useSubstituteMnemonic) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000581 printOperand(MI, 0, O);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000582 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000583 printOperand(MI, 1, O);
Dale Johannesene89c5102010-01-06 02:20:18 +0000584 O << ", " << (unsigned int)SH;
Chris Lattner9d7efd32010-04-04 07:05:53 +0000585 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000586 return;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000587 }
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000588 }
589
590 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
591 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
592 O << "\tmr ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000593 printOperand(MI, 0, O);
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000594 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000595 printOperand(MI, 1, O);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000596 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000597 return;
598 }
599
600 if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000601 unsigned char SH = MI->getOperand(2).getImm();
602 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000603 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
604 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000605 O << "\tsldi ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000606 printOperand(MI, 0, O);
Chris Lattner566c1b12006-11-18 01:23:56 +0000607 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000608 printOperand(MI, 1, O);
Dale Johannesene89c5102010-01-06 02:20:18 +0000609 O << ", " << (unsigned int)SH;
Chris Lattner9d7efd32010-04-04 07:05:53 +0000610 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000611 return;
Chris Lattner566c1b12006-11-18 01:23:56 +0000612 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000613 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000614
Chris Lattner9d7efd32010-04-04 07:05:53 +0000615 printInstruction(MI, O);
616 OutStreamer.EmitRawText(O.str());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000617}
618
Chris Lattner2cf72512010-01-27 07:21:55 +0000619void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
620 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
621 return AsmPrinter::EmitFunctionEntryLabel();
622
623 // Emit an official procedure descriptor.
624 // FIXME 64-bit SVR4: Use MCSection here!
Chris Lattner9d7efd32010-04-04 07:05:53 +0000625 OutStreamer.EmitRawText(StringRef("\t.section\t\".opd\",\"aw\""));
626 OutStreamer.EmitRawText(StringRef("\t.align 3"));
Chris Lattner2cf72512010-01-27 07:21:55 +0000627 OutStreamer.EmitLabel(CurrentFnSym);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000628 OutStreamer.EmitRawText("\t.quad .L." + Twine(CurrentFnSym->getName()) +
629 ",.TOC.@tocbase");
630 OutStreamer.EmitRawText(StringRef("\t.previous"));
631 OutStreamer.EmitRawText(".L." + Twine(CurrentFnSym->getName()) + ":");
Chris Lattner2cf72512010-01-27 07:21:55 +0000632}
633
634
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000635bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
636 const TargetData *TD = TM.getTargetData();
637
638 bool isPPC64 = TD->getPointerSizeInBits() == 64;
639
640 if (isPPC64 && !TOC.empty()) {
641 // FIXME 64-bit SVR4: Use MCSection here?
Chris Lattner9d7efd32010-04-04 07:05:53 +0000642 OutStreamer.EmitRawText(StringRef("\t.section\t\".toc\",\"aw\""));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000643
Chris Lattnera40128c2010-01-16 02:00:23 +0000644 // FIXME: This is nondeterminstic!
Chris Lattner9d7efd32010-04-04 07:05:53 +0000645 for (DenseMap<MCSymbol*, MCSymbol*>::iterator I = TOC.begin(),
Chris Lattner75abc682010-01-16 02:09:06 +0000646 E = TOC.end(); I != E; ++I) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000647 OutStreamer.EmitLabel(I->second);
648 OutStreamer.EmitRawText("\t.tc " + Twine(I->first->getName()) +
649 "[TC]," + I->first->getName());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000650 }
651 }
652
653 return AsmPrinter::doFinalization(M);
654}
Jim Laskeybf111822006-12-21 20:26:09 +0000655
Bob Wilson812209a2009-09-30 22:06:26 +0000656void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000657 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000658 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000659 "ppc",
660 "ppc601",
661 "ppc602",
662 "ppc603",
663 "ppc7400",
664 "ppc750",
665 "ppc970",
666 "ppc64"
667 };
668
669 unsigned Directive = Subtarget.getDarwinDirective();
670 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
671 Directive = PPC::DIR_970;
672 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
673 Directive = PPC::DIR_7400;
674 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
675 Directive = PPC::DIR_64;
676 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Chris Lattner9d7efd32010-04-04 07:05:53 +0000677 OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive]));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000678
Jim Laskey2ada0852006-11-28 18:21:52 +0000679 // Prime text sections so they are adjacent. This reduces the likelihood a
680 // large data or debug section causes a branch to exceed 16M limit.
Dan Gohman0d805c32010-04-17 16:44:48 +0000681 const TargetLoweringObjectFileMachO &TLOFMacho =
682 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000683 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000684 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000685 OutStreamer.SwitchSection(
Chris Lattner22772212010-04-08 20:40:11 +0000686 OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000687 MCSectionMachO::S_SYMBOL_STUBS |
688 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
689 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000690 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000691 OutStreamer.SwitchSection(
Chris Lattner22772212010-04-08 20:40:11 +0000692 OutContext.getMachOSection("__TEXT","__symbol_stub1",
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000693 MCSectionMachO::S_SYMBOL_STUBS |
694 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
695 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000696 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000697 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000698}
699
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000700static MCSymbol *GetLazyPtr(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000701 // Remove $stub suffix, add $lazy_ptr.
702 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
703 TmpStr += "$lazy_ptr";
Chris Lattner9b97a732010-03-30 18:10:53 +0000704 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000705}
706
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000707static MCSymbol *GetAnonSym(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000708 // Add $tmp suffix to $stub, yielding $stub$tmp.
709 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
710 TmpStr += "$tmp";
Chris Lattner9b97a732010-03-30 18:10:53 +0000711 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000712}
713
714void PPCDarwinAsmPrinter::
715EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner917d6282010-01-20 21:19:44 +0000716 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
717
Dan Gohman0d805c32010-04-17 16:44:48 +0000718 const TargetLoweringObjectFileMachO &TLOFMacho =
719 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner917d6282010-01-20 21:19:44 +0000720
721 // .lazy_symbol_pointer
722 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattnerff4bc462009-08-10 01:39:42 +0000723
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000724 // Output stubs for dynamically-linked functions
Chris Lattner917d6282010-01-20 21:19:44 +0000725 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner2dfddee2009-08-03 22:52:21 +0000726 const MCSection *StubSection =
Chris Lattner22772212010-04-08 20:40:11 +0000727 OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
728 MCSectionMachO::S_SYMBOL_STUBS |
729 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
730 32, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000731 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000732 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +0000733 EmitAlignment(4);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000734
Chris Lattner9d7efd32010-04-04 07:05:53 +0000735 MCSymbol *Stub = Stubs[i].first;
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000736 MCSymbol *RawSym = Stubs[i].second.getPointer();
737 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
738 MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000739
Chris Lattner9d7efd32010-04-04 07:05:53 +0000740 OutStreamer.EmitLabel(Stub);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000741 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
742 // FIXME: MCize this.
Chris Lattner1841b342010-04-04 07:17:25 +0000743 OutStreamer.EmitRawText(StringRef("\tmflr r0"));
744 OutStreamer.EmitRawText("\tbcl 20,31," + Twine(AnonSymbol->getName()));
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000745 OutStreamer.EmitLabel(AnonSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000746 OutStreamer.EmitRawText(StringRef("\tmflr r11"));
747 OutStreamer.EmitRawText("\taddis r11,r11,ha16("+Twine(LazyPtr->getName())+
748 "-" + AnonSymbol->getName() + ")");
749 OutStreamer.EmitRawText(StringRef("\tmtlr r0"));
750
751 if (isPPC64)
752 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
753 "-" + AnonSymbol->getName() + ")(r11)");
754 else
755 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
756 "-" + AnonSymbol->getName() + ")(r11)");
757 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
758 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattnerfe2fe702009-07-16 01:23:26 +0000759
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000760 OutStreamer.SwitchSection(LSPSection);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000761 OutStreamer.EmitLabel(LazyPtr);
762 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000763
764 if (isPPC64)
765 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
766 else
767 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Chris Lattnerdeea4162005-12-13 04:33:58 +0000768 }
Chris Lattner9d7efd32010-04-04 07:05:53 +0000769 OutStreamer.AddBlankLine();
Chris Lattner917d6282010-01-20 21:19:44 +0000770 return;
Misha Brukman46fd00a2004-06-24 23:04:11 +0000771 }
Chris Lattner917d6282010-01-20 21:19:44 +0000772
773 const MCSection *StubSection =
Chris Lattner22772212010-04-08 20:40:11 +0000774 OutContext.getMachOSection("__TEXT","__symbol_stub1",
775 MCSectionMachO::S_SYMBOL_STUBS |
776 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
777 16, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000778 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000779 MCSymbol *Stub = Stubs[i].first;
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000780 MCSymbol *RawSym = Stubs[i].second.getPointer();
781 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000782
Chris Lattner917d6282010-01-20 21:19:44 +0000783 OutStreamer.SwitchSection(StubSection);
784 EmitAlignment(4);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000785 OutStreamer.EmitLabel(Stub);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000786 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000787 OutStreamer.EmitRawText("\tlis r11,ha16(" + Twine(LazyPtr->getName()) +")");
788 if (isPPC64)
789 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
790 ")(r11)");
791 else
792 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
793 ")(r11)");
794 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
795 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattner917d6282010-01-20 21:19:44 +0000796 OutStreamer.SwitchSection(LSPSection);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000797 OutStreamer.EmitLabel(LazyPtr);
798 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000799
800 if (isPPC64)
801 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
802 else
803 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Chris Lattner917d6282010-01-20 21:19:44 +0000804 }
805
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000806 OutStreamer.AddBlankLine();
Chris Lattner917d6282010-01-20 21:19:44 +0000807}
808
809
810bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
811 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
812
813 // Darwin/PPC always uses mach-o.
Dan Gohman0d805c32010-04-17 16:44:48 +0000814 const TargetLoweringObjectFileMachO &TLOFMacho =
815 static_cast<const TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner917d6282010-01-20 21:19:44 +0000816 MachineModuleInfoMachO &MMIMacho =
817 MMI->getObjFileInfo<MachineModuleInfoMachO>();
818
Chris Lattner73a1aa02010-01-20 21:36:48 +0000819 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
820 if (!Stubs.empty())
821 EmitFunctionStubs(Stubs);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000822
Chris Lattner33adcfb2009-08-22 21:43:10 +0000823 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000824 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000825 // Only referenced functions get into the Personalities list.
Dan Gohman46510a72010-04-15 01:51:59 +0000826 const std::vector<const Function*> &Personalities = MMI->getPersonalities();
827 for (std::vector<const Function*>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +0000828 E = Personalities.end(); I != E; ++I) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000829 if (*I) {
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000830 MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000831 MachineModuleInfoImpl::StubValueTy &StubSym =
832 MMIMacho.getGVStubEntry(NLPSym);
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000833 StubSym = MachineModuleInfoImpl::StubValueTy(Mang->getSymbol(*I), true);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000834 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000835 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000836 }
837
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000838 // Output stubs for dynamically-linked functions.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000839 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000840
Chris Lattner2dfddee2009-08-03 22:52:21 +0000841 // Output macho stubs for external and common global variables.
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000842 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000843 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000844 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +0000845 EmitAlignment(isPPC64 ? 3 : 2);
846
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000847 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendling08d726c2010-03-11 23:39:44 +0000848 // L_foo$stub:
849 OutStreamer.EmitLabel(Stubs[i].first);
850 // .indirect_symbol _foo
851 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
852 OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
Bill Wendling53351a12010-03-12 02:00:43 +0000853
854 if (MCSym.getInt())
855 // External to current translation unit.
856 OutStreamer.EmitIntValue(0, isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
857 else
858 // Internal to current translation unit.
Bill Wendling5e1b55d2010-03-31 18:47:10 +0000859 //
860 // When we place the LSDA into the TEXT section, the type info pointers
861 // need to be indirect and pc-rel. We accomplish this by using NLPs.
862 // However, sometimes the types are local to the file. So we need to
863 // fill in the value for the NLP in those cases.
Bill Wendling53351a12010-03-12 02:00:43 +0000864 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
865 OutContext),
866 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Chris Lattnerdeea4162005-12-13 04:33:58 +0000867 }
Bill Wendling08d726c2010-03-11 23:39:44 +0000868
869 Stubs.clear();
870 OutStreamer.AddBlankLine();
Nate Begemane59bf592004-08-14 22:09:10 +0000871 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000872
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000873 Stubs = MMIMacho.GetHiddenGVStubList();
874 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000875 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000876 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000877
878 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendling08d726c2010-03-11 23:39:44 +0000879 // L_foo$stub:
880 OutStreamer.EmitLabel(Stubs[i].first);
881 // .long _foo
882 OutStreamer.EmitValue(MCSymbolRefExpr::
883 Create(Stubs[i].second.getPointer(),
884 OutContext),
885 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Evan Chengae94e592008-12-05 01:06:39 +0000886 }
Bill Wendling08d726c2010-03-11 23:39:44 +0000887
888 Stubs.clear();
889 OutStreamer.AddBlankLine();
Evan Chengae94e592008-12-05 01:06:39 +0000890 }
891
Chris Lattner5b0ac992005-11-01 00:12:36 +0000892 // Funny Darwin hack: This flag tells the linker that no global symbols
893 // contain code that falls through to other global symbols (e.g. the obvious
894 // implementation of multiple entry points). If this doesn't occur, the
895 // linker can safely perform dead code stripping. Since LLVM never generates
896 // code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000897 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +0000898
Dan Gohmanb8275a32007-07-25 19:33:14 +0000899 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000900}
Nate Begemaned428532004-09-04 05:00:00 +0000901
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000902/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
903/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +0000904/// Darwin assembler can deal with.
905///
Chris Lattnerb23569a2010-04-04 08:18:47 +0000906static AsmPrinter *createPPCAsmPrinterPass(TargetMachine &tm,
Chris Lattner11d53c12010-03-13 20:55:24 +0000907 MCStreamer &Streamer) {
Jim Laskeybf111822006-12-21 20:26:09 +0000908 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
909
Chris Lattner40bbebd2009-07-21 18:38:57 +0000910 if (Subtarget->isDarwin())
Chris Lattnerb23569a2010-04-04 08:18:47 +0000911 return new PPCDarwinAsmPrinter(tm, Streamer);
912 return new PPCLinuxAsmPrinter(tm, Streamer);
Chris Lattner4da1c822006-09-20 17:12:19 +0000913}
Anton Korobeynikov06be9972008-08-17 13:54:28 +0000914
Chris Lattner60d5b5f2010-11-14 19:40:38 +0000915static MCInstPrinter *createPPCMCInstPrinter(const Target &T,
916 unsigned SyntaxVariant,
917 const MCAsmInfo &MAI) {
918 if (SyntaxVariant == 0)
919 return new PPCInstPrinter(MAI);
920 return 0;
921}
922
923
Bob Wilsona96751f2009-06-23 23:59:40 +0000924// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000925extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000926 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000927 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
Chris Lattner60d5b5f2010-11-14 19:40:38 +0000928
929 TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
930 TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000931}