blob: c6a20f32fa3fa035aa1bb11723862502aaab165b [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000010// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
Chris Lattner83660c52004-07-28 20:18:53 +000012// the output mechanism used by `llc'.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000013//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000014// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
Misha Brukman218bec72004-06-29 17:13:26 +000016//
Misha Brukman5dfe3a92004-06-21 16:55:25 +000017//===----------------------------------------------------------------------===//
18
Misha Brukman05794492004-06-24 17:31:42 +000019#define DEBUG_TYPE "asmprinter"
Chris Lattner26689592005-10-14 23:51:18 +000020#include "PPC.h"
Chris Lattnerdf4ed632006-11-17 22:10:59 +000021#include "PPCPredicates.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000022#include "PPCTargetMachine.h"
Chris Lattner26689592005-10-14 23:51:18 +000023#include "PPCSubtarget.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000028#include "llvm/CodeGen/AsmPrinter.h"
Misha Brukman05794492004-06-24 17:31:42 +000029#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000030#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling381802f2008-01-26 06:51:24 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnerd3ec0b52010-01-20 21:16:14 +000032#include "llvm/CodeGen/MachineModuleInfoImpls.h"
Anton Korobeynikov362dd0b2010-02-15 22:37:53 +000033#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000034#include "llvm/MC/MCAsmInfo.h"
Chris Lattner0b4bad52010-01-13 19:00:57 +000035#include "llvm/MC/MCContext.h"
Bill Wendling08d726c2010-03-11 23:39:44 +000036#include "llvm/MC/MCExpr.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000037#include "llvm/MC/MCSectionMachO.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000038#include "llvm/MC/MCStreamer.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000039#include "llvm/MC/MCSymbol.h"
Chris Lattner45111d12010-01-16 21:57:06 +000040#include "llvm/Target/Mangler.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000041#include "llvm/Target/TargetRegisterInfo.h"
42#include "llvm/Target/TargetInstrInfo.h"
43#include "llvm/Target/TargetOptions.h"
44#include "llvm/Target/TargetRegistry.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000045#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000046#include "llvm/Support/ErrorHandling.h"
Chris Lattnerb23569a2010-04-04 08:18:47 +000047#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000048#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000049#include "llvm/ADT/StringSet.h"
Chris Lattner48130352010-01-13 06:38:18 +000050#include "llvm/ADT/SmallString.h"
Chris Lattnera3840792004-08-16 23:25:21 +000051using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000052
Chris Lattner95b2c7d2006-12-19 22:59:26 +000053namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000054 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +000055 protected:
Chris Lattner9d7efd32010-04-04 07:05:53 +000056 DenseMap<MCSymbol*, MCSymbol*> TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000057 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000058 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000059 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +000060 explicit PPCAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
61 : AsmPrinter(TM, Streamer),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000062 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000063
Misha Brukman5dfe3a92004-06-21 16:55:25 +000064 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000065 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000066 }
67
Nate Begeman21e463b2005-10-16 05:39:50 +000068 PPCTargetMachine &getTM() {
69 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000070 }
71
Nate Begemanadeb43d2005-07-20 22:42:00 +000072 unsigned enumRegToMachineReg(unsigned enumReg) {
73 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +000074 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +000075 case PPC::CR0: return 0;
76 case PPC::CR1: return 1;
77 case PPC::CR2: return 2;
78 case PPC::CR3: return 3;
79 case PPC::CR4: return 4;
80 case PPC::CR5: return 5;
81 case PPC::CR6: return 6;
82 case PPC::CR7: return 7;
83 }
Torok Edwinc23197a2009-07-14 16:55:14 +000084 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +000085 }
86
Nate Begemane59bf592004-08-14 22:09:10 +000087 /// printInstruction - This method is automatically generated by tablegen
88 /// from the instruction set description. This method returns true if the
89 /// machine instruction was sufficiently described to print it, otherwise it
90 /// returns false.
Chris Lattner35c33bd2010-04-04 04:47:45 +000091 void printInstruction(const MachineInstr *MI, raw_ostream &O);
Chris Lattnerd95148f2009-09-13 20:19:22 +000092 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +000093
Nate Begemane59bf592004-08-14 22:09:10 +000094
Chris Lattnerd49fe1b2010-01-28 01:28:58 +000095 virtual void EmitInstruction(const MachineInstr *MI);
Chris Lattner35c33bd2010-04-04 04:47:45 +000096 void printOp(const MachineOperand &MO, raw_ostream &O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +000097
Jim Laskeyb608a4d2006-12-20 20:56:46 +000098 /// stripRegisterPrefix - This method strips the character prefix from a
99 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000100 const char *stripRegisterPrefix(const char *RegName) {
101 switch (RegName[0]) {
102 case 'r':
103 case 'f':
104 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000105 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000106 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000107
Jim Laskey40ee69f2006-12-20 21:33:34 +0000108 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000109 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000110
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000111 /// printRegister - Print register according to target requirements.
112 ///
Chris Lattner35c33bd2010-04-04 04:47:45 +0000113 void printRegister(const MachineOperand &MO, bool R0AsZero, raw_ostream &O){
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000114 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000115 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000116
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000117 // If we should use 0 for R0.
118 if (R0AsZero && RegNo == PPC::R0) {
119 O << "0";
120 return;
121 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000122
Chris Lattner762ccea2009-09-13 20:31:40 +0000123 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000124 // Linux assembler (Others?) does not take register mnemonics.
125 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000126 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
127 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000128 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000129
Chris Lattner35c33bd2010-04-04 04:47:45 +0000130 void printOperand(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000131 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000132 if (MO.isReg()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000133 printRegister(MO, false, O);
Dan Gohmand735b802008-10-03 15:45:36 +0000134 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000135 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000136 } else {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000137 printOp(MO, O);
Chris Lattner7bb424f2004-08-14 23:27:29 +0000138 }
139 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000140
Chris Lattner58873272006-02-01 22:38:46 +0000141 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000142 unsigned AsmVariant, const char *ExtraCode,
143 raw_ostream &O);
Chris Lattner2c003e22006-02-24 20:27:40 +0000144 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000145 unsigned AsmVariant, const char *ExtraCode,
146 raw_ostream &O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000147
148
Chris Lattner35c33bd2010-04-04 04:47:45 +0000149 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo,
150 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000151 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000152 value = (value << (32-5)) >> (32-5);
153 O << (int)value;
154 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000155 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo,
156 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000157 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000158 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000159 O << (unsigned int)value;
160 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000161 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo,
162 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000163 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000164 assert(value <= 63 && "Invalid u6imm argument!");
165 O << (unsigned int)value;
166 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000167 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo,
168 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000169 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000170 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000171 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo,
172 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000173 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000174 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000175 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo,
176 raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000177 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000178 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000179 } else {
180 O << "lo16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000181 printOp(MI->getOperand(OpNo), O);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000182 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000183 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000184 else
185 O << ')';
186 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000187 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000188 void printBranchOperand(const MachineInstr *MI, unsigned OpNo,
189 raw_ostream &O) {
Nate Begemaned428532004-09-04 05:00:00 +0000190 // Branches can take an immediate operand. This is used by the branch
191 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000192 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000193 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000194 } else {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000195 printOp(MI->getOperand(OpNo), O);
Nate Begemaned428532004-09-04 05:00:00 +0000196 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000197 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000198 void printCallOperand(const MachineInstr *MI, unsigned OpNo,
199 raw_ostream &O) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000200 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000201 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000202 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
203 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000204 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000205 // Dynamically-resolved functions need a stub for the function.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000206 MCSymbol *Sym = GetSymbolWithGlobalValueBase(GV, "$stub");
Bill Wendlingcebae362010-03-10 22:34:10 +0000207 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattner73a1aa02010-01-20 21:36:48 +0000208 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000209 if (StubSym.getPointer() == 0)
210 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000211 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000212 O << *Sym;
Chris Lattnera637c322005-12-16 00:22:14 +0000213 return;
214 }
215 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000216 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000217 SmallString<128> TempNameStr;
218 TempNameStr += StringRef(MO.getSymbolName());
219 TempNameStr += StringRef("$stub");
220
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000221 MCSymbol *Sym = GetExternalSymbolSymbol(TempNameStr.str());
Bill Wendlingcebae362010-03-10 22:34:10 +0000222 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattner73a1aa02010-01-20 21:36:48 +0000223 MMI->getObjFileInfo<MachineModuleInfoMachO>().getFnStubEntry(Sym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000224 if (StubSym.getPointer() == 0)
225 StubSym = MachineModuleInfoImpl::
226 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000227 O << *Sym;
Chris Lattner9542f9712005-11-17 19:40:30 +0000228 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000229 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000230 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000231
Chris Lattner35c33bd2010-04-04 04:47:45 +0000232 printOp(MI->getOperand(OpNo), O);
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000233 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000234 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo,
235 raw_ostream &O) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000236 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000237 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000238 void printPICLabel(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000239 O << "\"L" << getFunctionNumber() << "$pb\"\n";
240 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000241 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000242 void printSymbolHi(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000243 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000244 printS16ImmOperand(MI, OpNo, O);
Nate Begeman2497e632005-07-21 20:44:43 +0000245 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000246 if (Subtarget.isDarwin()) O << "ha16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000247 printOp(MI->getOperand(OpNo), O);
Chris Lattner35d86fe2006-07-26 21:12:04 +0000248 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000249 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000250 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000251 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000252 else
253 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000254 }
Nate Begemaned428532004-09-04 05:00:00 +0000255 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000256 void printSymbolLo(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000257 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000258 printS16ImmOperand(MI, OpNo, O);
Nate Begemaned428532004-09-04 05:00:00 +0000259 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000260 if (Subtarget.isDarwin()) O << "lo16(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000261 printOp(MI->getOperand(OpNo), O);
Chris Lattner35d86fe2006-07-26 21:12:04 +0000262 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000263 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000264 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000265 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000266 else
267 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000268 }
269 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000270 void printcrbitm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000271 unsigned CCReg = MI->getOperand(OpNo).getReg();
272 unsigned RegNo = enumRegToMachineReg(CCReg);
273 O << (0x80 >> RegNo);
274 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000275 // The new addressing mode printers.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000276 void printMemRegImm(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
277 printSymbolLo(MI, OpNo, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000278 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000279 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000280 MI->getOperand(OpNo+1).getReg() == PPC::R0)
281 O << "0";
282 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000283 printOperand(MI, OpNo+1, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000284 O << ')';
285 }
Chris Lattner35c33bd2010-04-04 04:47:45 +0000286 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo,
287 raw_ostream &O) {
Dan Gohmand735b802008-10-03 15:45:36 +0000288 if (MI->getOperand(OpNo).isImm())
Chris Lattner35c33bd2010-04-04 04:47:45 +0000289 printS16X4ImmOperand(MI, OpNo, O);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000290 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000291 printSymbolLo(MI, OpNo, O);
Chris Lattnere5ba5802006-03-22 05:26:03 +0000292 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000293 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000294 MI->getOperand(OpNo+1).getReg() == PPC::R0)
295 O << "0";
296 else
Chris Lattner35c33bd2010-04-04 04:47:45 +0000297 printOperand(MI, OpNo+1, O);
Chris Lattnere5ba5802006-03-22 05:26:03 +0000298 O << ')';
299 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000300
Chris Lattner35c33bd2010-04-04 04:47:45 +0000301 void printMemRegReg(const MachineInstr *MI, unsigned OpNo, raw_ostream &O) {
Nate Begeman88276b82005-12-19 23:40:42 +0000302 // When used as the base register, r0 reads constant zero rather than
303 // the value contained in the register. For this reason, the darwin
304 // assembler requires that we print r0 as 0 (no r) when used as the base.
305 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattner35c33bd2010-04-04 04:47:45 +0000306 printRegister(MO, true, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000307 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000308 printOperand(MI, OpNo+1, O);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000309 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000310
Chris Lattner35c33bd2010-04-04 04:47:45 +0000311 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo,
312 raw_ostream &O) {
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000313 const MachineOperand &MO = MI->getOperand(OpNo);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000314 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000315 MCSymbol *Sym = Mang->getSymbol(MO.getGlobal());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000316
317 // Map symbol -> label of TOC entry.
Chris Lattner9d7efd32010-04-04 07:05:53 +0000318 MCSymbol *&TOCEntry = TOC[Sym];
Chris Lattner75abc682010-01-16 02:09:06 +0000319 if (TOCEntry == 0)
320 TOCEntry = OutContext.
Chris Lattner9b97a732010-03-30 18:10:53 +0000321 GetOrCreateSymbol(StringRef(MAI->getPrivateGlobalPrefix()) +
322 "C" + Twine(LabelID++));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000323
Chris Lattner10b318b2010-01-17 21:43:43 +0000324 O << *TOCEntry << "@toc";
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000325 }
326
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000327 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000328 raw_ostream &O, const char *Modifier);
Nate Begemaned428532004-09-04 05:00:00 +0000329 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000330
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000331 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000332 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000333 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +0000334 explicit PPCLinuxAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
335 : PPCAsmPrinter(TM, Streamer) {}
Jim Laskeybf111822006-12-21 20:26:09 +0000336
337 virtual const char *getPassName() const {
338 return "Linux PPC Assembly Printer";
339 }
340
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000341 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000342
Chris Lattner2cf72512010-01-27 07:21:55 +0000343 virtual void EmitFunctionEntryLabel();
Jim Laskeybf111822006-12-21 20:26:09 +0000344 };
345
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000346 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
347 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000348 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000349 public:
Chris Lattnerb23569a2010-04-04 08:18:47 +0000350 explicit PPCDarwinAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
351 : PPCAsmPrinter(TM, Streamer) {}
Nate Begemaned428532004-09-04 05:00:00 +0000352
353 virtual const char *getPassName() const {
354 return "Darwin PPC Assembly Printer";
355 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000356
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000357 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000358 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000359
Chris Lattner73a1aa02010-01-20 21:36:48 +0000360 void EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000361 };
362} // end of anonymous namespace
363
Nate Begemane59bf592004-08-14 22:09:10 +0000364// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000365#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000366
Chris Lattner35c33bd2010-04-04 04:47:45 +0000367void PPCAsmPrinter::printOp(const MachineOperand &MO, raw_ostream &O) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000368 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000369 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000370 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000371
Nate Begeman37efe672006-04-22 18:53:45 +0000372 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner1b2eb0e2010-03-13 21:04:28 +0000373 O << *MO.getMBB()->getSymbol();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000374 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000375 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000376 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000377 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000378 // FIXME: PIC relocation model
379 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000380 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000381 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000382 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000383 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000384 case MachineOperand::MO_BlockAddress:
Chris Lattner10b318b2010-01-17 21:43:43 +0000385 O << *GetBlockAddressSymbol(MO.getBlockAddress());
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000386 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000387 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000388 // Computing the address of an external symbol, not calling it.
Chris Lattner75abc682010-01-16 02:09:06 +0000389 if (TM.getRelocationModel() == Reloc::Static) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000390 O << *GetExternalSymbolSymbol(MO.getSymbolName());
Chris Lattner75abc682010-01-16 02:09:06 +0000391 return;
Chris Lattnera637c322005-12-16 00:22:14 +0000392 }
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000393
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000394 MCSymbol *NLPSym =
Chris Lattner75abc682010-01-16 02:09:06 +0000395 OutContext.GetOrCreateSymbol(StringRef(MAI->getGlobalPrefix())+
396 MO.getSymbolName()+"$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000397 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000398 MMI->getObjFileInfo<MachineModuleInfoMachO>().getGVStubEntry(NLPSym);
Bill Wendlingcebae362010-03-10 22:34:10 +0000399 if (StubSym.getPointer() == 0)
400 StubSym = MachineModuleInfoImpl::
401 StubValueTy(GetExternalSymbolSymbol(MO.getSymbolName()), true);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000402
Chris Lattner10b318b2010-01-17 21:43:43 +0000403 O << *NLPSym;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000404 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000405 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000406 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000407 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000408 GlobalValue *GV = MO.getGlobal();
Chris Lattnera40128c2010-01-16 02:00:23 +0000409 MCSymbol *SymToPrint;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000410
Nate Begemanfcf4a422004-10-17 23:01:34 +0000411 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000412 if (TM.getRelocationModel() != Reloc::Static &&
413 (GV->isDeclaration() || GV->isWeakForLinker())) {
414 if (!GV->hasHiddenVisibility()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000415 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000416 MachineModuleInfoImpl::StubValueTy &StubSym =
417 MMI->getObjFileInfo<MachineModuleInfoMachO>()
418 .getGVStubEntry(SymToPrint);
419 if (StubSym.getPointer() == 0)
420 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000421 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000422 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
423 GV->hasAvailableExternallyLinkage()) {
Chris Lattner7a2ba942010-01-16 18:37:32 +0000424 SymToPrint = GetSymbolWithGlobalValueBase(GV, "$non_lazy_ptr");
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000425
Bill Wendlingcebae362010-03-10 22:34:10 +0000426 MachineModuleInfoImpl::StubValueTy &StubSym =
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000427 MMI->getObjFileInfo<MachineModuleInfoMachO>().
428 getHiddenGVStubEntry(SymToPrint);
Bill Wendlingcebae362010-03-10 22:34:10 +0000429 if (StubSym.getPointer() == 0)
430 StubSym = MachineModuleInfoImpl::
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000431 StubValueTy(Mang->getSymbol(GV), !GV->hasInternalLinkage());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000432 } else {
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000433 SymToPrint = Mang->getSymbol(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000434 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000435 } else {
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000436 SymToPrint = Mang->getSymbol(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000437 }
Chris Lattnera40128c2010-01-16 02:00:23 +0000438
Chris Lattner10b318b2010-01-17 21:43:43 +0000439 O << *SymToPrint;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000440
Chris Lattner0c08d092010-04-03 22:28:33 +0000441 printOffset(MO.getOffset(), O);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000442 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000443 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000444
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000445 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000446 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000447 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000448 }
449}
450
Chris Lattnere3f01572006-02-23 19:31:10 +0000451/// PrintAsmOperand - Print out an operand for an inline asm expression.
452///
453bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000454 unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000455 const char *ExtraCode, raw_ostream &O) {
Chris Lattnere3f01572006-02-23 19:31:10 +0000456 // Does this asm operand have a single letter operand modifier?
457 if (ExtraCode && ExtraCode[0]) {
458 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000459
Chris Lattnere3f01572006-02-23 19:31:10 +0000460 switch (ExtraCode[0]) {
461 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000462 case 'c': // Don't print "$" before a global var name or constant.
463 // PPC never has a prefix.
Chris Lattner35c33bd2010-04-04 04:47:45 +0000464 printOperand(MI, OpNo, O);
Chris Lattner78192b62007-01-25 02:52:50 +0000465 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000466 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000467 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000468 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000469 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000470 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000471 return true;
472 ++OpNo; // Return the high-part.
473 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000474 case 'I':
475 // Write 'i' if an integer constant, otherwise nothing. Used to print
476 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000477 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000478 O << "i";
479 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000480 }
481 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000482
Chris Lattner35c33bd2010-04-04 04:47:45 +0000483 printOperand(MI, OpNo, O);
Chris Lattnere3f01572006-02-23 19:31:10 +0000484 return false;
485}
486
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000487// At the moment, all inline asm memory operands are a single register.
488// In any case, the output of this routine should always be just one
489// assembler operand.
490
Chris Lattner2c003e22006-02-24 20:27:40 +0000491bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000492 unsigned AsmVariant,
Chris Lattnerc75c0282010-04-04 05:29:35 +0000493 const char *ExtraCode,
494 raw_ostream &O) {
Chris Lattner2c003e22006-02-24 20:27:40 +0000495 if (ExtraCode && ExtraCode[0])
496 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000497 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000498 O << "0(";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000499 printOperand(MI, OpNo, O);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000500 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000501 return false;
502}
Chris Lattnere3f01572006-02-23 19:31:10 +0000503
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000504void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner35c33bd2010-04-04 04:47:45 +0000505 raw_ostream &O, const char *Modifier){
Chris Lattneraf53a872006-11-04 05:27:39 +0000506 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
507 unsigned Code = MI->getOperand(OpNo).getImm();
508 if (!strcmp(Modifier, "cc")) {
509 switch ((PPC::Predicate)Code) {
510 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
511 case PPC::PRED_LT: O << "lt"; return;
512 case PPC::PRED_LE: O << "le"; return;
513 case PPC::PRED_EQ: O << "eq"; return;
514 case PPC::PRED_GE: O << "ge"; return;
515 case PPC::PRED_GT: O << "gt"; return;
516 case PPC::PRED_NE: O << "ne"; return;
517 case PPC::PRED_UN: O << "un"; return;
518 case PPC::PRED_NU: O << "nu"; return;
519 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000520
Chris Lattneraf53a872006-11-04 05:27:39 +0000521 } else {
522 assert(!strcmp(Modifier, "reg") &&
523 "Need to specify 'cc' or 'reg' as predicate op modifier!");
524 // Don't print the register for 'always'.
525 if (Code == PPC::PRED_ALWAYS) return;
Chris Lattner35c33bd2010-04-04 04:47:45 +0000526 printOperand(MI, OpNo+1, O);
Chris Lattneraf53a872006-11-04 05:27:39 +0000527 }
528}
529
530
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000531/// EmitInstruction -- Print out a single PowerPC MI in Darwin syntax to
Nate Begemane59bf592004-08-14 22:09:10 +0000532/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000533///
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000534void PPCAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000535 SmallString<128> Str;
536 raw_svector_ostream O(Str);
537
Nate Begemanad5f65c2005-04-05 18:19:50 +0000538 // Check for slwi/srwi mnemonics.
539 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000540 unsigned char SH = MI->getOperand(2).getImm();
541 unsigned char MB = MI->getOperand(3).getImm();
542 unsigned char ME = MI->getOperand(4).getImm();
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000543 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000544 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000545 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000546 }
547 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000548 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000549 SH = 32-SH;
550 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000551 if (useSubstituteMnemonic) {
Chris Lattner35c33bd2010-04-04 04:47:45 +0000552 printOperand(MI, 0, O);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000553 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000554 printOperand(MI, 1, O);
Dale Johannesene89c5102010-01-06 02:20:18 +0000555 O << ", " << (unsigned int)SH;
Chris Lattner9d7efd32010-04-04 07:05:53 +0000556 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000557 return;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000558 }
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000559 }
560
561 if ((MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) &&
562 MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
563 O << "\tmr ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000564 printOperand(MI, 0, O);
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000565 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000566 printOperand(MI, 1, O);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000567 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000568 return;
569 }
570
571 if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000572 unsigned char SH = MI->getOperand(2).getImm();
573 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000574 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
575 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000576 O << "\tsldi ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000577 printOperand(MI, 0, O);
Chris Lattner566c1b12006-11-18 01:23:56 +0000578 O << ", ";
Chris Lattner35c33bd2010-04-04 04:47:45 +0000579 printOperand(MI, 1, O);
Dale Johannesene89c5102010-01-06 02:20:18 +0000580 O << ", " << (unsigned int)SH;
Chris Lattner9d7efd32010-04-04 07:05:53 +0000581 OutStreamer.EmitRawText(O.str());
Chris Lattnerd49fe1b2010-01-28 01:28:58 +0000582 return;
Chris Lattner566c1b12006-11-18 01:23:56 +0000583 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000584 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000585
Chris Lattner9d7efd32010-04-04 07:05:53 +0000586 printInstruction(MI, O);
587 OutStreamer.EmitRawText(O.str());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000588}
589
Chris Lattner2cf72512010-01-27 07:21:55 +0000590void PPCLinuxAsmPrinter::EmitFunctionEntryLabel() {
591 if (!Subtarget.isPPC64()) // linux/ppc32 - Normal entry label.
592 return AsmPrinter::EmitFunctionEntryLabel();
593
594 // Emit an official procedure descriptor.
595 // FIXME 64-bit SVR4: Use MCSection here!
Chris Lattner9d7efd32010-04-04 07:05:53 +0000596 OutStreamer.EmitRawText(StringRef("\t.section\t\".opd\",\"aw\""));
597 OutStreamer.EmitRawText(StringRef("\t.align 3"));
Chris Lattner2cf72512010-01-27 07:21:55 +0000598 OutStreamer.EmitLabel(CurrentFnSym);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000599 OutStreamer.EmitRawText("\t.quad .L." + Twine(CurrentFnSym->getName()) +
600 ",.TOC.@tocbase");
601 OutStreamer.EmitRawText(StringRef("\t.previous"));
602 OutStreamer.EmitRawText(".L." + Twine(CurrentFnSym->getName()) + ":");
Chris Lattner2cf72512010-01-27 07:21:55 +0000603}
604
605
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000606bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
607 const TargetData *TD = TM.getTargetData();
608
609 bool isPPC64 = TD->getPointerSizeInBits() == 64;
610
611 if (isPPC64 && !TOC.empty()) {
612 // FIXME 64-bit SVR4: Use MCSection here?
Chris Lattner9d7efd32010-04-04 07:05:53 +0000613 OutStreamer.EmitRawText(StringRef("\t.section\t\".toc\",\"aw\""));
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000614
Chris Lattnera40128c2010-01-16 02:00:23 +0000615 // FIXME: This is nondeterminstic!
Chris Lattner9d7efd32010-04-04 07:05:53 +0000616 for (DenseMap<MCSymbol*, MCSymbol*>::iterator I = TOC.begin(),
Chris Lattner75abc682010-01-16 02:09:06 +0000617 E = TOC.end(); I != E; ++I) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000618 OutStreamer.EmitLabel(I->second);
619 OutStreamer.EmitRawText("\t.tc " + Twine(I->first->getName()) +
620 "[TC]," + I->first->getName());
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000621 }
622 }
623
624 return AsmPrinter::doFinalization(M);
625}
Jim Laskeybf111822006-12-21 20:26:09 +0000626
Bob Wilson812209a2009-09-30 22:06:26 +0000627void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000628 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000629 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000630 "ppc",
631 "ppc601",
632 "ppc602",
633 "ppc603",
634 "ppc7400",
635 "ppc750",
636 "ppc970",
637 "ppc64"
638 };
639
640 unsigned Directive = Subtarget.getDarwinDirective();
641 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
642 Directive = PPC::DIR_970;
643 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
644 Directive = PPC::DIR_7400;
645 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
646 Directive = PPC::DIR_64;
647 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Chris Lattner9d7efd32010-04-04 07:05:53 +0000648 OutStreamer.EmitRawText("\t.machine " + Twine(CPUDirectives[Directive]));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000649
Jim Laskey2ada0852006-11-28 18:21:52 +0000650 // Prime text sections so they are adjacent. This reduces the likelihood a
651 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000652 TargetLoweringObjectFileMachO &TLOFMacho =
653 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000654 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000655 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000656 OutStreamer.SwitchSection(
Chris Lattner22772212010-04-08 20:40:11 +0000657 OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000658 MCSectionMachO::S_SYMBOL_STUBS |
659 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
660 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000661 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000662 OutStreamer.SwitchSection(
Chris Lattner22772212010-04-08 20:40:11 +0000663 OutContext.getMachOSection("__TEXT","__symbol_stub1",
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000664 MCSectionMachO::S_SYMBOL_STUBS |
665 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
666 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000667 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000668 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000669}
670
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000671static MCSymbol *GetLazyPtr(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000672 // Remove $stub suffix, add $lazy_ptr.
673 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end()-5);
674 TmpStr += "$lazy_ptr";
Chris Lattner9b97a732010-03-30 18:10:53 +0000675 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000676}
677
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000678static MCSymbol *GetAnonSym(MCSymbol *Sym, MCContext &Ctx) {
Chris Lattner73a1aa02010-01-20 21:36:48 +0000679 // Add $tmp suffix to $stub, yielding $stub$tmp.
680 SmallString<128> TmpStr(Sym->getName().begin(), Sym->getName().end());
681 TmpStr += "$tmp";
Chris Lattner9b97a732010-03-30 18:10:53 +0000682 return Ctx.GetOrCreateSymbol(TmpStr.str());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000683}
684
685void PPCDarwinAsmPrinter::
686EmitFunctionStubs(const MachineModuleInfoMachO::SymbolListTy &Stubs) {
Chris Lattner917d6282010-01-20 21:19:44 +0000687 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
688
Chris Lattner2dfddee2009-08-03 22:52:21 +0000689 TargetLoweringObjectFileMachO &TLOFMacho =
690 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner917d6282010-01-20 21:19:44 +0000691
692 // .lazy_symbol_pointer
693 const MCSection *LSPSection = TLOFMacho.getLazySymbolPointerSection();
Chris Lattnerff4bc462009-08-10 01:39:42 +0000694
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000695 // Output stubs for dynamically-linked functions
Chris Lattner917d6282010-01-20 21:19:44 +0000696 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner2dfddee2009-08-03 22:52:21 +0000697 const MCSection *StubSection =
Chris Lattner22772212010-04-08 20:40:11 +0000698 OutContext.getMachOSection("__TEXT", "__picsymbolstub1",
699 MCSectionMachO::S_SYMBOL_STUBS |
700 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
701 32, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000702 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000703 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +0000704 EmitAlignment(4);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000705
Chris Lattner9d7efd32010-04-04 07:05:53 +0000706 MCSymbol *Stub = Stubs[i].first;
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000707 MCSymbol *RawSym = Stubs[i].second.getPointer();
708 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
709 MCSymbol *AnonSymbol = GetAnonSym(Stub, OutContext);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000710
Chris Lattner9d7efd32010-04-04 07:05:53 +0000711 OutStreamer.EmitLabel(Stub);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000712 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
713 // FIXME: MCize this.
Chris Lattner1841b342010-04-04 07:17:25 +0000714 OutStreamer.EmitRawText(StringRef("\tmflr r0"));
715 OutStreamer.EmitRawText("\tbcl 20,31," + Twine(AnonSymbol->getName()));
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000716 OutStreamer.EmitLabel(AnonSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000717 OutStreamer.EmitRawText(StringRef("\tmflr r11"));
718 OutStreamer.EmitRawText("\taddis r11,r11,ha16("+Twine(LazyPtr->getName())+
719 "-" + AnonSymbol->getName() + ")");
720 OutStreamer.EmitRawText(StringRef("\tmtlr r0"));
721
722 if (isPPC64)
723 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
724 "-" + AnonSymbol->getName() + ")(r11)");
725 else
726 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
727 "-" + AnonSymbol->getName() + ")(r11)");
728 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
729 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattnerfe2fe702009-07-16 01:23:26 +0000730
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000731 OutStreamer.SwitchSection(LSPSection);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000732 OutStreamer.EmitLabel(LazyPtr);
733 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000734
735 if (isPPC64)
736 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
737 else
738 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Chris Lattnerdeea4162005-12-13 04:33:58 +0000739 }
Chris Lattner9d7efd32010-04-04 07:05:53 +0000740 OutStreamer.AddBlankLine();
Chris Lattner917d6282010-01-20 21:19:44 +0000741 return;
Misha Brukman46fd00a2004-06-24 23:04:11 +0000742 }
Chris Lattner917d6282010-01-20 21:19:44 +0000743
744 const MCSection *StubSection =
Chris Lattner22772212010-04-08 20:40:11 +0000745 OutContext.getMachOSection("__TEXT","__symbol_stub1",
746 MCSectionMachO::S_SYMBOL_STUBS |
747 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
748 16, SectionKind::getText());
Chris Lattner73a1aa02010-01-20 21:36:48 +0000749 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Chris Lattner9d7efd32010-04-04 07:05:53 +0000750 MCSymbol *Stub = Stubs[i].first;
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000751 MCSymbol *RawSym = Stubs[i].second.getPointer();
752 MCSymbol *LazyPtr = GetLazyPtr(Stub, OutContext);
Chris Lattner73a1aa02010-01-20 21:36:48 +0000753
Chris Lattner917d6282010-01-20 21:19:44 +0000754 OutStreamer.SwitchSection(StubSection);
755 EmitAlignment(4);
Chris Lattner9d7efd32010-04-04 07:05:53 +0000756 OutStreamer.EmitLabel(Stub);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000757 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000758 OutStreamer.EmitRawText("\tlis r11,ha16(" + Twine(LazyPtr->getName()) +")");
759 if (isPPC64)
760 OutStreamer.EmitRawText("\tldu r12,lo16(" + Twine(LazyPtr->getName()) +
761 ")(r11)");
762 else
763 OutStreamer.EmitRawText("\tlwzu r12,lo16(" + Twine(LazyPtr->getName()) +
764 ")(r11)");
765 OutStreamer.EmitRawText(StringRef("\tmtctr r12"));
766 OutStreamer.EmitRawText(StringRef("\tbctr"));
Chris Lattner917d6282010-01-20 21:19:44 +0000767 OutStreamer.SwitchSection(LSPSection);
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000768 OutStreamer.EmitLabel(LazyPtr);
769 OutStreamer.EmitSymbolAttribute(RawSym, MCSA_IndirectSymbol);
Chris Lattner1841b342010-04-04 07:17:25 +0000770
771 if (isPPC64)
772 OutStreamer.EmitRawText(StringRef("\t.quad dyld_stub_binding_helper"));
773 else
774 OutStreamer.EmitRawText(StringRef("\t.long dyld_stub_binding_helper"));
Chris Lattner917d6282010-01-20 21:19:44 +0000775 }
776
Chris Lattner2dc6fa62010-04-04 07:12:28 +0000777 OutStreamer.AddBlankLine();
Chris Lattner917d6282010-01-20 21:19:44 +0000778}
779
780
781bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
782 bool isPPC64 = TM.getTargetData()->getPointerSizeInBits() == 64;
783
784 // Darwin/PPC always uses mach-o.
785 TargetLoweringObjectFileMachO &TLOFMacho =
786 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
787 MachineModuleInfoMachO &MMIMacho =
788 MMI->getObjFileInfo<MachineModuleInfoMachO>();
789
Chris Lattner73a1aa02010-01-20 21:36:48 +0000790 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetFnStubList();
791 if (!Stubs.empty())
792 EmitFunctionStubs(Stubs);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000793
Chris Lattner33adcfb2009-08-22 21:43:10 +0000794 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000795 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000796 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +0000797 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000798 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +0000799 E = Personalities.end(); I != E; ++I) {
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000800 if (*I) {
Chris Lattnerd269a6e2010-02-03 06:18:30 +0000801 MCSymbol *NLPSym = GetSymbolWithGlobalValueBase(*I, "$non_lazy_ptr");
Bill Wendlingcebae362010-03-10 22:34:10 +0000802 MachineModuleInfoImpl::StubValueTy &StubSym =
803 MMIMacho.getGVStubEntry(NLPSym);
Chris Lattnerd62f1b42010-03-12 21:19:23 +0000804 StubSym = MachineModuleInfoImpl::StubValueTy(Mang->getSymbol(*I), true);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000805 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000806 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000807 }
808
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000809 // Output stubs for dynamically-linked functions.
Chris Lattner73a1aa02010-01-20 21:36:48 +0000810 Stubs = MMIMacho.GetGVStubList();
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000811
Chris Lattner2dfddee2009-08-03 22:52:21 +0000812 // Output macho stubs for external and common global variables.
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000813 if (!Stubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +0000814 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000815 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +0000816 EmitAlignment(isPPC64 ? 3 : 2);
817
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000818 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendling08d726c2010-03-11 23:39:44 +0000819 // L_foo$stub:
820 OutStreamer.EmitLabel(Stubs[i].first);
821 // .indirect_symbol _foo
822 MachineModuleInfoImpl::StubValueTy &MCSym = Stubs[i].second;
823 OutStreamer.EmitSymbolAttribute(MCSym.getPointer(), MCSA_IndirectSymbol);
Bill Wendling53351a12010-03-12 02:00:43 +0000824
825 if (MCSym.getInt())
826 // External to current translation unit.
827 OutStreamer.EmitIntValue(0, isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
828 else
829 // Internal to current translation unit.
Bill Wendling5e1b55d2010-03-31 18:47:10 +0000830 //
831 // When we place the LSDA into the TEXT section, the type info pointers
832 // need to be indirect and pc-rel. We accomplish this by using NLPs.
833 // However, sometimes the types are local to the file. So we need to
834 // fill in the value for the NLP in those cases.
Bill Wendling53351a12010-03-12 02:00:43 +0000835 OutStreamer.EmitValue(MCSymbolRefExpr::Create(MCSym.getPointer(),
836 OutContext),
837 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Chris Lattnerdeea4162005-12-13 04:33:58 +0000838 }
Bill Wendling08d726c2010-03-11 23:39:44 +0000839
840 Stubs.clear();
841 OutStreamer.AddBlankLine();
Nate Begemane59bf592004-08-14 22:09:10 +0000842 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000843
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000844 Stubs = MMIMacho.GetHiddenGVStubList();
845 if (!Stubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000846 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000847 EmitAlignment(isPPC64 ? 3 : 2);
Chris Lattnerd3ec0b52010-01-20 21:16:14 +0000848
849 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
Bill Wendling08d726c2010-03-11 23:39:44 +0000850 // L_foo$stub:
851 OutStreamer.EmitLabel(Stubs[i].first);
852 // .long _foo
853 OutStreamer.EmitValue(MCSymbolRefExpr::
854 Create(Stubs[i].second.getPointer(),
855 OutContext),
856 isPPC64 ? 8 : 4/*size*/, 0/*addrspace*/);
Evan Chengae94e592008-12-05 01:06:39 +0000857 }
Bill Wendling08d726c2010-03-11 23:39:44 +0000858
859 Stubs.clear();
860 OutStreamer.AddBlankLine();
Evan Chengae94e592008-12-05 01:06:39 +0000861 }
862
Chris Lattner5b0ac992005-11-01 00:12:36 +0000863 // Funny Darwin hack: This flag tells the linker that no global symbols
864 // contain code that falls through to other global symbols (e.g. the obvious
865 // implementation of multiple entry points). If this doesn't occur, the
866 // linker can safely perform dead code stripping. Since LLVM never generates
867 // code that does this, it is always safe to set.
Chris Lattnera5ad93a2010-01-23 06:39:22 +0000868 OutStreamer.EmitAssemblerFlag(MCAF_SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +0000869
Dan Gohmanb8275a32007-07-25 19:33:14 +0000870 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000871}
Nate Begemaned428532004-09-04 05:00:00 +0000872
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000873/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
874/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +0000875/// Darwin assembler can deal with.
876///
Chris Lattnerb23569a2010-04-04 08:18:47 +0000877static AsmPrinter *createPPCAsmPrinterPass(TargetMachine &tm,
Chris Lattner11d53c12010-03-13 20:55:24 +0000878 MCStreamer &Streamer) {
Jim Laskeybf111822006-12-21 20:26:09 +0000879 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
880
Chris Lattner40bbebd2009-07-21 18:38:57 +0000881 if (Subtarget->isDarwin())
Chris Lattnerb23569a2010-04-04 08:18:47 +0000882 return new PPCDarwinAsmPrinter(tm, Streamer);
883 return new PPCLinuxAsmPrinter(tm, Streamer);
Chris Lattner4da1c822006-09-20 17:12:19 +0000884}
Anton Korobeynikov06be9972008-08-17 13:54:28 +0000885
Bob Wilsona96751f2009-06-23 23:59:40 +0000886// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000887extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000888 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000889 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
890}