blob: 6fff961c465d82e3f19278246ff89b905e2ba982 [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000010// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
Chris Lattner83660c52004-07-28 20:18:53 +000012// the output mechanism used by `llc'.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000013//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000014// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
Misha Brukman218bec72004-06-29 17:13:26 +000016//
Misha Brukman5dfe3a92004-06-21 16:55:25 +000017//===----------------------------------------------------------------------===//
18
Misha Brukman05794492004-06-24 17:31:42 +000019#define DEBUG_TYPE "asmprinter"
Chris Lattner26689592005-10-14 23:51:18 +000020#include "PPC.h"
Chris Lattnerdf4ed632006-11-17 22:10:59 +000021#include "PPCPredicates.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000022#include "PPCTargetMachine.h"
Chris Lattner26689592005-10-14 23:51:18 +000023#include "PPCSubtarget.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000028#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000029#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000030#include "llvm/CodeGen/MachineModuleInfo.h"
Misha Brukman05794492004-06-24 17:31:42 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000032#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling381802f2008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000034#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerf9bdedd2009-08-10 18:15:01 +000035#include "llvm/MC/MCSectionMachO.h"
Chris Lattner6c2f9e12009-08-19 05:49:37 +000036#include "llvm/MC/MCStreamer.h"
Chris Lattner325d3dc2009-09-13 17:14:04 +000037#include "llvm/MC/MCSymbol.h"
Chris Lattnera87dea42009-07-31 18:48:30 +000038#include "llvm/Target/TargetLoweringObjectFile.h"
39#include "llvm/Target/TargetRegisterInfo.h"
40#include "llvm/Target/TargetInstrInfo.h"
41#include "llvm/Target/TargetOptions.h"
42#include "llvm/Target/TargetRegistry.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000043#include "llvm/Support/Mangler.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000044#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000045#include "llvm/Support/CommandLine.h"
46#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000047#include "llvm/Support/ErrorHandling.h"
David Greene71847812009-07-14 20:18:05 +000048#include "llvm/Support/FormattedStream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000049#include "llvm/ADT/Statistic.h"
50#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000051#include "llvm/ADT/StringSet.h"
Chris Lattner48130352010-01-13 06:38:18 +000052#include "llvm/ADT/SmallString.h"
Chris Lattnera3840792004-08-16 23:25:21 +000053using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000054
Chris Lattner95b2c7d2006-12-19 22:59:26 +000055STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukman5dfe3a92004-06-21 16:55:25 +000056
Chris Lattner95b2c7d2006-12-19 22:59:26 +000057namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000058 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +000059 protected:
Chris Lattner9ec8fac2009-07-15 02:28:57 +000060 struct FnStubInfo {
61 std::string Stub, LazyPtr, AnonSymbol;
62
63 FnStubInfo() {}
64
65 void Init(const GlobalValue *GV, Mangler *Mang) {
66 // Already initialized.
67 if (!Stub.empty()) return;
68 Stub = Mang->getMangledName(GV, "$stub", true);
69 LazyPtr = Mang->getMangledName(GV, "$lazy_ptr", true);
70 AnonSymbol = Mang->getMangledName(GV, "$stub$tmp", true);
71 }
72
Chris Lattner48130352010-01-13 06:38:18 +000073 void Init(StringRef GVName, Mangler *Mang) {
Chris Lattner9ec8fac2009-07-15 02:28:57 +000074 // Already initialized.
75 if (!Stub.empty()) return;
Chris Lattner48130352010-01-13 06:38:18 +000076 SmallString<128> TmpStr;
77 Mang->makeNameProper(TmpStr, GVName + "$stub", Mangler::Private);
78 Stub = TmpStr.str();
79 TmpStr.clear();
80
81 Mang->makeNameProper(TmpStr, GVName + "$lazy_ptr", Mangler::Private);
82 LazyPtr = TmpStr.str();
83 TmpStr.clear();
84
85 Mang->makeNameProper(TmpStr, GVName + "$stub$tmp", Mangler::Private);
86 AnonSymbol = TmpStr.str();
Chris Lattner9ec8fac2009-07-15 02:28:57 +000087 }
88 };
89
90 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000091 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000092 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000093 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000094 public:
David Greene71847812009-07-14 20:18:05 +000095 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +000096 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000097 : AsmPrinter(O, TM, T, V),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000098 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000099
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000100 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +0000101 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000102 }
103
Nate Begeman21e463b2005-10-16 05:39:50 +0000104 PPCTargetMachine &getTM() {
105 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +0000106 }
107
Nate Begemanadeb43d2005-07-20 22:42:00 +0000108 unsigned enumRegToMachineReg(unsigned enumReg) {
109 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000110 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +0000111 case PPC::CR0: return 0;
112 case PPC::CR1: return 1;
113 case PPC::CR2: return 2;
114 case PPC::CR3: return 3;
115 case PPC::CR4: return 4;
116 case PPC::CR5: return 5;
117 case PPC::CR6: return 6;
118 case PPC::CR7: return 7;
119 }
Torok Edwinc23197a2009-07-14 16:55:14 +0000120 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +0000121 }
122
Nate Begemane59bf592004-08-14 22:09:10 +0000123 /// printInstruction - This method is automatically generated by tablegen
124 /// from the instruction set description. This method returns true if the
125 /// machine instruction was sufficiently described to print it, otherwise it
126 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +0000127 void printInstruction(const MachineInstr *MI);
Chris Lattnerd95148f2009-09-13 20:19:22 +0000128 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +0000129
Nate Begemane59bf592004-08-14 22:09:10 +0000130
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000131 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +0000132 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000133
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000134 /// stripRegisterPrefix - This method strips the character prefix from a
135 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000136 const char *stripRegisterPrefix(const char *RegName) {
137 switch (RegName[0]) {
138 case 'r':
139 case 'f':
140 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000141 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000142 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000143
Jim Laskey40ee69f2006-12-20 21:33:34 +0000144 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000145 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000146
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000147 /// printRegister - Print register according to target requirements.
148 ///
149 void printRegister(const MachineOperand &MO, bool R0AsZero) {
150 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000151 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000152
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000153 // If we should use 0 for R0.
154 if (R0AsZero && RegNo == PPC::R0) {
155 O << "0";
156 return;
157 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000158
Chris Lattner762ccea2009-09-13 20:31:40 +0000159 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000160 // Linux assembler (Others?) does not take register mnemonics.
161 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000162 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
163 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000164 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000165
Chris Lattner58873272006-02-01 22:38:46 +0000166 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000167 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000168 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000169 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000170 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000171 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000172 } else {
173 printOp(MO);
174 }
175 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000176
Chris Lattner58873272006-02-01 22:38:46 +0000177 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000178 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000179 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
180 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000181
182
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000183 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000184 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000185 value = (value << (32-5)) >> (32-5);
186 O << (int)value;
187 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000188 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000189 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000190 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000191 O << (unsigned int)value;
192 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000193 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000194 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000195 assert(value <= 63 && "Invalid u6imm argument!");
196 O << (unsigned int)value;
197 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000198 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000199 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000200 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000201 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000202 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000203 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000204 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000205 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000206 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000207 } else {
208 O << "lo16(";
209 printOp(MI->getOperand(OpNo));
210 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000211 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000212 else
213 O << ')';
214 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000215 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000216 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000217 // Branches can take an immediate operand. This is used by the branch
218 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000219 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000220 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000221 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000222 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000223 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000224 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000225 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000226 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000227 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000228 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
229 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000230 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000231 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000232 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
233 FnInfo.Init(GV, Mang);
234 O << FnInfo.Stub;
Chris Lattnera637c322005-12-16 00:22:14 +0000235 return;
236 }
237 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000238 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner48130352010-01-13 06:38:18 +0000239 SmallString<128> MangledName;
240 Mang->makeNameProper(MangledName, MO.getSymbolName());
241 FnStubInfo &FnInfo = FnStubs[MangledName.str()];
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000242 FnInfo.Init(MO.getSymbolName(), Mang);
243 O << FnInfo.Stub;
Chris Lattner9542f9712005-11-17 19:40:30 +0000244 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000245 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000246 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000247
Chris Lattner9542f9712005-11-17 19:40:30 +0000248 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000249 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000250 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000251 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000252 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000253 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000254 O << "\"L" << getFunctionNumber() << "$pb\"\n";
255 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000256 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000257 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000258 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000259 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000260 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000261 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000262 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000263 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000264 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000265 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000266 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000267 else
268 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000269 }
Nate Begemaned428532004-09-04 05:00:00 +0000270 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000271 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000272 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000273 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000274 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000275 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000276 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000277 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000278 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000279 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000280 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000281 else
282 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000283 }
284 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000285 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000286 unsigned CCReg = MI->getOperand(OpNo).getReg();
287 unsigned RegNo = enumRegToMachineReg(CCReg);
288 O << (0x80 >> RegNo);
289 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000290 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000291 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
292 printSymbolLo(MI, OpNo);
293 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000294 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000295 MI->getOperand(OpNo+1).getReg() == PPC::R0)
296 O << "0";
297 else
298 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000299 O << ')';
300 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000301 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000302 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000303 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000304 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000305 printSymbolLo(MI, OpNo);
306 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000307 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000308 MI->getOperand(OpNo+1).getReg() == PPC::R0)
309 O << "0";
310 else
311 printOperand(MI, OpNo+1);
312 O << ')';
313 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000314
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000315 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000316 // When used as the base register, r0 reads constant zero rather than
317 // the value contained in the register. For this reason, the darwin
318 // assembler requires that we print r0 as 0 (no r) when used as the base.
319 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000320 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000321 O << ", ";
322 printOperand(MI, OpNo+1);
323 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000324
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000325 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
326 const MachineOperand &MO = MI->getOperand(OpNo);
327
328 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
329
330 GlobalValue *GV = MO.getGlobal();
331
332 std::string Name = Mang->getMangledName(GV);
333
334 // Map symbol -> label of TOC entry.
335 if (TOC.count(Name) == 0) {
336 std::string Label;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000337 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000338 Label += "C";
339 Label += utostr(LabelID++);
340
341 TOC[Name] = Label;
342 }
343
344 O << TOC[Name] << "@toc";
345 }
346
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000347 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000348 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000349
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000350 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000351 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000352
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000353 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000354 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000355 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000356 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000357 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000358 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000359
360 virtual const char *getPassName() const {
361 return "Linux PPC Assembly Printer";
362 }
363
364 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000365 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000366
Jim Laskeybf111822006-12-21 20:26:09 +0000367 void getAnalysisUsage(AnalysisUsage &AU) const {
368 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000369 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000370 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000371 PPCAsmPrinter::getAnalysisUsage(AU);
372 }
373
Chris Lattner40bbebd2009-07-21 18:38:57 +0000374 void PrintGlobalVariable(const GlobalVariable *GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000375 };
376
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000377 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
378 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000379 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000380 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000381 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000382 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000383 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000384 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000385
386 virtual const char *getPassName() const {
387 return "Darwin PPC Assembly Printer";
388 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000389
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000390 bool runOnMachineFunction(MachineFunction &F);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000391 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000392 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000393
Jim Laskeyb2efb852006-01-04 22:28:25 +0000394 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000395 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000396 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000397 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000398 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000399 }
400
Chris Lattner40bbebd2009-07-21 18:38:57 +0000401 void PrintGlobalVariable(const GlobalVariable *GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000402 };
403} // end of anonymous namespace
404
Nate Begemane59bf592004-08-14 22:09:10 +0000405// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000406#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000407
Chris Lattner9ba13e42005-11-17 19:25:59 +0000408void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000409 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000410 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000411 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000412
Nate Begeman37efe672006-04-22 18:53:45 +0000413 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner325d3dc2009-09-13 17:14:04 +0000414 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000415 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000416 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000417 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000418 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000419 // FIXME: PIC relocation model
420 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000421 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000422 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000423 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000424 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000425 case MachineOperand::MO_BlockAddress:
426 GetBlockAddressSymbol(MO.getBlockAddress())->print(O, MAI);
427 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000428 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000429 // Computing the address of an external symbol, not calling it.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000430 std::string Name(MAI->getGlobalPrefix());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000431 Name += MO.getSymbolName();
432
Evan Cheng4c1aa862006-02-22 20:19:42 +0000433 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner8f831cb2009-07-15 01:14:44 +0000434 GVStubs[Name] = Name+"$non_lazy_ptr";
435 Name += "$non_lazy_ptr";
Chris Lattnera637c322005-12-16 00:22:14 +0000436 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000437 O << Name;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000438 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000439 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000440 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000441 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000442 GlobalValue *GV = MO.getGlobal();
Chris Lattner8f831cb2009-07-15 01:14:44 +0000443 std::string Name;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000444
Nate Begemanfcf4a422004-10-17 23:01:34 +0000445 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000446 if (TM.getRelocationModel() != Reloc::Static &&
447 (GV->isDeclaration() || GV->isWeakForLinker())) {
448 if (!GV->hasHiddenVisibility()) {
449 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
450 GVStubs[Mang->getMangledName(GV)] = Name;
451 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
452 GV->hasAvailableExternallyLinkage()) {
453 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
454 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
455 } else {
456 Name = Mang->getMangledName(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000457 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000458 } else {
459 Name = Mang->getMangledName(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000460 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000461 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000462
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000463 printOffset(MO.getOffset());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000464 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000465 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000466
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000467 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000468 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000469 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000470 }
471}
472
Chris Lattnere3f01572006-02-23 19:31:10 +0000473/// PrintAsmOperand - Print out an operand for an inline asm expression.
474///
475bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000476 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000477 const char *ExtraCode) {
478 // Does this asm operand have a single letter operand modifier?
479 if (ExtraCode && ExtraCode[0]) {
480 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000481
Chris Lattnere3f01572006-02-23 19:31:10 +0000482 switch (ExtraCode[0]) {
483 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000484 case 'c': // Don't print "$" before a global var name or constant.
485 // PPC never has a prefix.
486 printOperand(MI, OpNo);
487 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000488 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000489 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000490 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000491 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000492 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000493 return true;
494 ++OpNo; // Return the high-part.
495 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000496 case 'I':
497 // Write 'i' if an integer constant, otherwise nothing. Used to print
498 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000499 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000500 O << "i";
501 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000502 }
503 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000504
Chris Lattnere3f01572006-02-23 19:31:10 +0000505 printOperand(MI, OpNo);
506 return false;
507}
508
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000509// At the moment, all inline asm memory operands are a single register.
510// In any case, the output of this routine should always be just one
511// assembler operand.
512
Chris Lattner2c003e22006-02-24 20:27:40 +0000513bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000514 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000515 const char *ExtraCode) {
516 if (ExtraCode && ExtraCode[0])
517 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000518 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000519 O << "0(";
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000520 printOperand(MI, OpNo);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000521 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000522 return false;
523}
Chris Lattnere3f01572006-02-23 19:31:10 +0000524
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000525void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000526 const char *Modifier) {
527 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
528 unsigned Code = MI->getOperand(OpNo).getImm();
529 if (!strcmp(Modifier, "cc")) {
530 switch ((PPC::Predicate)Code) {
531 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
532 case PPC::PRED_LT: O << "lt"; return;
533 case PPC::PRED_LE: O << "le"; return;
534 case PPC::PRED_EQ: O << "eq"; return;
535 case PPC::PRED_GE: O << "ge"; return;
536 case PPC::PRED_GT: O << "gt"; return;
537 case PPC::PRED_NE: O << "ne"; return;
538 case PPC::PRED_UN: O << "un"; return;
539 case PPC::PRED_NU: O << "nu"; return;
540 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000541
Chris Lattneraf53a872006-11-04 05:27:39 +0000542 } else {
543 assert(!strcmp(Modifier, "reg") &&
544 "Need to specify 'cc' or 'reg' as predicate op modifier!");
545 // Don't print the register for 'always'.
546 if (Code == PPC::PRED_ALWAYS) return;
547 printOperand(MI, OpNo+1);
548 }
549}
550
551
Nate Begemane59bf592004-08-14 22:09:10 +0000552/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
553/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000554///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000555void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000556 ++EmittedInsts;
Chris Lattner634cca32009-09-09 20:34:59 +0000557
Devang Patelaf0e2722009-10-06 02:19:11 +0000558 processDebugLoc(MI, true);
Chris Lattner617742b2005-10-14 22:44:13 +0000559
Nate Begemanad5f65c2005-04-05 18:19:50 +0000560 // Check for slwi/srwi mnemonics.
Dale Johannesene89c5102010-01-06 02:20:18 +0000561 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000562 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000563 unsigned char SH = MI->getOperand(2).getImm();
564 unsigned char MB = MI->getOperand(3).getImm();
565 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000566 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000567 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000568 }
569 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000570 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000571 SH = 32-SH;
572 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000573 if (useSubstituteMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000574 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000575 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000576 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000577 O << ", " << (unsigned int)SH;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000578 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000579 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000580 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000581 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000582 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000583 printOperand(MI, 0);
584 O << ", ";
585 printOperand(MI, 1);
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000586 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000587 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000588 unsigned char SH = MI->getOperand(2).getImm();
589 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000590 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
591 if (63-SH == ME) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000592 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000593 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000594 printOperand(MI, 0);
595 O << ", ";
596 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000597 O << ", " << (unsigned int)SH;
Chris Lattner566c1b12006-11-18 01:23:56 +0000598 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000599 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000600
Dale Johannesene89c5102010-01-06 02:20:18 +0000601 if (!useSubstituteMnemonic)
602 printInstruction(MI);
603
David Greene1924aab2009-11-13 21:34:57 +0000604 if (VerboseAsm)
Chris Lattnerc5ea2632009-09-09 23:14:36 +0000605 EmitComments(*MI);
606 O << '\n';
Devang Patelaf0e2722009-10-06 02:19:11 +0000607
608 processDebugLoc(MI, false);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000609}
610
Jim Laskeybf111822006-12-21 20:26:09 +0000611/// runOnMachineFunction - This uses the printMachineInstruction()
612/// method to print assembly for each instruction.
613///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000614bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000615 this->MF = &MF;
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000616
Jim Laskeybf111822006-12-21 20:26:09 +0000617 SetupMachineFunction(MF);
618 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000619
Jim Laskeybf111822006-12-21 20:26:09 +0000620 // Print out constants referenced by the function
621 EmitConstantPool(MF.getConstantPool());
622
623 // Print out labels for the function.
624 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000625 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000626
Jim Laskeybf111822006-12-21 20:26:09 +0000627 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000628 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000629 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000630 case Function::InternalLinkage: // Symbols default to internal.
631 break;
632 case Function::ExternalLinkage:
633 O << "\t.global\t" << CurrentFnName << '\n'
634 << "\t.type\t" << CurrentFnName << ", @function\n";
635 break;
Dale Johannesena60e51f2009-08-24 01:03:42 +0000636 case Function::LinkerPrivateLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +0000637 case Function::WeakAnyLinkage:
638 case Function::WeakODRLinkage:
639 case Function::LinkOnceAnyLinkage:
640 case Function::LinkOnceODRLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000641 O << "\t.global\t" << CurrentFnName << '\n';
642 O << "\t.weak\t" << CurrentFnName << '\n';
643 break;
644 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000645
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000646 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000647
Bill Wendling20c568f2009-06-30 22:38:32 +0000648 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000649
650 if (Subtarget.isPPC64()) {
651 // Emit an official procedure descriptor.
652 // FIXME 64-bit SVR4: Use MCSection here?
653 O << "\t.section\t\".opd\",\"aw\"\n";
654 O << "\t.align 3\n";
655 O << CurrentFnName << ":\n";
656 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
657 O << "\t.previous\n";
658 O << ".L." << CurrentFnName << ":\n";
659 } else {
660 O << CurrentFnName << ":\n";
661 }
Jim Laskeybf111822006-12-21 20:26:09 +0000662
663 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000664 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000665
666 // Print out code for the function.
667 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
668 I != E; ++I) {
669 // Print a label for the basic block.
670 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000671 EmitBasicBlockStart(I);
Jim Laskeybf111822006-12-21 20:26:09 +0000672 }
673 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
674 II != E; ++II) {
675 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000676 printMachineInstruction(II);
677 }
678 }
679
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000680 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000681
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000682 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesenf94a3272008-12-03 19:33:10 +0000683
Jim Laskeybf111822006-12-21 20:26:09 +0000684 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000685 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000686
Bill Wendlingb1ec31d2009-11-09 21:20:14 +0000687 // Print out jump tables referenced by the function.
688 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
689
Jim Laskeybf111822006-12-21 20:26:09 +0000690 // We didn't modify anything.
691 return false;
692}
693
Chris Lattner40bbebd2009-07-21 18:38:57 +0000694void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000695 const TargetData *TD = TM.getTargetData();
696
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000697 if (!GVar->hasInitializer())
698 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000699
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000700 // Check to see if this is a special global used by LLVM, if so, emit it.
701 if (EmitSpecialLLVMGlobal(GVar))
702 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000703
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000704 std::string name = Mang->getMangledName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000705
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000706 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000707
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000708 Constant *C = GVar->getInitializer();
709 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000710 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000711 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000712
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000713 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
714 TM));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000715
716 if (C->isNullValue() && /* FIXME: Verify correct */
717 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000718 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000719 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000720 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000721
722 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000723 O << "\t.global " << name << '\n';
724 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000725 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000726 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000727 } else if (GVar->hasLocalLinkage()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000728 O << MAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000729 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000730 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000731 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000732 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000733 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000734 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000735 O << "'";
736 }
737 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000738 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000739 }
740
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000741 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000742 case GlobalValue::LinkOnceAnyLinkage:
743 case GlobalValue::LinkOnceODRLinkage:
744 case GlobalValue::WeakAnyLinkage:
745 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000746 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000747 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000748 O << "\t.global " << name << '\n'
749 << "\t.type " << name << ", @object\n"
750 << "\t.weak " << name << '\n';
751 break;
752 case GlobalValue::AppendingLinkage:
753 // FIXME: appending linkage variables should go into a section of
754 // their name or something. For now, just emit them as external.
755 case GlobalValue::ExternalLinkage:
756 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000757 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000758 << "\t.type " << name << ", @object\n";
759 // FALL THROUGH
760 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000761 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000762 break;
763 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000764 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000765 }
766
767 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000768 O << name << ":";
769 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000770 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000771 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000772 O << "'";
773 }
774 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000775
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000776 EmitGlobalConstant(C);
777 O << '\n';
778}
779
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000780bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
781 const TargetData *TD = TM.getTargetData();
782
783 bool isPPC64 = TD->getPointerSizeInBits() == 64;
784
785 if (isPPC64 && !TOC.empty()) {
786 // FIXME 64-bit SVR4: Use MCSection here?
787 O << "\t.section\t\".toc\",\"aw\"\n";
788
789 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
790 I != E; ++I) {
791 O << I->second << ":\n";
792 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
793 }
794 }
795
796 return AsmPrinter::doFinalization(M);
797}
Jim Laskeybf111822006-12-21 20:26:09 +0000798
Nate Begemaned428532004-09-04 05:00:00 +0000799/// runOnMachineFunction - This uses the printMachineInstruction()
800/// method to print assembly for each instruction.
801///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000802bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000803 this->MF = &MF;
804
Chris Lattner8b8b9512005-11-21 07:51:23 +0000805 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000806 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000807
Nate Begemaned428532004-09-04 05:00:00 +0000808 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000809 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000810
811 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000812 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000813 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000814
Chris Lattnera637c322005-12-16 00:22:14 +0000815 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000816 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000817 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000818 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000819 break;
820 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000821 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000822 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000823 case Function::WeakAnyLinkage:
824 case Function::WeakODRLinkage:
825 case Function::LinkOnceAnyLinkage:
826 case Function::LinkOnceODRLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000827 case Function::LinkerPrivateLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000828 O << "\t.globl\t" << CurrentFnName << '\n';
829 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000830 break;
831 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000832
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000833 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000834
Bill Wendling20c568f2009-06-30 22:38:32 +0000835 EmitAlignment(MF.getAlignment(), F);
Nate Begemaned428532004-09-04 05:00:00 +0000836 O << CurrentFnName << ":\n";
837
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000838 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000839 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000840
Bill Wendling381802f2008-01-26 06:51:24 +0000841 // If the function is empty, then we need to emit *something*. Otherwise, the
842 // function's label might be associated with something that it wasn't meant to
843 // be associated with. We emit a noop in this situation.
844 MachineFunction::iterator I = MF.begin();
845
Bill Wendling824a7212008-01-26 09:03:52 +0000846 if (++I == MF.end() && MF.front().empty())
847 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000848
Nate Begemaned428532004-09-04 05:00:00 +0000849 // Print out code for the function.
850 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
851 I != E; ++I) {
852 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000853 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000854 EmitBasicBlockStart(I);
Chris Lattner1db1adb2005-08-21 19:09:33 +0000855 }
Bill Wendling381802f2008-01-26 06:51:24 +0000856 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
857 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000858 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000859 printMachineInstruction(II);
860 }
861 }
Nate Begemaned428532004-09-04 05:00:00 +0000862
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000863 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000864 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000865
Bill Wendling2718e432009-11-09 21:45:26 +0000866 // Print out jump tables referenced by the function.
867 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
868
Nate Begemaned428532004-09-04 05:00:00 +0000869 // We didn't modify anything.
870 return false;
871}
872
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000873
Bob Wilson812209a2009-09-30 22:06:26 +0000874void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000875 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000876 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000877 "ppc",
878 "ppc601",
879 "ppc602",
880 "ppc603",
881 "ppc7400",
882 "ppc750",
883 "ppc970",
884 "ppc64"
885 };
886
887 unsigned Directive = Subtarget.getDarwinDirective();
888 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
889 Directive = PPC::DIR_970;
890 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
891 Directive = PPC::DIR_7400;
892 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
893 Directive = PPC::DIR_64;
894 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000895 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000896
Jim Laskey2ada0852006-11-28 18:21:52 +0000897 // Prime text sections so they are adjacent. This reduces the likelihood a
898 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000899 TargetLoweringObjectFileMachO &TLOFMacho =
900 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000901 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000902 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000903 OutStreamer.SwitchSection(
904 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
905 MCSectionMachO::S_SYMBOL_STUBS |
906 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
907 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000908 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000909 OutStreamer.SwitchSection(
910 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
911 MCSectionMachO::S_SYMBOL_STUBS |
912 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
913 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000914 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000915 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000916}
917
Chris Lattner40bbebd2009-07-21 18:38:57 +0000918void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000919 const TargetData *TD = TM.getTargetData();
920
921 if (!GVar->hasInitializer())
922 return; // External global require no code
923
924 // Check to see if this is a special global used by LLVM, if so, emit it.
925 if (EmitSpecialLLVMGlobal(GVar)) {
926 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000927 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000928 O << ".reference .constructors_used\n";
Daniel Dunbar03d76512009-07-25 23:55:21 +0000929 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000930 O << ".reference .destructors_used\n";
931 }
932 return;
933 }
934
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000935 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000936 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000937
938 Constant *C = GVar->getInitializer();
939 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000940 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000941 unsigned Align = TD->getPreferredAlignmentLog(GVar);
942
Chris Lattnera87dea42009-07-31 18:48:30 +0000943 const MCSection *TheSection =
Chris Lattnere53a6002009-07-29 05:09:30 +0000944 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000945 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000946
Chris Lattner3b24c012009-08-04 05:35:56 +0000947 /// FIXME: Drive this off the section!
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000948 if (C->isNullValue() && /* FIXME: Verify correct */
949 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000950 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000951 GVar->isWeakForLinker()) &&
Chris Lattnerc440cc72009-07-24 04:08:17 +0000952 // Don't put things that should go in the cstring section into "comm".
Chris Lattner5fe575f2009-07-27 05:32:16 +0000953 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000954 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
955
956 if (GVar->hasExternalLinkage()) {
957 O << "\t.globl " << name << '\n';
958 O << "\t.zerofill __DATA, __common, " << name << ", "
959 << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000960 } else if (GVar->hasLocalLinkage()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000961 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000962 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000963 O << "\t.globl " << name << '\n'
Chris Lattner33adcfb2009-08-22 21:43:10 +0000964 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000965 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000966 O << name << ":";
967 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000968 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000969 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000970 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000971 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000972 EmitGlobalConstant(C);
973 return;
974 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000975 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000976 // Darwin 9 and above support aligned common data.
977 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000978 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000979 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000980 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000981 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000982 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000983 O << "'";
984 }
985 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000986 return;
987 }
988
989 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000990 case GlobalValue::LinkOnceAnyLinkage:
991 case GlobalValue::LinkOnceODRLinkage:
992 case GlobalValue::WeakAnyLinkage:
993 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000994 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000995 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000996 O << "\t.globl " << name << '\n'
997 << "\t.weak_definition " << name << '\n';
998 break;
999 case GlobalValue::AppendingLinkage:
1000 // FIXME: appending linkage variables should go into a section of
1001 // their name or something. For now, just emit them as external.
1002 case GlobalValue::ExternalLinkage:
1003 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001004 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001005 // FALL THROUGH
1006 case GlobalValue::InternalLinkage:
Evan Cheng1902a122009-01-25 06:32:01 +00001007 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001008 break;
1009 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001010 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001011 }
1012
1013 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +00001014 O << name << ":";
1015 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001016 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001017 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001018 O << "'";
1019 }
1020 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001021
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001022 EmitGlobalConstant(C);
1023 O << '\n';
1024}
1025
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001026bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +00001027 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001028
Chris Lattner7e097e42006-06-27 01:02:25 +00001029 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1030
Chris Lattner2dfddee2009-08-03 22:52:21 +00001031 // Darwin/PPC always uses mach-o.
1032 TargetLoweringObjectFileMachO &TLOFMacho =
1033 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1034
Chris Lattnerff4bc462009-08-10 01:39:42 +00001035
1036 const MCSection *LSPSection = 0;
1037 if (!FnStubs.empty()) // .lazy_symbol_pointer
1038 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1039
1040
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001041 // Output stubs for dynamically-linked functions
Chris Lattnerea56f102009-07-15 00:55:58 +00001042 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattner2dfddee2009-08-03 22:52:21 +00001043 const MCSection *StubSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +00001044 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1045 MCSectionMachO::S_SYMBOL_STUBS |
1046 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1047 32, SectionKind::getText());
1048 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001049 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001050 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +00001051 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001052 const FnStubInfo &Info = I->second;
Chris Lattnerdefd3002009-07-15 02:33:19 +00001053 O << Info.Stub << ":\n";
1054 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001055 O << "\tmflr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001056 O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1057 O << Info.AnonSymbol << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001058 O << "\tmflr r11\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001059 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
Evan Chengae94e592008-12-05 01:06:39 +00001060 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001061 O << "\tmtlr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001062 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1063 O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001064 O << "\tmtctr r12\n";
1065 O << "\tbctr\n";
Chris Lattnerfe2fe702009-07-16 01:23:26 +00001066
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001067 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001068 O << Info.LazyPtr << ":\n";
1069 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001070 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001071 }
Chris Lattnerea56f102009-07-15 00:55:58 +00001072 } else if (!FnStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001073 const MCSection *StubSection =
1074 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1075 MCSectionMachO::S_SYMBOL_STUBS |
1076 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1077 16, SectionKind::getText());
Chris Lattner2dfddee2009-08-03 22:52:21 +00001078
Chris Lattner9ec8fac2009-07-15 02:28:57 +00001079 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001080 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001081 OutStreamer.SwitchSection(StubSection);
Chris Lattnerdeea4162005-12-13 04:33:58 +00001082 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001083 const FnStubInfo &Info = I->second;
1084 O << Info.Stub << ":\n";
1085 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1086 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattner1a87c052009-07-15 02:36:21 +00001087 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001088 O << Info.LazyPtr << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001089 O << "\tmtctr r12\n";
1090 O << "\tbctr\n";
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001091 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001092 O << Info.LazyPtr << ":\n";
1093 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001094 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001095 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001096 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001097
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001098 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001099
Chris Lattner33adcfb2009-08-22 21:43:10 +00001100 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001101 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001102 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +00001103 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001104 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +00001105 E = Personalities.end(); I != E; ++I) {
1106 if (*I)
1107 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner0f6c8f22009-07-15 01:16:38 +00001108 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +00001109 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001110 }
1111
Chris Lattner2dfddee2009-08-03 22:52:21 +00001112 // Output macho stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001113 if (!GVStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001114 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001115 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +00001116 EmitAlignment(isPPC64 ? 3 : 2);
1117
Chris Lattner8f831cb2009-07-15 01:14:44 +00001118 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1119 E = GVStubs.end(); I != E; ++I) {
1120 O << I->second << ":\n";
1121 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1122 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001123 }
Nate Begemane59bf592004-08-14 22:09:10 +00001124 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001125
Evan Chengae94e592008-12-05 01:06:39 +00001126 if (!HiddenGVStubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001127 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +00001128 EmitAlignment(isPPC64 ? 3 : 2);
1129 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1130 E = HiddenGVStubs.end(); I != E; ++I) {
1131 O << I->second << ":\n";
1132 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chengae94e592008-12-05 01:06:39 +00001133 }
1134 }
1135
Chris Lattner5b0ac992005-11-01 00:12:36 +00001136 // Funny Darwin hack: This flag tells the linker that no global symbols
1137 // contain code that falls through to other global symbols (e.g. the obvious
1138 // implementation of multiple entry points). If this doesn't occur, the
1139 // linker can safely perform dead code stripping. Since LLVM never generates
1140 // code that does this, it is always safe to set.
Chris Lattner74cd3b72009-10-19 18:03:08 +00001141 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +00001142
Dan Gohmanb8275a32007-07-25 19:33:14 +00001143 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001144}
Nate Begemaned428532004-09-04 05:00:00 +00001145
Chris Lattner4da1c822006-09-20 17:12:19 +00001146
1147
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001148/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1149/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001150/// Darwin assembler can deal with.
1151///
Daniel Dunbar78945782009-08-13 23:48:47 +00001152static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1153 TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +00001154 const MCAsmInfo *tai,
Daniel Dunbar78945782009-08-13 23:48:47 +00001155 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001156 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1157
Chris Lattner40bbebd2009-07-21 18:38:57 +00001158 if (Subtarget->isDarwin())
Daniel Dunbar67d894e2009-08-13 19:38:51 +00001159 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1160 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Chris Lattner4da1c822006-09-20 17:12:19 +00001161}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001162
Bob Wilsona96751f2009-06-23 23:59:40 +00001163// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001164extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001165 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001166 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1167}