blob: f57945dc00bef6f526cc7a8ef636d8ba0a194c78 [file] [log] [blame]
Nate Begeman6cca84e2005-10-16 05:39:50 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
Misha Brukmanb4402432005-04-21 23:30:14 +00002//
Misha Brukmane05203f2004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb4402432005-04-21 23:30:14 +00007//
Misha Brukmane05203f2004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukmanb604b4d2004-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 Lattner07fad1c2004-07-28 20:18:53 +000012// the output mechanism used by `llc'.
Misha Brukmane05203f2004-06-21 16:55:25 +000013//
Misha Brukmanb604b4d2004-07-08 17:58:04 +000014// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
Misha Brukman811f5c22004-06-29 17:13:26 +000016//
Misha Brukmane05203f2004-06-21 16:55:25 +000017//===----------------------------------------------------------------------===//
18
Misha Brukmanf57c3cd2004-06-24 17:31:42 +000019#define DEBUG_TYPE "asmprinter"
Chris Lattnerbfca1ab2005-10-14 23:51:18 +000020#include "PPC.h"
Chris Lattner8c6a41e2006-11-17 22:10:59 +000021#include "PPCPredicates.h"
Chris Lattner6f3b9542005-10-14 23:59:06 +000022#include "PPCTargetMachine.h"
Chris Lattnerbfca1ab2005-10-14 23:51:18 +000023#include "PPCSubtarget.h"
Misha Brukmane05203f2004-06-21 16:55:25 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
Devang Patel9d683022009-06-25 00:47:42 +000027#include "llvm/MDNode.h"
Misha Brukmane05203f2004-06-21 16:55:25 +000028#include "llvm/Assembly/Writer.h"
Chris Lattner0ced9052004-08-16 23:25:21 +000029#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeyb0609d92006-01-04 13:52:30 +000030#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskeyc56315c2007-01-26 21:22:28 +000031#include "llvm/CodeGen/MachineModuleInfo.h"
Misha Brukmanf57c3cd2004-06-24 17:31:42 +000032#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukmane05203f2004-06-21 16:55:25 +000033#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling50794832008-01-26 06:51:24 +000034#include "llvm/CodeGen/MachineInstrBuilder.h"
Misha Brukmane05203f2004-06-21 16:55:25 +000035#include "llvm/Support/Mangler.h"
Nate Begeman4d847042004-09-04 14:51:26 +000036#include "llvm/Support/MathExtras.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000037#include "llvm/Support/CommandLine.h"
38#include "llvm/Support/Debug.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000039#include "llvm/Support/ErrorHandling.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000040#include "llvm/Support/Compiler.h"
David Greenea31f96c2009-07-14 20:18:05 +000041#include "llvm/Support/FormattedStream.h"
Jim Laskeya6211dc2006-09-06 18:34:40 +000042#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman3a4be0f2008-02-10 18:45:23 +000043#include "llvm/Target/TargetRegisterInfo.h"
Nate Begeman3f76eb62004-11-25 07:09:01 +000044#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng5f997602006-02-18 00:08:58 +000045#include "llvm/Target/TargetOptions.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000046#include "llvm/ADT/Statistic.h"
47#include "llvm/ADT/StringExtras.h"
Evan Cheng2a03c7e2008-12-05 01:06:39 +000048#include "llvm/ADT/StringSet.h"
Chris Lattner0ced9052004-08-16 23:25:21 +000049using namespace llvm;
Misha Brukmane05203f2004-06-21 16:55:25 +000050
Chris Lattner1ef9cd42006-12-19 22:59:26 +000051STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukmane05203f2004-06-21 16:55:25 +000052
Chris Lattner1ef9cd42006-12-19 22:59:26 +000053namespace {
Bill Wendlingc5437ea2009-02-24 08:30:20 +000054 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
55 protected:
Chris Lattnere8382ac2009-07-15 02:28:57 +000056 struct FnStubInfo {
57 std::string Stub, LazyPtr, AnonSymbol;
58
59 FnStubInfo() {}
60
61 void Init(const GlobalValue *GV, Mangler *Mang) {
62 // Already initialized.
63 if (!Stub.empty()) return;
64 Stub = Mang->getMangledName(GV, "$stub", true);
65 LazyPtr = Mang->getMangledName(GV, "$lazy_ptr", true);
66 AnonSymbol = Mang->getMangledName(GV, "$stub$tmp", true);
67 }
68
69 void Init(const std::string &GV, Mangler *Mang) {
70 // Already initialized.
71 if (!Stub.empty()) return;
72 Stub = Mang->makeNameProper(GV+"$stub", true);
73 LazyPtr = Mang->makeNameProper(GV+"$lazy_ptr", true);
74 AnonSymbol = Mang->makeNameProper(GV+"$stub$tmp", true);
75 }
76 };
77
78 StringMap<FnStubInfo> FnStubs;
Chris Lattner9ffa4e22009-07-15 01:14:44 +000079 StringMap<std::string> GVStubs, HiddenGVStubs;
Chris Lattner8597a2f2006-09-20 17:07:15 +000080 const PPCSubtarget &Subtarget;
Bill Wendlingc5437ea2009-02-24 08:30:20 +000081 public:
David Greenea31f96c2009-07-14 20:18:05 +000082 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Daniel Dunbar75c12e12009-07-01 01:48:54 +000083 const TargetAsmInfo *T, bool V)
84 : AsmPrinter(O, TM, T, V),
Bill Wendlingc5437ea2009-02-24 08:30:20 +000085 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Misha Brukmanb4402432005-04-21 23:30:14 +000086
Misha Brukmane05203f2004-06-21 16:55:25 +000087 virtual const char *getPassName() const {
Nate Begeman4bfceb12004-09-04 05:00:00 +000088 return "PowerPC Assembly Printer";
Misha Brukmane05203f2004-06-21 16:55:25 +000089 }
90
Nate Begeman6cca84e2005-10-16 05:39:50 +000091 PPCTargetMachine &getTM() {
92 return static_cast<PPCTargetMachine&>(TM);
Chris Lattner0ced9052004-08-16 23:25:21 +000093 }
94
Nate Begeman8465fe82005-07-20 22:42:00 +000095 unsigned enumRegToMachineReg(unsigned enumReg) {
96 switch (enumReg) {
Torok Edwinfbcc6632009-07-14 16:55:14 +000097 default: llvm_unreachable("Unhandled register!");
Nate Begeman8465fe82005-07-20 22:42:00 +000098 case PPC::CR0: return 0;
99 case PPC::CR1: return 1;
100 case PPC::CR2: return 2;
101 case PPC::CR3: return 3;
102 case PPC::CR4: return 4;
103 case PPC::CR5: return 5;
104 case PPC::CR6: return 6;
105 case PPC::CR7: return 7;
106 }
Torok Edwinfbcc6632009-07-14 16:55:14 +0000107 llvm_unreachable(0);
Nate Begeman8465fe82005-07-20 22:42:00 +0000108 }
109
Nate Begeman0ad7f812004-08-14 22:09:10 +0000110 /// printInstruction - This method is automatically generated by tablegen
111 /// from the instruction set description. This method returns true if the
112 /// machine instruction was sufficiently described to print it, otherwise it
113 /// returns false.
114 bool printInstruction(const MachineInstr *MI);
115
Misha Brukmane05203f2004-06-21 16:55:25 +0000116 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000117 void printOp(const MachineOperand &MO);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000118
Jim Laskey41621a72006-12-20 20:56:46 +0000119 /// stripRegisterPrefix - This method strips the character prefix from a
120 /// register name so that only the number is left. Used by for linux asm.
Jim Laskeyc2c861d2006-12-20 21:33:34 +0000121 const char *stripRegisterPrefix(const char *RegName) {
122 switch (RegName[0]) {
123 case 'r':
124 case 'f':
125 case 'v': return RegName + 1;
Jim Laskey4c90a6d2006-12-20 21:35:00 +0000126 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskey41621a72006-12-20 20:56:46 +0000127 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000128
Jim Laskeyc2c861d2006-12-20 21:33:34 +0000129 return RegName;
Jim Laskey41621a72006-12-20 20:56:46 +0000130 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000131
Jim Laskey41621a72006-12-20 20:56:46 +0000132 /// printRegister - Print register according to target requirements.
133 ///
134 void printRegister(const MachineOperand &MO, bool R0AsZero) {
135 unsigned RegNo = MO.getReg();
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000136 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000137
Jim Laskey41621a72006-12-20 20:56:46 +0000138 // If we should use 0 for R0.
139 if (R0AsZero && RegNo == PPC::R0) {
140 O << "0";
141 return;
142 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000143
Bill Wendlingc24ea4f2008-02-26 21:11:01 +0000144 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskey41621a72006-12-20 20:56:46 +0000145 // Linux assembler (Others?) does not take register mnemonics.
146 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskeyc2c861d2006-12-20 21:33:34 +0000147 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
148 O << RegName;
Jim Laskey41621a72006-12-20 20:56:46 +0000149 }
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000150
Chris Lattnerf7f05672006-02-01 22:38:46 +0000151 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000152 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000153 if (MO.isReg()) {
Jim Laskey41621a72006-12-20 20:56:46 +0000154 printRegister(MO, false);
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000155 } else if (MO.isImm()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000156 O << MO.getImm();
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000157 } else {
158 printOp(MO);
159 }
160 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000161
Chris Lattnerf7f05672006-02-01 22:38:46 +0000162 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner1bad2542006-02-23 19:31:10 +0000163 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner7674d902006-02-24 20:27:40 +0000164 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
165 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000166
167
Chris Lattner2771e2c2006-03-25 06:12:06 +0000168 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000169 char value = MI->getOperand(OpNo).getImm();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000170 value = (value << (32-5)) >> (32-5);
171 O << (int)value;
172 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000173 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000174 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattnerf7833ba2004-08-21 19:11:03 +0000175 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begeman3ad3ad42004-08-21 05:56:39 +0000176 O << (unsigned int)value;
177 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000178 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000179 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman143cf942004-08-30 02:28:06 +0000180 assert(value <= 63 && "Invalid u6imm argument!");
181 O << (unsigned int)value;
182 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000183 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000184 O << (short)MI->getOperand(OpNo).getImm();
Nate Begeman4bfceb12004-09-04 05:00:00 +0000185 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000186 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000187 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner8a796852004-08-15 05:20:16 +0000188 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000189 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000190 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000191 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner30055b92006-11-16 21:45:30 +0000192 } else {
193 O << "lo16(";
194 printOp(MI->getOperand(OpNo));
195 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000196 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner30055b92006-11-16 21:45:30 +0000197 else
198 O << ')';
199 }
Chris Lattner5a2fb972005-10-18 16:51:22 +0000200 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000201 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000202 // Branches can take an immediate operand. This is used by the branch
203 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000204 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000205 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begeman4bfceb12004-09-04 05:00:00 +0000206 } else {
Chris Lattnerbd9efdb2005-11-17 19:16:08 +0000207 printOp(MI->getOperand(OpNo));
Nate Begeman4bfceb12004-09-04 05:00:00 +0000208 }
Nate Begeman61738782004-09-02 08:13:00 +0000209 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000210 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000211 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng73136df2006-02-22 20:19:42 +0000212 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner57575112005-12-16 00:22:14 +0000213 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
214 GlobalValue *GV = MO.getGlobal();
Chris Lattnerccfb5102009-07-02 16:08:53 +0000215 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattner57575112005-12-16 00:22:14 +0000216 // Dynamically-resolved functions need a stub for the function.
Chris Lattnere8382ac2009-07-15 02:28:57 +0000217 FnStubInfo &FnInfo = FnStubs[Mang->getMangledName(GV)];
218 FnInfo.Init(GV, Mang);
219 O << FnInfo.Stub;
Chris Lattner57575112005-12-16 00:22:14 +0000220 return;
221 }
222 }
Chris Lattnercdde99902005-11-17 19:40:30 +0000223 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Chris Lattnere8382ac2009-07-15 02:28:57 +0000224 FnStubInfo &FnInfo =FnStubs[Mang->makeNameProper(MO.getSymbolName())];
225 FnInfo.Init(MO.getSymbolName(), Mang);
226 O << FnInfo.Stub;
Chris Lattnercdde99902005-11-17 19:40:30 +0000227 return;
Chris Lattnercdde99902005-11-17 19:40:30 +0000228 }
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000229 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000230
Chris Lattnercdde99902005-11-17 19:40:30 +0000231 printOp(MI->getOperand(OpNo));
Chris Lattnerbd9efdb2005-11-17 19:16:08 +0000232 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000233 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000234 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begemana171f6b2005-11-16 00:48:01 +0000235 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000236 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Chengcdf36092007-10-14 05:57:21 +0000237 O << "\"L" << getFunctionNumber() << "$pb\"\n";
238 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begeman61738782004-09-02 08:13:00 +0000239 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000240 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000241 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000242 printS16ImmOperand(MI, OpNo);
Nate Begemana9443f22005-07-21 20:44:43 +0000243 } else {
Nick Lewyckye6049c22007-03-03 05:29:51 +0000244 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begemana9443f22005-07-21 20:44:43 +0000245 printOp(MI->getOperand(OpNo));
Chris Lattner9e56e5c2006-07-26 21:12:04 +0000246 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000247 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckye6049c22007-03-03 05:29:51 +0000248 if (Subtarget.isDarwin())
Nate Begemana9443f22005-07-21 20:44:43 +0000249 O << ')';
Nick Lewyckye6049c22007-03-03 05:29:51 +0000250 else
251 O << "@ha";
Nate Begemana9443f22005-07-21 20:44:43 +0000252 }
Nate Begeman4bfceb12004-09-04 05:00:00 +0000253 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000254 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000255 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000256 printS16ImmOperand(MI, OpNo);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000257 } else {
Nick Lewyckye6049c22007-03-03 05:29:51 +0000258 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begeman3f76eb62004-11-25 07:09:01 +0000259 printOp(MI->getOperand(OpNo));
Chris Lattner9e56e5c2006-07-26 21:12:04 +0000260 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000261 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckye6049c22007-03-03 05:29:51 +0000262 if (Subtarget.isDarwin())
Nate Begemana9443f22005-07-21 20:44:43 +0000263 O << ')';
Nick Lewyckye6049c22007-03-03 05:29:51 +0000264 else
265 O << "@l";
Nate Begeman4bfceb12004-09-04 05:00:00 +0000266 }
267 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000268 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman8465fe82005-07-20 22:42:00 +0000269 unsigned CCReg = MI->getOperand(OpNo).getReg();
270 unsigned RegNo = enumRegToMachineReg(CCReg);
271 O << (0x80 >> RegNo);
272 }
Chris Lattner7674d902006-02-24 20:27:40 +0000273 // The new addressing mode printers.
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000274 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
275 printSymbolLo(MI, OpNo);
276 O << '(';
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000277 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner139eac52006-03-21 17:21:13 +0000278 MI->getOperand(OpNo+1).getReg() == PPC::R0)
279 O << "0";
280 else
281 printOperand(MI, OpNo+1);
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000282 O << ')';
283 }
Chris Lattner77373d12006-03-22 05:26:03 +0000284 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000285 if (MI->getOperand(OpNo).isImm())
Chris Lattner77373d12006-03-22 05:26:03 +0000286 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000287 else
Chris Lattner77373d12006-03-22 05:26:03 +0000288 printSymbolLo(MI, OpNo);
289 O << '(';
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000290 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner77373d12006-03-22 05:26:03 +0000291 MI->getOperand(OpNo+1).getReg() == PPC::R0)
292 O << "0";
293 else
294 printOperand(MI, OpNo+1);
295 O << ')';
296 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000297
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000298 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanc1263972005-12-19 23:40:42 +0000299 // When used as the base register, r0 reads constant zero rather than
300 // the value contained in the register. For this reason, the darwin
301 // assembler requires that we print r0 as 0 (no r) when used as the base.
302 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskey41621a72006-12-20 20:56:46 +0000303 printRegister(MO, true);
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000304 O << ", ";
305 printOperand(MI, OpNo+1);
306 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000307
308 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner6be72602006-11-04 05:27:39 +0000309 const char *Modifier);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000310
Misha Brukmanb4402432005-04-21 23:30:14 +0000311 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begeman4bfceb12004-09-04 05:00:00 +0000312 virtual bool doFinalization(Module &M) = 0;
Jim Laskey18fc0972007-02-21 22:47:38 +0000313
314 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000315 };
Misha Brukmanb4402432005-04-21 23:30:14 +0000316
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000317 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000318 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000319 public:
David Greenea31f96c2009-07-14 20:18:05 +0000320 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbar75c12e12009-07-01 01:48:54 +0000321 const TargetAsmInfo *T, bool V)
322 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskey28663c72006-12-21 20:26:09 +0000323
324 virtual const char *getPassName() const {
325 return "Linux PPC Assembly Printer";
326 }
327
328 bool runOnMachineFunction(MachineFunction &F);
Jim Laskey28663c72006-12-21 20:26:09 +0000329 bool doFinalization(Module &M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000330
Jim Laskey28663c72006-12-21 20:26:09 +0000331 void getAnalysisUsage(AnalysisUsage &AU) const {
332 AU.setPreservesAll();
Jim Laskeyc56315c2007-01-26 21:22:28 +0000333 AU.addRequired<MachineModuleInfo>();
Devang Patelf6466682009-01-08 23:40:34 +0000334 AU.addRequired<DwarfWriter>();
Jim Laskey28663c72006-12-21 20:26:09 +0000335 PPCAsmPrinter::getAnalysisUsage(AU);
336 }
337
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000338 void printModuleLevelGV(const GlobalVariable* GVar);
Jim Laskey28663c72006-12-21 20:26:09 +0000339 };
340
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000341 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
342 /// OS X
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000343 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greenea31f96c2009-07-14 20:18:05 +0000344 formatted_raw_ostream &OS;
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000345 public:
David Greenea31f96c2009-07-14 20:18:05 +0000346 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbar75c12e12009-07-01 01:48:54 +0000347 const TargetAsmInfo *T, bool V)
348 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begeman4bfceb12004-09-04 05:00:00 +0000349
350 virtual const char *getPassName() const {
351 return "Darwin PPC Assembly Printer";
352 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000353
Misha Brukmanb4402432005-04-21 23:30:14 +0000354 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman15527112005-07-21 01:25:49 +0000355 bool doInitialization(Module &M);
Misha Brukmane05203f2004-06-21 16:55:25 +0000356 bool doFinalization(Module &M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000357
Jim Laskey219d5592006-01-04 22:28:25 +0000358 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000359 AU.setPreservesAll();
Jim Laskeyc56315c2007-01-26 21:22:28 +0000360 AU.addRequired<MachineModuleInfo>();
Devang Patelf6466682009-01-08 23:40:34 +0000361 AU.addRequired<DwarfWriter>();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000362 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskey219d5592006-01-04 22:28:25 +0000363 }
364
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000365 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukmane05203f2004-06-21 16:55:25 +0000366 };
367} // end of anonymous namespace
368
Nate Begeman0ad7f812004-08-14 22:09:10 +0000369// Include the auto-generated portion of the assembly writer
Chris Lattner0921e3b2005-10-14 23:37:35 +0000370#include "PPCGenAsmWriter.inc"
Nate Begeman0ad7f812004-08-14 22:09:10 +0000371
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000372void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukmane05203f2004-06-21 16:55:25 +0000373 switch (MO.getType()) {
Chris Lattnerfef7a2d2006-05-04 17:21:20 +0000374 case MachineOperand::MO_Immediate:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000375 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman8d75aa42004-07-21 20:11:11 +0000376
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000377 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnera5bb3702007-12-30 23:10:15 +0000378 printBasicBlockLabel(MO.getMBB());
Misha Brukmane05203f2004-06-21 16:55:25 +0000379 return;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000380 case MachineOperand::MO_JumpTableIndex:
Evan Chengcdf36092007-10-14 05:57:21 +0000381 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattnera5bb3702007-12-30 23:10:15 +0000382 << '_' << MO.getIndex();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000383 // FIXME: PIC relocation model
384 return;
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000385 case MachineOperand::MO_ConstantPoolIndex:
Evan Chengcdf36092007-10-14 05:57:21 +0000386 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattnera5bb3702007-12-30 23:10:15 +0000387 << '_' << MO.getIndex();
Misha Brukmane05203f2004-06-21 16:55:25 +0000388 return;
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000389 case MachineOperand::MO_ExternalSymbol: {
Chris Lattner57575112005-12-16 00:22:14 +0000390 // Computing the address of an external symbol, not calling it.
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000391 std::string Name(TAI->getGlobalPrefix());
392 Name += MO.getSymbolName();
393
Evan Cheng73136df2006-02-22 20:19:42 +0000394 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000395 GVStubs[Name] = Name+"$non_lazy_ptr";
396 Name += "$non_lazy_ptr";
Chris Lattner57575112005-12-16 00:22:14 +0000397 }
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000398 O << Name;
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000399 return;
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000400 }
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000401 case MachineOperand::MO_GlobalAddress: {
Chris Lattner57575112005-12-16 00:22:14 +0000402 // Computing the address of a global symbol, not calling it.
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000403 GlobalValue *GV = MO.getGlobal();
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000404 std::string Name;
Misha Brukman7dba17d2004-07-23 16:08:20 +0000405
Nate Begeman844186b2004-10-17 23:01:34 +0000406 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000407 if (TM.getRelocationModel() != Reloc::Static &&
408 (GV->isDeclaration() || GV->isWeakForLinker())) {
409 if (!GV->hasHiddenVisibility()) {
410 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
411 GVStubs[Mang->getMangledName(GV)] = Name;
412 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
413 GV->hasAvailableExternallyLinkage()) {
414 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
415 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
416 } else {
417 Name = Mang->getMangledName(GV);
Chris Lattner57575112005-12-16 00:22:14 +0000418 }
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000419 } else {
420 Name = Mang->getMangledName(GV);
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000421 }
Chris Lattnercdde99902005-11-17 19:40:30 +0000422 O << Name;
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000423
Anton Korobeynikovbff4b372008-11-22 16:15:34 +0000424 printOffset(MO.getOffset());
Misha Brukmane05203f2004-06-21 16:55:25 +0000425 return;
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000426 }
Misha Brukmanb4402432005-04-21 23:30:14 +0000427
Misha Brukmane05203f2004-06-21 16:55:25 +0000428 default:
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000429 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukmana2737582004-06-25 15:11:34 +0000430 return;
Misha Brukmane05203f2004-06-21 16:55:25 +0000431 }
432}
433
Jim Laskey18fc0972007-02-21 22:47:38 +0000434/// EmitExternalGlobal - In this case we need to use the indirect symbol.
435///
436void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling992f8462009-04-10 00:12:49 +0000437 std::string Name;
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000438
Jim Laskey18fc0972007-02-21 22:47:38 +0000439 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000440 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000441 } else {
442 Name = Mang->getMangledName(GV);
Jim Laskey18fc0972007-02-21 22:47:38 +0000443 }
444 O << Name;
445}
446
Chris Lattner1bad2542006-02-23 19:31:10 +0000447/// PrintAsmOperand - Print out an operand for an inline asm expression.
448///
449bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000450 unsigned AsmVariant,
Chris Lattner1bad2542006-02-23 19:31:10 +0000451 const char *ExtraCode) {
452 // Does this asm operand have a single letter operand modifier?
453 if (ExtraCode && ExtraCode[0]) {
454 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000455
Chris Lattner1bad2542006-02-23 19:31:10 +0000456 switch (ExtraCode[0]) {
457 default: return true; // Unknown modifier.
Chris Lattner48518542007-01-25 02:52:50 +0000458 case 'c': // Don't print "$" before a global var name or constant.
459 // PPC never has a prefix.
460 printOperand(MI, OpNo);
461 return false;
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000462 case 'L': // Write second word of DImode reference.
Chris Lattner1bad2542006-02-23 19:31:10 +0000463 // Verify that this operand has two consecutive registers.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000464 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattner1bad2542006-02-23 19:31:10 +0000465 OpNo+1 == MI->getNumOperands() ||
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000466 !MI->getOperand(OpNo+1).isReg())
Chris Lattner1bad2542006-02-23 19:31:10 +0000467 return true;
468 ++OpNo; // Return the high-part.
469 break;
Chris Lattnercb35c612007-04-24 22:51:03 +0000470 case 'I':
471 // Write 'i' if an integer constant, otherwise nothing. Used to print
472 // addi vs add, etc.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000473 if (MI->getOperand(OpNo).isImm())
Chris Lattnercb35c612007-04-24 22:51:03 +0000474 O << "i";
475 return false;
Chris Lattner1bad2542006-02-23 19:31:10 +0000476 }
477 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000478
Chris Lattner1bad2542006-02-23 19:31:10 +0000479 printOperand(MI, OpNo);
480 return false;
481}
482
Chris Lattner7674d902006-02-24 20:27:40 +0000483bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000484 unsigned AsmVariant,
Chris Lattner7674d902006-02-24 20:27:40 +0000485 const char *ExtraCode) {
486 if (ExtraCode && ExtraCode[0])
487 return true; // Unknown modifier.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000488 if (MI->getOperand(OpNo).isReg())
Chris Lattnerf7937002007-02-01 00:39:08 +0000489 printMemRegReg(MI, OpNo);
490 else
491 printMemRegImm(MI, OpNo);
Chris Lattner7674d902006-02-24 20:27:40 +0000492 return false;
493}
Chris Lattner1bad2542006-02-23 19:31:10 +0000494
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000495void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner6be72602006-11-04 05:27:39 +0000496 const char *Modifier) {
497 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
498 unsigned Code = MI->getOperand(OpNo).getImm();
499 if (!strcmp(Modifier, "cc")) {
500 switch ((PPC::Predicate)Code) {
501 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
502 case PPC::PRED_LT: O << "lt"; return;
503 case PPC::PRED_LE: O << "le"; return;
504 case PPC::PRED_EQ: O << "eq"; return;
505 case PPC::PRED_GE: O << "ge"; return;
506 case PPC::PRED_GT: O << "gt"; return;
507 case PPC::PRED_NE: O << "ne"; return;
508 case PPC::PRED_UN: O << "un"; return;
509 case PPC::PRED_NU: O << "nu"; return;
510 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000511
Chris Lattner6be72602006-11-04 05:27:39 +0000512 } else {
513 assert(!strcmp(Modifier, "reg") &&
514 "Need to specify 'cc' or 'reg' as predicate op modifier!");
515 // Don't print the register for 'always'.
516 if (Code == PPC::PRED_ALWAYS) return;
517 printOperand(MI, OpNo+1);
518 }
519}
520
521
Nate Begeman0ad7f812004-08-14 22:09:10 +0000522/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
523/// the current output stream.
Misha Brukmane05203f2004-06-21 16:55:25 +0000524///
Chris Lattner0921e3b2005-10-14 23:37:35 +0000525void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begeman0ad7f812004-08-14 22:09:10 +0000526 ++EmittedInsts;
Chris Lattner2121f3c2005-10-14 22:44:13 +0000527
Nate Begeman52441732005-04-05 18:19:50 +0000528 // Check for slwi/srwi mnemonics.
529 if (MI->getOpcode() == PPC::RLWINM) {
530 bool FoundMnemonic = false;
Chris Lattner5c463782007-12-30 20:49:49 +0000531 unsigned char SH = MI->getOperand(2).getImm();
532 unsigned char MB = MI->getOperand(3).getImm();
533 unsigned char ME = MI->getOperand(4).getImm();
Nate Begeman52441732005-04-05 18:19:50 +0000534 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000535 O << "\tslwi "; FoundMnemonic = true;
Nate Begeman52441732005-04-05 18:19:50 +0000536 }
537 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000538 O << "\tsrwi "; FoundMnemonic = true;
Nate Begeman52441732005-04-05 18:19:50 +0000539 SH = 32-SH;
540 }
541 if (FoundMnemonic) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000542 printOperand(MI, 0);
Misha Brukmanb4402432005-04-21 23:30:14 +0000543 O << ", ";
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000544 printOperand(MI, 1);
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000545 O << ", " << (unsigned int)SH << '\n';
Nate Begeman52441732005-04-05 18:19:50 +0000546 return;
547 }
Chris Lattner52a956d2006-06-20 23:18:58 +0000548 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000549 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000550 O << "\tmr ";
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000551 printOperand(MI, 0);
552 O << ", ";
553 printOperand(MI, 1);
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000554 O << '\n';
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000555 return;
556 }
Chris Lattner9ca15c82006-11-18 01:23:56 +0000557 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner5c463782007-12-30 20:49:49 +0000558 unsigned char SH = MI->getOperand(2).getImm();
559 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner9ca15c82006-11-18 01:23:56 +0000560 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
561 if (63-SH == ME) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000562 O << "\tsldi ";
Chris Lattner9ca15c82006-11-18 01:23:56 +0000563 printOperand(MI, 0);
564 O << ", ";
565 printOperand(MI, 1);
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000566 O << ", " << (unsigned int)SH << '\n';
Chris Lattner9ca15c82006-11-18 01:23:56 +0000567 return;
568 }
Nate Begeman52441732005-04-05 18:19:50 +0000569 }
Misha Brukmanb4402432005-04-21 23:30:14 +0000570
Nate Begeman0ad7f812004-08-14 22:09:10 +0000571 if (printInstruction(MI))
572 return; // Printer was automatically generated
Misha Brukmanb4402432005-04-21 23:30:14 +0000573
Torok Edwinfbcc6632009-07-14 16:55:14 +0000574 llvm_unreachable("Unhandled instruction in asm writer!");
Misha Brukmane05203f2004-06-21 16:55:25 +0000575}
576
Jim Laskey28663c72006-12-21 20:26:09 +0000577/// runOnMachineFunction - This uses the printMachineInstruction()
578/// method to print assembly for each instruction.
579///
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000580bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000581 this->MF = &MF;
Chris Lattner028d6632006-10-05 02:42:20 +0000582
Jim Laskey28663c72006-12-21 20:26:09 +0000583 SetupMachineFunction(MF);
584 O << "\n\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000585
Jim Laskey28663c72006-12-21 20:26:09 +0000586 // Print out constants referenced by the function
587 EmitConstantPool(MF.getConstantPool());
588
589 // Print out labels for the function.
590 const Function *F = MF.getFunction();
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000591 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000592
Jim Laskey28663c72006-12-21 20:26:09 +0000593 switch (F->getLinkage()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000594 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindola6de96a12009-01-15 20:18:42 +0000595 case Function::PrivateLinkage:
Jim Laskey28663c72006-12-21 20:26:09 +0000596 case Function::InternalLinkage: // Symbols default to internal.
597 break;
598 case Function::ExternalLinkage:
599 O << "\t.global\t" << CurrentFnName << '\n'
600 << "\t.type\t" << CurrentFnName << ", @function\n";
601 break;
Duncan Sands12da8ce2009-03-07 15:45:40 +0000602 case Function::WeakAnyLinkage:
603 case Function::WeakODRLinkage:
604 case Function::LinkOnceAnyLinkage:
605 case Function::LinkOnceODRLinkage:
Jim Laskey28663c72006-12-21 20:26:09 +0000606 O << "\t.global\t" << CurrentFnName << '\n';
607 O << "\t.weak\t" << CurrentFnName << '\n';
608 break;
609 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000610
Anton Korobeynikoved473292008-08-08 18:25:07 +0000611 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000612
Bill Wendling31ceb1b2009-06-30 22:38:32 +0000613 EmitAlignment(MF.getAlignment(), F);
Jim Laskey28663c72006-12-21 20:26:09 +0000614 O << CurrentFnName << ":\n";
615
616 // Emit pre-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000617 DW->BeginFunction(&MF);
Jim Laskey28663c72006-12-21 20:26:09 +0000618
619 // Print out code for the function.
620 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
621 I != E; ++I) {
622 // Print a label for the basic block.
623 if (I != MF.begin()) {
Evan Chengc7990652008-02-28 00:43:03 +0000624 printBasicBlockLabel(I, true, true);
Jim Laskey28663c72006-12-21 20:26:09 +0000625 O << '\n';
626 }
627 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
628 II != E; ++II) {
629 // Print the assembly for the instruction.
Jim Laskey28663c72006-12-21 20:26:09 +0000630 printMachineInstruction(II);
631 }
632 }
633
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000634 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskey28663c72006-12-21 20:26:09 +0000635
636 // Print out jump tables referenced by the function.
637 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000638
Dale Johannesen5d84f682008-12-03 19:33:10 +0000639 SwitchToSection(TAI->SectionForGlobal(F));
640
Jim Laskey28663c72006-12-21 20:26:09 +0000641 // Emit post-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000642 DW->EndFunction(&MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000643
Dan Gohmancb0df592008-11-07 19:49:17 +0000644 O.flush();
645
Jim Laskey28663c72006-12-21 20:26:09 +0000646 // We didn't modify anything.
647 return false;
648}
649
Chris Lattner7b143172008-02-15 19:04:54 +0000650/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman92b551b2009-03-03 02:55:14 +0000651/// Don't print things like \\n or \\0.
David Greenea31f96c2009-07-14 20:18:05 +0000652static void PrintUnmangledNameSafely(const Value *V, formatted_raw_ostream &OS) {
Chris Lattner7b143172008-02-15 19:04:54 +0000653 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
654 Name != E; ++Name)
655 if (isprint(*Name))
656 OS << *Name;
657}
658
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000659void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskey28663c72006-12-21 20:26:09 +0000660 const TargetData *TD = TM.getTargetData();
661
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000662 if (!GVar->hasInitializer())
663 return; // External global require no code
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000664
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000665 // Check to see if this is a special global used by LLVM, if so, emit it.
666 if (EmitSpecialLLVMGlobal(GVar))
667 return;
Chris Lattner3c84b552007-01-14 06:37:54 +0000668
Chris Lattner8c9a96b2009-07-14 18:17:16 +0000669 std::string name = Mang->getMangledName(GVar);
Chris Lattner3c84b552007-01-14 06:37:54 +0000670
Anton Korobeynikoved473292008-08-08 18:25:07 +0000671 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000672
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000673 Constant *C = GVar->getInitializer();
Devang Patel2cc6d182009-06-26 02:26:12 +0000674 if (isa<MDNode>(C) || isa<MDString>(C))
Devang Patel9d683022009-06-25 00:47:42 +0000675 return;
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000676 const Type *Type = C->getType();
Duncan Sandsaf9eaa82009-05-09 07:06:46 +0000677 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000678 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskey28663c72006-12-21 20:26:09 +0000679
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000680 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000681
682 if (C->isNullValue() && /* FIXME: Verify correct */
683 !GVar->hasSection() &&
Rafael Espindola6de96a12009-01-15 20:18:42 +0000684 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands12da8ce2009-03-07 15:45:40 +0000685 GVar->isWeakForLinker())) {
Jim Laskey28663c72006-12-21 20:26:09 +0000686 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000687
688 if (GVar->hasExternalLinkage()) {
Jim Laskey28663c72006-12-21 20:26:09 +0000689 O << "\t.global " << name << '\n';
690 O << "\t.type " << name << ", @object\n";
Nick Lewycky5805c462007-07-25 03:48:45 +0000691 O << name << ":\n";
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000692 O << "\t.zero " << Size << '\n';
Rafael Espindola6de96a12009-01-15 20:18:42 +0000693 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000694 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskey28663c72006-12-21 20:26:09 +0000695 } else {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000696 O << ".comm " << name << ',' << Size;
Jim Laskey28663c72006-12-21 20:26:09 +0000697 }
Evan Chenga774a992009-03-24 00:17:40 +0000698 if (VerboseAsm) {
699 O << "\t\t" << TAI->getCommentString() << " '";
700 PrintUnmangledNameSafely(GVar, O);
701 O << "'";
702 }
703 O << '\n';
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000704 return;
Jim Laskey28663c72006-12-21 20:26:09 +0000705 }
706
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000707 switch (GVar->getLinkage()) {
Duncan Sands12da8ce2009-03-07 15:45:40 +0000708 case GlobalValue::LinkOnceAnyLinkage:
709 case GlobalValue::LinkOnceODRLinkage:
710 case GlobalValue::WeakAnyLinkage:
711 case GlobalValue::WeakODRLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +0000712 case GlobalValue::CommonLinkage:
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000713 O << "\t.global " << name << '\n'
714 << "\t.type " << name << ", @object\n"
715 << "\t.weak " << name << '\n';
716 break;
717 case GlobalValue::AppendingLinkage:
718 // FIXME: appending linkage variables should go into a section of
719 // their name or something. For now, just emit them as external.
720 case GlobalValue::ExternalLinkage:
721 // If external or appending, declare as a global symbol
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000722 O << "\t.global " << name << '\n'
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000723 << "\t.type " << name << ", @object\n";
724 // FALL THROUGH
725 case GlobalValue::InternalLinkage:
Rafael Espindola6de96a12009-01-15 20:18:42 +0000726 case GlobalValue::PrivateLinkage:
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000727 break;
728 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000729 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000730 }
731
732 EmitAlignment(Align, GVar);
Evan Chenga774a992009-03-24 00:17:40 +0000733 O << name << ":";
734 if (VerboseAsm) {
735 O << "\t\t\t\t" << TAI->getCommentString() << " '";
736 PrintUnmangledNameSafely(GVar, O);
737 O << "'";
738 }
739 O << '\n';
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000740
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000741 EmitGlobalConstant(C);
742 O << '\n';
743}
744
745bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
746 // Print out module-level global variables here.
747 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
748 I != E; ++I)
749 printModuleLevelGV(I);
750
Dan Gohmancf0a5342007-07-25 19:33:14 +0000751 return AsmPrinter::doFinalization(M);
Jim Laskey28663c72006-12-21 20:26:09 +0000752}
753
Nate Begeman4bfceb12004-09-04 05:00:00 +0000754/// runOnMachineFunction - This uses the printMachineInstruction()
755/// method to print assembly for each instruction.
756///
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000757bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000758 this->MF = &MF;
759
Chris Lattner99946fb2005-11-21 07:51:23 +0000760 SetupMachineFunction(MF);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000761 O << "\n\n";
Dale Johannesen763e1102007-11-20 23:24:42 +0000762
Nate Begeman4bfceb12004-09-04 05:00:00 +0000763 // Print out constants referenced by the function
Chris Lattneref83ebd2005-11-21 08:26:15 +0000764 EmitConstantPool(MF.getConstantPool());
Nate Begeman4bfceb12004-09-04 05:00:00 +0000765
766 // Print out labels for the function.
Chris Lattner0aacd2a2005-11-14 18:52:46 +0000767 const Function *F = MF.getFunction();
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000768 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000769
Chris Lattner57575112005-12-16 00:22:14 +0000770 switch (F->getLinkage()) {
Torok Edwinfbcc6632009-07-14 16:55:14 +0000771 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1c7c0192009-01-25 06:32:01 +0000772 case Function::PrivateLinkage:
Chris Lattner57575112005-12-16 00:22:14 +0000773 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattner57575112005-12-16 00:22:14 +0000774 break;
775 case Function::ExternalLinkage:
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000776 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattner57575112005-12-16 00:22:14 +0000777 break;
Duncan Sands12da8ce2009-03-07 15:45:40 +0000778 case Function::WeakAnyLinkage:
779 case Function::WeakODRLinkage:
780 case Function::LinkOnceAnyLinkage:
781 case Function::LinkOnceODRLinkage:
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000782 O << "\t.globl\t" << CurrentFnName << '\n';
783 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattner57575112005-12-16 00:22:14 +0000784 break;
785 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000786
Anton Korobeynikoved473292008-08-08 18:25:07 +0000787 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000788
Bill Wendling31ceb1b2009-06-30 22:38:32 +0000789 EmitAlignment(MF.getAlignment(), F);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000790 O << CurrentFnName << ":\n";
791
Jim Laskeyc0d65182006-04-07 20:44:42 +0000792 // Emit pre-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000793 DW->BeginFunction(&MF);
Jim Laskeyc0d65182006-04-07 20:44:42 +0000794
Bill Wendling50794832008-01-26 06:51:24 +0000795 // If the function is empty, then we need to emit *something*. Otherwise, the
796 // function's label might be associated with something that it wasn't meant to
797 // be associated with. We emit a noop in this situation.
798 MachineFunction::iterator I = MF.begin();
799
Bill Wendling1a17ef02008-01-26 09:03:52 +0000800 if (++I == MF.end() && MF.front().empty())
801 O << "\tnop\n";
Bill Wendling50794832008-01-26 06:51:24 +0000802
Nate Begeman4bfceb12004-09-04 05:00:00 +0000803 // Print out code for the function.
804 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
805 I != E; ++I) {
806 // Print a label for the basic block.
Chris Lattner968aeb12005-08-21 19:09:33 +0000807 if (I != MF.begin()) {
Evan Chenga774a992009-03-24 00:17:40 +0000808 printBasicBlockLabel(I, true, true, VerboseAsm);
Nate Begemanb9d4f832006-05-02 05:37:32 +0000809 O << '\n';
Chris Lattner968aeb12005-08-21 19:09:33 +0000810 }
Bill Wendling50794832008-01-26 06:51:24 +0000811 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
812 II != IE; ++II) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000813 // Print the assembly for the instruction.
Nate Begeman4bfceb12004-09-04 05:00:00 +0000814 printMachineInstruction(II);
815 }
816 }
Nate Begeman4bfceb12004-09-04 05:00:00 +0000817
Chris Lattner41e22a52006-10-05 00:26:05 +0000818 // Print out jump tables referenced by the function.
Chris Lattnera6a570e2006-10-05 03:01:21 +0000819 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000820
Jim Laskeyb0609d92006-01-04 13:52:30 +0000821 // Emit post-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000822 DW->EndFunction(&MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000823
Nate Begeman4bfceb12004-09-04 05:00:00 +0000824 // We didn't modify anything.
825 return false;
826}
827
Misha Brukmane05203f2004-06-21 16:55:25 +0000828
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000829bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmanbdc24ad2008-03-25 21:45:14 +0000830 static const char *const CPUDirectives[] = {
Dale Johannesen6ca3ccf2008-02-14 23:35:16 +0000831 "",
Jim Laskey59e7a772006-12-12 20:57:08 +0000832 "ppc",
833 "ppc601",
834 "ppc602",
835 "ppc603",
836 "ppc7400",
837 "ppc750",
838 "ppc970",
839 "ppc64"
840 };
841
842 unsigned Directive = Subtarget.getDarwinDirective();
843 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
844 Directive = PPC::DIR_970;
845 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
846 Directive = PPC::DIR_7400;
847 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
848 Directive = PPC::DIR_64;
849 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000850 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000851
Dan Gohmancf0a5342007-07-25 19:33:14 +0000852 bool Result = AsmPrinter::doInitialization(M);
Devang Patel1b61c2a2009-06-20 01:00:07 +0000853 assert(MMI);
Dale Johannesenb9aaddc2008-07-09 20:43:39 +0000854
Jim Laskeyec05b042006-11-28 18:21:52 +0000855 // Prime text sections so they are adjacent. This reduces the likelihood a
856 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000857 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000858 "pure_instructions");
859 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000860 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000861 "pure_instructions,32");
862 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000863 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000864 "pure_instructions,16");
865 }
Anton Korobeynikovf8dc8aa2008-09-24 22:15:21 +0000866 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000867
Dan Gohmancf0a5342007-07-25 19:33:14 +0000868 return Result;
Nate Begeman15527112005-07-21 01:25:49 +0000869}
870
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000871void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
872 const TargetData *TD = TM.getTargetData();
873
874 if (!GVar->hasInitializer())
875 return; // External global require no code
876
877 // Check to see if this is a special global used by LLVM, if so, emit it.
878 if (EmitSpecialLLVMGlobal(GVar)) {
879 if (TM.getRelocationModel() == Reloc::Static) {
880 if (GVar->getName() == "llvm.global_ctors")
881 O << ".reference .constructors_used\n";
882 else if (GVar->getName() == "llvm.global_dtors")
883 O << ".reference .destructors_used\n";
884 }
885 return;
886 }
887
Chris Lattner8c9a96b2009-07-14 18:17:16 +0000888 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikoved473292008-08-08 18:25:07 +0000889 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000890
891 Constant *C = GVar->getInitializer();
892 const Type *Type = C->getType();
Duncan Sandsaf9eaa82009-05-09 07:06:46 +0000893 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000894 unsigned Align = TD->getPreferredAlignmentLog(GVar);
895
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000896 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000897
898 if (C->isNullValue() && /* FIXME: Verify correct */
899 !GVar->hasSection() &&
Rafael Espindola6de96a12009-01-15 20:18:42 +0000900 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands12da8ce2009-03-07 15:45:40 +0000901 GVar->isWeakForLinker()) &&
Evan Chenga40d5e12009-02-18 02:19:52 +0000902 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000903 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
904
905 if (GVar->hasExternalLinkage()) {
906 O << "\t.globl " << name << '\n';
907 O << "\t.zerofill __DATA, __common, " << name << ", "
908 << Size << ", " << Align;
Rafael Espindola6de96a12009-01-15 20:18:42 +0000909 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000910 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000911 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000912 O << "\t.globl " << name << '\n'
913 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000914 EmitAlignment(Align, GVar);
Evan Chenga774a992009-03-24 00:17:40 +0000915 O << name << ":";
916 if (VerboseAsm) {
917 O << "\t\t\t\t" << TAI->getCommentString() << " ";
918 PrintUnmangledNameSafely(GVar, O);
919 }
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000920 O << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000921 EmitGlobalConstant(C);
922 return;
923 } else {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000924 O << ".comm " << name << ',' << Size;
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000925 // Darwin 9 and above support aligned common data.
926 if (Subtarget.isDarwin9())
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000927 O << ',' << Align;
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000928 }
Evan Chenga774a992009-03-24 00:17:40 +0000929 if (VerboseAsm) {
930 O << "\t\t" << TAI->getCommentString() << " '";
931 PrintUnmangledNameSafely(GVar, O);
932 O << "'";
933 }
934 O << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000935 return;
936 }
937
938 switch (GVar->getLinkage()) {
Duncan Sands12da8ce2009-03-07 15:45:40 +0000939 case GlobalValue::LinkOnceAnyLinkage:
940 case GlobalValue::LinkOnceODRLinkage:
941 case GlobalValue::WeakAnyLinkage:
942 case GlobalValue::WeakODRLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +0000943 case GlobalValue::CommonLinkage:
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000944 O << "\t.globl " << name << '\n'
945 << "\t.weak_definition " << name << '\n';
946 break;
947 case GlobalValue::AppendingLinkage:
948 // FIXME: appending linkage variables should go into a section of
949 // their name or something. For now, just emit them as external.
950 case GlobalValue::ExternalLinkage:
951 // If external or appending, declare as a global symbol
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000952 O << "\t.globl " << name << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000953 // FALL THROUGH
954 case GlobalValue::InternalLinkage:
Evan Cheng1c7c0192009-01-25 06:32:01 +0000955 case GlobalValue::PrivateLinkage:
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000956 break;
957 default:
Torok Edwinfbcc6632009-07-14 16:55:14 +0000958 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000959 }
960
961 EmitAlignment(Align, GVar);
Evan Chenga774a992009-03-24 00:17:40 +0000962 O << name << ":";
963 if (VerboseAsm) {
964 O << "\t\t\t\t" << TAI->getCommentString() << " '";
965 PrintUnmangledNameSafely(GVar, O);
966 O << "'";
967 }
968 O << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000969
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000970 EmitGlobalConstant(C);
971 O << '\n';
972}
973
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000974bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000975 const TargetData *TD = TM.getTargetData();
Misha Brukmane05203f2004-06-21 16:55:25 +0000976
977 // Print out module-level global variables here.
Chris Lattner1a4adc72005-11-14 19:00:30 +0000978 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000979 I != E; ++I)
980 printModuleLevelGV(I);
Misha Brukmand4ac8182004-07-16 20:29:04 +0000981
Chris Lattner1df08392006-06-27 01:02:25 +0000982 bool isPPC64 = TD->getPointerSizeInBits() == 64;
983
Misha Brukmand4ac8182004-07-16 20:29:04 +0000984 // Output stubs for dynamically-linked functions
Chris Lattner0b1ca0a2009-07-15 00:55:58 +0000985 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
986 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
987 "pure_instructions,32");
Chris Lattnere8382ac2009-07-15 02:28:57 +0000988 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000989 I != E; ++I) {
Chris Lattner1df08392006-06-27 01:02:25 +0000990 EmitAlignment(4);
Chris Lattner9a066ca2009-07-15 02:33:19 +0000991 const FnStubInfo &Info = I->second;
Chris Lattner9ffa4e22009-07-15 01:14:44 +0000992 const char *p = I->getKeyData();
Chris Lattner9a066ca2009-07-15 02:33:19 +0000993
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000994 bool hasQuote = p[0]=='\"';
Chris Lattner9a066ca2009-07-15 02:33:19 +0000995 O << Info.Stub << ":\n";
996 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner54a11df2005-12-13 04:33:58 +0000997 O << "\tmflr r0\n";
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000998 O << "\tbcl 20,31,";
999 if (hasQuote)
1000 O << "\"L0$" << &p[1];
1001 else
1002 O << "L0$" << p;
1003 O << '\n';
1004 if (hasQuote)
1005 O << "\"L0$" << &p[1];
1006 else
1007 O << "L0$" << p;
1008 O << ":\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001009 O << "\tmflr r11\n";
Chris Lattner9a066ca2009-07-15 02:33:19 +00001010 O << "\taddis r11,r11,ha16(" << Info.LazyPtr << "-";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001011 if (hasQuote)
1012 O << "\"L0$" << &p[1];
1013 else
1014 O << "L0$" << p;
1015 O << ")\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001016 O << "\tmtlr r0\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001017 if (isPPC64)
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001018 O << "\tldu r12,lo16(";
Chris Lattner1df08392006-06-27 01:02:25 +00001019 else
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001020 O << "\tlwzu r12,lo16(";
Chris Lattner9a066ca2009-07-15 02:33:19 +00001021 O << Info.LazyPtr << "-";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001022 if (hasQuote)
1023 O << "\"L0$" << &p[1];
1024 else
1025 O << "L0$" << p;
1026 O << ")(r11)\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001027 O << "\tmtctr r12\n";
1028 O << "\tbctr\n";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001029 SwitchToDataSection(".lazy_symbol_pointer");
Chris Lattner9a066ca2009-07-15 02:33:19 +00001030 O << Info.LazyPtr << ":\n";
1031 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1df08392006-06-27 01:02:25 +00001032 if (isPPC64)
1033 O << "\t.quad dyld_stub_binding_helper\n";
1034 else
1035 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001036 }
Chris Lattner0b1ca0a2009-07-15 00:55:58 +00001037 } else if (!FnStubs.empty()) {
1038 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
1039 "pure_instructions,16");
Chris Lattnere8382ac2009-07-15 02:28:57 +00001040 for (StringMap<FnStubInfo>::iterator I = FnStubs.begin(), E = FnStubs.end();
Chris Lattner9ffa4e22009-07-15 01:14:44 +00001041 I != E; ++I) {
Chris Lattner54a11df2005-12-13 04:33:58 +00001042 EmitAlignment(4);
Chris Lattner9a066ca2009-07-15 02:33:19 +00001043 const FnStubInfo &Info = I->second;
1044 O << Info.Stub << ":\n";
1045 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1046 O << "\tlis r11,ha16(" << Info.LazyPtr << ")\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001047 if (isPPC64)
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001048 O << "\tldu r12,lo16(";
Chris Lattner1df08392006-06-27 01:02:25 +00001049 else
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001050 O << "\tlwzu r12,lo16(";
Chris Lattner9a066ca2009-07-15 02:33:19 +00001051 O << Info.LazyPtr << ")(r11)\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001052 O << "\tmtctr r12\n";
1053 O << "\tbctr\n";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001054 SwitchToDataSection(".lazy_symbol_pointer");
Chris Lattner9a066ca2009-07-15 02:33:19 +00001055 O << Info.LazyPtr << ":\n";
1056 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
Chris Lattner1df08392006-06-27 01:02:25 +00001057 if (isPPC64)
1058 O << "\t.quad dyld_stub_binding_helper\n";
1059 else
1060 O << "\t.long dyld_stub_binding_helper\n";
Nate Begemana9443f22005-07-21 20:44:43 +00001061 }
Misha Brukmanf62ee7a2004-06-24 23:04:11 +00001062 }
Misha Brukmane05203f2004-06-21 16:55:25 +00001063
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +00001064 O << '\n';
Misha Brukmand4ac8182004-07-16 20:29:04 +00001065
Dale Johannesenfd967cf2008-04-02 00:25:04 +00001066 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen763e1102007-11-20 23:24:42 +00001067 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesenfd967cf2008-04-02 00:25:04 +00001068 // Only referenced functions get into the Personalities list.
Chris Lattner1fd58882009-06-24 19:09:55 +00001069 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen763e1102007-11-20 23:24:42 +00001070 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner9ffa4e22009-07-15 01:14:44 +00001071 E = Personalities.end(); I != E; ++I) {
1072 if (*I)
1073 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner8da3ce32009-07-15 01:16:38 +00001074 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner9ffa4e22009-07-15 01:14:44 +00001075 }
Dale Johannesen763e1102007-11-20 23:24:42 +00001076 }
1077
Chris Lattner57575112005-12-16 00:22:14 +00001078 // Output stubs for external and common global variables.
Dan Gohmanc731c972007-10-03 19:26:29 +00001079 if (!GVStubs.empty()) {
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001080 SwitchToDataSection(".non_lazy_symbol_pointer");
Chris Lattner9ffa4e22009-07-15 01:14:44 +00001081 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1082 E = GVStubs.end(); I != E; ++I) {
1083 O << I->second << ":\n";
1084 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1085 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattner54a11df2005-12-13 04:33:58 +00001086 }
Nate Begeman0ad7f812004-08-14 22:09:10 +00001087 }
Misha Brukmanb4402432005-04-21 23:30:14 +00001088
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001089 if (!HiddenGVStubs.empty()) {
1090 SwitchToSection(TAI->getDataSection());
Chris Lattner9ffa4e22009-07-15 01:14:44 +00001091 EmitAlignment(isPPC64 ? 3 : 2);
1092 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1093 E = HiddenGVStubs.end(); I != E; ++I) {
1094 O << I->second << ":\n";
1095 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001096 }
1097 }
1098
Chris Lattner7432ceef2005-11-01 00:12:36 +00001099 // Funny Darwin hack: This flag tells the linker that no global symbols
1100 // contain code that falls through to other global symbols (e.g. the obvious
1101 // implementation of multiple entry points). If this doesn't occur, the
1102 // linker can safely perform dead code stripping. Since LLVM never generates
1103 // code that does this, it is always safe to set.
Chris Lattnera81a75c2006-09-20 17:12:19 +00001104 O << "\t.subsections_via_symbols\n";
Chris Lattner7432ceef2005-11-01 00:12:36 +00001105
Dan Gohmancf0a5342007-07-25 19:33:14 +00001106 return AsmPrinter::doFinalization(M);
Misha Brukmane05203f2004-06-21 16:55:25 +00001107}
Nate Begeman4bfceb12004-09-04 05:00:00 +00001108
Chris Lattnera81a75c2006-09-20 17:12:19 +00001109
1110
Jim Laskey41621a72006-12-20 20:56:46 +00001111/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1112/// for a MachineFunction to the given output stream, in a format that the
Chris Lattnera81a75c2006-09-20 17:12:19 +00001113/// Darwin assembler can deal with.
1114///
David Greenea31f96c2009-07-14 20:18:05 +00001115FunctionPass *llvm::createPPCAsmPrinterPass(formatted_raw_ostream &o,
Bill Wendlingc5437ea2009-02-24 08:30:20 +00001116 PPCTargetMachine &tm,
Bill Wendling026e5d72009-04-29 23:29:43 +00001117 bool verbose) {
Jim Laskey28663c72006-12-21 20:26:09 +00001118 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1119
1120 if (Subtarget->isDarwin()) {
Daniel Dunbar75c12e12009-07-01 01:48:54 +00001121 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Jim Laskey28663c72006-12-21 20:26:09 +00001122 } else {
Daniel Dunbar75c12e12009-07-01 01:48:54 +00001123 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Jim Laskey28663c72006-12-21 20:26:09 +00001124 }
Chris Lattnera81a75c2006-09-20 17:12:19 +00001125}
Anton Korobeynikov28dc9d02008-08-17 13:54:28 +00001126
1127namespace {
1128 static struct Register {
1129 Register() {
1130 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1131 }
1132 } Registrator;
1133}
Oscar Fuentesba4eb2a2008-11-15 21:36:30 +00001134
1135extern "C" int PowerPCAsmPrinterForceLink;
1136int PowerPCAsmPrinterForceLink = 0;
Douglas Gregor1b731d52009-06-16 20:12:29 +00001137
Bob Wilson5a495fe2009-06-23 23:59:40 +00001138// Force static initialization.
1139extern "C" void LLVMInitializePowerPCAsmPrinter() { }