blob: 57a2697112a0712193fd062d039e5e1811f09a53 [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"
27#include "llvm/Assembly/Writer.h"
Chris Lattner0ced9052004-08-16 23:25:21 +000028#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeyb0609d92006-01-04 13:52:30 +000029#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskeyc56315c2007-01-26 21:22:28 +000030#include "llvm/CodeGen/MachineModuleInfo.h"
Misha Brukmanf57c3cd2004-06-24 17:31:42 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukmane05203f2004-06-21 16:55:25 +000032#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling50794832008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Misha Brukmane05203f2004-06-21 16:55:25 +000034#include "llvm/Support/Mangler.h"
Nate Begeman4d847042004-09-04 14:51:26 +000035#include "llvm/Support/MathExtras.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000036#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/Debug.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000038#include "llvm/Support/Compiler.h"
Owen Anderson93719642008-08-21 00:14:44 +000039#include "llvm/Support/raw_ostream.h"
Jim Laskeya6211dc2006-09-06 18:34:40 +000040#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman3a4be0f2008-02-10 18:45:23 +000041#include "llvm/Target/TargetRegisterInfo.h"
Nate Begeman3f76eb62004-11-25 07:09:01 +000042#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng5f997602006-02-18 00:08:58 +000043#include "llvm/Target/TargetOptions.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000044#include "llvm/ADT/Statistic.h"
45#include "llvm/ADT/StringExtras.h"
Evan Cheng2a03c7e2008-12-05 01:06:39 +000046#include "llvm/ADT/StringSet.h"
Chris Lattner0ced9052004-08-16 23:25:21 +000047using namespace llvm;
Misha Brukmane05203f2004-06-21 16:55:25 +000048
Chris Lattner1ef9cd42006-12-19 22:59:26 +000049STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukmane05203f2004-06-21 16:55:25 +000050
Chris Lattner1ef9cd42006-12-19 22:59:26 +000051namespace {
Bill Wendlingc5437ea2009-02-24 08:30:20 +000052 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
53 protected:
Evan Cheng2a03c7e2008-12-05 01:06:39 +000054 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Chris Lattner8597a2f2006-09-20 17:07:15 +000055 const PPCSubtarget &Subtarget;
Bill Wendlingc5437ea2009-02-24 08:30:20 +000056 public:
57 PPCAsmPrinter(raw_ostream &O, TargetMachine &TM,
58 const TargetAsmInfo *T, bool F)
59 : AsmPrinter(O, TM, T, F),
60 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Misha Brukmanb4402432005-04-21 23:30:14 +000061
Misha Brukmane05203f2004-06-21 16:55:25 +000062 virtual const char *getPassName() const {
Nate Begeman4bfceb12004-09-04 05:00:00 +000063 return "PowerPC Assembly Printer";
Misha Brukmane05203f2004-06-21 16:55:25 +000064 }
65
Nate Begeman6cca84e2005-10-16 05:39:50 +000066 PPCTargetMachine &getTM() {
67 return static_cast<PPCTargetMachine&>(TM);
Chris Lattner0ced9052004-08-16 23:25:21 +000068 }
69
Nate Begeman8465fe82005-07-20 22:42:00 +000070 unsigned enumRegToMachineReg(unsigned enumReg) {
71 switch (enumReg) {
72 default: assert(0 && "Unhandled register!"); break;
73 case PPC::CR0: return 0;
74 case PPC::CR1: return 1;
75 case PPC::CR2: return 2;
76 case PPC::CR3: return 3;
77 case PPC::CR4: return 4;
78 case PPC::CR5: return 5;
79 case PPC::CR6: return 6;
80 case PPC::CR7: return 7;
81 }
82 abort();
83 }
84
Nate Begeman0ad7f812004-08-14 22:09:10 +000085 /// printInstruction - This method is automatically generated by tablegen
86 /// from the instruction set description. This method returns true if the
87 /// machine instruction was sufficiently described to print it, otherwise it
88 /// returns false.
89 bool printInstruction(const MachineInstr *MI);
90
Misha Brukmane05203f2004-06-21 16:55:25 +000091 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner6ab87fa2005-11-17 19:25:59 +000092 void printOp(const MachineOperand &MO);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +000093
Jim Laskey41621a72006-12-20 20:56:46 +000094 /// stripRegisterPrefix - This method strips the character prefix from a
95 /// register name so that only the number is left. Used by for linux asm.
Jim Laskeyc2c861d2006-12-20 21:33:34 +000096 const char *stripRegisterPrefix(const char *RegName) {
97 switch (RegName[0]) {
98 case 'r':
99 case 'f':
100 case 'v': return RegName + 1;
Jim Laskey4c90a6d2006-12-20 21:35:00 +0000101 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskey41621a72006-12-20 20:56:46 +0000102 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000103
Jim Laskeyc2c861d2006-12-20 21:33:34 +0000104 return RegName;
Jim Laskey41621a72006-12-20 20:56:46 +0000105 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000106
Jim Laskey41621a72006-12-20 20:56:46 +0000107 /// printRegister - Print register according to target requirements.
108 ///
109 void printRegister(const MachineOperand &MO, bool R0AsZero) {
110 unsigned RegNo = MO.getReg();
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000111 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000112
Jim Laskey41621a72006-12-20 20:56:46 +0000113 // If we should use 0 for R0.
114 if (R0AsZero && RegNo == PPC::R0) {
115 O << "0";
116 return;
117 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000118
Bill Wendlingc24ea4f2008-02-26 21:11:01 +0000119 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskey41621a72006-12-20 20:56:46 +0000120 // Linux assembler (Others?) does not take register mnemonics.
121 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskeyc2c861d2006-12-20 21:33:34 +0000122 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
123 O << RegName;
Jim Laskey41621a72006-12-20 20:56:46 +0000124 }
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000125
Chris Lattnerf7f05672006-02-01 22:38:46 +0000126 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000127 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000128 if (MO.isReg()) {
Jim Laskey41621a72006-12-20 20:56:46 +0000129 printRegister(MO, false);
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000130 } else if (MO.isImm()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000131 O << MO.getImm();
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000132 } else {
133 printOp(MO);
134 }
135 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000136
Chris Lattnerf7f05672006-02-01 22:38:46 +0000137 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner1bad2542006-02-23 19:31:10 +0000138 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner7674d902006-02-24 20:27:40 +0000139 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
140 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000141
142
Chris Lattner2771e2c2006-03-25 06:12:06 +0000143 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000144 char value = MI->getOperand(OpNo).getImm();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000145 value = (value << (32-5)) >> (32-5);
146 O << (int)value;
147 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000148 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000149 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattnerf7833ba2004-08-21 19:11:03 +0000150 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begeman3ad3ad42004-08-21 05:56:39 +0000151 O << (unsigned int)value;
152 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000153 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000154 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman143cf942004-08-30 02:28:06 +0000155 assert(value <= 63 && "Invalid u6imm argument!");
156 O << (unsigned int)value;
157 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000158 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000159 O << (short)MI->getOperand(OpNo).getImm();
Nate Begeman4bfceb12004-09-04 05:00:00 +0000160 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000161 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000162 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner8a796852004-08-15 05:20:16 +0000163 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000164 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000165 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000166 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner30055b92006-11-16 21:45:30 +0000167 } else {
168 O << "lo16(";
169 printOp(MI->getOperand(OpNo));
170 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000171 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner30055b92006-11-16 21:45:30 +0000172 else
173 O << ')';
174 }
Chris Lattner5a2fb972005-10-18 16:51:22 +0000175 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000176 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000177 // Branches can take an immediate operand. This is used by the branch
178 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000179 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000180 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begeman4bfceb12004-09-04 05:00:00 +0000181 } else {
Chris Lattnerbd9efdb2005-11-17 19:16:08 +0000182 printOp(MI->getOperand(OpNo));
Nate Begeman4bfceb12004-09-04 05:00:00 +0000183 }
Nate Begeman61738782004-09-02 08:13:00 +0000184 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000185 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000186 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng73136df2006-02-22 20:19:42 +0000187 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner57575112005-12-16 00:22:14 +0000188 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
189 GlobalValue *GV = MO.getGlobal();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000190 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesence4396b2008-05-14 20:12:51 +0000191 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Chris Lattner57575112005-12-16 00:22:14 +0000192 // Dynamically-resolved functions need a stub for the function.
193 std::string Name = Mang->getValueName(GV);
194 FnStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000195 printSuffixedName(Name, "$stub");
Evan Chengfa54c0b2006-12-01 07:56:37 +0000196 if (GV->hasExternalWeakLinkage())
Rafael Espindolad7998d02006-12-18 03:37:18 +0000197 ExtWeakSymbols.insert(GV);
Chris Lattner57575112005-12-16 00:22:14 +0000198 return;
199 }
200 }
Chris Lattnercdde99902005-11-17 19:40:30 +0000201 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000202 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnercdde99902005-11-17 19:40:30 +0000203 FnStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000204 printSuffixedName(Name, "$stub");
Chris Lattnercdde99902005-11-17 19:40:30 +0000205 return;
Chris Lattnercdde99902005-11-17 19:40:30 +0000206 }
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000207 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000208
Chris Lattnercdde99902005-11-17 19:40:30 +0000209 printOp(MI->getOperand(OpNo));
Chris Lattnerbd9efdb2005-11-17 19:16:08 +0000210 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000211 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000212 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begemana171f6b2005-11-16 00:48:01 +0000213 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000214 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Chengcdf36092007-10-14 05:57:21 +0000215 O << "\"L" << getFunctionNumber() << "$pb\"\n";
216 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begeman61738782004-09-02 08:13:00 +0000217 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000218 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000219 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000220 printS16ImmOperand(MI, OpNo);
Nate Begemana9443f22005-07-21 20:44:43 +0000221 } else {
Nick Lewyckye6049c22007-03-03 05:29:51 +0000222 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begemana9443f22005-07-21 20:44:43 +0000223 printOp(MI->getOperand(OpNo));
Chris Lattner9e56e5c2006-07-26 21:12:04 +0000224 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000225 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckye6049c22007-03-03 05:29:51 +0000226 if (Subtarget.isDarwin())
Nate Begemana9443f22005-07-21 20:44:43 +0000227 O << ')';
Nick Lewyckye6049c22007-03-03 05:29:51 +0000228 else
229 O << "@ha";
Nate Begemana9443f22005-07-21 20:44:43 +0000230 }
Nate Begeman4bfceb12004-09-04 05:00:00 +0000231 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000232 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000233 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000234 printS16ImmOperand(MI, OpNo);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000235 } else {
Nick Lewyckye6049c22007-03-03 05:29:51 +0000236 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begeman3f76eb62004-11-25 07:09:01 +0000237 printOp(MI->getOperand(OpNo));
Chris Lattner9e56e5c2006-07-26 21:12:04 +0000238 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000239 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckye6049c22007-03-03 05:29:51 +0000240 if (Subtarget.isDarwin())
Nate Begemana9443f22005-07-21 20:44:43 +0000241 O << ')';
Nick Lewyckye6049c22007-03-03 05:29:51 +0000242 else
243 O << "@l";
Nate Begeman4bfceb12004-09-04 05:00:00 +0000244 }
245 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000246 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman8465fe82005-07-20 22:42:00 +0000247 unsigned CCReg = MI->getOperand(OpNo).getReg();
248 unsigned RegNo = enumRegToMachineReg(CCReg);
249 O << (0x80 >> RegNo);
250 }
Chris Lattner7674d902006-02-24 20:27:40 +0000251 // The new addressing mode printers.
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000252 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
253 printSymbolLo(MI, OpNo);
254 O << '(';
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000255 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner139eac52006-03-21 17:21:13 +0000256 MI->getOperand(OpNo+1).getReg() == PPC::R0)
257 O << "0";
258 else
259 printOperand(MI, OpNo+1);
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000260 O << ')';
261 }
Chris Lattner77373d12006-03-22 05:26:03 +0000262 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000263 if (MI->getOperand(OpNo).isImm())
Chris Lattner77373d12006-03-22 05:26:03 +0000264 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000265 else
Chris Lattner77373d12006-03-22 05:26:03 +0000266 printSymbolLo(MI, OpNo);
267 O << '(';
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000268 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner77373d12006-03-22 05:26:03 +0000269 MI->getOperand(OpNo+1).getReg() == PPC::R0)
270 O << "0";
271 else
272 printOperand(MI, OpNo+1);
273 O << ')';
274 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000275
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000276 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanc1263972005-12-19 23:40:42 +0000277 // When used as the base register, r0 reads constant zero rather than
278 // the value contained in the register. For this reason, the darwin
279 // assembler requires that we print r0 as 0 (no r) when used as the base.
280 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskey41621a72006-12-20 20:56:46 +0000281 printRegister(MO, true);
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000282 O << ", ";
283 printOperand(MI, OpNo+1);
284 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000285
286 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner6be72602006-11-04 05:27:39 +0000287 const char *Modifier);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000288
Misha Brukmanb4402432005-04-21 23:30:14 +0000289 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begeman4bfceb12004-09-04 05:00:00 +0000290 virtual bool doFinalization(Module &M) = 0;
Jim Laskey18fc0972007-02-21 22:47:38 +0000291
292 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000293 };
Misha Brukmanb4402432005-04-21 23:30:14 +0000294
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000295 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000296 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Devang Patelf6466682009-01-08 23:40:34 +0000297 DwarfWriter *DW;
Dale Johannesendbd04c02008-07-09 21:24:07 +0000298 MachineModuleInfo *MMI;
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000299 public:
Owen Anderson93719642008-08-21 00:14:44 +0000300 PPCLinuxAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000301 const TargetAsmInfo *T, bool F)
302 : PPCAsmPrinter(O, TM, T, F), DW(0), MMI(0) {}
Jim Laskey28663c72006-12-21 20:26:09 +0000303
304 virtual const char *getPassName() const {
305 return "Linux PPC Assembly Printer";
306 }
307
308 bool runOnMachineFunction(MachineFunction &F);
309 bool doInitialization(Module &M);
310 bool doFinalization(Module &M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000311
Jim Laskey28663c72006-12-21 20:26:09 +0000312 void getAnalysisUsage(AnalysisUsage &AU) const {
313 AU.setPreservesAll();
Jim Laskeyc56315c2007-01-26 21:22:28 +0000314 AU.addRequired<MachineModuleInfo>();
Devang Patelf6466682009-01-08 23:40:34 +0000315 AU.addRequired<DwarfWriter>();
Jim Laskey28663c72006-12-21 20:26:09 +0000316 PPCAsmPrinter::getAnalysisUsage(AU);
317 }
318
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000319 void printModuleLevelGV(const GlobalVariable* GVar);
Jim Laskey28663c72006-12-21 20:26:09 +0000320 };
321
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000322 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
323 /// OS X
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000324 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
Devang Patelf6466682009-01-08 23:40:34 +0000325 DwarfWriter *DW;
Dale Johannesen763e1102007-11-20 23:24:42 +0000326 MachineModuleInfo *MMI;
Devang Patelf6466682009-01-08 23:40:34 +0000327 raw_ostream &OS;
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000328 public:
Owen Anderson93719642008-08-21 00:14:44 +0000329 PPCDarwinAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000330 const TargetAsmInfo *T, bool F)
331 : PPCAsmPrinter(O, TM, T, F), DW(0), MMI(0), OS(O) {}
Nate Begeman4bfceb12004-09-04 05:00:00 +0000332
333 virtual const char *getPassName() const {
334 return "Darwin PPC Assembly Printer";
335 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000336
Misha Brukmanb4402432005-04-21 23:30:14 +0000337 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman15527112005-07-21 01:25:49 +0000338 bool doInitialization(Module &M);
Misha Brukmane05203f2004-06-21 16:55:25 +0000339 bool doFinalization(Module &M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000340
Jim Laskey219d5592006-01-04 22:28:25 +0000341 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000342 AU.setPreservesAll();
Jim Laskeyc56315c2007-01-26 21:22:28 +0000343 AU.addRequired<MachineModuleInfo>();
Devang Patelf6466682009-01-08 23:40:34 +0000344 AU.addRequired<DwarfWriter>();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000345 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskey219d5592006-01-04 22:28:25 +0000346 }
347
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000348 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukmane05203f2004-06-21 16:55:25 +0000349 };
350} // end of anonymous namespace
351
Nate Begeman0ad7f812004-08-14 22:09:10 +0000352// Include the auto-generated portion of the assembly writer
Chris Lattner0921e3b2005-10-14 23:37:35 +0000353#include "PPCGenAsmWriter.inc"
Nate Begeman0ad7f812004-08-14 22:09:10 +0000354
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000355void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukmane05203f2004-06-21 16:55:25 +0000356 switch (MO.getType()) {
Chris Lattnerfef7a2d2006-05-04 17:21:20 +0000357 case MachineOperand::MO_Immediate:
Bill Wendling9bfb1e12006-12-07 22:21:48 +0000358 cerr << "printOp() does not handle immediate values\n";
Misha Brukman47d5a222004-07-28 00:00:48 +0000359 abort();
Misha Brukman8d75aa42004-07-21 20:11:11 +0000360 return;
361
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000362 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnera5bb3702007-12-30 23:10:15 +0000363 printBasicBlockLabel(MO.getMBB());
Misha Brukmane05203f2004-06-21 16:55:25 +0000364 return;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000365 case MachineOperand::MO_JumpTableIndex:
Evan Chengcdf36092007-10-14 05:57:21 +0000366 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattnera5bb3702007-12-30 23:10:15 +0000367 << '_' << MO.getIndex();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000368 // FIXME: PIC relocation model
369 return;
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000370 case MachineOperand::MO_ConstantPoolIndex:
Evan Chengcdf36092007-10-14 05:57:21 +0000371 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattnera5bb3702007-12-30 23:10:15 +0000372 << '_' << MO.getIndex();
Misha Brukmane05203f2004-06-21 16:55:25 +0000373 return;
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000374 case MachineOperand::MO_ExternalSymbol:
Chris Lattner57575112005-12-16 00:22:14 +0000375 // Computing the address of an external symbol, not calling it.
Evan Cheng73136df2006-02-22 20:19:42 +0000376 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000377 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattner57575112005-12-16 00:22:14 +0000378 GVStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000379 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattner57575112005-12-16 00:22:14 +0000380 return;
381 }
Jim Laskeya6211dc2006-09-06 18:34:40 +0000382 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000383 return;
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000384 case MachineOperand::MO_GlobalAddress: {
Chris Lattner57575112005-12-16 00:22:14 +0000385 // Computing the address of a global symbol, not calling it.
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000386 GlobalValue *GV = MO.getGlobal();
387 std::string Name = Mang->getValueName(GV);
Misha Brukman7dba17d2004-07-23 16:08:20 +0000388
Nate Begeman844186b2004-10-17 23:01:34 +0000389 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng73136df2006-02-22 20:19:42 +0000390 if (TM.getRelocationModel() != Reloc::Static) {
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000391 if (GV->isDeclaration() || GV->mayBeOverridden()) {
392 if (GV->hasHiddenVisibility()) {
393 if (!GV->isDeclaration() && !GV->hasCommonLinkage())
394 O << Name;
395 else {
396 HiddenGVStubs.insert(Name);
397 printSuffixedName(Name, "$non_lazy_ptr");
398 }
399 } else {
400 GVStubs.insert(Name);
401 printSuffixedName(Name, "$non_lazy_ptr");
402 }
Dale Johannesen2e1d5e42008-05-16 20:09:25 +0000403 if (GV->hasExternalWeakLinkage())
404 ExtWeakSymbols.insert(GV);
Chris Lattner57575112005-12-16 00:22:14 +0000405 return;
406 }
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000407 }
Chris Lattnercdde99902005-11-17 19:40:30 +0000408 O << Name;
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000409
Anton Korobeynikovbff4b372008-11-22 16:15:34 +0000410 printOffset(MO.getOffset());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000411
Evan Chengfa54c0b2006-12-01 07:56:37 +0000412 if (GV->hasExternalWeakLinkage())
Rafael Espindolad7998d02006-12-18 03:37:18 +0000413 ExtWeakSymbols.insert(GV);
Misha Brukmane05203f2004-06-21 16:55:25 +0000414 return;
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000415 }
Misha Brukmanb4402432005-04-21 23:30:14 +0000416
Misha Brukmane05203f2004-06-21 16:55:25 +0000417 default:
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000418 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukmana2737582004-06-25 15:11:34 +0000419 return;
Misha Brukmane05203f2004-06-21 16:55:25 +0000420 }
421}
422
Jim Laskey18fc0972007-02-21 22:47:38 +0000423/// EmitExternalGlobal - In this case we need to use the indirect symbol.
424///
425void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
426 std::string Name = getGlobalLinkName(GV);
427 if (TM.getRelocationModel() != Reloc::Static) {
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000428 if (GV->hasHiddenVisibility())
429 HiddenGVStubs.insert(Name);
430 else
431 GVStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000432 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskey18fc0972007-02-21 22:47:38 +0000433 return;
434 }
435 O << Name;
436}
437
Chris Lattner1bad2542006-02-23 19:31:10 +0000438/// PrintAsmOperand - Print out an operand for an inline asm expression.
439///
440bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000441 unsigned AsmVariant,
Chris Lattner1bad2542006-02-23 19:31:10 +0000442 const char *ExtraCode) {
443 // Does this asm operand have a single letter operand modifier?
444 if (ExtraCode && ExtraCode[0]) {
445 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000446
Chris Lattner1bad2542006-02-23 19:31:10 +0000447 switch (ExtraCode[0]) {
448 default: return true; // Unknown modifier.
Chris Lattner48518542007-01-25 02:52:50 +0000449 case 'c': // Don't print "$" before a global var name or constant.
450 // PPC never has a prefix.
451 printOperand(MI, OpNo);
452 return false;
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000453 case 'L': // Write second word of DImode reference.
Chris Lattner1bad2542006-02-23 19:31:10 +0000454 // Verify that this operand has two consecutive registers.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000455 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattner1bad2542006-02-23 19:31:10 +0000456 OpNo+1 == MI->getNumOperands() ||
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000457 !MI->getOperand(OpNo+1).isReg())
Chris Lattner1bad2542006-02-23 19:31:10 +0000458 return true;
459 ++OpNo; // Return the high-part.
460 break;
Chris Lattnercb35c612007-04-24 22:51:03 +0000461 case 'I':
462 // Write 'i' if an integer constant, otherwise nothing. Used to print
463 // addi vs add, etc.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000464 if (MI->getOperand(OpNo).isImm())
Chris Lattnercb35c612007-04-24 22:51:03 +0000465 O << "i";
466 return false;
Chris Lattner1bad2542006-02-23 19:31:10 +0000467 }
468 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000469
Chris Lattner1bad2542006-02-23 19:31:10 +0000470 printOperand(MI, OpNo);
471 return false;
472}
473
Chris Lattner7674d902006-02-24 20:27:40 +0000474bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000475 unsigned AsmVariant,
Chris Lattner7674d902006-02-24 20:27:40 +0000476 const char *ExtraCode) {
477 if (ExtraCode && ExtraCode[0])
478 return true; // Unknown modifier.
Dan Gohman0d1e9a82008-10-03 15:45:36 +0000479 if (MI->getOperand(OpNo).isReg())
Chris Lattnerf7937002007-02-01 00:39:08 +0000480 printMemRegReg(MI, OpNo);
481 else
482 printMemRegImm(MI, OpNo);
Chris Lattner7674d902006-02-24 20:27:40 +0000483 return false;
484}
Chris Lattner1bad2542006-02-23 19:31:10 +0000485
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000486void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner6be72602006-11-04 05:27:39 +0000487 const char *Modifier) {
488 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
489 unsigned Code = MI->getOperand(OpNo).getImm();
490 if (!strcmp(Modifier, "cc")) {
491 switch ((PPC::Predicate)Code) {
492 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
493 case PPC::PRED_LT: O << "lt"; return;
494 case PPC::PRED_LE: O << "le"; return;
495 case PPC::PRED_EQ: O << "eq"; return;
496 case PPC::PRED_GE: O << "ge"; return;
497 case PPC::PRED_GT: O << "gt"; return;
498 case PPC::PRED_NE: O << "ne"; return;
499 case PPC::PRED_UN: O << "un"; return;
500 case PPC::PRED_NU: O << "nu"; return;
501 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000502
Chris Lattner6be72602006-11-04 05:27:39 +0000503 } else {
504 assert(!strcmp(Modifier, "reg") &&
505 "Need to specify 'cc' or 'reg' as predicate op modifier!");
506 // Don't print the register for 'always'.
507 if (Code == PPC::PRED_ALWAYS) return;
508 printOperand(MI, OpNo+1);
509 }
510}
511
512
Nate Begeman0ad7f812004-08-14 22:09:10 +0000513/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
514/// the current output stream.
Misha Brukmane05203f2004-06-21 16:55:25 +0000515///
Chris Lattner0921e3b2005-10-14 23:37:35 +0000516void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begeman0ad7f812004-08-14 22:09:10 +0000517 ++EmittedInsts;
Chris Lattner2121f3c2005-10-14 22:44:13 +0000518
Nate Begeman52441732005-04-05 18:19:50 +0000519 // Check for slwi/srwi mnemonics.
520 if (MI->getOpcode() == PPC::RLWINM) {
521 bool FoundMnemonic = false;
Chris Lattner5c463782007-12-30 20:49:49 +0000522 unsigned char SH = MI->getOperand(2).getImm();
523 unsigned char MB = MI->getOperand(3).getImm();
524 unsigned char ME = MI->getOperand(4).getImm();
Nate Begeman52441732005-04-05 18:19:50 +0000525 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000526 O << "\tslwi "; FoundMnemonic = true;
Nate Begeman52441732005-04-05 18:19:50 +0000527 }
528 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000529 O << "\tsrwi "; FoundMnemonic = true;
Nate Begeman52441732005-04-05 18:19:50 +0000530 SH = 32-SH;
531 }
532 if (FoundMnemonic) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000533 printOperand(MI, 0);
Misha Brukmanb4402432005-04-21 23:30:14 +0000534 O << ", ";
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000535 printOperand(MI, 1);
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000536 O << ", " << (unsigned int)SH << '\n';
Nate Begeman52441732005-04-05 18:19:50 +0000537 return;
538 }
Chris Lattner52a956d2006-06-20 23:18:58 +0000539 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000540 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000541 O << "\tmr ";
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000542 printOperand(MI, 0);
543 O << ", ";
544 printOperand(MI, 1);
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000545 O << '\n';
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000546 return;
547 }
Chris Lattner9ca15c82006-11-18 01:23:56 +0000548 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner5c463782007-12-30 20:49:49 +0000549 unsigned char SH = MI->getOperand(2).getImm();
550 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner9ca15c82006-11-18 01:23:56 +0000551 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
552 if (63-SH == ME) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000553 O << "\tsldi ";
Chris Lattner9ca15c82006-11-18 01:23:56 +0000554 printOperand(MI, 0);
555 O << ", ";
556 printOperand(MI, 1);
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000557 O << ", " << (unsigned int)SH << '\n';
Chris Lattner9ca15c82006-11-18 01:23:56 +0000558 return;
559 }
Nate Begeman52441732005-04-05 18:19:50 +0000560 }
Misha Brukmanb4402432005-04-21 23:30:14 +0000561
Nate Begeman0ad7f812004-08-14 22:09:10 +0000562 if (printInstruction(MI))
563 return; // Printer was automatically generated
Misha Brukmanb4402432005-04-21 23:30:14 +0000564
Nate Begeman4bfceb12004-09-04 05:00:00 +0000565 assert(0 && "Unhandled instruction in asm writer!");
566 abort();
Nate Begeman0ad7f812004-08-14 22:09:10 +0000567 return;
Misha Brukmane05203f2004-06-21 16:55:25 +0000568}
569
Jim Laskey28663c72006-12-21 20:26:09 +0000570/// runOnMachineFunction - This uses the printMachineInstruction()
571/// method to print assembly for each instruction.
572///
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000573bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000574 this->MF = &MF;
Chris Lattner028d6632006-10-05 02:42:20 +0000575
Jim Laskey28663c72006-12-21 20:26:09 +0000576 SetupMachineFunction(MF);
577 O << "\n\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000578
Jim Laskey28663c72006-12-21 20:26:09 +0000579 // Print out constants referenced by the function
580 EmitConstantPool(MF.getConstantPool());
581
582 // Print out labels for the function.
583 const Function *F = MF.getFunction();
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000584 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000585
Jim Laskey28663c72006-12-21 20:26:09 +0000586 switch (F->getLinkage()) {
587 default: assert(0 && "Unknown linkage type!");
Rafael Espindola6de96a12009-01-15 20:18:42 +0000588 case Function::PrivateLinkage:
Jim Laskey28663c72006-12-21 20:26:09 +0000589 case Function::InternalLinkage: // Symbols default to internal.
590 break;
591 case Function::ExternalLinkage:
592 O << "\t.global\t" << CurrentFnName << '\n'
593 << "\t.type\t" << CurrentFnName << ", @function\n";
594 break;
595 case Function::WeakLinkage:
596 case Function::LinkOnceLinkage:
597 O << "\t.global\t" << CurrentFnName << '\n';
598 O << "\t.weak\t" << CurrentFnName << '\n';
599 break;
600 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000601
Anton Korobeynikoved473292008-08-08 18:25:07 +0000602 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000603
Jim Laskey28663c72006-12-21 20:26:09 +0000604 EmitAlignment(2, F);
605 O << CurrentFnName << ":\n";
606
607 // Emit pre-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000608 DW->BeginFunction(&MF);
Jim Laskey28663c72006-12-21 20:26:09 +0000609
610 // Print out code for the function.
611 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
612 I != E; ++I) {
613 // Print a label for the basic block.
614 if (I != MF.begin()) {
Evan Chengc7990652008-02-28 00:43:03 +0000615 printBasicBlockLabel(I, true, true);
Jim Laskey28663c72006-12-21 20:26:09 +0000616 O << '\n';
617 }
618 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
619 II != E; ++II) {
620 // Print the assembly for the instruction.
Jim Laskey28663c72006-12-21 20:26:09 +0000621 printMachineInstruction(II);
622 }
623 }
624
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000625 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskey28663c72006-12-21 20:26:09 +0000626
627 // Print out jump tables referenced by the function.
628 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000629
Dale Johannesen5d84f682008-12-03 19:33:10 +0000630 SwitchToSection(TAI->SectionForGlobal(F));
631
Jim Laskey28663c72006-12-21 20:26:09 +0000632 // Emit post-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000633 DW->EndFunction(&MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000634
Dan Gohmancb0df592008-11-07 19:49:17 +0000635 O.flush();
636
Jim Laskey28663c72006-12-21 20:26:09 +0000637 // We didn't modify anything.
638 return false;
639}
640
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000641bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohmancf0a5342007-07-25 19:33:14 +0000642 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000643
Dale Johannesendbd04c02008-07-09 21:24:07 +0000644 // Emit initial debug information.
Duncan Sands5a913d62009-01-28 13:14:17 +0000645 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
Dale Johannesendbd04c02008-07-09 21:24:07 +0000646 assert(MMI);
Duncan Sands5a913d62009-01-28 13:14:17 +0000647 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Patelf6466682009-01-08 23:40:34 +0000648 assert(DW && "DwarfWriter is not available");
649 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesendbd04c02008-07-09 21:24:07 +0000650
Jim Laskey28663c72006-12-21 20:26:09 +0000651 // GNU as handles section names wrapped in quotes
652 Mang->setUseQuotes(true);
653
Anton Korobeynikovf8dc8aa2008-09-24 22:15:21 +0000654 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000655
Dan Gohmancf0a5342007-07-25 19:33:14 +0000656 return Result;
Jim Laskey28663c72006-12-21 20:26:09 +0000657}
658
Chris Lattner7b143172008-02-15 19:04:54 +0000659/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman92b551b2009-03-03 02:55:14 +0000660/// Don't print things like \\n or \\0.
Owen Anderson93719642008-08-21 00:14:44 +0000661static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
Chris Lattner7b143172008-02-15 19:04:54 +0000662 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
663 Name != E; ++Name)
664 if (isprint(*Name))
665 OS << *Name;
666}
667
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000668void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskey28663c72006-12-21 20:26:09 +0000669 const TargetData *TD = TM.getTargetData();
670
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000671 if (!GVar->hasInitializer())
672 return; // External global require no code
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000673
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000674 // Check to see if this is a special global used by LLVM, if so, emit it.
675 if (EmitSpecialLLVMGlobal(GVar))
676 return;
Chris Lattner3c84b552007-01-14 06:37:54 +0000677
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000678 std::string name = Mang->getValueName(GVar);
Chris Lattner3c84b552007-01-14 06:37:54 +0000679
Anton Korobeynikoved473292008-08-08 18:25:07 +0000680 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000681
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000682 Constant *C = GVar->getInitializer();
683 const Type *Type = C->getType();
Duncan Sandsdc020f92009-01-12 20:38:59 +0000684 unsigned Size = TD->getTypePaddedSize(Type);
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000685 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskey28663c72006-12-21 20:26:09 +0000686
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000687 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000688
689 if (C->isNullValue() && /* FIXME: Verify correct */
690 !GVar->hasSection() &&
Rafael Espindola6de96a12009-01-15 20:18:42 +0000691 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands08d91172008-09-29 11:25:42 +0000692 GVar->mayBeOverridden())) {
Jim Laskey28663c72006-12-21 20:26:09 +0000693 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000694
695 if (GVar->hasExternalLinkage()) {
Jim Laskey28663c72006-12-21 20:26:09 +0000696 O << "\t.global " << name << '\n';
697 O << "\t.type " << name << ", @object\n";
Nick Lewycky5805c462007-07-25 03:48:45 +0000698 O << name << ":\n";
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000699 O << "\t.zero " << Size << '\n';
Rafael Espindola6de96a12009-01-15 20:18:42 +0000700 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000701 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskey28663c72006-12-21 20:26:09 +0000702 } else {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000703 O << ".comm " << name << ',' << Size;
Jim Laskey28663c72006-12-21 20:26:09 +0000704 }
Chris Lattner7b143172008-02-15 19:04:54 +0000705 O << "\t\t" << TAI->getCommentString() << " '";
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000706 PrintUnmangledNameSafely(GVar, O);
Chris Lattner7b143172008-02-15 19:04:54 +0000707 O << "'\n";
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000708 return;
Jim Laskey28663c72006-12-21 20:26:09 +0000709 }
710
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000711 switch (GVar->getLinkage()) {
712 case GlobalValue::LinkOnceLinkage:
713 case GlobalValue::WeakLinkage:
714 case GlobalValue::CommonLinkage:
715 O << "\t.global " << name << '\n'
716 << "\t.type " << name << ", @object\n"
717 << "\t.weak " << name << '\n';
718 break;
719 case GlobalValue::AppendingLinkage:
720 // FIXME: appending linkage variables should go into a section of
721 // their name or something. For now, just emit them as external.
722 case GlobalValue::ExternalLinkage:
723 // If external or appending, declare as a global symbol
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000724 O << "\t.global " << name << '\n'
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000725 << "\t.type " << name << ", @object\n";
726 // FALL THROUGH
727 case GlobalValue::InternalLinkage:
Rafael Espindola6de96a12009-01-15 20:18:42 +0000728 case GlobalValue::PrivateLinkage:
Anton Korobeynikovc9ad17c2008-08-08 18:23:49 +0000729 break;
730 default:
731 cerr << "Unknown linkage type!";
732 abort();
733 }
734
735 EmitAlignment(Align, GVar);
736 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
737 PrintUnmangledNameSafely(GVar, O);
738 O << "'\n";
739
740 // If the initializer is a extern weak symbol, remember to emit the weak
741 // reference!
742 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
743 if (GV->hasExternalWeakLinkage())
744 ExtWeakSymbols.insert(GV);
745
746 EmitGlobalConstant(C);
747 O << '\n';
748}
749
750bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
751 // Print out module-level global variables here.
752 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
753 I != E; ++I)
754 printModuleLevelGV(I);
755
Jim Laskey28663c72006-12-21 20:26:09 +0000756 // TODO
757
758 // Emit initial debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000759 DW->EndModule();
Jim Laskey28663c72006-12-21 20:26:09 +0000760
Dan Gohmancf0a5342007-07-25 19:33:14 +0000761 return AsmPrinter::doFinalization(M);
Jim Laskey28663c72006-12-21 20:26:09 +0000762}
763
Nate Begeman4bfceb12004-09-04 05:00:00 +0000764/// runOnMachineFunction - This uses the printMachineInstruction()
765/// method to print assembly for each instruction.
766///
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000767bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendlingc5437ea2009-02-24 08:30:20 +0000768 this->MF = &MF;
769
Chris Lattner99946fb2005-11-21 07:51:23 +0000770 SetupMachineFunction(MF);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000771 O << "\n\n";
Dale Johannesen763e1102007-11-20 23:24:42 +0000772
Nate Begeman4bfceb12004-09-04 05:00:00 +0000773 // Print out constants referenced by the function
Chris Lattneref83ebd2005-11-21 08:26:15 +0000774 EmitConstantPool(MF.getConstantPool());
Nate Begeman4bfceb12004-09-04 05:00:00 +0000775
776 // Print out labels for the function.
Chris Lattner0aacd2a2005-11-14 18:52:46 +0000777 const Function *F = MF.getFunction();
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000778 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000779
Chris Lattner57575112005-12-16 00:22:14 +0000780 switch (F->getLinkage()) {
781 default: assert(0 && "Unknown linkage type!");
Evan Cheng1c7c0192009-01-25 06:32:01 +0000782 case Function::PrivateLinkage:
Chris Lattner57575112005-12-16 00:22:14 +0000783 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattner57575112005-12-16 00:22:14 +0000784 break;
785 case Function::ExternalLinkage:
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000786 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattner57575112005-12-16 00:22:14 +0000787 break;
788 case Function::WeakLinkage:
789 case Function::LinkOnceLinkage:
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000790 O << "\t.globl\t" << CurrentFnName << '\n';
791 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattner57575112005-12-16 00:22:14 +0000792 break;
793 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000794
Anton Korobeynikoved473292008-08-08 18:25:07 +0000795 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000796
Devang Patel1b76f2c2008-10-01 23:18:38 +0000797 EmitAlignment(F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4, F);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000798 O << CurrentFnName << ":\n";
799
Jim Laskeyc0d65182006-04-07 20:44:42 +0000800 // Emit pre-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000801 DW->BeginFunction(&MF);
Jim Laskeyc0d65182006-04-07 20:44:42 +0000802
Bill Wendling50794832008-01-26 06:51:24 +0000803 // If the function is empty, then we need to emit *something*. Otherwise, the
804 // function's label might be associated with something that it wasn't meant to
805 // be associated with. We emit a noop in this situation.
806 MachineFunction::iterator I = MF.begin();
807
Bill Wendling1a17ef02008-01-26 09:03:52 +0000808 if (++I == MF.end() && MF.front().empty())
809 O << "\tnop\n";
Bill Wendling50794832008-01-26 06:51:24 +0000810
Nate Begeman4bfceb12004-09-04 05:00:00 +0000811 // Print out code for the function.
812 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
813 I != E; ++I) {
814 // Print a label for the basic block.
Chris Lattner968aeb12005-08-21 19:09:33 +0000815 if (I != MF.begin()) {
Evan Chengc7990652008-02-28 00:43:03 +0000816 printBasicBlockLabel(I, true, true);
Nate Begemanb9d4f832006-05-02 05:37:32 +0000817 O << '\n';
Chris Lattner968aeb12005-08-21 19:09:33 +0000818 }
Bill Wendling50794832008-01-26 06:51:24 +0000819 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
820 II != IE; ++II) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000821 // Print the assembly for the instruction.
Nate Begeman4bfceb12004-09-04 05:00:00 +0000822 printMachineInstruction(II);
823 }
824 }
Nate Begeman4bfceb12004-09-04 05:00:00 +0000825
Chris Lattner41e22a52006-10-05 00:26:05 +0000826 // Print out jump tables referenced by the function.
Chris Lattnera6a570e2006-10-05 03:01:21 +0000827 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000828
Jim Laskeyb0609d92006-01-04 13:52:30 +0000829 // Emit post-function debug information.
Devang Patelf6466682009-01-08 23:40:34 +0000830 DW->EndFunction(&MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000831
Nate Begeman4bfceb12004-09-04 05:00:00 +0000832 // We didn't modify anything.
833 return false;
834}
835
Misha Brukmane05203f2004-06-21 16:55:25 +0000836
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000837bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmanbdc24ad2008-03-25 21:45:14 +0000838 static const char *const CPUDirectives[] = {
Dale Johannesen6ca3ccf2008-02-14 23:35:16 +0000839 "",
Jim Laskey59e7a772006-12-12 20:57:08 +0000840 "ppc",
841 "ppc601",
842 "ppc602",
843 "ppc603",
844 "ppc7400",
845 "ppc750",
846 "ppc970",
847 "ppc64"
848 };
849
850 unsigned Directive = Subtarget.getDarwinDirective();
851 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
852 Directive = PPC::DIR_970;
853 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
854 Directive = PPC::DIR_7400;
855 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
856 Directive = PPC::DIR_64;
857 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000858 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000859
Dan Gohmancf0a5342007-07-25 19:33:14 +0000860 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000861
Dale Johannesenb9aaddc2008-07-09 20:43:39 +0000862 // Emit initial debug information.
Dale Johannesenb9aaddc2008-07-09 20:43:39 +0000863 // We need this for Personality functions.
864 // AsmPrinter::doInitialization should have done this analysis.
Duncan Sands5a913d62009-01-28 13:14:17 +0000865 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
Dale Johannesenb9aaddc2008-07-09 20:43:39 +0000866 assert(MMI);
Duncan Sands5a913d62009-01-28 13:14:17 +0000867 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Patelf6466682009-01-08 23:40:34 +0000868 assert(DW && "DwarfWriter is not available");
869 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesenb9aaddc2008-07-09 20:43:39 +0000870
Chris Lattner9eb7dfa2005-11-10 19:33:43 +0000871 // Darwin wants symbols to be quoted if they have complex names.
872 Mang->setUseQuotes(true);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000873
Jim Laskeyec05b042006-11-28 18:21:52 +0000874 // Prime text sections so they are adjacent. This reduces the likelihood a
875 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000876 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000877 "pure_instructions");
878 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000879 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000880 "pure_instructions,32");
881 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000882 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000883 "pure_instructions,16");
884 }
Anton Korobeynikovf8dc8aa2008-09-24 22:15:21 +0000885 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000886
Dan Gohmancf0a5342007-07-25 19:33:14 +0000887 return Result;
Nate Begeman15527112005-07-21 01:25:49 +0000888}
889
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000890void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
891 const TargetData *TD = TM.getTargetData();
892
893 if (!GVar->hasInitializer())
894 return; // External global require no code
895
896 // Check to see if this is a special global used by LLVM, if so, emit it.
897 if (EmitSpecialLLVMGlobal(GVar)) {
898 if (TM.getRelocationModel() == Reloc::Static) {
899 if (GVar->getName() == "llvm.global_ctors")
900 O << ".reference .constructors_used\n";
901 else if (GVar->getName() == "llvm.global_dtors")
902 O << ".reference .destructors_used\n";
903 }
904 return;
905 }
906
907 std::string name = Mang->getValueName(GVar);
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000908
Anton Korobeynikoved473292008-08-08 18:25:07 +0000909 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000910
911 Constant *C = GVar->getInitializer();
912 const Type *Type = C->getType();
Duncan Sandsdc020f92009-01-12 20:38:59 +0000913 unsigned Size = TD->getTypePaddedSize(Type);
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000914 unsigned Align = TD->getPreferredAlignmentLog(GVar);
915
Anton Korobeynikov076e9052008-09-24 22:14:23 +0000916 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000917
918 if (C->isNullValue() && /* FIXME: Verify correct */
919 !GVar->hasSection() &&
Rafael Espindola6de96a12009-01-15 20:18:42 +0000920 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Evan Chenga40d5e12009-02-18 02:19:52 +0000921 GVar->mayBeOverridden()) &&
922 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000923 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
924
925 if (GVar->hasExternalLinkage()) {
926 O << "\t.globl " << name << '\n';
927 O << "\t.zerofill __DATA, __common, " << name << ", "
928 << Size << ", " << Align;
Rafael Espindola6de96a12009-01-15 20:18:42 +0000929 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000930 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000931 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000932 O << "\t.globl " << name << '\n'
933 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000934 EmitAlignment(Align, GVar);
935 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
936 PrintUnmangledNameSafely(GVar, O);
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000937 O << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000938 EmitGlobalConstant(C);
939 return;
940 } else {
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000941 O << ".comm " << name << ',' << Size;
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000942 // Darwin 9 and above support aligned common data.
943 if (Subtarget.isDarwin9())
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000944 O << ',' << Align;
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000945 }
946 O << "\t\t" << TAI->getCommentString() << " '";
947 PrintUnmangledNameSafely(GVar, O);
948 O << "'\n";
949 return;
950 }
951
952 switch (GVar->getLinkage()) {
953 case GlobalValue::LinkOnceLinkage:
954 case GlobalValue::WeakLinkage:
955 case GlobalValue::CommonLinkage:
956 O << "\t.globl " << name << '\n'
957 << "\t.weak_definition " << name << '\n';
958 break;
959 case GlobalValue::AppendingLinkage:
960 // FIXME: appending linkage variables should go into a section of
961 // their name or something. For now, just emit them as external.
962 case GlobalValue::ExternalLinkage:
963 // If external or appending, declare as a global symbol
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +0000964 O << "\t.globl " << name << '\n';
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000965 // FALL THROUGH
966 case GlobalValue::InternalLinkage:
Evan Cheng1c7c0192009-01-25 06:32:01 +0000967 case GlobalValue::PrivateLinkage:
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000968 break;
969 default:
970 cerr << "Unknown linkage type!";
971 abort();
972 }
973
974 EmitAlignment(Align, GVar);
975 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
976 PrintUnmangledNameSafely(GVar, O);
977 O << "'\n";
978
979 // If the initializer is a extern weak symbol, remember to emit the weak
980 // reference!
981 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
982 if (GV->hasExternalWeakLinkage())
983 ExtWeakSymbols.insert(GV);
984
985 EmitGlobalConstant(C);
986 O << '\n';
987}
988
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000989bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000990 const TargetData *TD = TM.getTargetData();
Misha Brukmane05203f2004-06-21 16:55:25 +0000991
992 // Print out module-level global variables here.
Chris Lattner1a4adc72005-11-14 19:00:30 +0000993 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikov5b5d8bc2008-08-08 18:23:25 +0000994 I != E; ++I)
995 printModuleLevelGV(I);
Misha Brukmand4ac8182004-07-16 20:29:04 +0000996
Chris Lattner1df08392006-06-27 01:02:25 +0000997 bool isPPC64 = TD->getPointerSizeInBits() == 64;
998
Misha Brukmand4ac8182004-07-16 20:29:04 +0000999 // Output stubs for dynamically-linked functions
Chris Lattner9e56e5c2006-07-26 21:12:04 +00001000 if (TM.getRelocationModel() == Reloc::PIC_) {
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001001 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattner54a11df2005-12-13 04:33:58 +00001002 i != e; ++i) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +00001003 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001004 "pure_instructions,32");
Chris Lattner1df08392006-06-27 01:02:25 +00001005 EmitAlignment(4);
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001006 const char *p = i->getKeyData();
1007 bool hasQuote = p[0]=='\"';
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001008 printSuffixedName(p, "$stub");
1009 O << ":\n";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001010 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner54a11df2005-12-13 04:33:58 +00001011 O << "\tmflr r0\n";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001012 O << "\tbcl 20,31,";
1013 if (hasQuote)
1014 O << "\"L0$" << &p[1];
1015 else
1016 O << "L0$" << p;
1017 O << '\n';
1018 if (hasQuote)
1019 O << "\"L0$" << &p[1];
1020 else
1021 O << "L0$" << p;
1022 O << ":\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001023 O << "\tmflr r11\n";
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001024 O << "\taddis r11,r11,ha16(";
1025 printSuffixedName(p, "$lazy_ptr");
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001026 O << "-";
1027 if (hasQuote)
1028 O << "\"L0$" << &p[1];
1029 else
1030 O << "L0$" << p;
1031 O << ")\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001032 O << "\tmtlr r0\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001033 if (isPPC64)
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001034 O << "\tldu r12,lo16(";
Chris Lattner1df08392006-06-27 01:02:25 +00001035 else
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001036 O << "\tlwzu r12,lo16(";
1037 printSuffixedName(p, "$lazy_ptr");
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001038 O << "-";
1039 if (hasQuote)
1040 O << "\"L0$" << &p[1];
1041 else
1042 O << "L0$" << p;
1043 O << ")(r11)\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001044 O << "\tmtctr r12\n";
1045 O << "\tbctr\n";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001046 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001047 printSuffixedName(p, "$lazy_ptr");
1048 O << ":\n";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001049 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner1df08392006-06-27 01:02:25 +00001050 if (isPPC64)
1051 O << "\t.quad dyld_stub_binding_helper\n";
1052 else
1053 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001054 }
1055 } else {
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001056 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattner54a11df2005-12-13 04:33:58 +00001057 i != e; ++i) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +00001058 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001059 "pure_instructions,16");
Chris Lattner54a11df2005-12-13 04:33:58 +00001060 EmitAlignment(4);
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001061 const char *p = i->getKeyData();
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001062 printSuffixedName(p, "$stub");
1063 O << ":\n";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001064 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001065 O << "\tlis r11,ha16(";
1066 printSuffixedName(p, "$lazy_ptr");
1067 O << ")\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001068 if (isPPC64)
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001069 O << "\tldu r12,lo16(";
Chris Lattner1df08392006-06-27 01:02:25 +00001070 else
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001071 O << "\tlwzu r12,lo16(";
1072 printSuffixedName(p, "$lazy_ptr");
1073 O << ")(r11)\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001074 O << "\tmtctr r12\n";
1075 O << "\tbctr\n";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001076 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001077 printSuffixedName(p, "$lazy_ptr");
1078 O << ":\n";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001079 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner1df08392006-06-27 01:02:25 +00001080 if (isPPC64)
1081 O << "\t.quad dyld_stub_binding_helper\n";
1082 else
1083 O << "\t.long dyld_stub_binding_helper\n";
Nate Begemana9443f22005-07-21 20:44:43 +00001084 }
Misha Brukmanf62ee7a2004-06-24 23:04:11 +00001085 }
Misha Brukmane05203f2004-06-21 16:55:25 +00001086
Anton Korobeynikovf1f8aa32008-08-08 18:24:10 +00001087 O << '\n';
Misha Brukmand4ac8182004-07-16 20:29:04 +00001088
Dale Johannesenfd967cf2008-04-02 00:25:04 +00001089 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen763e1102007-11-20 23:24:42 +00001090 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesenfd967cf2008-04-02 00:25:04 +00001091 // Only referenced functions get into the Personalities list.
Dale Johannesen763e1102007-11-20 23:24:42 +00001092 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1093
1094 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1095 E = Personalities.end(); I != E; ++I)
1096 if (*I) GVStubs.insert("_" + (*I)->getName());
1097 }
1098
Chris Lattner57575112005-12-16 00:22:14 +00001099 // Output stubs for external and common global variables.
Dan Gohmanc731c972007-10-03 19:26:29 +00001100 if (!GVStubs.empty()) {
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001101 SwitchToDataSection(".non_lazy_symbol_pointer");
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001102 for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
1103 i != e; ++i) {
1104 std::string p = i->getKeyData();
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001105 printSuffixedName(p, "$non_lazy_ptr");
1106 O << ":\n";
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001107 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner82ab3e22006-06-27 20:20:53 +00001108 if (isPPC64)
1109 O << "\t.quad\t0\n";
1110 else
1111 O << "\t.long\t0\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001112 }
Nate Begeman0ad7f812004-08-14 22:09:10 +00001113 }
Misha Brukmanb4402432005-04-21 23:30:14 +00001114
Evan Cheng2a03c7e2008-12-05 01:06:39 +00001115 if (!HiddenGVStubs.empty()) {
1116 SwitchToSection(TAI->getDataSection());
1117 for (StringSet<>::iterator i = HiddenGVStubs.begin(), e = HiddenGVStubs.end();
1118 i != e; ++i) {
1119 std::string p = i->getKeyData();
1120 EmitAlignment(isPPC64 ? 3 : 2);
1121 printSuffixedName(p, "$non_lazy_ptr");
1122 O << ":\n";
1123 if (isPPC64)
1124 O << "\t.quad\t";
1125 else
1126 O << "\t.long\t";
1127 O << p << '\n';
1128 }
1129 }
1130
1131
Jim Laskeyb9966022006-01-17 17:31:53 +00001132 // Emit initial debug information.
Devang Patelf6466682009-01-08 23:40:34 +00001133 DW->EndModule();
Jim Laskeyb9966022006-01-17 17:31:53 +00001134
Chris Lattner7432ceef2005-11-01 00:12:36 +00001135 // Funny Darwin hack: This flag tells the linker that no global symbols
1136 // contain code that falls through to other global symbols (e.g. the obvious
1137 // implementation of multiple entry points). If this doesn't occur, the
1138 // linker can safely perform dead code stripping. Since LLVM never generates
1139 // code that does this, it is always safe to set.
Chris Lattnera81a75c2006-09-20 17:12:19 +00001140 O << "\t.subsections_via_symbols\n";
Chris Lattner7432ceef2005-11-01 00:12:36 +00001141
Dan Gohmancf0a5342007-07-25 19:33:14 +00001142 return AsmPrinter::doFinalization(M);
Misha Brukmane05203f2004-06-21 16:55:25 +00001143}
Nate Begeman4bfceb12004-09-04 05:00:00 +00001144
Chris Lattnera81a75c2006-09-20 17:12:19 +00001145
1146
Jim Laskey41621a72006-12-20 20:56:46 +00001147/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1148/// for a MachineFunction to the given output stream, in a format that the
Chris Lattnera81a75c2006-09-20 17:12:19 +00001149/// Darwin assembler can deal with.
1150///
Owen Anderson93719642008-08-21 00:14:44 +00001151FunctionPass *llvm::createPPCAsmPrinterPass(raw_ostream &o,
Bill Wendlingc5437ea2009-02-24 08:30:20 +00001152 PPCTargetMachine &tm,
1153 bool fast) {
Jim Laskey28663c72006-12-21 20:26:09 +00001154 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1155
1156 if (Subtarget->isDarwin()) {
Bill Wendlingc5437ea2009-02-24 08:30:20 +00001157 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), fast);
Jim Laskey28663c72006-12-21 20:26:09 +00001158 } else {
Bill Wendlingc5437ea2009-02-24 08:30:20 +00001159 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), fast);
Jim Laskey28663c72006-12-21 20:26:09 +00001160 }
Chris Lattnera81a75c2006-09-20 17:12:19 +00001161}
Anton Korobeynikov28dc9d02008-08-17 13:54:28 +00001162
1163namespace {
1164 static struct Register {
1165 Register() {
1166 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1167 }
1168 } Registrator;
1169}
Oscar Fuentesba4eb2a2008-11-15 21:36:30 +00001170
1171extern "C" int PowerPCAsmPrinterForceLink;
1172int PowerPCAsmPrinterForceLink = 0;