blob: 9677d0ff9e41e43a4b86fab5475618640e016e06 [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"
Jim Laskeya6211dc2006-09-06 18:34:40 +000039#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman3a4be0f2008-02-10 18:45:23 +000040#include "llvm/Target/TargetRegisterInfo.h"
Nate Begeman3f76eb62004-11-25 07:09:01 +000041#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng5f997602006-02-18 00:08:58 +000042#include "llvm/Target/TargetOptions.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000043#include "llvm/ADT/Statistic.h"
44#include "llvm/ADT/StringExtras.h"
Misha Brukmanf57c3cd2004-06-24 17:31:42 +000045#include <set>
Chris Lattner0ced9052004-08-16 23:25:21 +000046using namespace llvm;
Misha Brukmane05203f2004-06-21 16:55:25 +000047
Chris Lattner1ef9cd42006-12-19 22:59:26 +000048STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukmane05203f2004-06-21 16:55:25 +000049
Chris Lattner1ef9cd42006-12-19 22:59:26 +000050namespace {
Jim Laskeya6211dc2006-09-06 18:34:40 +000051 struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
Chris Lattner57575112005-12-16 00:22:14 +000052 std::set<std::string> FnStubs, GVStubs;
Chris Lattner8597a2f2006-09-20 17:07:15 +000053 const PPCSubtarget &Subtarget;
Evan Chengfa54c0b2006-12-01 07:56:37 +000054
Jim Laskey261779b2006-09-07 22:06:40 +000055 PPCAsmPrinter(std::ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
Chris Lattner8597a2f2006-09-20 17:07:15 +000056 : AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) {
57 }
Misha Brukmanb4402432005-04-21 23:30:14 +000058
Misha Brukmane05203f2004-06-21 16:55:25 +000059 virtual const char *getPassName() const {
Nate Begeman4bfceb12004-09-04 05:00:00 +000060 return "PowerPC Assembly Printer";
Misha Brukmane05203f2004-06-21 16:55:25 +000061 }
62
Nate Begeman6cca84e2005-10-16 05:39:50 +000063 PPCTargetMachine &getTM() {
64 return static_cast<PPCTargetMachine&>(TM);
Chris Lattner0ced9052004-08-16 23:25:21 +000065 }
66
Nate Begeman8465fe82005-07-20 22:42:00 +000067 unsigned enumRegToMachineReg(unsigned enumReg) {
68 switch (enumReg) {
69 default: assert(0 && "Unhandled register!"); break;
70 case PPC::CR0: return 0;
71 case PPC::CR1: return 1;
72 case PPC::CR2: return 2;
73 case PPC::CR3: return 3;
74 case PPC::CR4: return 4;
75 case PPC::CR5: return 5;
76 case PPC::CR6: return 6;
77 case PPC::CR7: return 7;
78 }
79 abort();
80 }
81
Nate Begeman0ad7f812004-08-14 22:09:10 +000082 /// printInstruction - This method is automatically generated by tablegen
83 /// from the instruction set description. This method returns true if the
84 /// machine instruction was sufficiently described to print it, otherwise it
85 /// returns false.
86 bool printInstruction(const MachineInstr *MI);
87
Misha Brukmane05203f2004-06-21 16:55:25 +000088 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner6ab87fa2005-11-17 19:25:59 +000089 void printOp(const MachineOperand &MO);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +000090
Jim Laskey41621a72006-12-20 20:56:46 +000091 /// stripRegisterPrefix - This method strips the character prefix from a
92 /// register name so that only the number is left. Used by for linux asm.
Jim Laskeyc2c861d2006-12-20 21:33:34 +000093 const char *stripRegisterPrefix(const char *RegName) {
94 switch (RegName[0]) {
95 case 'r':
96 case 'f':
97 case 'v': return RegName + 1;
Jim Laskey4c90a6d2006-12-20 21:35:00 +000098 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskey41621a72006-12-20 20:56:46 +000099 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000100
Jim Laskeyc2c861d2006-12-20 21:33:34 +0000101 return RegName;
Jim Laskey41621a72006-12-20 20:56:46 +0000102 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000103
Jim Laskey41621a72006-12-20 20:56:46 +0000104 /// printRegister - Print register according to target requirements.
105 ///
106 void printRegister(const MachineOperand &MO, bool R0AsZero) {
107 unsigned RegNo = MO.getReg();
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000108 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000109
Jim Laskey41621a72006-12-20 20:56:46 +0000110 // If we should use 0 for R0.
111 if (R0AsZero && RegNo == PPC::R0) {
112 O << "0";
113 return;
114 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000115
Bill Wendlingc24ea4f2008-02-26 21:11:01 +0000116 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskey41621a72006-12-20 20:56:46 +0000117 // Linux assembler (Others?) does not take register mnemonics.
118 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskeyc2c861d2006-12-20 21:33:34 +0000119 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
120 O << RegName;
Jim Laskey41621a72006-12-20 20:56:46 +0000121 }
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000122
Chris Lattnerf7f05672006-02-01 22:38:46 +0000123 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000124 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattner10b71c02006-05-04 18:05:43 +0000125 if (MO.isRegister()) {
Jim Laskey41621a72006-12-20 20:56:46 +0000126 printRegister(MO, false);
Chris Lattnerda2e56f2004-08-15 05:46:14 +0000127 } else if (MO.isImmediate()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000128 O << MO.getImm();
Chris Lattnerec1cc1b2004-08-14 23:27:29 +0000129 } else {
130 printOp(MO);
131 }
132 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000133
Chris Lattnerf7f05672006-02-01 22:38:46 +0000134 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner1bad2542006-02-23 19:31:10 +0000135 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner7674d902006-02-24 20:27:40 +0000136 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
137 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000138
139
Chris Lattner2771e2c2006-03-25 06:12:06 +0000140 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000141 char value = MI->getOperand(OpNo).getImm();
Chris Lattner2771e2c2006-03-25 06:12:06 +0000142 value = (value << (32-5)) >> (32-5);
143 O << (int)value;
144 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000145 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000146 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattnerf7833ba2004-08-21 19:11:03 +0000147 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begeman3ad3ad42004-08-21 05:56:39 +0000148 O << (unsigned int)value;
149 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000150 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000151 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman143cf942004-08-30 02:28:06 +0000152 assert(value <= 63 && "Invalid u6imm argument!");
153 O << (unsigned int)value;
154 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000155 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000156 O << (short)MI->getOperand(OpNo).getImm();
Nate Begeman4bfceb12004-09-04 05:00:00 +0000157 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000158 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000159 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner8a796852004-08-15 05:20:16 +0000160 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000161 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner30055b92006-11-16 21:45:30 +0000162 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000163 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner30055b92006-11-16 21:45:30 +0000164 } else {
165 O << "lo16(";
166 printOp(MI->getOperand(OpNo));
167 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000168 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner30055b92006-11-16 21:45:30 +0000169 else
170 O << ')';
171 }
Chris Lattner5a2fb972005-10-18 16:51:22 +0000172 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000173 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000174 // Branches can take an immediate operand. This is used by the branch
175 // selection pass to print $+8, an eight byte displacement from the PC.
176 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattner5c463782007-12-30 20:49:49 +0000177 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begeman4bfceb12004-09-04 05:00:00 +0000178 } else {
Chris Lattnerbd9efdb2005-11-17 19:16:08 +0000179 printOp(MI->getOperand(OpNo));
Nate Begeman4bfceb12004-09-04 05:00:00 +0000180 }
Nate Begeman61738782004-09-02 08:13:00 +0000181 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000182 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000183 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng73136df2006-02-22 20:19:42 +0000184 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner57575112005-12-16 00:22:14 +0000185 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
186 GlobalValue *GV = MO.getGlobal();
Reid Spencer5301e7c2007-01-30 20:08:39 +0000187 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesence4396b2008-05-14 20:12:51 +0000188 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Chris Lattner57575112005-12-16 00:22:14 +0000189 // Dynamically-resolved functions need a stub for the function.
190 std::string Name = Mang->getValueName(GV);
191 FnStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000192 printSuffixedName(Name, "$stub");
Evan Chengfa54c0b2006-12-01 07:56:37 +0000193 if (GV->hasExternalWeakLinkage())
Rafael Espindolad7998d02006-12-18 03:37:18 +0000194 ExtWeakSymbols.insert(GV);
Chris Lattner57575112005-12-16 00:22:14 +0000195 return;
196 }
197 }
Chris Lattnercdde99902005-11-17 19:40:30 +0000198 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000199 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnercdde99902005-11-17 19:40:30 +0000200 FnStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000201 printSuffixedName(Name, "$stub");
Chris Lattnercdde99902005-11-17 19:40:30 +0000202 return;
Chris Lattnercdde99902005-11-17 19:40:30 +0000203 }
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000204 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000205
Chris Lattnercdde99902005-11-17 19:40:30 +0000206 printOp(MI->getOperand(OpNo));
Chris Lattnerbd9efdb2005-11-17 19:16:08 +0000207 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000208 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner5c463782007-12-30 20:49:49 +0000209 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begemana171f6b2005-11-16 00:48:01 +0000210 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000211 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Chengcdf36092007-10-14 05:57:21 +0000212 O << "\"L" << getFunctionNumber() << "$pb\"\n";
213 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begeman61738782004-09-02 08:13:00 +0000214 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000215 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Nate Begemana9443f22005-07-21 20:44:43 +0000216 if (MI->getOperand(OpNo).isImmediate()) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000217 printS16ImmOperand(MI, OpNo);
Nate Begemana9443f22005-07-21 20:44:43 +0000218 } else {
Nick Lewyckye6049c22007-03-03 05:29:51 +0000219 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begemana9443f22005-07-21 20:44:43 +0000220 printOp(MI->getOperand(OpNo));
Chris Lattner9e56e5c2006-07-26 21:12:04 +0000221 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000222 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckye6049c22007-03-03 05:29:51 +0000223 if (Subtarget.isDarwin())
Nate Begemana9443f22005-07-21 20:44:43 +0000224 O << ')';
Nick Lewyckye6049c22007-03-03 05:29:51 +0000225 else
226 O << "@ha";
Nate Begemana9443f22005-07-21 20:44:43 +0000227 }
Nate Begeman4bfceb12004-09-04 05:00:00 +0000228 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000229 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000230 if (MI->getOperand(OpNo).isImmediate()) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000231 printS16ImmOperand(MI, OpNo);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000232 } else {
Nick Lewyckye6049c22007-03-03 05:29:51 +0000233 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begeman3f76eb62004-11-25 07:09:01 +0000234 printOp(MI->getOperand(OpNo));
Chris Lattner9e56e5c2006-07-26 21:12:04 +0000235 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Chengcdf36092007-10-14 05:57:21 +0000236 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckye6049c22007-03-03 05:29:51 +0000237 if (Subtarget.isDarwin())
Nate Begemana9443f22005-07-21 20:44:43 +0000238 O << ')';
Nick Lewyckye6049c22007-03-03 05:29:51 +0000239 else
240 O << "@l";
Nate Begeman4bfceb12004-09-04 05:00:00 +0000241 }
242 }
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000243 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman8465fe82005-07-20 22:42:00 +0000244 unsigned CCReg = MI->getOperand(OpNo).getReg();
245 unsigned RegNo = enumRegToMachineReg(CCReg);
246 O << (0x80 >> RegNo);
247 }
Chris Lattner7674d902006-02-24 20:27:40 +0000248 // The new addressing mode printers.
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000249 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
250 printSymbolLo(MI, OpNo);
251 O << '(';
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000252 if (MI->getOperand(OpNo+1).isRegister() &&
Chris Lattner139eac52006-03-21 17:21:13 +0000253 MI->getOperand(OpNo+1).getReg() == PPC::R0)
254 O << "0";
255 else
256 printOperand(MI, OpNo+1);
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000257 O << ')';
258 }
Chris Lattner77373d12006-03-22 05:26:03 +0000259 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
260 if (MI->getOperand(OpNo).isImmediate())
261 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000262 else
Chris Lattner77373d12006-03-22 05:26:03 +0000263 printSymbolLo(MI, OpNo);
264 O << '(';
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000265 if (MI->getOperand(OpNo+1).isRegister() &&
Chris Lattner77373d12006-03-22 05:26:03 +0000266 MI->getOperand(OpNo+1).getReg() == PPC::R0)
267 O << "0";
268 else
269 printOperand(MI, OpNo+1);
270 O << ')';
271 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000272
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000273 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanc1263972005-12-19 23:40:42 +0000274 // When used as the base register, r0 reads constant zero rather than
275 // the value contained in the register. For this reason, the darwin
276 // assembler requires that we print r0 as 0 (no r) when used as the base.
277 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskey41621a72006-12-20 20:56:46 +0000278 printRegister(MO, true);
Nate Begeman8e6a8af2005-12-19 23:25:09 +0000279 O << ", ";
280 printOperand(MI, OpNo+1);
281 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000282
283 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner6be72602006-11-04 05:27:39 +0000284 const char *Modifier);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000285
Misha Brukmanb4402432005-04-21 23:30:14 +0000286 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begeman4bfceb12004-09-04 05:00:00 +0000287 virtual bool doFinalization(Module &M) = 0;
Jim Laskey18fc0972007-02-21 22:47:38 +0000288
289 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000290 };
Misha Brukmanb4402432005-04-21 23:30:14 +0000291
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000292 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
293 struct VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Jim Laskey28663c72006-12-21 20:26:09 +0000294
295 DwarfWriter DW;
Dale Johannesendbd04c02008-07-09 21:24:07 +0000296 MachineModuleInfo *MMI;
Jim Laskey28663c72006-12-21 20:26:09 +0000297
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000298 PPCLinuxAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
Jim Laskey28663c72006-12-21 20:26:09 +0000299 const TargetAsmInfo *T)
Dale Johannesendbd04c02008-07-09 21:24:07 +0000300 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Jim Laskey28663c72006-12-21 20:26:09 +0000301 }
302
303 virtual const char *getPassName() const {
304 return "Linux PPC Assembly Printer";
305 }
306
307 bool runOnMachineFunction(MachineFunction &F);
308 bool doInitialization(Module &M);
309 bool doFinalization(Module &M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000310
Jim Laskey28663c72006-12-21 20:26:09 +0000311 void getAnalysisUsage(AnalysisUsage &AU) const {
312 AU.setPreservesAll();
Jim Laskeyc56315c2007-01-26 21:22:28 +0000313 AU.addRequired<MachineModuleInfo>();
Jim Laskey28663c72006-12-21 20:26:09 +0000314 PPCAsmPrinter::getAnalysisUsage(AU);
315 }
316
317 /// getSectionForFunction - Return the section that we should emit the
318 /// specified function body into.
319 virtual std::string getSectionForFunction(const Function &F) const;
320 };
321
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000322 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
323 /// OS X
324 struct VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
325
Jim Laskeya6211dc2006-09-06 18:34:40 +0000326 DwarfWriter DW;
Dale Johannesen763e1102007-11-20 23:24:42 +0000327 MachineModuleInfo *MMI;
Nate Begeman4bfceb12004-09-04 05:00:00 +0000328
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000329 PPCDarwinAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
330 const TargetAsmInfo *T)
Dale Johannesen763e1102007-11-20 23:24:42 +0000331 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000332 }
333
334 virtual const char *getPassName() const {
335 return "Darwin PPC Assembly Printer";
336 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000337
Misha Brukmanb4402432005-04-21 23:30:14 +0000338 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman15527112005-07-21 01:25:49 +0000339 bool doInitialization(Module &M);
Misha Brukmane05203f2004-06-21 16:55:25 +0000340 bool doFinalization(Module &M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000341
Jim Laskey219d5592006-01-04 22:28:25 +0000342 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000343 AU.setPreservesAll();
Jim Laskeyc56315c2007-01-26 21:22:28 +0000344 AU.addRequired<MachineModuleInfo>();
Jim Laskey762e9ec2006-01-05 01:25:28 +0000345 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskey219d5592006-01-04 22:28:25 +0000346 }
347
Chris Lattner028d6632006-10-05 02:42:20 +0000348 /// getSectionForFunction - Return the section that we should emit the
349 /// specified function body into.
350 virtual std::string getSectionForFunction(const Function &F) const;
Misha Brukmane05203f2004-06-21 16:55:25 +0000351 };
352} // end of anonymous namespace
353
Nate Begeman0ad7f812004-08-14 22:09:10 +0000354// Include the auto-generated portion of the assembly writer
Chris Lattner0921e3b2005-10-14 23:37:35 +0000355#include "PPCGenAsmWriter.inc"
Nate Begeman0ad7f812004-08-14 22:09:10 +0000356
Chris Lattner6ab87fa2005-11-17 19:25:59 +0000357void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukmane05203f2004-06-21 16:55:25 +0000358 switch (MO.getType()) {
Chris Lattnerfef7a2d2006-05-04 17:21:20 +0000359 case MachineOperand::MO_Immediate:
Bill Wendling9bfb1e12006-12-07 22:21:48 +0000360 cerr << "printOp() does not handle immediate values\n";
Misha Brukman47d5a222004-07-28 00:00:48 +0000361 abort();
Misha Brukman8d75aa42004-07-21 20:11:11 +0000362 return;
363
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000364 case MachineOperand::MO_MachineBasicBlock:
Chris Lattnera5bb3702007-12-30 23:10:15 +0000365 printBasicBlockLabel(MO.getMBB());
Misha Brukmane05203f2004-06-21 16:55:25 +0000366 return;
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000367 case MachineOperand::MO_JumpTableIndex:
Evan Chengcdf36092007-10-14 05:57:21 +0000368 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattnera5bb3702007-12-30 23:10:15 +0000369 << '_' << MO.getIndex();
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000370 // FIXME: PIC relocation model
371 return;
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000372 case MachineOperand::MO_ConstantPoolIndex:
Evan Chengcdf36092007-10-14 05:57:21 +0000373 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattnera5bb3702007-12-30 23:10:15 +0000374 << '_' << MO.getIndex();
Misha Brukmane05203f2004-06-21 16:55:25 +0000375 return;
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000376 case MachineOperand::MO_ExternalSymbol:
Chris Lattner57575112005-12-16 00:22:14 +0000377 // Computing the address of an external symbol, not calling it.
Evan Cheng73136df2006-02-22 20:19:42 +0000378 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskeya6211dc2006-09-06 18:34:40 +0000379 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattner57575112005-12-16 00:22:14 +0000380 GVStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000381 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattner57575112005-12-16 00:22:14 +0000382 return;
383 }
Jim Laskeya6211dc2006-09-06 18:34:40 +0000384 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000385 return;
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000386 case MachineOperand::MO_GlobalAddress: {
Chris Lattner57575112005-12-16 00:22:14 +0000387 // Computing the address of a global symbol, not calling it.
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000388 GlobalValue *GV = MO.getGlobal();
389 std::string Name = Mang->getValueName(GV);
Misha Brukman7dba17d2004-07-23 16:08:20 +0000390
Nate Begeman844186b2004-10-17 23:01:34 +0000391 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng73136df2006-02-22 20:19:42 +0000392 if (TM.getRelocationModel() != Reloc::Static) {
Reid Spencer5301e7c2007-01-30 20:08:39 +0000393 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesence4396b2008-05-14 20:12:51 +0000394 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Nate Begeman3f76eb62004-11-25 07:09:01 +0000395 GVStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000396 printSuffixedName(Name, "$non_lazy_ptr");
Dale Johannesen2e1d5e42008-05-16 20:09:25 +0000397 if (GV->hasExternalWeakLinkage())
398 ExtWeakSymbols.insert(GV);
Chris Lattner57575112005-12-16 00:22:14 +0000399 return;
400 }
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000401 }
Chris Lattnercdde99902005-11-17 19:40:30 +0000402 O << Name;
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000403
Chris Lattnerc1a2a3b2007-05-03 16:39:48 +0000404 if (MO.getOffset() > 0)
405 O << "+" << MO.getOffset();
406 else if (MO.getOffset() < 0)
407 O << MO.getOffset();
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000408
Evan Chengfa54c0b2006-12-01 07:56:37 +0000409 if (GV->hasExternalWeakLinkage())
Rafael Espindolad7998d02006-12-18 03:37:18 +0000410 ExtWeakSymbols.insert(GV);
Misha Brukmane05203f2004-06-21 16:55:25 +0000411 return;
Nate Begeman5bf9bfe2004-08-13 09:32:01 +0000412 }
Misha Brukmanb4402432005-04-21 23:30:14 +0000413
Misha Brukmane05203f2004-06-21 16:55:25 +0000414 default:
Misha Brukmanb604b4d2004-07-08 17:58:04 +0000415 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukmana2737582004-06-25 15:11:34 +0000416 return;
Misha Brukmane05203f2004-06-21 16:55:25 +0000417 }
418}
419
Jim Laskey18fc0972007-02-21 22:47:38 +0000420/// EmitExternalGlobal - In this case we need to use the indirect symbol.
421///
422void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
423 std::string Name = getGlobalLinkName(GV);
424 if (TM.getRelocationModel() != Reloc::Static) {
425 GVStubs.insert(Name);
Dale Johannesen5bf742f2008-05-19 21:38:18 +0000426 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskey18fc0972007-02-21 22:47:38 +0000427 return;
428 }
429 O << Name;
430}
431
Chris Lattner1bad2542006-02-23 19:31:10 +0000432/// PrintAsmOperand - Print out an operand for an inline asm expression.
433///
434bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000435 unsigned AsmVariant,
Chris Lattner1bad2542006-02-23 19:31:10 +0000436 const char *ExtraCode) {
437 // Does this asm operand have a single letter operand modifier?
438 if (ExtraCode && ExtraCode[0]) {
439 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000440
Chris Lattner1bad2542006-02-23 19:31:10 +0000441 switch (ExtraCode[0]) {
442 default: return true; // Unknown modifier.
Chris Lattner48518542007-01-25 02:52:50 +0000443 case 'c': // Don't print "$" before a global var name or constant.
444 // PPC never has a prefix.
445 printOperand(MI, OpNo);
446 return false;
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000447 case 'L': // Write second word of DImode reference.
Chris Lattner1bad2542006-02-23 19:31:10 +0000448 // Verify that this operand has two consecutive registers.
449 if (!MI->getOperand(OpNo).isRegister() ||
450 OpNo+1 == MI->getNumOperands() ||
451 !MI->getOperand(OpNo+1).isRegister())
452 return true;
453 ++OpNo; // Return the high-part.
454 break;
Chris Lattnercb35c612007-04-24 22:51:03 +0000455 case 'I':
456 // Write 'i' if an integer constant, otherwise nothing. Used to print
457 // addi vs add, etc.
Dan Gohman9da02f52007-09-14 20:33:02 +0000458 if (MI->getOperand(OpNo).isImmediate())
Chris Lattnercb35c612007-04-24 22:51:03 +0000459 O << "i";
460 return false;
Chris Lattner1bad2542006-02-23 19:31:10 +0000461 }
462 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000463
Chris Lattner1bad2542006-02-23 19:31:10 +0000464 printOperand(MI, OpNo);
465 return false;
466}
467
Chris Lattner7674d902006-02-24 20:27:40 +0000468bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000469 unsigned AsmVariant,
Chris Lattner7674d902006-02-24 20:27:40 +0000470 const char *ExtraCode) {
471 if (ExtraCode && ExtraCode[0])
472 return true; // Unknown modifier.
Chris Lattnerf7937002007-02-01 00:39:08 +0000473 if (MI->getOperand(OpNo).isRegister())
474 printMemRegReg(MI, OpNo);
475 else
476 printMemRegImm(MI, OpNo);
Chris Lattner7674d902006-02-24 20:27:40 +0000477 return false;
478}
Chris Lattner1bad2542006-02-23 19:31:10 +0000479
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000480void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattner6be72602006-11-04 05:27:39 +0000481 const char *Modifier) {
482 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
483 unsigned Code = MI->getOperand(OpNo).getImm();
484 if (!strcmp(Modifier, "cc")) {
485 switch ((PPC::Predicate)Code) {
486 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
487 case PPC::PRED_LT: O << "lt"; return;
488 case PPC::PRED_LE: O << "le"; return;
489 case PPC::PRED_EQ: O << "eq"; return;
490 case PPC::PRED_GE: O << "ge"; return;
491 case PPC::PRED_GT: O << "gt"; return;
492 case PPC::PRED_NE: O << "ne"; return;
493 case PPC::PRED_UN: O << "un"; return;
494 case PPC::PRED_NU: O << "nu"; return;
495 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000496
Chris Lattner6be72602006-11-04 05:27:39 +0000497 } else {
498 assert(!strcmp(Modifier, "reg") &&
499 "Need to specify 'cc' or 'reg' as predicate op modifier!");
500 // Don't print the register for 'always'.
501 if (Code == PPC::PRED_ALWAYS) return;
502 printOperand(MI, OpNo+1);
503 }
504}
505
506
Nate Begeman0ad7f812004-08-14 22:09:10 +0000507/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
508/// the current output stream.
Misha Brukmane05203f2004-06-21 16:55:25 +0000509///
Chris Lattner0921e3b2005-10-14 23:37:35 +0000510void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begeman0ad7f812004-08-14 22:09:10 +0000511 ++EmittedInsts;
Chris Lattner2121f3c2005-10-14 22:44:13 +0000512
Nate Begeman52441732005-04-05 18:19:50 +0000513 // Check for slwi/srwi mnemonics.
514 if (MI->getOpcode() == PPC::RLWINM) {
515 bool FoundMnemonic = false;
Chris Lattner5c463782007-12-30 20:49:49 +0000516 unsigned char SH = MI->getOperand(2).getImm();
517 unsigned char MB = MI->getOperand(3).getImm();
518 unsigned char ME = MI->getOperand(4).getImm();
Nate Begeman52441732005-04-05 18:19:50 +0000519 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000520 O << "\tslwi "; FoundMnemonic = true;
Nate Begeman52441732005-04-05 18:19:50 +0000521 }
522 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000523 O << "\tsrwi "; FoundMnemonic = true;
Nate Begeman52441732005-04-05 18:19:50 +0000524 SH = 32-SH;
525 }
526 if (FoundMnemonic) {
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000527 printOperand(MI, 0);
Misha Brukmanb4402432005-04-21 23:30:14 +0000528 O << ", ";
Nate Begeman6f8c1ac2005-11-30 18:54:35 +0000529 printOperand(MI, 1);
Nate Begeman52441732005-04-05 18:19:50 +0000530 O << ", " << (unsigned int)SH << "\n";
531 return;
532 }
Chris Lattner52a956d2006-06-20 23:18:58 +0000533 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000534 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000535 O << "\tmr ";
Chris Lattnerf7b962d2006-02-08 06:56:40 +0000536 printOperand(MI, 0);
537 O << ", ";
538 printOperand(MI, 1);
539 O << "\n";
540 return;
541 }
Chris Lattner9ca15c82006-11-18 01:23:56 +0000542 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner5c463782007-12-30 20:49:49 +0000543 unsigned char SH = MI->getOperand(2).getImm();
544 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner9ca15c82006-11-18 01:23:56 +0000545 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
546 if (63-SH == ME) {
Nate Begemanf3c89be32008-02-05 08:49:09 +0000547 O << "\tsldi ";
Chris Lattner9ca15c82006-11-18 01:23:56 +0000548 printOperand(MI, 0);
549 O << ", ";
550 printOperand(MI, 1);
551 O << ", " << (unsigned int)SH << "\n";
552 return;
553 }
Nate Begeman52441732005-04-05 18:19:50 +0000554 }
Misha Brukmanb4402432005-04-21 23:30:14 +0000555
Nate Begeman0ad7f812004-08-14 22:09:10 +0000556 if (printInstruction(MI))
557 return; // Printer was automatically generated
Misha Brukmanb4402432005-04-21 23:30:14 +0000558
Nate Begeman4bfceb12004-09-04 05:00:00 +0000559 assert(0 && "Unhandled instruction in asm writer!");
560 abort();
Nate Begeman0ad7f812004-08-14 22:09:10 +0000561 return;
Misha Brukmane05203f2004-06-21 16:55:25 +0000562}
563
Jim Laskey28663c72006-12-21 20:26:09 +0000564/// runOnMachineFunction - This uses the printMachineInstruction()
565/// method to print assembly for each instruction.
566///
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000567bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner028d6632006-10-05 02:42:20 +0000568
Jim Laskey28663c72006-12-21 20:26:09 +0000569 SetupMachineFunction(MF);
570 O << "\n\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000571
Jim Laskey28663c72006-12-21 20:26:09 +0000572 // Print out constants referenced by the function
573 EmitConstantPool(MF.getConstantPool());
574
575 // Print out labels for the function.
576 const Function *F = MF.getFunction();
577 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000578
Jim Laskey28663c72006-12-21 20:26:09 +0000579 switch (F->getLinkage()) {
580 default: assert(0 && "Unknown linkage type!");
581 case Function::InternalLinkage: // Symbols default to internal.
582 break;
583 case Function::ExternalLinkage:
584 O << "\t.global\t" << CurrentFnName << '\n'
585 << "\t.type\t" << CurrentFnName << ", @function\n";
586 break;
587 case Function::WeakLinkage:
588 case Function::LinkOnceLinkage:
589 O << "\t.global\t" << CurrentFnName << '\n';
590 O << "\t.weak\t" << CurrentFnName << '\n';
591 break;
592 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000593
Chris Lattner3c84b552007-01-14 06:37:54 +0000594 if (F->hasHiddenVisibility())
595 if (const char *Directive = TAI->getHiddenDirective())
596 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000597
Jim Laskey28663c72006-12-21 20:26:09 +0000598 EmitAlignment(2, F);
599 O << CurrentFnName << ":\n";
600
601 // Emit pre-function debug information.
602 DW.BeginFunction(&MF);
603
604 // Print out code for the function.
605 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
606 I != E; ++I) {
607 // Print a label for the basic block.
608 if (I != MF.begin()) {
Evan Chengc7990652008-02-28 00:43:03 +0000609 printBasicBlockLabel(I, true, true);
Jim Laskey28663c72006-12-21 20:26:09 +0000610 O << '\n';
611 }
612 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
613 II != E; ++II) {
614 // Print the assembly for the instruction.
Jim Laskey28663c72006-12-21 20:26:09 +0000615 printMachineInstruction(II);
616 }
617 }
618
619 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << "\n";
620
621 // Print out jump tables referenced by the function.
622 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000623
Jim Laskey28663c72006-12-21 20:26:09 +0000624 // Emit post-function debug information.
625 DW.EndFunction();
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000626
Jim Laskey28663c72006-12-21 20:26:09 +0000627 // We didn't modify anything.
628 return false;
629}
630
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000631bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohmancf0a5342007-07-25 19:33:14 +0000632 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000633
Dale Johannesendbd04c02008-07-09 21:24:07 +0000634 // Emit initial debug information.
635 DW.BeginModule(&M);
636
637 // AsmPrinter::doInitialization should have done this analysis.
638 MMI = getAnalysisToUpdate<MachineModuleInfo>();
639 assert(MMI);
640 DW.SetModuleInfo(MMI);
641
Jim Laskey28663c72006-12-21 20:26:09 +0000642 // GNU as handles section names wrapped in quotes
643 Mang->setUseQuotes(true);
644
645 SwitchToTextSection(TAI->getTextSection());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000646
Dan Gohmancf0a5342007-07-25 19:33:14 +0000647 return Result;
Jim Laskey28663c72006-12-21 20:26:09 +0000648}
649
Chris Lattner7b143172008-02-15 19:04:54 +0000650/// PrintUnmangledNameSafely - Print out the printable characters in the name.
651/// Don't print things like \n or \0.
652static void PrintUnmangledNameSafely(const Value *V, std::ostream &OS) {
653 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
654 Name != E; ++Name)
655 if (isprint(*Name))
656 OS << *Name;
657}
658
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000659bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
Jim Laskey28663c72006-12-21 20:26:09 +0000660 const TargetData *TD = TM.getTargetData();
661
662 // Print out module-level global variables here.
663 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
664 I != E; ++I) {
665 if (!I->hasInitializer()) continue; // External global require no code
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000666
Jim Laskey28663c72006-12-21 20:26:09 +0000667 // Check to see if this is a special global used by LLVM, if so, emit it.
668 if (EmitSpecialLLVMGlobal(I))
669 continue;
Chris Lattner3c84b552007-01-14 06:37:54 +0000670
Jim Laskey28663c72006-12-21 20:26:09 +0000671 std::string name = Mang->getValueName(I);
Chris Lattner3c84b552007-01-14 06:37:54 +0000672
673 if (I->hasHiddenVisibility())
674 if (const char *Directive = TAI->getHiddenDirective())
675 O << Directive << name << "\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000676
Jim Laskey28663c72006-12-21 20:26:09 +0000677 Constant *C = I->getInitializer();
Duncan Sands283207a2007-11-05 00:04:43 +0000678 unsigned Size = TD->getABITypeSize(C->getType());
Jim Laskey28663c72006-12-21 20:26:09 +0000679 unsigned Align = TD->getPreferredAlignmentLog(I);
680
681 if (C->isNullValue() && /* FIXME: Verify correct */
Dale Johannesence4396b2008-05-14 20:12:51 +0000682 !I->hasSection() && (I->hasCommonLinkage() ||
683 I->hasInternalLinkage() || I->hasWeakLinkage() ||
Evan Cheng1ff71872007-09-21 00:41:19 +0000684 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Jim Laskey28663c72006-12-21 20:26:09 +0000685 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
686 if (I->hasExternalLinkage()) {
687 O << "\t.global " << name << '\n';
688 O << "\t.type " << name << ", @object\n";
Nick Lewyckyd954dcd2007-11-04 17:32:10 +0000689 if (TAI->getBSSSection())
690 SwitchToDataSection(TAI->getBSSSection(), I);
Nick Lewycky5805c462007-07-25 03:48:45 +0000691 O << name << ":\n";
692 O << "\t.zero " << Size << "\n";
Jim Laskey28663c72006-12-21 20:26:09 +0000693 } else if (I->hasInternalLinkage()) {
694 SwitchToDataSection("\t.data", I);
695 O << TAI->getLCOMMDirective() << name << "," << Size;
696 } else {
697 SwitchToDataSection("\t.data", I);
698 O << ".comm " << name << "," << Size;
699 }
Chris Lattner7b143172008-02-15 19:04:54 +0000700 O << "\t\t" << TAI->getCommentString() << " '";
701 PrintUnmangledNameSafely(I, O);
702 O << "'\n";
Jim Laskey28663c72006-12-21 20:26:09 +0000703 } else {
704 switch (I->getLinkage()) {
705 case GlobalValue::LinkOnceLinkage:
706 case GlobalValue::WeakLinkage:
Dale Johannesence4396b2008-05-14 20:12:51 +0000707 case GlobalValue::CommonLinkage:
Jim Laskey28663c72006-12-21 20:26:09 +0000708 O << "\t.global " << name << '\n'
709 << "\t.type " << name << ", @object\n"
710 << "\t.weak " << name << '\n';
711 SwitchToDataSection("\t.data", I);
712 break;
713 case GlobalValue::AppendingLinkage:
714 // FIXME: appending linkage variables should go into a section of
715 // their name or something. For now, just emit them as external.
716 case GlobalValue::ExternalLinkage:
717 // If external or appending, declare as a global symbol
718 O << "\t.global " << name << "\n"
719 << "\t.type " << name << ", @object\n";
720 // FALL THROUGH
721 case GlobalValue::InternalLinkage:
722 if (I->isConstant()) {
723 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
724 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
725 SwitchToDataSection(TAI->getCStringSection(), I);
726 break;
727 }
728 }
729
730 // FIXME: special handling for ".ctors" & ".dtors" sections
731 if (I->hasSection() &&
732 (I->getSection() == ".ctors" ||
733 I->getSection() == ".dtors")) {
734 std::string SectionName = ".section " + I->getSection()
735 + ",\"aw\",@progbits";
736 SwitchToDataSection(SectionName.c_str());
737 } else {
Evan Chengddf08202007-03-08 08:31:54 +0000738 if (I->isConstant() && TAI->getReadOnlySection())
739 SwitchToDataSection(TAI->getReadOnlySection(), I);
740 else
741 SwitchToDataSection(TAI->getDataSection(), I);
Jim Laskey28663c72006-12-21 20:26:09 +0000742 }
743 break;
744 default:
745 cerr << "Unknown linkage type!";
746 abort();
747 }
748
749 EmitAlignment(Align, I);
Chris Lattner7b143172008-02-15 19:04:54 +0000750 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
751 PrintUnmangledNameSafely(I, O);
752 O << "'\n";
Jim Laskey28663c72006-12-21 20:26:09 +0000753
754 // If the initializer is a extern weak symbol, remember to emit the weak
755 // reference!
756 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
757 if (GV->hasExternalWeakLinkage())
758 ExtWeakSymbols.insert(GV);
759
760 EmitGlobalConstant(C);
761 O << '\n';
762 }
763 }
764
765 // TODO
766
767 // Emit initial debug information.
768 DW.EndModule();
769
Dan Gohmancf0a5342007-07-25 19:33:14 +0000770 return AsmPrinter::doFinalization(M);
Jim Laskey28663c72006-12-21 20:26:09 +0000771}
772
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000773std::string PPCLinuxAsmPrinter::getSectionForFunction(const Function &F) const {
Jim Laskey28663c72006-12-21 20:26:09 +0000774 switch (F.getLinkage()) {
775 default: assert(0 && "Unknown linkage type!");
776 case Function::ExternalLinkage:
777 case Function::InternalLinkage: return TAI->getTextSection();
778 case Function::WeakLinkage:
779 case Function::LinkOnceLinkage:
780 return ".text";
781 }
782}
Chris Lattner028d6632006-10-05 02:42:20 +0000783
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000784std::string PPCDarwinAsmPrinter::getSectionForFunction(const Function &F) const {
Chris Lattner028d6632006-10-05 02:42:20 +0000785 switch (F.getLinkage()) {
786 default: assert(0 && "Unknown linkage type!");
787 case Function::ExternalLinkage:
788 case Function::InternalLinkage: return TAI->getTextSection();
789 case Function::WeakLinkage:
790 case Function::LinkOnceLinkage:
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000791 return "\t.section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Chris Lattner028d6632006-10-05 02:42:20 +0000792 }
793}
794
Nate Begeman4bfceb12004-09-04 05:00:00 +0000795/// runOnMachineFunction - This uses the printMachineInstruction()
796/// method to print assembly for each instruction.
797///
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000798bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Jim Laskey762e9ec2006-01-05 01:25:28 +0000799
Chris Lattner99946fb2005-11-21 07:51:23 +0000800 SetupMachineFunction(MF);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000801 O << "\n\n";
Dale Johannesen763e1102007-11-20 23:24:42 +0000802
Nate Begeman4bfceb12004-09-04 05:00:00 +0000803 // Print out constants referenced by the function
Chris Lattneref83ebd2005-11-21 08:26:15 +0000804 EmitConstantPool(MF.getConstantPool());
Nate Begeman4bfceb12004-09-04 05:00:00 +0000805
806 // Print out labels for the function.
Chris Lattner0aacd2a2005-11-14 18:52:46 +0000807 const Function *F = MF.getFunction();
Chris Lattner028d6632006-10-05 02:42:20 +0000808 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000809
Chris Lattner57575112005-12-16 00:22:14 +0000810 switch (F->getLinkage()) {
811 default: assert(0 && "Unknown linkage type!");
812 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattner57575112005-12-16 00:22:14 +0000813 break;
814 case Function::ExternalLinkage:
Chris Lattner97d72c82005-10-28 18:44:07 +0000815 O << "\t.globl\t" << CurrentFnName << "\n";
Chris Lattner57575112005-12-16 00:22:14 +0000816 break;
817 case Function::WeakLinkage:
818 case Function::LinkOnceLinkage:
Chris Lattner57575112005-12-16 00:22:14 +0000819 O << "\t.globl\t" << CurrentFnName << "\n";
820 O << "\t.weak_definition\t" << CurrentFnName << "\n";
821 break;
822 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000823
Chris Lattner3c84b552007-01-14 06:37:54 +0000824 if (F->hasHiddenVisibility())
825 if (const char *Directive = TAI->getHiddenDirective())
826 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000827
Evan Chengddc58ff92008-03-25 22:29:46 +0000828 EmitAlignment(OptimizeForSize ? 2 : 4, F);
Nate Begeman4bfceb12004-09-04 05:00:00 +0000829 O << CurrentFnName << ":\n";
830
Jim Laskeyc0d65182006-04-07 20:44:42 +0000831 // Emit pre-function debug information.
Jim Laskeya7b2bd52006-06-23 12:51:53 +0000832 DW.BeginFunction(&MF);
Jim Laskeyc0d65182006-04-07 20:44:42 +0000833
Bill Wendling50794832008-01-26 06:51:24 +0000834 // If the function is empty, then we need to emit *something*. Otherwise, the
835 // function's label might be associated with something that it wasn't meant to
836 // be associated with. We emit a noop in this situation.
837 MachineFunction::iterator I = MF.begin();
838
Bill Wendling1a17ef02008-01-26 09:03:52 +0000839 if (++I == MF.end() && MF.front().empty())
840 O << "\tnop\n";
Bill Wendling50794832008-01-26 06:51:24 +0000841
Nate Begeman4bfceb12004-09-04 05:00:00 +0000842 // Print out code for the function.
843 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
844 I != E; ++I) {
845 // Print a label for the basic block.
Chris Lattner968aeb12005-08-21 19:09:33 +0000846 if (I != MF.begin()) {
Evan Chengc7990652008-02-28 00:43:03 +0000847 printBasicBlockLabel(I, true, true);
Nate Begemanb9d4f832006-05-02 05:37:32 +0000848 O << '\n';
Chris Lattner968aeb12005-08-21 19:09:33 +0000849 }
Bill Wendling50794832008-01-26 06:51:24 +0000850 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
851 II != IE; ++II) {
Nate Begeman4bfceb12004-09-04 05:00:00 +0000852 // Print the assembly for the instruction.
Nate Begeman4bfceb12004-09-04 05:00:00 +0000853 printMachineInstruction(II);
854 }
855 }
Nate Begeman4bfceb12004-09-04 05:00:00 +0000856
Chris Lattner41e22a52006-10-05 00:26:05 +0000857 // Print out jump tables referenced by the function.
Chris Lattnera6a570e2006-10-05 03:01:21 +0000858 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000859
Jim Laskeyb0609d92006-01-04 13:52:30 +0000860 // Emit post-function debug information.
Jim Laskeycf0166f2006-03-23 18:09:44 +0000861 DW.EndFunction();
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000862
Nate Begeman4bfceb12004-09-04 05:00:00 +0000863 // We didn't modify anything.
864 return false;
865}
866
Misha Brukmane05203f2004-06-21 16:55:25 +0000867
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000868bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmanbdc24ad2008-03-25 21:45:14 +0000869 static const char *const CPUDirectives[] = {
Dale Johannesen6ca3ccf2008-02-14 23:35:16 +0000870 "",
Jim Laskey59e7a772006-12-12 20:57:08 +0000871 "ppc",
872 "ppc601",
873 "ppc602",
874 "ppc603",
875 "ppc7400",
876 "ppc750",
877 "ppc970",
878 "ppc64"
879 };
880
881 unsigned Directive = Subtarget.getDarwinDirective();
882 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
883 Directive = PPC::DIR_970;
884 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
885 Directive = PPC::DIR_7400;
886 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
887 Directive = PPC::DIR_64;
888 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
889 O << "\t.machine " << CPUDirectives[Directive] << "\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000890
Dan Gohmancf0a5342007-07-25 19:33:14 +0000891 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000892
Dale Johannesenb9aaddc2008-07-09 20:43:39 +0000893 // Emit initial debug information.
894 DW.BeginModule(&M);
895
896 // We need this for Personality functions.
897 // AsmPrinter::doInitialization should have done this analysis.
898 MMI = getAnalysisToUpdate<MachineModuleInfo>();
899 assert(MMI);
900 DW.SetModuleInfo(MMI);
901
Chris Lattner9eb7dfa2005-11-10 19:33:43 +0000902 // Darwin wants symbols to be quoted if they have complex names.
903 Mang->setUseQuotes(true);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000904
Jim Laskeyec05b042006-11-28 18:21:52 +0000905 // Prime text sections so they are adjacent. This reduces the likelihood a
906 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000907 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000908 "pure_instructions");
909 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000910 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000911 "pure_instructions,32");
912 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +0000913 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskeyec05b042006-11-28 18:21:52 +0000914 "pure_instructions,16");
915 }
916 SwitchToTextSection(TAI->getTextSection());
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000917
Dan Gohmancf0a5342007-07-25 19:33:14 +0000918 return Result;
Nate Begeman15527112005-07-21 01:25:49 +0000919}
920
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000921bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Anderson20a631f2006-05-03 01:29:57 +0000922 const TargetData *TD = TM.getTargetData();
Misha Brukmane05203f2004-06-21 16:55:25 +0000923
924 // Print out module-level global variables here.
Chris Lattner1a4adc72005-11-14 19:00:30 +0000925 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattner54a11df2005-12-13 04:33:58 +0000926 I != E; ++I) {
927 if (!I->hasInitializer()) continue; // External global require no code
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000928
Chris Lattner87079882005-12-13 06:32:50 +0000929 // Check to see if this is a special global used by LLVM, if so, emit it.
Evan Cheng0e083d02007-01-30 08:04:53 +0000930 if (EmitSpecialLLVMGlobal(I)) {
931 if (TM.getRelocationModel() == Reloc::Static) {
932 if (I->getName() == "llvm.global_ctors")
933 O << ".reference .constructors_used\n";
934 else if (I->getName() == "llvm.global_dtors")
935 O << ".reference .destructors_used\n";
936 }
Chris Lattner87079882005-12-13 06:32:50 +0000937 continue;
Evan Cheng0e083d02007-01-30 08:04:53 +0000938 }
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000939
Chris Lattner54a11df2005-12-13 04:33:58 +0000940 std::string name = Mang->getValueName(I);
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000941
Chris Lattner3c84b552007-01-14 06:37:54 +0000942 if (I->hasHiddenVisibility())
943 if (const char *Directive = TAI->getHiddenDirective())
944 O << Directive << name << "\n";
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +0000945
Chris Lattner54a11df2005-12-13 04:33:58 +0000946 Constant *C = I->getInitializer();
Evan Chengd9184772007-03-08 01:25:25 +0000947 const Type *Type = C->getType();
Duncan Sands283207a2007-11-05 00:04:43 +0000948 unsigned Size = TD->getABITypeSize(Type);
Devang Patel71b99292006-10-24 20:32:14 +0000949 unsigned Align = TD->getPreferredAlignmentLog(I);
Chris Lattner54a11df2005-12-13 04:33:58 +0000950
951 if (C->isNullValue() && /* FIXME: Verify correct */
Dale Johannesence4396b2008-05-14 20:12:51 +0000952 !I->hasSection() && (I->hasCommonLinkage() ||
953 I->hasInternalLinkage() || I->hasWeakLinkage() ||
Dale Johannesen60a98552008-01-17 23:04:07 +0000954 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Chris Lattner54a11df2005-12-13 04:33:58 +0000955 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Chris Lattnerb1345202006-02-14 22:18:23 +0000956 if (I->hasExternalLinkage()) {
957 O << "\t.globl " << name << '\n';
958 O << "\t.zerofill __DATA, __common, " << name << ", "
959 << Size << ", " << Align;
960 } else if (I->hasInternalLinkage()) {
Chris Lattner28141342006-05-09 16:15:00 +0000961 SwitchToDataSection("\t.data", I);
Jim Laskeya6211dc2006-09-06 18:34:40 +0000962 O << TAI->getLCOMMDirective() << name << "," << Size << "," << Align;
Dale Johannesen2e1d5e42008-05-16 20:09:25 +0000963 } else if (!I->hasCommonLinkage()) {
964 O << "\t.globl " << name << "\n"
965 << TAI->getWeakDefDirective() << name << "\n";
966 SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
967 EmitAlignment(Align, I);
968 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
969 PrintUnmangledNameSafely(I, O);
970 O << "\n";
971 EmitGlobalConstant(C);
972 continue;
Chris Lattnerb1345202006-02-14 22:18:23 +0000973 } else {
Chris Lattner28141342006-05-09 16:15:00 +0000974 SwitchToDataSection("\t.data", I);
Chris Lattner54a11df2005-12-13 04:33:58 +0000975 O << ".comm " << name << "," << Size;
Chris Lattnerdcbc0f32008-01-02 19:35:16 +0000976 // Darwin 9 and above support aligned common data.
977 if (Subtarget.isDarwin9())
978 O << "," << Align;
Chris Lattnerb1345202006-02-14 22:18:23 +0000979 }
Chris Lattner7b143172008-02-15 19:04:54 +0000980 O << "\t\t" << TAI->getCommentString() << " '";
981 PrintUnmangledNameSafely(I, O);
982 O << "'\n";
Chris Lattner54a11df2005-12-13 04:33:58 +0000983 } else {
984 switch (I->getLinkage()) {
Jim Laskey311622f2006-12-01 14:37:39 +0000985 case GlobalValue::LinkOnceLinkage:
Chris Lattner54a11df2005-12-13 04:33:58 +0000986 case GlobalValue::WeakLinkage:
Dale Johannesence4396b2008-05-14 20:12:51 +0000987 case GlobalValue::CommonLinkage:
Chris Lattner6b0325a2005-12-22 21:15:17 +0000988 O << "\t.globl " << name << '\n'
989 << "\t.weak_definition " << name << '\n';
Dale Johannesen18cc4d32008-05-24 00:10:20 +0000990 if (!I->isConstant())
991 SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
992 else {
993 const ArrayType *AT = dyn_cast<ArrayType>(Type);
994 if (AT && AT->getElementType()==Type::Int8Ty)
995 SwitchToDataSection("\t.section __TEXT,__const_coal,coalesced", I);
996 else
997 SwitchToDataSection("\t.section __DATA,__const_coal,coalesced", I);
998 }
Chris Lattner54a11df2005-12-13 04:33:58 +0000999 break;
1000 case GlobalValue::AppendingLinkage:
1001 // FIXME: appending linkage variables should go into a section of
1002 // their name or something. For now, just emit them as external.
1003 case GlobalValue::ExternalLinkage:
1004 // If external or appending, declare as a global symbol
1005 O << "\t.globl " << name << "\n";
1006 // FALL THROUGH
1007 case GlobalValue::InternalLinkage:
Evan Chengae8c29a2006-10-28 05:56:51 +00001008 if (I->isConstant()) {
Evan Chenge1e06c22006-10-26 21:48:57 +00001009 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
Evan Chengae8c29a2006-10-28 05:56:51 +00001010 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
Evan Chenge1e06c22006-10-26 21:48:57 +00001011 SwitchToDataSection(TAI->getCStringSection(), I);
1012 break;
1013 }
1014 }
Dale Johannesen7f1ff5f2008-01-23 00:58:14 +00001015 if (I->hasSection()) {
1016 // Honor all section names on Darwin; ObjC uses this
1017 std::string SectionName = ".section " + I->getSection();
1018 SwitchToDataSection(SectionName.c_str());
1019 } else if (!I->isConstant())
Evan Chengd9184772007-03-08 01:25:25 +00001020 SwitchToDataSection(TAI->getDataSection(), I);
1021 else {
1022 // Read-only data.
Evan Chengddf08202007-03-08 08:31:54 +00001023 bool HasReloc = C->ContainsRelocations();
1024 if (HasReloc &&
Evan Chengd9184772007-03-08 01:25:25 +00001025 TM.getRelocationModel() != Reloc::Static)
1026 SwitchToDataSection("\t.const_data\n");
Evan Chengddf08202007-03-08 08:31:54 +00001027 else if (!HasReloc && Size == 4 &&
Evan Chengd9184772007-03-08 01:25:25 +00001028 TAI->getFourByteConstantSection())
1029 SwitchToDataSection(TAI->getFourByteConstantSection(), I);
Evan Chengddf08202007-03-08 08:31:54 +00001030 else if (!HasReloc && Size == 8 &&
Evan Chengd9184772007-03-08 01:25:25 +00001031 TAI->getEightByteConstantSection())
1032 SwitchToDataSection(TAI->getEightByteConstantSection(), I);
Evan Chengddf08202007-03-08 08:31:54 +00001033 else if (!HasReloc && Size == 16 &&
Evan Chengd9184772007-03-08 01:25:25 +00001034 TAI->getSixteenByteConstantSection())
1035 SwitchToDataSection(TAI->getSixteenByteConstantSection(), I);
1036 else if (TAI->getReadOnlySection())
1037 SwitchToDataSection(TAI->getReadOnlySection(), I);
1038 else
1039 SwitchToDataSection(TAI->getDataSection(), I);
1040 }
Chris Lattner54a11df2005-12-13 04:33:58 +00001041 break;
1042 default:
Bill Wendling9bfb1e12006-12-07 22:21:48 +00001043 cerr << "Unknown linkage type!";
Chris Lattner54a11df2005-12-13 04:33:58 +00001044 abort();
1045 }
1046
1047 EmitAlignment(Align, I);
Chris Lattner7b143172008-02-15 19:04:54 +00001048 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
1049 PrintUnmangledNameSafely(I, O);
1050 O << "'\n";
Evan Cheng5fb2c762006-12-01 09:13:26 +00001051
1052 // If the initializer is a extern weak symbol, remember to emit the weak
1053 // reference!
1054 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
1055 if (GV->hasExternalWeakLinkage())
Rafael Espindolad7998d02006-12-18 03:37:18 +00001056 ExtWeakSymbols.insert(GV);
Evan Cheng5fb2c762006-12-01 09:13:26 +00001057
Chris Lattner54a11df2005-12-13 04:33:58 +00001058 EmitGlobalConstant(C);
Chris Lattner9436aa72006-01-21 01:35:26 +00001059 O << '\n';
Chris Lattner54a11df2005-12-13 04:33:58 +00001060 }
1061 }
Misha Brukmand4ac8182004-07-16 20:29:04 +00001062
Chris Lattner1df08392006-06-27 01:02:25 +00001063 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1064
Misha Brukmand4ac8182004-07-16 20:29:04 +00001065 // Output stubs for dynamically-linked functions
Chris Lattner9e56e5c2006-07-26 21:12:04 +00001066 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattner54a11df2005-12-13 04:33:58 +00001067 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1068 i != e; ++i) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +00001069 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001070 "pure_instructions,32");
Chris Lattner1df08392006-06-27 01:02:25 +00001071 EmitAlignment(4);
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001072 std::string p = *i;
1073 std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ;
1074 printSuffixedName(p, "$stub");
1075 O << ":\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001076 O << "\t.indirect_symbol " << *i << "\n";
1077 O << "\tmflr r0\n";
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001078 O << "\tbcl 20,31," << L0p << "\n";
1079 O << L0p << ":\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001080 O << "\tmflr r11\n";
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001081 O << "\taddis r11,r11,ha16(";
1082 printSuffixedName(p, "$lazy_ptr");
1083 O << "-" << L0p << ")\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001084 O << "\tmtlr r0\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001085 if (isPPC64)
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001086 O << "\tldu r12,lo16(";
Chris Lattner1df08392006-06-27 01:02:25 +00001087 else
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001088 O << "\tlwzu r12,lo16(";
1089 printSuffixedName(p, "$lazy_ptr");
1090 O << "-" << L0p << ")(r11)\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001091 O << "\tmtctr r12\n";
1092 O << "\tbctr\n";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001093 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001094 printSuffixedName(p, "$lazy_ptr");
1095 O << ":\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001096 O << "\t.indirect_symbol " << *i << "\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001097 if (isPPC64)
1098 O << "\t.quad dyld_stub_binding_helper\n";
1099 else
1100 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001101 }
1102 } else {
1103 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1104 i != e; ++i) {
Dale Johannesen2ff66f02008-01-11 00:54:37 +00001105 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001106 "pure_instructions,16");
Chris Lattner54a11df2005-12-13 04:33:58 +00001107 EmitAlignment(4);
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001108 std::string p = *i;
1109 printSuffixedName(p, "$stub");
1110 O << ":\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001111 O << "\t.indirect_symbol " << *i << "\n";
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001112 O << "\tlis r11,ha16(";
1113 printSuffixedName(p, "$lazy_ptr");
1114 O << ")\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001115 if (isPPC64)
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001116 O << "\tldu r12,lo16(";
Chris Lattner1df08392006-06-27 01:02:25 +00001117 else
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001118 O << "\tlwzu r12,lo16(";
1119 printSuffixedName(p, "$lazy_ptr");
1120 O << ")(r11)\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001121 O << "\tmtctr r12\n";
1122 O << "\tbctr\n";
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001123 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001124 printSuffixedName(p, "$lazy_ptr");
1125 O << ":\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001126 O << "\t.indirect_symbol " << *i << "\n";
Chris Lattner1df08392006-06-27 01:02:25 +00001127 if (isPPC64)
1128 O << "\t.quad dyld_stub_binding_helper\n";
1129 else
1130 O << "\t.long dyld_stub_binding_helper\n";
Nate Begemana9443f22005-07-21 20:44:43 +00001131 }
Misha Brukmanf62ee7a2004-06-24 23:04:11 +00001132 }
Misha Brukmane05203f2004-06-21 16:55:25 +00001133
Misha Brukmand4ac8182004-07-16 20:29:04 +00001134 O << "\n";
1135
Dale Johannesenfd967cf2008-04-02 00:25:04 +00001136 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen763e1102007-11-20 23:24:42 +00001137 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesenfd967cf2008-04-02 00:25:04 +00001138 // Only referenced functions get into the Personalities list.
Dale Johannesen763e1102007-11-20 23:24:42 +00001139 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1140
1141 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1142 E = Personalities.end(); I != E; ++I)
1143 if (*I) GVStubs.insert("_" + (*I)->getName());
1144 }
1145
Chris Lattner57575112005-12-16 00:22:14 +00001146 // Output stubs for external and common global variables.
Dan Gohmanc731c972007-10-03 19:26:29 +00001147 if (!GVStubs.empty()) {
Anton Korobeynikovaa4c0f92006-10-31 08:31:24 +00001148 SwitchToDataSection(".non_lazy_symbol_pointer");
Chris Lattner57575112005-12-16 00:22:14 +00001149 for (std::set<std::string>::iterator I = GVStubs.begin(),
1150 E = GVStubs.end(); I != E; ++I) {
Dale Johannesen5bf742f2008-05-19 21:38:18 +00001151 std::string p = *I;
1152 printSuffixedName(p, "$non_lazy_ptr");
1153 O << ":\n";
Chris Lattner57575112005-12-16 00:22:14 +00001154 O << "\t.indirect_symbol " << *I << "\n";
Chris Lattner82ab3e22006-06-27 20:20:53 +00001155 if (isPPC64)
1156 O << "\t.quad\t0\n";
1157 else
1158 O << "\t.long\t0\n";
Chris Lattner54a11df2005-12-13 04:33:58 +00001159 }
Nate Begeman0ad7f812004-08-14 22:09:10 +00001160 }
Misha Brukmanb4402432005-04-21 23:30:14 +00001161
Jim Laskeyb9966022006-01-17 17:31:53 +00001162 // Emit initial debug information.
Jim Laskeycf0166f2006-03-23 18:09:44 +00001163 DW.EndModule();
Jim Laskeyb9966022006-01-17 17:31:53 +00001164
Chris Lattner7432ceef2005-11-01 00:12:36 +00001165 // Funny Darwin hack: This flag tells the linker that no global symbols
1166 // contain code that falls through to other global symbols (e.g. the obvious
1167 // implementation of multiple entry points). If this doesn't occur, the
1168 // linker can safely perform dead code stripping. Since LLVM never generates
1169 // code that does this, it is always safe to set.
Chris Lattnera81a75c2006-09-20 17:12:19 +00001170 O << "\t.subsections_via_symbols\n";
Chris Lattner7432ceef2005-11-01 00:12:36 +00001171
Dan Gohmancf0a5342007-07-25 19:33:14 +00001172 return AsmPrinter::doFinalization(M);
Misha Brukmane05203f2004-06-21 16:55:25 +00001173}
Nate Begeman4bfceb12004-09-04 05:00:00 +00001174
Chris Lattnera81a75c2006-09-20 17:12:19 +00001175
1176
Jim Laskey41621a72006-12-20 20:56:46 +00001177/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1178/// for a MachineFunction to the given output stream, in a format that the
Chris Lattnera81a75c2006-09-20 17:12:19 +00001179/// Darwin assembler can deal with.
1180///
1181FunctionPass *llvm::createPPCAsmPrinterPass(std::ostream &o,
1182 PPCTargetMachine &tm) {
Jim Laskey28663c72006-12-21 20:26:09 +00001183 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1184
1185 if (Subtarget->isDarwin()) {
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +00001186 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskey28663c72006-12-21 20:26:09 +00001187 } else {
Anton Korobeynikov7c20ede2008-08-08 18:22:59 +00001188 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskey28663c72006-12-21 20:26:09 +00001189 }
Chris Lattnera81a75c2006-09-20 17:12:19 +00001190}