blob: 358a67730af7628ed9840770a905855425c809d7 [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 Lattnera3840792004-08-16 23:25:21 +000052using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000053
Chris Lattner95b2c7d2006-12-19 22:59:26 +000054STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukman5dfe3a92004-06-21 16:55:25 +000055
Chris Lattner95b2c7d2006-12-19 22:59:26 +000056namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000057 class PPCAsmPrinter : public AsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +000058 protected:
Chris Lattner9ec8fac2009-07-15 02:28:57 +000059 struct FnStubInfo {
60 std::string Stub, LazyPtr, AnonSymbol;
61
62 FnStubInfo() {}
63
64 void Init(const GlobalValue *GV, Mangler *Mang) {
65 // Already initialized.
66 if (!Stub.empty()) return;
67 Stub = Mang->getMangledName(GV, "$stub", true);
68 LazyPtr = Mang->getMangledName(GV, "$lazy_ptr", true);
69 AnonSymbol = Mang->getMangledName(GV, "$stub$tmp", true);
70 }
71
72 void Init(const std::string &GV, Mangler *Mang) {
73 // Already initialized.
74 if (!Stub.empty()) return;
Bill Wendling3d10a5a2009-07-20 01:03:30 +000075 Stub = Mang->makeNameProper(GV + "$stub",
Bill Wendling5c0ba802009-07-20 19:41:27 +000076 Mangler::Private);
Bill Wendling3d10a5a2009-07-20 01:03:30 +000077 LazyPtr = Mang->makeNameProper(GV + "$lazy_ptr",
Bill Wendling5c0ba802009-07-20 19:41:27 +000078 Mangler::Private);
Bill Wendling3d10a5a2009-07-20 01:03:30 +000079 AnonSymbol = Mang->makeNameProper(GV + "$stub$tmp",
Bill Wendling5c0ba802009-07-20 19:41:27 +000080 Mangler::Private);
Chris Lattner9ec8fac2009-07-15 02:28:57 +000081 }
82 };
83
84 StringMap<FnStubInfo> FnStubs;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000085 StringMap<std::string> GVStubs, HiddenGVStubs, TOC;
Chris Lattnerdadceed2006-09-20 17:07:15 +000086 const PPCSubtarget &Subtarget;
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000087 uint64_t LabelID;
Bill Wendling57f0db82009-02-24 08:30:20 +000088 public:
David Greene71847812009-07-14 20:18:05 +000089 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +000090 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000091 : AsmPrinter(O, TM, T, V),
Tilmann Scheller6b16eff2009-08-15 11:54:46 +000092 Subtarget(TM.getSubtarget<PPCSubtarget>()), LabelID(0) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000093
Misha Brukman5dfe3a92004-06-21 16:55:25 +000094 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000095 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000096 }
97
Nate Begeman21e463b2005-10-16 05:39:50 +000098 PPCTargetMachine &getTM() {
99 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +0000100 }
101
Nate Begemanadeb43d2005-07-20 22:42:00 +0000102 unsigned enumRegToMachineReg(unsigned enumReg) {
103 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000104 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +0000105 case PPC::CR0: return 0;
106 case PPC::CR1: return 1;
107 case PPC::CR2: return 2;
108 case PPC::CR3: return 3;
109 case PPC::CR4: return 4;
110 case PPC::CR5: return 5;
111 case PPC::CR6: return 6;
112 case PPC::CR7: return 7;
113 }
Torok Edwinc23197a2009-07-14 16:55:14 +0000114 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +0000115 }
116
Nate Begemane59bf592004-08-14 22:09:10 +0000117 /// printInstruction - This method is automatically generated by tablegen
118 /// from the instruction set description. This method returns true if the
119 /// machine instruction was sufficiently described to print it, otherwise it
120 /// returns false.
Chris Lattner41aefdc2009-08-08 01:32:19 +0000121 void printInstruction(const MachineInstr *MI);
Chris Lattnerd95148f2009-09-13 20:19:22 +0000122 static const char *getRegisterName(unsigned RegNo);
Chris Lattner05af2612009-09-13 20:08:00 +0000123
Nate Begemane59bf592004-08-14 22:09:10 +0000124
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000125 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +0000126 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000127
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000128 /// stripRegisterPrefix - This method strips the character prefix from a
129 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +0000130 const char *stripRegisterPrefix(const char *RegName) {
131 switch (RegName[0]) {
132 case 'r':
133 case 'f':
134 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000135 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000136 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000137
Jim Laskey40ee69f2006-12-20 21:33:34 +0000138 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000139 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000140
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000141 /// printRegister - Print register according to target requirements.
142 ///
143 void printRegister(const MachineOperand &MO, bool R0AsZero) {
144 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000145 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000146
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000147 // If we should use 0 for R0.
148 if (R0AsZero && RegNo == PPC::R0) {
149 O << "0";
150 return;
151 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000152
Chris Lattner762ccea2009-09-13 20:31:40 +0000153 const char *RegName = getRegisterName(RegNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000154 // Linux assembler (Others?) does not take register mnemonics.
155 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000156 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
157 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000158 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000159
Chris Lattner58873272006-02-01 22:38:46 +0000160 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000161 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000162 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000163 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000164 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000165 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000166 } else {
167 printOp(MO);
168 }
169 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000170
Chris Lattner58873272006-02-01 22:38:46 +0000171 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000172 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000173 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
174 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000175
176
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000177 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000178 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000179 value = (value << (32-5)) >> (32-5);
180 O << (int)value;
181 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000182 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000183 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000184 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000185 O << (unsigned int)value;
186 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000187 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000188 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000189 assert(value <= 63 && "Invalid u6imm argument!");
190 O << (unsigned int)value;
191 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000192 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000193 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000194 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000195 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000196 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000197 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000198 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000199 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000200 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000201 } else {
202 O << "lo16(";
203 printOp(MI->getOperand(OpNo));
204 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000205 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000206 else
207 O << ')';
208 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000209 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000210 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000211 // Branches can take an immediate operand. This is used by the branch
212 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000213 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000214 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000215 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000216 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000217 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000218 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000219 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000220 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000221 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000222 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
223 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000224 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000225 // Dynamically-resolved functions need a stub for the function.
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000226 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
227 FnInfo.Init(GV, Mang);
228 O << FnInfo.Stub;
Chris Lattnera637c322005-12-16 00:22:14 +0000229 return;
230 }
231 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000232 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattner9ec8fac2009-07-15 02:28:57 +0000233 FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
234 FnInfo.Init(MO.getSymbolName(), Mang);
235 O << FnInfo.Stub;
Chris Lattner9542f9712005-11-17 19:40:30 +0000236 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000237 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000238 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000239
Chris Lattner9542f9712005-11-17 19:40:30 +0000240 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000241 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000242 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000243 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000244 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000245 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000246 O << "\"L" << getFunctionNumber() << "$pb\"\n";
247 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000248 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000249 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000250 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000251 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000252 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000253 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000254 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000255 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000256 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000257 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000258 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000259 else
260 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000261 }
Nate Begemaned428532004-09-04 05:00:00 +0000262 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000263 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000264 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000265 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000266 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000267 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000268 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000269 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000270 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000271 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000272 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000273 else
274 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000275 }
276 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000277 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000278 unsigned CCReg = MI->getOperand(OpNo).getReg();
279 unsigned RegNo = enumRegToMachineReg(CCReg);
280 O << (0x80 >> RegNo);
281 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000282 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000283 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
284 printSymbolLo(MI, OpNo);
285 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000286 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000287 MI->getOperand(OpNo+1).getReg() == PPC::R0)
288 O << "0";
289 else
290 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000291 O << ')';
292 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000293 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000294 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000295 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000296 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000297 printSymbolLo(MI, OpNo);
298 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000299 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000300 MI->getOperand(OpNo+1).getReg() == PPC::R0)
301 O << "0";
302 else
303 printOperand(MI, OpNo+1);
304 O << ')';
305 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000306
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000307 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000308 // When used as the base register, r0 reads constant zero rather than
309 // the value contained in the register. For this reason, the darwin
310 // assembler requires that we print r0 as 0 (no r) when used as the base.
311 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000312 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000313 O << ", ";
314 printOperand(MI, OpNo+1);
315 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000316
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000317 void printTOCEntryLabel(const MachineInstr *MI, unsigned OpNo) {
318 const MachineOperand &MO = MI->getOperand(OpNo);
319
320 assert(MO.getType() == MachineOperand::MO_GlobalAddress);
321
322 GlobalValue *GV = MO.getGlobal();
323
324 std::string Name = Mang->getMangledName(GV);
325
326 // Map symbol -> label of TOC entry.
327 if (TOC.count(Name) == 0) {
328 std::string Label;
Chris Lattner33adcfb2009-08-22 21:43:10 +0000329 Label += MAI->getPrivateGlobalPrefix();
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000330 Label += "C";
331 Label += utostr(LabelID++);
332
333 TOC[Name] = Label;
334 }
335
336 O << TOC[Name] << "@toc";
337 }
338
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000339 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000340 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000341
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000342 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000343 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000344
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000345 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000346 class PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000347 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000348 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000349 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000350 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000351
352 virtual const char *getPassName() const {
353 return "Linux PPC Assembly Printer";
354 }
355
356 bool runOnMachineFunction(MachineFunction &F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000357 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000358
Jim Laskeybf111822006-12-21 20:26:09 +0000359 void getAnalysisUsage(AnalysisUsage &AU) const {
360 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000361 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000362 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000363 PPCAsmPrinter::getAnalysisUsage(AU);
364 }
365
Chris Lattner40bbebd2009-07-21 18:38:57 +0000366 void PrintGlobalVariable(const GlobalVariable *GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000367 };
368
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000369 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
370 /// OS X
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000371 class PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000372 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000373 public:
Daniel Dunbar51b198a2009-07-15 20:24:03 +0000374 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Chris Lattneraf76e592009-08-22 20:48:53 +0000375 const MCAsmInfo *T, bool V)
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000376 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000377
378 virtual const char *getPassName() const {
379 return "Darwin PPC Assembly Printer";
380 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000381
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000382 bool runOnMachineFunction(MachineFunction &F);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000383 bool doFinalization(Module &M);
Bob Wilson812209a2009-09-30 22:06:26 +0000384 void EmitStartOfAsmFile(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000385
Jim Laskeyb2efb852006-01-04 22:28:25 +0000386 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000387 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000388 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000389 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000390 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000391 }
392
Chris Lattner40bbebd2009-07-21 18:38:57 +0000393 void PrintGlobalVariable(const GlobalVariable *GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000394 };
395} // end of anonymous namespace
396
Nate Begemane59bf592004-08-14 22:09:10 +0000397// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000398#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000399
Chris Lattner9ba13e42005-11-17 19:25:59 +0000400void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000401 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000402 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000403 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000404
Nate Begeman37efe672006-04-22 18:53:45 +0000405 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner325d3dc2009-09-13 17:14:04 +0000406 GetMBBSymbol(MO.getMBB()->getNumber())->print(O, MAI);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000407 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000408 case MachineOperand::MO_JumpTableIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000409 O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000410 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000411 // FIXME: PIC relocation model
412 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000413 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner33adcfb2009-08-22 21:43:10 +0000414 O << MAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000415 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000416 return;
Bob Wilson3d90dbe2009-11-04 21:31:18 +0000417 case MachineOperand::MO_BlockAddress:
418 GetBlockAddressSymbol(MO.getBlockAddress())->print(O, MAI);
419 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
Chris Lattnere3f01572006-02-23 19:31:10 +0000465/// PrintAsmOperand - Print out an operand for an inline asm expression.
466///
467bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000468 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000469 const char *ExtraCode) {
470 // Does this asm operand have a single letter operand modifier?
471 if (ExtraCode && ExtraCode[0]) {
472 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000473
Chris Lattnere3f01572006-02-23 19:31:10 +0000474 switch (ExtraCode[0]) {
475 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000476 case 'c': // Don't print "$" before a global var name or constant.
477 // PPC never has a prefix.
478 printOperand(MI, OpNo);
479 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000480 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000481 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000482 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000483 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000484 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000485 return true;
486 ++OpNo; // Return the high-part.
487 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000488 case 'I':
489 // Write 'i' if an integer constant, otherwise nothing. Used to print
490 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000491 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000492 O << "i";
493 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000494 }
495 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000496
Chris Lattnere3f01572006-02-23 19:31:10 +0000497 printOperand(MI, OpNo);
498 return false;
499}
500
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000501// At the moment, all inline asm memory operands are a single register.
502// In any case, the output of this routine should always be just one
503// assembler operand.
504
Chris Lattner2c003e22006-02-24 20:27:40 +0000505bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000506 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000507 const char *ExtraCode) {
508 if (ExtraCode && ExtraCode[0])
509 return true; // Unknown modifier.
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000510 assert (MI->getOperand(OpNo).isReg());
Dale Johannesen4e68f882009-08-26 18:10:32 +0000511 O << "0(";
Dale Johannesen5cfd4dd2009-08-18 00:18:39 +0000512 printOperand(MI, OpNo);
Dale Johannesen4e68f882009-08-26 18:10:32 +0000513 O << ")";
Chris Lattner2c003e22006-02-24 20:27:40 +0000514 return false;
515}
Chris Lattnere3f01572006-02-23 19:31:10 +0000516
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000517void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000518 const char *Modifier) {
519 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
520 unsigned Code = MI->getOperand(OpNo).getImm();
521 if (!strcmp(Modifier, "cc")) {
522 switch ((PPC::Predicate)Code) {
523 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
524 case PPC::PRED_LT: O << "lt"; return;
525 case PPC::PRED_LE: O << "le"; return;
526 case PPC::PRED_EQ: O << "eq"; return;
527 case PPC::PRED_GE: O << "ge"; return;
528 case PPC::PRED_GT: O << "gt"; return;
529 case PPC::PRED_NE: O << "ne"; return;
530 case PPC::PRED_UN: O << "un"; return;
531 case PPC::PRED_NU: O << "nu"; return;
532 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000533
Chris Lattneraf53a872006-11-04 05:27:39 +0000534 } else {
535 assert(!strcmp(Modifier, "reg") &&
536 "Need to specify 'cc' or 'reg' as predicate op modifier!");
537 // Don't print the register for 'always'.
538 if (Code == PPC::PRED_ALWAYS) return;
539 printOperand(MI, OpNo+1);
540 }
541}
542
543
Nate Begemane59bf592004-08-14 22:09:10 +0000544/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
545/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000546///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000547void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000548 ++EmittedInsts;
Chris Lattner634cca32009-09-09 20:34:59 +0000549
Devang Patelaf0e2722009-10-06 02:19:11 +0000550 processDebugLoc(MI, true);
Chris Lattner617742b2005-10-14 22:44:13 +0000551
Nate Begemanad5f65c2005-04-05 18:19:50 +0000552 // Check for slwi/srwi mnemonics.
Dale Johannesene89c5102010-01-06 02:20:18 +0000553 bool useSubstituteMnemonic = false;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000554 if (MI->getOpcode() == PPC::RLWINM) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000555 unsigned char SH = MI->getOperand(2).getImm();
556 unsigned char MB = MI->getOperand(3).getImm();
557 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000558 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000559 O << "\tslwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000560 }
561 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000562 O << "\tsrwi "; useSubstituteMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000563 SH = 32-SH;
564 }
Dale Johannesene89c5102010-01-06 02:20:18 +0000565 if (useSubstituteMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000566 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000567 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000568 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000569 O << ", " << (unsigned int)SH;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000570 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000571 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000572 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000573 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000574 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000575 printOperand(MI, 0);
576 O << ", ";
577 printOperand(MI, 1);
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000578 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000579 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000580 unsigned char SH = MI->getOperand(2).getImm();
581 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000582 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
583 if (63-SH == ME) {
Dale Johannesene89c5102010-01-06 02:20:18 +0000584 useSubstituteMnemonic = true;
Nate Begeman5a804e32008-02-05 08:49:09 +0000585 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000586 printOperand(MI, 0);
587 O << ", ";
588 printOperand(MI, 1);
Dale Johannesene89c5102010-01-06 02:20:18 +0000589 O << ", " << (unsigned int)SH;
Chris Lattner566c1b12006-11-18 01:23:56 +0000590 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000591 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000592
Dale Johannesene89c5102010-01-06 02:20:18 +0000593 if (!useSubstituteMnemonic)
594 printInstruction(MI);
595
David Greene1924aab2009-11-13 21:34:57 +0000596 if (VerboseAsm)
Chris Lattnerc5ea2632009-09-09 23:14:36 +0000597 EmitComments(*MI);
598 O << '\n';
Devang Patelaf0e2722009-10-06 02:19:11 +0000599
600 processDebugLoc(MI, false);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000601}
602
Jim Laskeybf111822006-12-21 20:26:09 +0000603/// runOnMachineFunction - This uses the printMachineInstruction()
604/// method to print assembly for each instruction.
605///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000606bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000607 this->MF = &MF;
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000608
Jim Laskeybf111822006-12-21 20:26:09 +0000609 SetupMachineFunction(MF);
610 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000611
Jim Laskeybf111822006-12-21 20:26:09 +0000612 // Print out constants referenced by the function
613 EmitConstantPool(MF.getConstantPool());
614
615 // Print out labels for the function.
616 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000617 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000618
Jim Laskeybf111822006-12-21 20:26:09 +0000619 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000620 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000621 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000622 case Function::InternalLinkage: // Symbols default to internal.
623 break;
624 case Function::ExternalLinkage:
625 O << "\t.global\t" << CurrentFnName << '\n'
626 << "\t.type\t" << CurrentFnName << ", @function\n";
627 break;
Dale Johannesena60e51f2009-08-24 01:03:42 +0000628 case Function::LinkerPrivateLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +0000629 case Function::WeakAnyLinkage:
630 case Function::WeakODRLinkage:
631 case Function::LinkOnceAnyLinkage:
632 case Function::LinkOnceODRLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000633 O << "\t.global\t" << CurrentFnName << '\n';
634 O << "\t.weak\t" << CurrentFnName << '\n';
635 break;
636 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000637
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000638 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000639
Bill Wendling20c568f2009-06-30 22:38:32 +0000640 EmitAlignment(MF.getAlignment(), F);
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000641
642 if (Subtarget.isPPC64()) {
643 // Emit an official procedure descriptor.
644 // FIXME 64-bit SVR4: Use MCSection here?
645 O << "\t.section\t\".opd\",\"aw\"\n";
646 O << "\t.align 3\n";
647 O << CurrentFnName << ":\n";
648 O << "\t.quad .L." << CurrentFnName << ",.TOC.@tocbase\n";
649 O << "\t.previous\n";
650 O << ".L." << CurrentFnName << ":\n";
651 } else {
652 O << CurrentFnName << ":\n";
653 }
Jim Laskeybf111822006-12-21 20:26:09 +0000654
655 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000656 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000657
658 // Print out code for the function.
659 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
660 I != E; ++I) {
661 // Print a label for the basic block.
662 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000663 EmitBasicBlockStart(I);
Jim Laskeybf111822006-12-21 20:26:09 +0000664 }
665 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
666 II != E; ++II) {
667 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000668 printMachineInstruction(II);
669 }
670 }
671
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000672 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000673
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000674 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Dale Johannesenf94a3272008-12-03 19:33:10 +0000675
Jim Laskeybf111822006-12-21 20:26:09 +0000676 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000677 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000678
Bill Wendlingb1ec31d2009-11-09 21:20:14 +0000679 // Print out jump tables referenced by the function.
680 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
681
Jim Laskeybf111822006-12-21 20:26:09 +0000682 // We didn't modify anything.
683 return false;
684}
685
Chris Lattner40bbebd2009-07-21 18:38:57 +0000686void PPCLinuxAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000687 const TargetData *TD = TM.getTargetData();
688
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000689 if (!GVar->hasInitializer())
690 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000691
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000692 // Check to see if this is a special global used by LLVM, if so, emit it.
693 if (EmitSpecialLLVMGlobal(GVar))
694 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000695
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000696 std::string name = Mang->getMangledName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000697
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000698 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000699
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000700 Constant *C = GVar->getInitializer();
701 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000702 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000703 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000704
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000705 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(GVar, Mang,
706 TM));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000707
708 if (C->isNullValue() && /* FIXME: Verify correct */
709 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000710 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000711 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000712 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000713
714 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000715 O << "\t.global " << name << '\n';
716 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000717 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000718 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000719 } else if (GVar->hasLocalLinkage()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000720 O << MAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000721 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000722 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000723 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000724 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000725 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000726 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000727 O << "'";
728 }
729 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000730 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000731 }
732
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000733 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000734 case GlobalValue::LinkOnceAnyLinkage:
735 case GlobalValue::LinkOnceODRLinkage:
736 case GlobalValue::WeakAnyLinkage:
737 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000738 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000739 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000740 O << "\t.global " << name << '\n'
741 << "\t.type " << name << ", @object\n"
742 << "\t.weak " << name << '\n';
743 break;
744 case GlobalValue::AppendingLinkage:
745 // FIXME: appending linkage variables should go into a section of
746 // their name or something. For now, just emit them as external.
747 case GlobalValue::ExternalLinkage:
748 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000749 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000750 << "\t.type " << name << ", @object\n";
751 // FALL THROUGH
752 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000753 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000754 break;
755 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000756 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000757 }
758
759 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000760 O << name << ":";
761 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000762 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000763 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000764 O << "'";
765 }
766 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000767
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000768 EmitGlobalConstant(C);
769 O << '\n';
770}
771
Tilmann Scheller6b16eff2009-08-15 11:54:46 +0000772bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
773 const TargetData *TD = TM.getTargetData();
774
775 bool isPPC64 = TD->getPointerSizeInBits() == 64;
776
777 if (isPPC64 && !TOC.empty()) {
778 // FIXME 64-bit SVR4: Use MCSection here?
779 O << "\t.section\t\".toc\",\"aw\"\n";
780
781 for (StringMap<std::string>::iterator I = TOC.begin(), E = TOC.end();
782 I != E; ++I) {
783 O << I->second << ":\n";
784 O << "\t.tc " << I->getKeyData() << "[TC]," << I->getKeyData() << '\n';
785 }
786 }
787
788 return AsmPrinter::doFinalization(M);
789}
Jim Laskeybf111822006-12-21 20:26:09 +0000790
Nate Begemaned428532004-09-04 05:00:00 +0000791/// runOnMachineFunction - This uses the printMachineInstruction()
792/// method to print assembly for each instruction.
793///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000794bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000795 this->MF = &MF;
796
Chris Lattner8b8b9512005-11-21 07:51:23 +0000797 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000798 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000799
Nate Begemaned428532004-09-04 05:00:00 +0000800 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000801 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000802
803 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000804 const Function *F = MF.getFunction();
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000805 OutStreamer.SwitchSection(getObjFileLowering().SectionForGlobal(F, Mang, TM));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000806
Chris Lattnera637c322005-12-16 00:22:14 +0000807 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000808 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000809 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000810 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000811 break;
812 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000813 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000814 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000815 case Function::WeakAnyLinkage:
816 case Function::WeakODRLinkage:
817 case Function::LinkOnceAnyLinkage:
818 case Function::LinkOnceODRLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000819 case Function::LinkerPrivateLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000820 O << "\t.globl\t" << CurrentFnName << '\n';
821 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000822 break;
823 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000824
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000825 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000826
Bill Wendling20c568f2009-06-30 22:38:32 +0000827 EmitAlignment(MF.getAlignment(), F);
Nate Begemaned428532004-09-04 05:00:00 +0000828 O << CurrentFnName << ":\n";
829
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000830 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000831 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000832
Bill Wendling381802f2008-01-26 06:51:24 +0000833 // If the function is empty, then we need to emit *something*. Otherwise, the
834 // function's label might be associated with something that it wasn't meant to
835 // be associated with. We emit a noop in this situation.
836 MachineFunction::iterator I = MF.begin();
837
Bill Wendling824a7212008-01-26 09:03:52 +0000838 if (++I == MF.end() && MF.front().empty())
839 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000840
Nate Begemaned428532004-09-04 05:00:00 +0000841 // Print out code for the function.
842 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
843 I != E; ++I) {
844 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000845 if (I != MF.begin()) {
Chris Lattner70a54c02009-09-13 18:25:37 +0000846 EmitBasicBlockStart(I);
Chris Lattner1db1adb2005-08-21 19:09:33 +0000847 }
Bill Wendling381802f2008-01-26 06:51:24 +0000848 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
849 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000850 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000851 printMachineInstruction(II);
852 }
853 }
Nate Begemaned428532004-09-04 05:00:00 +0000854
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000855 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000856 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000857
Bill Wendling2718e432009-11-09 21:45:26 +0000858 // Print out jump tables referenced by the function.
859 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
860
Nate Begemaned428532004-09-04 05:00:00 +0000861 // We didn't modify anything.
862 return false;
863}
864
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000865
Bob Wilson812209a2009-09-30 22:06:26 +0000866void PPCDarwinAsmPrinter::EmitStartOfAsmFile(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000867 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000868 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000869 "ppc",
870 "ppc601",
871 "ppc602",
872 "ppc603",
873 "ppc7400",
874 "ppc750",
875 "ppc970",
876 "ppc64"
877 };
878
879 unsigned Directive = Subtarget.getDarwinDirective();
880 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
881 Directive = PPC::DIR_970;
882 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
883 Directive = PPC::DIR_7400;
884 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
885 Directive = PPC::DIR_64;
886 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000887 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000888
Jim Laskey2ada0852006-11-28 18:21:52 +0000889 // Prime text sections so they are adjacent. This reduces the likelihood a
890 // large data or debug section causes a branch to exceed 16M limit.
Chris Lattner2dfddee2009-08-03 22:52:21 +0000891 TargetLoweringObjectFileMachO &TLOFMacho =
892 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000893 OutStreamer.SwitchSection(TLOFMacho.getTextCoalSection());
Jim Laskey2ada0852006-11-28 18:21:52 +0000894 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000895 OutStreamer.SwitchSection(
896 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
897 MCSectionMachO::S_SYMBOL_STUBS |
898 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
899 32, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000900 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000901 OutStreamer.SwitchSection(
902 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
903 MCSectionMachO::S_SYMBOL_STUBS |
904 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
905 16, SectionKind::getText()));
Jim Laskey2ada0852006-11-28 18:21:52 +0000906 }
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000907 OutStreamer.SwitchSection(getObjFileLowering().getTextSection());
Nate Begeman18ed0292005-07-21 01:25:49 +0000908}
909
Chris Lattner40bbebd2009-07-21 18:38:57 +0000910void PPCDarwinAsmPrinter::PrintGlobalVariable(const GlobalVariable *GVar) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000911 const TargetData *TD = TM.getTargetData();
912
913 if (!GVar->hasInitializer())
914 return; // External global require no code
915
916 // Check to see if this is a special global used by LLVM, if so, emit it.
917 if (EmitSpecialLLVMGlobal(GVar)) {
918 if (TM.getRelocationModel() == Reloc::Static) {
Daniel Dunbar03d76512009-07-25 23:55:21 +0000919 if (GVar->getName() == "llvm.global_ctors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000920 O << ".reference .constructors_used\n";
Daniel Dunbar03d76512009-07-25 23:55:21 +0000921 else if (GVar->getName() == "llvm.global_dtors")
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000922 O << ".reference .destructors_used\n";
923 }
924 return;
925 }
926
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000927 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000928 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000929
930 Constant *C = GVar->getInitializer();
931 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000932 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000933 unsigned Align = TD->getPreferredAlignmentLog(GVar);
934
Chris Lattnera87dea42009-07-31 18:48:30 +0000935 const MCSection *TheSection =
Chris Lattnere53a6002009-07-29 05:09:30 +0000936 getObjFileLowering().SectionForGlobal(GVar, Mang, TM);
Chris Lattner6c2f9e12009-08-19 05:49:37 +0000937 OutStreamer.SwitchSection(TheSection);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000938
Chris Lattner3b24c012009-08-04 05:35:56 +0000939 /// FIXME: Drive this off the section!
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000940 if (C->isNullValue() && /* FIXME: Verify correct */
941 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000942 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000943 GVar->isWeakForLinker()) &&
Chris Lattnerc440cc72009-07-24 04:08:17 +0000944 // Don't put things that should go in the cstring section into "comm".
Chris Lattner5fe575f2009-07-27 05:32:16 +0000945 !TheSection->getKind().isMergeableCString()) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000946 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
947
948 if (GVar->hasExternalLinkage()) {
949 O << "\t.globl " << name << '\n';
950 O << "\t.zerofill __DATA, __common, " << name << ", "
951 << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000952 } else if (GVar->hasLocalLinkage()) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000953 O << MAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000954 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000955 O << "\t.globl " << name << '\n'
Chris Lattner33adcfb2009-08-22 21:43:10 +0000956 << MAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000957 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000958 O << name << ":";
959 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000960 O << "\t\t\t\t" << MAI->getCommentString() << " ";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000961 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000962 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000963 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000964 EmitGlobalConstant(C);
965 return;
966 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000967 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000968 // Darwin 9 and above support aligned common data.
969 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000970 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000971 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000972 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +0000973 O << "\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +0000974 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +0000975 O << "'";
976 }
977 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000978 return;
979 }
980
981 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000982 case GlobalValue::LinkOnceAnyLinkage:
983 case GlobalValue::LinkOnceODRLinkage:
984 case GlobalValue::WeakAnyLinkage:
985 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000986 case GlobalValue::CommonLinkage:
Dale Johannesena60e51f2009-08-24 01:03:42 +0000987 case GlobalValue::LinkerPrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000988 O << "\t.globl " << name << '\n'
989 << "\t.weak_definition " << name << '\n';
990 break;
991 case GlobalValue::AppendingLinkage:
992 // FIXME: appending linkage variables should go into a section of
993 // their name or something. For now, just emit them as external.
994 case GlobalValue::ExternalLinkage:
995 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000996 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000997 // FALL THROUGH
998 case GlobalValue::InternalLinkage:
Evan Cheng1902a122009-01-25 06:32:01 +0000999 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001000 break;
1001 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00001002 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001003 }
1004
1005 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +00001006 O << name << ":";
1007 if (VerboseAsm) {
Chris Lattner33adcfb2009-08-22 21:43:10 +00001008 O << "\t\t\t\t" << MAI->getCommentString() << " '";
Dan Gohmancf20ac42009-08-13 01:36:44 +00001009 WriteAsOperand(O, GVar, /*PrintType=*/false, GVar->getParent());
Evan Chengf1c0ae92009-03-24 00:17:40 +00001010 O << "'";
1011 }
1012 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001013
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001014 EmitGlobalConstant(C);
1015 O << '\n';
1016}
1017
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001018bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +00001019 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001020
Chris Lattner7e097e42006-06-27 01:02:25 +00001021 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1022
Chris Lattner2dfddee2009-08-03 22:52:21 +00001023 // Darwin/PPC always uses mach-o.
1024 TargetLoweringObjectFileMachO &TLOFMacho =
1025 static_cast<TargetLoweringObjectFileMachO &>(getObjFileLowering());
1026
Chris Lattnerff4bc462009-08-10 01:39:42 +00001027
1028 const MCSection *LSPSection = 0;
1029 if (!FnStubs.empty()) // .lazy_symbol_pointer
1030 LSPSection = TLOFMacho.getLazySymbolPointerSection();
1031
1032
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001033 // Output stubs for dynamically-linked functions
Chris Lattnerea56f102009-07-15 00:55:58 +00001034 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
Chris Lattner2dfddee2009-08-03 22:52:21 +00001035 const MCSection *StubSection =
Chris Lattnerff4bc462009-08-10 01:39:42 +00001036 TLOFMacho.getMachOSection("__TEXT", "__picsymbolstub1",
1037 MCSectionMachO::S_SYMBOL_STUBS |
1038 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1039 32, SectionKind::getText());
1040 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001041 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001042 OutStreamer.SwitchSection(StubSection);
Chris Lattner7e097e42006-06-27 01:02:25 +00001043 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001044 const FnStubInfo &Info = I->second;
Chris Lattnerdefd3002009-07-15 02:33:19 +00001045 O << Info.Stub << ":\n";
1046 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001047 O << "\tmflr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001048 O << "\tbcl 20,31," << Info.AnonSymbol << '\n';
1049 O << Info.AnonSymbol << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001050 O << "\tmflr r11\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001051 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-" << Info.AnonSymbol;
Evan Chengae94e592008-12-05 01:06:39 +00001052 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001053 O << "\tmtlr r0\n";
Chris Lattner392db3e2009-07-15 02:56:53 +00001054 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
1055 O << Info.LazyPtr << "-" << Info.AnonSymbol << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001056 O << "\tmtctr r12\n";
1057 O << "\tbctr\n";
Chris Lattnerfe2fe702009-07-16 01:23:26 +00001058
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001059 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001060 O << Info.LazyPtr << ":\n";
1061 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001062 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001063 }
Chris Lattnerea56f102009-07-15 00:55:58 +00001064 } else if (!FnStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001065 const MCSection *StubSection =
1066 TLOFMacho.getMachOSection("__TEXT","__symbol_stub1",
1067 MCSectionMachO::S_SYMBOL_STUBS |
1068 MCSectionMachO::S_ATTR_PURE_INSTRUCTIONS,
1069 16, SectionKind::getText());
Chris Lattner2dfddee2009-08-03 22:52:21 +00001070
Chris Lattner9ec8fac2009-07-15 02:28:57 +00001071 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner8f831cb2009-07-15 01:14:44 +00001072 I != E; ++I) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001073 OutStreamer.SwitchSection(StubSection);
Chris Lattnerdeea4162005-12-13 04:33:58 +00001074 EmitAlignment(4);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001075 const FnStubInfo &Info = I->second;
1076 O << Info.Stub << ":\n";
1077 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1078 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattner1a87c052009-07-15 02:36:21 +00001079 O << (isPPC64 ? "\tldu" : "\tlwzu") << " r12,lo16(";
Chris Lattnerdefd3002009-07-15 02:33:19 +00001080 O << Info.LazyPtr << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001081 O << "\tmtctr r12\n";
1082 O << "\tbctr\n";
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001083 OutStreamer.SwitchSection(LSPSection);
Chris Lattnerdefd3002009-07-15 02:33:19 +00001084 O << Info.LazyPtr << ":\n";
1085 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1a87c052009-07-15 02:36:21 +00001086 O << (isPPC64 ? "\t.quad" : "\t.long") << " dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001087 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001088 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001089
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001090 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001091
Chris Lattner33adcfb2009-08-22 21:43:10 +00001092 if (MAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001093 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001094 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +00001095 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001096 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +00001097 E = Personalities.end(); I != E; ++I) {
1098 if (*I)
1099 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner0f6c8f22009-07-15 01:16:38 +00001100 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +00001101 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001102 }
1103
Chris Lattner2dfddee2009-08-03 22:52:21 +00001104 // Output macho stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001105 if (!GVStubs.empty()) {
Chris Lattnerff4bc462009-08-10 01:39:42 +00001106 // Switch with ".non_lazy_symbol_pointer" directive.
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001107 OutStreamer.SwitchSection(TLOFMacho.getNonLazySymbolPointerSection());
Chris Lattnere1e8a822009-08-10 17:58:51 +00001108 EmitAlignment(isPPC64 ? 3 : 2);
1109
Chris Lattner8f831cb2009-07-15 01:14:44 +00001110 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1111 E = GVStubs.end(); I != E; ++I) {
1112 O << I->second << ":\n";
1113 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1114 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001115 }
Nate Begemane59bf592004-08-14 22:09:10 +00001116 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001117
Evan Chengae94e592008-12-05 01:06:39 +00001118 if (!HiddenGVStubs.empty()) {
Chris Lattner6c2f9e12009-08-19 05:49:37 +00001119 OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +00001120 EmitAlignment(isPPC64 ? 3 : 2);
1121 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1122 E = HiddenGVStubs.end(); I != E; ++I) {
1123 O << I->second << ":\n";
1124 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chengae94e592008-12-05 01:06:39 +00001125 }
1126 }
1127
Chris Lattner5b0ac992005-11-01 00:12:36 +00001128 // Funny Darwin hack: This flag tells the linker that no global symbols
1129 // contain code that falls through to other global symbols (e.g. the obvious
1130 // implementation of multiple entry points). If this doesn't occur, the
1131 // linker can safely perform dead code stripping. Since LLVM never generates
1132 // code that does this, it is always safe to set.
Chris Lattner74cd3b72009-10-19 18:03:08 +00001133 OutStreamer.EmitAssemblerFlag(MCStreamer::SubsectionsViaSymbols);
Chris Lattner5b0ac992005-11-01 00:12:36 +00001134
Dan Gohmanb8275a32007-07-25 19:33:14 +00001135 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001136}
Nate Begemaned428532004-09-04 05:00:00 +00001137
Chris Lattner4da1c822006-09-20 17:12:19 +00001138
1139
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001140/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1141/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001142/// Darwin assembler can deal with.
1143///
Daniel Dunbar78945782009-08-13 23:48:47 +00001144static AsmPrinter *createPPCAsmPrinterPass(formatted_raw_ostream &o,
1145 TargetMachine &tm,
Chris Lattneraf76e592009-08-22 20:48:53 +00001146 const MCAsmInfo *tai,
Daniel Dunbar78945782009-08-13 23:48:47 +00001147 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001148 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1149
Chris Lattner40bbebd2009-07-21 18:38:57 +00001150 if (Subtarget->isDarwin())
Daniel Dunbar67d894e2009-08-13 19:38:51 +00001151 return new PPCDarwinAsmPrinter(o, tm, tai, verbose);
1152 return new PPCLinuxAsmPrinter(o, tm, tai, verbose);
Chris Lattner4da1c822006-09-20 17:12:19 +00001153}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001154
Bob Wilsona96751f2009-06-23 23:59:40 +00001155// Force static initialization.
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001156extern "C" void LLVMInitializePowerPCAsmPrinter() {
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001157 TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
Daniel Dunbar51b198a2009-07-15 20:24:03 +00001158 TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
1159}