blob: 658ac317e0007772eabf093fb72fa82ca67b1c34 [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"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000048#include "llvm/Support/Compiler.h"
David Greene71847812009-07-14 20:18:05 +000049#include "llvm/Support/FormattedStream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000050#include "llvm/ADT/Statistic.h"
51#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000052#include "llvm/ADT/StringSet.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 {
Bill Wendling57f0db82009-02-24 08:30:20 +000058 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
59 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
73 void Init(const std::string &GV, Mangler *Mang) {
74 // Already initialized.
75 if (!Stub.empty()) return;
Bill Wendling3d10a5a2009-07-20 01:03:30 +000076 Stub = Mang->makeNameProper(GV + "$stub",
Bill Wendling5c0ba802009-07-20 19:41:27 +000077 Mangler::Private);
Bill Wendling3d10a5a2009-07-20 01:03:30 +000078 LazyPtr = Mang->makeNameProper(GV + "$lazy_ptr",
Bill Wendling5c0ba802009-07-20 19:41:27 +000079 Mangler::Private);
Bill Wendling3d10a5a2009-07-20 01:03:30 +000080 AnonSymbol = Mang->makeNameProper(GV + "$stub$tmp",
Bill Wendling5c0ba802009-07-20 19:41:27 +000081 Mangler::Private);
Chris Lattner9ec8fac2009-07-15 02:28:57 +000082 }
83 };
84
85 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000086 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000087 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000088 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000089 public:
David Greene71847812009-07-14 20:18:05 +000090 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +000091 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000092 : AsmPrinter(O, TM, T, V),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000093 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000094
Misha Brukman5dfe3a92004-06-21 16:55:25 +000095 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000096 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000097 }
98
Nate Begeman21e463b2005-10-16 05:39:50 +000099 PPCTargetMachine &getTM() {
100 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +0000101 }
102
Nate Begemanadeb43d2005-07-20 22:42:00 +0000103 unsigned enumRegToMachineReg(unsigned enumReg) {
104 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000105 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +0000106 case PPC::CR0: return 0;
107 case PPC::CR1: return 1;
108 case PPC::CR2: return 2;
109 case PPC::CR3: return 3;
110 case PPC::CR4: return 4;
111 case PPC::CR5: return 5;
112 case PPC::CR6: return 6;
113 case PPC::CR7: return 7;
114 }
Torok Edwinc23197a2009-07-14 16:55:14 +0000115 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +0000116 }
117
Nate Begemane59bf592004-08-14 22:09:10 +0000118 /// printInstruction - This method is automatically generated by tablegen
119 /// from the instruction set description. This method returns true if the
120 /// machine instruction was sufficiently described to print it, otherwise it
121 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +0000122 void printInstruction(const MachineInstr *MI);
Chris Lattner05af2612009-09-13 20:08:00 +0000123 const char *getRegisterName(unsigned RegNo) const;
124
Nate Begemane59bf592004-08-14 22:09:10 +0000125
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000126 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +0000127 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000128
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000129 /// stripRegisterPrefix - This method strips the character prefix from a
130 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000131 const char *stripRegisterPrefix(const char *RegName) {
132 switch (RegName[0]) {
133 case 'r':
134 case 'f':
135 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000136 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000137 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000138
Jim Laskey40ee69f2006-12-20 21:33:34 +0000139 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000140 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000141
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000142 /// printRegister - Print register according to target requirements.
143 ///
144 void printRegister(const MachineOperand &MO, bool R0AsZero) {
145 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000146 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000147
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000148 // If we should use 0 for R0.
149 if (R0AsZero && RegNo == PPC::R0) {
150 O << "0";
151 return;
152 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000153
Bill Wendling74ab84c2008-02-26 21:11:01 +0000154 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000155 // Linux assembler (Others?) does not take register mnemonics.
156 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000157 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
158 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000159 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000160
Chris Lattner58873272006-02-01 22:38:46 +0000161 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000162 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000163 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000164 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000165 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000166 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000167 } else {
168 printOp(MO);
169 }
170 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000171
Chris Lattner58873272006-02-01 22:38:46 +0000172 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000173 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000174 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
175 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000176
177
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000178 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000179 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000180 value = (value << (32-5)) >> (32-5);
181 O << (int)value;
182 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000183 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000184 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000185 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000186 O << (unsigned int)value;
187 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000188 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000189 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000190 assert(value <= 63 && "Invalid u6imm argument!");
191 O << (unsigned int)value;
192 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000193 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000194 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000195 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000196 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000197 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000198 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000199 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000200 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000201 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000202 } else {
203 O << "lo16(";
204 printOp(MI->getOperand(OpNo));
205 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000206 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000207 else
208 O << ')';
209 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000210 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000211 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000212 // Branches can take an immediate operand. This is used by the branch
213 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000214 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000215 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000216 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000217 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000218 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000219 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000220 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000221 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000222 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000223 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
224 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000225 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000226 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000227 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
228 FnInfo.Init(GV, Mang);
229 O << FnInfo.Stub;
Chris Lattnera637c322005-12-16 00:22:14 +0000230 return;
231 }
232 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000233 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000234 FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
235 FnInfo.Init(MO.getSymbolName(), Mang);
236 O << FnInfo.Stub;
Chris Lattner9542f9712005-11-17 19:40:30 +0000237 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000238 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000239 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000240
Chris Lattner9542f9712005-11-17 19:40:30 +0000241 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000242 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000243 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000244 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000245 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000246 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000247 O << "\"L" << getFunctionNumber() << "$pb\"\n";
248 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000249 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000250 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000251 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000252 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000253 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000254 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000255 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000256 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000257 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000258 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000259 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000260 else
261 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000262 }
Nate Begemaned428532004-09-04 05:00:00 +0000263 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000264 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000265 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000266 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000267 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000268 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000269 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000270 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000271 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000272 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000273 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000274 else
275 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000276 }
277 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000278 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000279 unsigned CCReg = MI->getOperand(OpNo).getReg();
280 unsigned RegNo = enumRegToMachineReg(CCReg);
281 O << (0x80 >> RegNo);
282 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000283 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000284 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
285 printSymbolLo(MI, OpNo);
286 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000287 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000288 MI->getOperand(OpNo+1).getReg() == PPC::R0)
289 O << "0";
290 else
291 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000292 O << ')';
293 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000294 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000295 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000296 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000297 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000298 printSymbolLo(MI, OpNo);
299 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000300 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000301 MI->getOperand(OpNo+1).getReg() == PPC::R0)
302 O << "0";
303 else
304 printOperand(MI, OpNo+1);
305 O << ')';
306 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000307
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000308 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000309 // When used as the base register, r0 reads constant zero rather than
310 // the value contained in the register. For this reason, the darwin
311 // assembler requires that we print r0 as 0 (no r) when used as the base.
312 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000313 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000314 O << ", ";
315 printOperand(MI, OpNo+1);
316 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000317
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000318 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
319 const MachineOperand &MO = MI->getOperand(OpNo);
320
321 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
322
323 GlobalValue *GV = MO.getGlobal();
324
325 std::string Name = Mang->getMangledName(GV);
326
327 // Map symbol -> label of TOC entry.
328 if (TOC.count(Name) == 0) {
329 std::string Label;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000330 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000331 Label += "C";
332 Label += utostr(LabelID++);
333
334 TOC[Name] = Label;
335 }
336
337 O << TOC[Name] << "@toc";
338 }
339
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000340 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000341 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000342
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000343 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000344
345 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begemaned428532004-09-04 05:00:00 +0000346 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000347
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000348 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendling57f0db82009-02-24 08:30:20 +0000349 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000350 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000351 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000352 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000353 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000354
355 virtual const char *getPassName() const {
356 return "Linux PPC Assembly Printer";
357 }
358
359 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000360 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000361
Jim Laskeybf111822006-12-21 20:26:09 +0000362 void getAnalysisUsage(AnalysisUsage &AU) const {
363 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000364 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000365 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000366 PPCAsmPrinter::getAnalysisUsage(AU);
367 }
368
Chris Lattner40bbebd2009-07-21 18:38:57 +0000369 void PrintGlobalVariable(const GlobalVariable *GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000370 };
371
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000372 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
373 /// OS X
Bill Wendling57f0db82009-02-24 08:30:20 +0000374 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000375 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000376 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000377 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000378 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000379 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000380
381 virtual const char *getPassName() const {
382 return "Darwin PPC Assembly Printer";
383 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000384
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000385 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman18ed0292005-07-21 01:25:49 +0000386 bool doInitialization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000387 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000388
Jim Laskeyb2efb852006-01-04 22:28:25 +0000389 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000390 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000391 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000392 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000393 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000394 }
395
Chris Lattner40bbebd2009-07-21 18:38:57 +0000396 void PrintGlobalVariable(const GlobalVariable *GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000397 };
398} // end of anonymous namespace
399
Nate Begemane59bf592004-08-14 22:09:10 +0000400// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000401#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000402
Chris Lattner9ba13e42005-11-17 19:25:59 +0000403void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000404 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000405 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000406 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000407
Nate Begeman37efe672006-04-22 18:53:45 +0000408 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner325d3dc2009-09-13 17:14:04 +0000409 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000410 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000411 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000412 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000413 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000414 // FIXME: PIC relocation model
415 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000416 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000417 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000418 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000419 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000420 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000421 // Computing the address of an external symbol, not calling it.
Chris Lattner33adcfb2009-08-22 21:43:10 +0000422 std::string Name(MAI->getGlobalPrefix());
Chris Lattner8f831cb2009-07-15 01:14:44 +0000423 Name += MO.getSymbolName();
424
Evan Cheng4c1aa862006-02-22 20:19:42 +0000425 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner8f831cb2009-07-15 01:14:44 +0000426 GVStubs[Name] = Name+"$non_lazy_ptr";
427 Name += "$non_lazy_ptr";
Chris Lattnera637c322005-12-16 00:22:14 +0000428 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000429 O << Name;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000430 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000431 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000432 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000433 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000434 GlobalValue *GV = MO.getGlobal();
Chris Lattner8f831cb2009-07-15 01:14:44 +0000435 std::string Name;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000436
Nate Begemanfcf4a422004-10-17 23:01:34 +0000437 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000438 if (TM.getRelocationModel() != Reloc::Static &&
439 (GV->isDeclaration() || GV->isWeakForLinker())) {
440 if (!GV->hasHiddenVisibility()) {
441 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
442 GVStubs[Mang->getMangledName(GV)] = Name;
443 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
444 GV->hasAvailableExternallyLinkage()) {
445 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
446 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
447 } else {
448 Name = Mang->getMangledName(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000449 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000450 } else {
451 Name = Mang->getMangledName(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000452 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000453 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000454
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000455 printOffset(MO.getOffset());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000456 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000457 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000458
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000459 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000460 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000461 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000462 }
463}
464
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000465/// EmitExternalGlobal - In this case we need to use the indirect symbol.
466///
467void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling7d16e852009-04-10 00:12:49 +0000468 std::string Name;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000469
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000470 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner8f831cb2009-07-15 01:14:44 +0000471 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +0000472 } else {
473 Name = Mang->getMangledName(GV);
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000474 }
475 O << Name;
476}
477
Chris Lattnere3f01572006-02-23 19:31:10 +0000478/// PrintAsmOperand - Print out an operand for an inline asm expression.
479///
480bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000481 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000482 const char *ExtraCode) {
483 // Does this asm operand have a single letter operand modifier?
484 if (ExtraCode && ExtraCode[0]) {
485 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000486
Chris Lattnere3f01572006-02-23 19:31:10 +0000487 switch (ExtraCode[0]) {
488 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000489 case 'c': // Don't print "$" before a global var name or constant.
490 // PPC never has a prefix.
491 printOperand(MI, OpNo);
492 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000493 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000494 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000495 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000496 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000497 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000498 return true;
499 ++OpNo; // Return the high-part.
500 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000501 case 'I':
502 // Write 'i' if an integer constant, otherwise nothing. Used to print
503 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000504 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000505 O << "i";
506 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000507 }
508 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000509
Chris Lattnere3f01572006-02-23 19:31:10 +0000510 printOperand(MI, OpNo);
511 return false;
512}
513
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000514// At the moment, all inline asm memory operands are a single register.
515// In any case, the output of this routine should always be just one
516// assembler operand.
517
Chris Lattner2c003e22006-02-24 20:27:40 +0000518bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000519 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000520 const char *ExtraCode) {
521 if (ExtraCode && ExtraCode[0])
522 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000523 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000524 O << "0(";
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000525 printOperand(MI, OpNo);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000526 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000527 return false;
528}
Chris Lattnere3f01572006-02-23 19:31:10 +0000529
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000530void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000531 const char *Modifier) {
532 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
533 unsigned Code = MI->getOperand(OpNo).getImm();
534 if (!strcmp(Modifier, "cc")) {
535 switch ((PPC::Predicate)Code) {
536 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
537 case PPC::PRED_LT: O << "lt"; return;
538 case PPC::PRED_LE: O << "le"; return;
539 case PPC::PRED_EQ: O << "eq"; return;
540 case PPC::PRED_GE: O << "ge"; return;
541 case PPC::PRED_GT: O << "gt"; return;
542 case PPC::PRED_NE: O << "ne"; return;
543 case PPC::PRED_UN: O << "un"; return;
544 case PPC::PRED_NU: O << "nu"; return;
545 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000546
Chris Lattneraf53a872006-11-04 05:27:39 +0000547 } else {
548 assert(!strcmp(Modifier, "reg") &&
549 "Need to specify 'cc' or 'reg' as predicate op modifier!");
550 // Don't print the register for 'always'.
551 if (Code == PPC::PRED_ALWAYS) return;
552 printOperand(MI, OpNo+1);
553 }
554}
555
556
Nate Begemane59bf592004-08-14 22:09:10 +0000557/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
558/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000559///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000560void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000561 ++EmittedInsts;
Chris Lattner634cca32009-09-09 20:34:59 +0000562
563 processDebugLoc(MI->getDebugLoc());
Chris Lattner617742b2005-10-14 22:44:13 +0000564
Nate Begemanad5f65c2005-04-05 18:19:50 +0000565 // Check for slwi/srwi mnemonics.
566 if (MI->getOpcode() == PPC::RLWINM) {
567 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000568 unsigned char SH = MI->getOperand(2).getImm();
569 unsigned char MB = MI->getOperand(3).getImm();
570 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000571 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000572 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000573 }
574 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000575 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000576 SH = 32-SH;
577 }
578 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000579 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000580 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000581 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000582 O << ", " << (unsigned int)SH << '\n';
Nate Begemanad5f65c2005-04-05 18:19:50 +0000583 return;
584 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000585 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000586 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000587 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000588 printOperand(MI, 0);
589 O << ", ";
590 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000591 O << '\n';
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000592 return;
593 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000594 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000595 unsigned char SH = MI->getOperand(2).getImm();
596 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000597 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
598 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000599 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000600 printOperand(MI, 0);
601 O << ", ";
602 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000603 O << ", " << (unsigned int)SH << '\n';
Chris Lattner566c1b12006-11-18 01:23:56 +0000604 return;
605 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000606 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000607
Chris Lattner2698cb62009-08-08 00:05:42 +0000608 printInstruction(MI);
Chris Lattnerc5ea2632009-09-09 23:14:36 +0000609
610 if (VerboseAsm && !MI->getDebugLoc().isUnknown())
611 EmitComments(*MI);
612 O << '\n';
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000613}
614
Jim Laskeybf111822006-12-21 20:26:09 +0000615/// runOnMachineFunction - This uses the printMachineInstruction()
616/// method to print assembly for each instruction.
617///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000618bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000619 this->MF = &MF;
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000620
Jim Laskeybf111822006-12-21 20:26:09 +0000621 SetupMachineFunction(MF);
622 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000623
Jim Laskeybf111822006-12-21 20:26:09 +0000624 // Print out constants referenced by the function
625 EmitConstantPool(MF.getConstantPool());
626
627 // Print out labels for the function.
628 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000629 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000630
Jim Laskeybf111822006-12-21 20:26:09 +0000631 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000632 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000633 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000634 case Function::InternalLinkage: // Symbols default to internal.
635 break;
636 case Function::ExternalLinkage:
637 O << "\t.global\t" << CurrentFnName << '\n'
638 << "\t.type\t" << CurrentFnName << ", @function\n";
639 break;
Dale Johannesena60e51f2009-08-24 01:03:42 +0000640 case Function::LinkerPrivateLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +0000641 case Function::WeakAnyLinkage:
642 case Function::WeakODRLinkage:
643 case Function::LinkOnceAnyLinkage:
644 case Function::LinkOnceODRLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000645 O << "\t.global\t" << CurrentFnName << '\n';
646 O << "\t.weak\t" << CurrentFnName << '\n';
647 break;
648 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000649
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000650 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000651
Bill Wendling20c568f2009-06-30 22:38:32 +0000652 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000653
654 if (Subtarget.isPPC64()) {
655 // Emit an official procedure descriptor.
656 // FIXME 64-bit SVR4: Use MCSection here?
657 O << "\t.section\t\".opd\",\"aw\"\n";
658 O << "\t.align 3\n";
659 O << CurrentFnName << ":\n";
660 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
661 O << "\t.previous\n";
662 O << ".L." << CurrentFnName << ":\n";
663 } else {
664 O << CurrentFnName << ":\n";
665 }
Jim Laskeybf111822006-12-21 20:26:09 +0000666
667 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000668 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000669
670 // Print out code for the function.
671 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
672 I != E; ++I) {
673 // Print a label for the basic block.
674 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000675 EmitBasicBlockStart(I);
Jim Laskeybf111822006-12-21 20:26:09 +0000676 O << '\n';
677 }
678 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
679 II != E; ++II) {
680 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000681 printMachineInstruction(II);
682 }
683 }
684
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000685 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000686
687 // Print out jump tables referenced by the function.
688 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000689
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000690 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesenf94a3272008-12-03 19:33:10 +0000691
Jim Laskeybf111822006-12-21 20:26:09 +0000692 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000693 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000694
Jim Laskeybf111822006-12-21 20:26:09 +0000695 // We didn't modify anything.
696 return false;
697}
698
Chris Lattner40bbebd2009-07-21 18:38:57 +0000699void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000700 const TargetData *TD = TM.getTargetData();
701
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000702 if (!GVar->hasInitializer())
703 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000704
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000705 // Check to see if this is a special global used by LLVM, if so, emit it.
706 if (EmitSpecialLLVMGlobal(GVar))
707 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000708
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000709 std::string name = Mang->getMangledName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000710
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000711 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000712
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000713 Constant *C = GVar->getInitializer();
714 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000715 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000716 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000717
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000718 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
719 TM));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000720
721 if (C->isNullValue() && /* FIXME: Verify correct */
722 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000723 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000724 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000725 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000726
727 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000728 O << "\t.global " << name << '\n';
729 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000730 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000731 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000732 } else if (GVar->hasLocalLinkage()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000733 O << MAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000734 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000735 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000736 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000737 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000738 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000739 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000740 O << "'";
741 }
742 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000743 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000744 }
745
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000746 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000747 case GlobalValue::LinkOnceAnyLinkage:
748 case GlobalValue::LinkOnceODRLinkage:
749 case GlobalValue::WeakAnyLinkage:
750 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000751 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000752 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000753 O << "\t.global " << name << '\n'
754 << "\t.type " << name << ", @object\n"
755 << "\t.weak " << name << '\n';
756 break;
757 case GlobalValue::AppendingLinkage:
758 // FIXME: appending linkage variables should go into a section of
759 // their name or something. For now, just emit them as external.
760 case GlobalValue::ExternalLinkage:
761 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000762 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000763 << "\t.type " << name << ", @object\n";
764 // FALL THROUGH
765 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000766 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000767 break;
768 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000769 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000770 }
771
772 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000773 O << name << ":";
774 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000775 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000776 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000777 O << "'";
778 }
779 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000780
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000781 EmitGlobalConstant(C);
782 O << '\n';
783}
784
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000785bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
786 const TargetData *TD = TM.getTargetData();
787
788 bool isPPC64 = TD->getPointerSizeInBits() == 64;
789
790 if (isPPC64 && !TOC.empty()) {
791 // FIXME 64-bit SVR4: Use MCSection here?
792 O << "\t.section\t\".toc\",\"aw\"\n";
793
794 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
795 I != E; ++I) {
796 O << I->second << ":\n";
797 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
798 }
799 }
800
801 return AsmPrinter::doFinalization(M);
802}
Jim Laskeybf111822006-12-21 20:26:09 +0000803
Nate Begemaned428532004-09-04 05:00:00 +0000804/// runOnMachineFunction - This uses the printMachineInstruction()
805/// method to print assembly for each instruction.
806///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000807bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000808 this->MF = &MF;
809
Chris Lattner8b8b9512005-11-21 07:51:23 +0000810 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000811 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000812
Nate Begemaned428532004-09-04 05:00:00 +0000813 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000814 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000815
816 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000817 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000818 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000819
Chris Lattnera637c322005-12-16 00:22:14 +0000820 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000821 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000822 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000823 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000824 break;
825 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000826 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000827 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000828 case Function::WeakAnyLinkage:
829 case Function::WeakODRLinkage:
830 case Function::LinkOnceAnyLinkage:
831 case Function::LinkOnceODRLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000832 case Function::LinkerPrivateLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000833 O << "\t.globl\t" << CurrentFnName << '\n';
834 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000835 break;
836 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000837
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000838 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000839
Bill Wendling20c568f2009-06-30 22:38:32 +0000840 EmitAlignment(MF.getAlignment(), F);
Nate Begemaned428532004-09-04 05:00:00 +0000841 O << CurrentFnName << ":\n";
842
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000843 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000844 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000845
Bill Wendling381802f2008-01-26 06:51:24 +0000846 // If the function is empty, then we need to emit *something*. Otherwise, the
847 // function's label might be associated with something that it wasn't meant to
848 // be associated with. We emit a noop in this situation.
849 MachineFunction::iterator I = MF.begin();
850
Bill Wendling824a7212008-01-26 09:03:52 +0000851 if (++I == MF.end() && MF.front().empty())
852 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000853
Nate Begemaned428532004-09-04 05:00:00 +0000854 // Print out code for the function.
855 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
856 I != E; ++I) {
857 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000858 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000859 EmitBasicBlockStart(I);
Nate Begemancdf38c42006-05-02 05:37:32 +0000860 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000861 }
Bill Wendling381802f2008-01-26 06:51:24 +0000862 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
863 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000864 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000865 printMachineInstruction(II);
866 }
867 }
Nate Begemaned428532004-09-04 05:00:00 +0000868
Chris Lattnerfea13d32006-10-05 00:26:05 +0000869 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000870 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000871
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000872 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000873 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000874
Nate Begemaned428532004-09-04 05:00:00 +0000875 // We didn't modify anything.
876 return false;
877}
878
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000879
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000880bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000881 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000882 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000883 "ppc",
884 "ppc601",
885 "ppc602",
886 "ppc603",
887 "ppc7400",
888 "ppc750",
889 "ppc970",
890 "ppc64"
891 };
892
893 unsigned Directive = Subtarget.getDarwinDirective();
894 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
895 Directive = PPC::DIR_970;
896 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
897 Directive = PPC::DIR_7400;
898 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
899 Directive = PPC::DIR_64;
900 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000901 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000902
Dan Gohmanb8275a32007-07-25 19:33:14 +0000903 bool Result = AsmPrinter::doInitialization(M);
Devang Patel66b4d3b2009-06-20 01:00:07 +0000904 assert(MMI);
Dale Johannesen94618eb2008-07-09 20:43:39 +0000905
Jim Laskey2ada0852006-11-28 18:21:52 +0000906 // Prime text sections so they are adjacent. This reduces the likelihood a
907 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000908 TargetLoweringObjectFileMachO &TLOFMacho =
909 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000910 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000911 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000912 OutStreamer.SwitchSection(
913 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
914 MCSectionMachO::S_SYMBOL_STUBS |
915 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
916 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000917 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000918 OutStreamer.SwitchSection(
919 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
920 MCSectionMachO::S_SYMBOL_STUBS |
921 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
922 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000923 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000924 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000925
Dan Gohmanb8275a32007-07-25 19:33:14 +0000926 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000927}
928
Chris Lattner40bbebd2009-07-21 18:38:57 +0000929void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000930 const TargetData *TD = TM.getTargetData();
931
932 if (!GVar->hasInitializer())
933 return; // External global require no code
934
935 // Check to see if this is a special global used by LLVM, if so, emit it.
936 if (EmitSpecialLLVMGlobal(GVar)) {
937 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000938 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000939 O << ".reference .constructors_used\n";
Daniel Dunbar03d76512009-07-25 23:55:21 +0000940 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000941 O << ".reference .destructors_used\n";
942 }
943 return;
944 }
945
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000946 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000947 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000948
949 Constant *C = GVar->getInitializer();
950 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000951 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000952 unsigned Align = TD->getPreferredAlignmentLog(GVar);
953
Chris Lattnera87dea42009-07-31 18:48:30 +0000954 const MCSection *TheSection =
Chris Lattnere53a6002009-07-29 05:09:30 +0000955 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000956 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000957
Chris Lattner3b24c012009-08-04 05:35:56 +0000958 /// FIXME: Drive this off the section!
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000959 if (C->isNullValue() && /* FIXME: Verify correct */
960 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000961 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000962 GVar->isWeakForLinker()) &&
Chris Lattnerc440cc72009-07-24 04:08:17 +0000963 // Don't put things that should go in the cstring section into "comm".
Chris Lattner5fe575f2009-07-27 05:32:16 +0000964 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000965 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
966
967 if (GVar->hasExternalLinkage()) {
968 O << "\t.globl " << name << '\n';
969 O << "\t.zerofill __DATA, __common, " << name << ", "
970 << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000971 } else if (GVar->hasLocalLinkage()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000972 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000973 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000974 O << "\t.globl " << name << '\n'
Chris Lattner33adcfb2009-08-22 21:43:10 +0000975 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000976 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000977 O << name << ":";
978 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000979 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000980 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000981 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000982 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000983 EmitGlobalConstant(C);
984 return;
985 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000986 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000987 // Darwin 9 and above support aligned common data.
988 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000989 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000990 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000991 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000992 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000993 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000994 O << "'";
995 }
996 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000997 return;
998 }
999
1000 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +00001001 case GlobalValue::LinkOnceAnyLinkage:
1002 case GlobalValue::LinkOnceODRLinkage:
1003 case GlobalValue::WeakAnyLinkage:
1004 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00001005 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +00001006 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001007 O << "\t.globl " << name << '\n'
1008 << "\t.weak_definition " << name << '\n';
1009 break;
1010 case GlobalValue::AppendingLinkage:
1011 // FIXME: appending linkage variables should go into a section of
1012 // their name or something. For now, just emit them as external.
1013 case GlobalValue::ExternalLinkage:
1014 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001015 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001016 // FALL THROUGH
1017 case GlobalValue::InternalLinkage:
Evan Cheng1902a122009-01-25 06:32:01 +00001018 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001019 break;
1020 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001021 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001022 }
1023
1024 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +00001025 O << name << ":";
1026 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001027 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001028 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001029 O << "'";
1030 }
1031 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001032
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001033 EmitGlobalConstant(C);
1034 O << '\n';
1035}
1036
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001037bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +00001038 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001039
Chris Lattner7e097e42006-06-27 01:02:25 +00001040 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1041
Chris Lattner2dfddee2009-08-03 22:52:21 +00001042 // Darwin/PPC always uses mach-o.
1043 TargetLoweringObjectFileMachO &TLOFMacho =
1044 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1045
Chris Lattnerff4bc462009-08-10 01:39:42 +00001046
1047 const MCSection *LSPSection = 0;
1048 if (!FnStubs.empty()) // .lazy_symbol_pointer
1049 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1050
1051
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001052 // Output stubs for dynamically-linked functions
Chris Lattnerea56f102009-07-15 00:55:58 +00001053 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattner2dfddee2009-08-03 22:52:21 +00001054 const MCSection *StubSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +00001055 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1056 MCSectionMachO::S_SYMBOL_STUBS |
1057 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1058 32, SectionKind::getText());
1059 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001060 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001061 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +00001062 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001063 const FnStubInfo &Info = I->second;
Chris Lattnerdefd3002009-07-15 02:33:19 +00001064 O << Info.Stub << ":\n";
1065 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001066 O << "\tmflr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001067 O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1068 O << Info.AnonSymbol << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001069 O << "\tmflr r11\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001070 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
Evan Chengae94e592008-12-05 01:06:39 +00001071 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001072 O << "\tmtlr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001073 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1074 O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001075 O << "\tmtctr r12\n";
1076 O << "\tbctr\n";
Chris Lattnerfe2fe702009-07-16 01:23:26 +00001077
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001078 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001079 O << Info.LazyPtr << ":\n";
1080 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001081 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001082 }
Chris Lattnerea56f102009-07-15 00:55:58 +00001083 } else if (!FnStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001084 const MCSection *StubSection =
1085 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1086 MCSectionMachO::S_SYMBOL_STUBS |
1087 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1088 16, SectionKind::getText());
Chris Lattner2dfddee2009-08-03 22:52:21 +00001089
Chris Lattner9ec8fac2009-07-15 02:28:57 +00001090 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001091 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001092 OutStreamer.SwitchSection(StubSection);
Chris Lattnerdeea4162005-12-13 04:33:58 +00001093 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001094 const FnStubInfo &Info = I->second;
1095 O << Info.Stub << ":\n";
1096 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1097 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattner1a87c052009-07-15 02:36:21 +00001098 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001099 O << Info.LazyPtr << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001100 O << "\tmtctr r12\n";
1101 O << "\tbctr\n";
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001102 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001103 O << Info.LazyPtr << ":\n";
1104 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001105 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001106 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001107 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001108
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001109 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001110
Chris Lattner33adcfb2009-08-22 21:43:10 +00001111 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001112 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001113 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +00001114 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001115 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +00001116 E = Personalities.end(); I != E; ++I) {
1117 if (*I)
1118 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner0f6c8f22009-07-15 01:16:38 +00001119 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +00001120 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001121 }
1122
Chris Lattner2dfddee2009-08-03 22:52:21 +00001123 // Output macho stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001124 if (!GVStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001125 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001126 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +00001127 EmitAlignment(isPPC64 ? 3 : 2);
1128
Chris Lattner8f831cb2009-07-15 01:14:44 +00001129 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1130 E = GVStubs.end(); I != E; ++I) {
1131 O << I->second << ":\n";
1132 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1133 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001134 }
Nate Begemane59bf592004-08-14 22:09:10 +00001135 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001136
Evan Chengae94e592008-12-05 01:06:39 +00001137 if (!HiddenGVStubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001138 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +00001139 EmitAlignment(isPPC64 ? 3 : 2);
1140 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1141 E = HiddenGVStubs.end(); I != E; ++I) {
1142 O << I->second << ":\n";
1143 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chengae94e592008-12-05 01:06:39 +00001144 }
1145 }
1146
Chris Lattner5b0ac992005-11-01 00:12:36 +00001147 // Funny Darwin hack: This flag tells the linker that no global symbols
1148 // contain code that falls through to other global symbols (e.g. the obvious
1149 // implementation of multiple entry points). If this doesn't occur, the
1150 // linker can safely perform dead code stripping. Since LLVM never generates
1151 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001152 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001153
Dan Gohmanb8275a32007-07-25 19:33:14 +00001154 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001155}
Nate Begemaned428532004-09-04 05:00:00 +00001156
Chris Lattner4da1c822006-09-20 17:12:19 +00001157
1158
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001159/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1160/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001161/// Darwin assembler can deal with.
1162///
Daniel Dunbar78945782009-08-13 23:48:47 +00001163static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1164 TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +00001165 const MCAsmInfo *tai,
Daniel Dunbar78945782009-08-13 23:48:47 +00001166 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001167 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1168
Chris Lattner40bbebd2009-07-21 18:38:57 +00001169 if (Subtarget->isDarwin())
Daniel Dunbar67d894e2009-08-13 19:38:51 +00001170 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1171 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Chris Lattner4da1c822006-09-20 17:12:19 +00001172}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001173
Bob Wilsona96751f2009-06-23 23:59:40 +00001174// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001175extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001176 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001177 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1178}