blob: 9c9dd391be797af3eed892ada1f52e484bf124e7 [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000010// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
Chris Lattner83660c52004-07-28 20:18:53 +000012// the output mechanism used by `llc'.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000013//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000014// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
Misha Brukman218bec72004-06-29 17:13:26 +000016//
Misha Brukman5dfe3a92004-06-21 16:55:25 +000017//===----------------------------------------------------------------------===//
18
Misha Brukman05794492004-06-24 17:31:42 +000019#define DEBUG_TYPE "asmprinter"
Chris Lattner26689592005-10-14 23:51:18 +000020#include "PPC.h"
Chris Lattnerdf4ed632006-11-17 22:10:59 +000021#include "PPCPredicates.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000022#include "PPCTargetMachine.h"
Chris Lattner26689592005-10-14 23:51:18 +000023#include "PPCSubtarget.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000028#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000029#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000030#include "llvm/CodeGen/MachineModuleInfo.h"
Misha Brukman05794492004-06-24 17:31:42 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000032#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling381802f2008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000034#include "llvm/Support/Mangler.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000035#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000036#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000038#include "llvm/Support/Compiler.h"
Jim Laskey563321a2006-09-06 18:34:40 +000039#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000040#include "llvm/Target/TargetRegisterInfo.h"
Nate Begemand4c8bea2004-11-25 07:09:01 +000041#include "llvm/Target/TargetInstrInfo.h"
Evan Chengd2ee2182006-02-18 00:08:58 +000042#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000043#include "llvm/ADT/Statistic.h"
44#include "llvm/ADT/StringExtras.h"
Misha Brukman05794492004-06-24 17:31:42 +000045#include <set>
Chris Lattnera3840792004-08-16 23:25:21 +000046using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000047
Chris Lattner95b2c7d2006-12-19 22:59:26 +000048STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukman5dfe3a92004-06-21 16:55:25 +000049
Chris Lattner95b2c7d2006-12-19 22:59:26 +000050namespace {
Jim Laskey563321a2006-09-06 18:34:40 +000051 struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
Chris Lattnera637c322005-12-16 00:22:14 +000052 std::set<std::string> FnStubs, GVStubs;
Chris Lattnerdadceed2006-09-20 17:07:15 +000053 const PPCSubtarget &Subtarget;
Evan Cheng1c45a662006-12-01 07:56:37 +000054
Jim Laskeya0f3d172006-09-07 22:06:40 +000055 PPCAsmPrinter(std::ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
Chris Lattnerdadceed2006-09-20 17:07:15 +000056 : AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) {
57 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +000058
Misha Brukman5dfe3a92004-06-21 16:55:25 +000059 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000060 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000061 }
62
Nate Begeman21e463b2005-10-16 05:39:50 +000063 PPCTargetMachine &getTM() {
64 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000065 }
66
Nate Begemanadeb43d2005-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 Begemane59bf592004-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 Brukman5dfe3a92004-06-21 16:55:25 +000088 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +000089 void printOp(const MachineOperand &MO);
Jim Laskeyb608a4d2006-12-20 20:56:46 +000090
91 /// 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 Laskey40ee69f2006-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 Laskey2aa14aa2006-12-20 21:35:00 +000098 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +000099 }
Jim Laskey40ee69f2006-12-20 21:33:34 +0000100
101 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000102 }
103
104 /// printRegister - Print register according to target requirements.
105 ///
106 void printRegister(const MachineOperand &MO, bool R0AsZero) {
107 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000108 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000109
110 // If we should use 0 for R0.
111 if (R0AsZero && RegNo == PPC::R0) {
112 O << "0";
113 return;
114 }
115
Bill Wendling74ab84c2008-02-26 21:11:01 +0000116 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskeyb608a4d2006-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 Laskey40ee69f2006-12-20 21:33:34 +0000119 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
120 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000121 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000122
Chris Lattner58873272006-02-01 22:38:46 +0000123 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000124 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattner2d90ac72006-05-04 18:05:43 +0000125 if (MO.isRegister()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000126 printRegister(MO, false);
Chris Lattner0ea31712004-08-15 05:46:14 +0000127 } else if (MO.isImmediate()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000128 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000129 } else {
130 printOp(MO);
131 }
132 }
Chris Lattner58873272006-02-01 22:38:46 +0000133
134 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000135 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000136 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
137 unsigned AsmVariant, const char *ExtraCode);
138
Chris Lattner58873272006-02-01 22:38:46 +0000139
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000140 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000141 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000142 value = (value << (32-5)) >> (32-5);
143 O << (int)value;
144 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000145 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000146 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000147 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000148 O << (unsigned int)value;
149 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000150 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000151 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000152 assert(value <= 63 && "Invalid u6imm argument!");
153 O << (unsigned int)value;
154 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000155 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000156 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000157 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000158 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000159 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000160 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000161 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000162 if (MI->getOperand(OpNo).isImmediate()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000163 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000164 } else {
165 O << "lo16(";
166 printOp(MI->getOperand(OpNo));
167 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000168 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000169 else
170 O << ')';
171 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000172 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000173 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-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 Lattner9a1ceae2007-12-30 20:49:49 +0000177 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000178 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000179 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000180 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000181 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000182 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000183 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000184 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000185 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
186 GlobalValue *GV = MO.getGlobal();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000187 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesenaafce772008-05-14 20:12:51 +0000188 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Chris Lattnera637c322005-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 Johannesenc215b3e2008-05-19 21:38:18 +0000192 printSuffixedName(Name, "$stub");
Evan Cheng1c45a662006-12-01 07:56:37 +0000193 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000194 ExtWeakSymbols.insert(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000195 return;
196 }
197 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000198 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Jim Laskey563321a2006-09-06 18:34:40 +0000199 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattner9542f9712005-11-17 19:40:30 +0000200 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000201 printSuffixedName(Name, "$stub");
Chris Lattner9542f9712005-11-17 19:40:30 +0000202 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000203 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000204 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000205
206 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000207 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000208 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000209 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000210 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000211 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000212 O << "\"L" << getFunctionNumber() << "$pb\"\n";
213 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000214 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000215 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman2497e632005-07-21 20:44:43 +0000216 if (MI->getOperand(OpNo).isImmediate()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000217 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000218 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000219 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000220 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000221 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000222 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000223 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000224 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000225 else
226 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000227 }
Nate Begemaned428532004-09-04 05:00:00 +0000228 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000229 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000230 if (MI->getOperand(OpNo).isImmediate()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000231 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000232 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000233 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000234 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000235 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000236 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000237 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000238 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000239 else
240 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000241 }
242 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000243 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000244 unsigned CCReg = MI->getOperand(OpNo).getReg();
245 unsigned RegNo = enumRegToMachineReg(CCReg);
246 O << (0x80 >> RegNo);
247 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000248 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000249 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
250 printSymbolLo(MI, OpNo);
251 O << '(';
Chris Lattner13feb582006-03-21 17:21:13 +0000252 if (MI->getOperand(OpNo+1).isRegister() &&
253 MI->getOperand(OpNo+1).getReg() == PPC::R0)
254 O << "0";
255 else
256 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000257 O << ')';
258 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000259 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
260 if (MI->getOperand(OpNo).isImmediate())
261 printS16X4ImmOperand(MI, OpNo);
262 else
263 printSymbolLo(MI, OpNo);
264 O << '(';
265 if (MI->getOperand(OpNo+1).isRegister() &&
266 MI->getOperand(OpNo+1).getReg() == PPC::R0)
267 O << "0";
268 else
269 printOperand(MI, OpNo+1);
270 O << ')';
271 }
272
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000273 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-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 Laskeyb608a4d2006-12-20 20:56:46 +0000278 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000279 O << ", ";
280 printOperand(MI, OpNo+1);
281 }
282
Chris Lattneraf53a872006-11-04 05:27:39 +0000283 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
284 const char *Modifier);
285
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000286 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000287 virtual bool doFinalization(Module &M) = 0;
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000288
289 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begemaned428532004-09-04 05:00:00 +0000290 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000291
Jim Laskeybf111822006-12-21 20:26:09 +0000292 /// LinuxAsmPrinter - PowerPC assembly printer, customized for Linux
293 struct VISIBILITY_HIDDEN LinuxAsmPrinter : public PPCAsmPrinter {
294
295 DwarfWriter DW;
296
297 LinuxAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
298 const TargetAsmInfo *T)
299 : PPCAsmPrinter(O, TM, T), DW(O, this, T) {
300 }
301
302 virtual const char *getPassName() const {
303 return "Linux PPC Assembly Printer";
304 }
305
306 bool runOnMachineFunction(MachineFunction &F);
307 bool doInitialization(Module &M);
308 bool doFinalization(Module &M);
309
310 void getAnalysisUsage(AnalysisUsage &AU) const {
311 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000312 AU.addRequired<MachineModuleInfo>();
Jim Laskeybf111822006-12-21 20:26:09 +0000313 PPCAsmPrinter::getAnalysisUsage(AU);
314 }
315
316 /// getSectionForFunction - Return the section that we should emit the
317 /// specified function body into.
318 virtual std::string getSectionForFunction(const Function &F) const;
319 };
320
Misha Brukman3e0b51a2004-09-05 02:42:44 +0000321 /// DarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac OS
322 /// X
Chris Lattner95255282006-06-28 23:17:24 +0000323 struct VISIBILITY_HIDDEN DarwinAsmPrinter : public PPCAsmPrinter {
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000324
Jim Laskey563321a2006-09-06 18:34:40 +0000325 DwarfWriter DW;
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000326 MachineModuleInfo *MMI;
Nate Begemaned428532004-09-04 05:00:00 +0000327
Jim Laskeya0f3d172006-09-07 22:06:40 +0000328 DarwinAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
329 const TargetAsmInfo *T)
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000330 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Nate Begemaned428532004-09-04 05:00:00 +0000331 }
332
333 virtual const char *getPassName() const {
334 return "Darwin PPC Assembly Printer";
335 }
Chris Lattner646f7af2005-12-09 18:24:29 +0000336
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000337 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman18ed0292005-07-21 01:25:49 +0000338 bool doInitialization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000339 bool doFinalization(Module &M);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000340
341 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000342 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000343 AU.addRequired<MachineModuleInfo>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000344 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000345 }
346
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000347 /// getSectionForFunction - Return the section that we should emit the
348 /// specified function body into.
349 virtual std::string getSectionForFunction(const Function &F) const;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000350 };
351} // end of anonymous namespace
352
Nate Begemane59bf592004-08-14 22:09:10 +0000353// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000354#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000355
Chris Lattner9ba13e42005-11-17 19:25:59 +0000356void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000357 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000358 case MachineOperand::MO_Immediate:
Bill Wendlingf5da1332006-12-07 22:21:48 +0000359 cerr << "printOp() does not handle immediate values\n";
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000360 abort();
Misha Brukman97a296f2004-07-21 20:11:11 +0000361 return;
362
Nate Begeman37efe672006-04-22 18:53:45 +0000363 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000364 printBasicBlockLabel(MO.getMBB());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000365 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000366 case MachineOperand::MO_JumpTableIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000367 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000368 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000369 // FIXME: PIC relocation model
370 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000371 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000372 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000373 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000374 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000375 case MachineOperand::MO_ExternalSymbol:
Chris Lattnera637c322005-12-16 00:22:14 +0000376 // Computing the address of an external symbol, not calling it.
Evan Cheng4c1aa862006-02-22 20:19:42 +0000377 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskey563321a2006-09-06 18:34:40 +0000378 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnera637c322005-12-16 00:22:14 +0000379 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000380 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattnera637c322005-12-16 00:22:14 +0000381 return;
382 }
Jim Laskey563321a2006-09-06 18:34:40 +0000383 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000384 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000385 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000386 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000387 GlobalValue *GV = MO.getGlobal();
388 std::string Name = Mang->getValueName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000389
Nate Begemanfcf4a422004-10-17 23:01:34 +0000390 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng4c1aa862006-02-22 20:19:42 +0000391 if (TM.getRelocationModel() != Reloc::Static) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000392 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesenaafce772008-05-14 20:12:51 +0000393 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Nate Begemand4c8bea2004-11-25 07:09:01 +0000394 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000395 printSuffixedName(Name, "$non_lazy_ptr");
Dale Johannesenea7dd402008-05-16 20:09:25 +0000396 if (GV->hasExternalWeakLinkage())
397 ExtWeakSymbols.insert(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000398 return;
399 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000400 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000401 O << Name;
Evan Cheng1c45a662006-12-01 07:56:37 +0000402
Chris Lattner4105a9f2007-05-03 16:39:48 +0000403 if (MO.getOffset() > 0)
404 O << "+" << MO.getOffset();
405 else if (MO.getOffset() < 0)
406 O << MO.getOffset();
407
Evan Cheng1c45a662006-12-01 07:56:37 +0000408 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000409 ExtWeakSymbols.insert(GV);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000410 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000411 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000412
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000413 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000414 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000415 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000416 }
417}
418
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000419/// EmitExternalGlobal - In this case we need to use the indirect symbol.
420///
421void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
422 std::string Name = getGlobalLinkName(GV);
423 if (TM.getRelocationModel() != Reloc::Static) {
424 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000425 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000426 return;
427 }
428 O << Name;
429}
430
Chris Lattnere3f01572006-02-23 19:31:10 +0000431/// PrintAsmOperand - Print out an operand for an inline asm expression.
432///
433bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
434 unsigned AsmVariant,
435 const char *ExtraCode) {
436 // Does this asm operand have a single letter operand modifier?
437 if (ExtraCode && ExtraCode[0]) {
438 if (ExtraCode[1] != 0) return true; // Unknown modifier.
439
440 switch (ExtraCode[0]) {
441 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000442 case 'c': // Don't print "$" before a global var name or constant.
443 // PPC never has a prefix.
444 printOperand(MI, OpNo);
445 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000446 case 'L': // Write second word of DImode reference.
447 // Verify that this operand has two consecutive registers.
448 if (!MI->getOperand(OpNo).isRegister() ||
449 OpNo+1 == MI->getNumOperands() ||
450 !MI->getOperand(OpNo+1).isRegister())
451 return true;
452 ++OpNo; // Return the high-part.
453 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000454 case 'I':
455 // Write 'i' if an integer constant, otherwise nothing. Used to print
456 // addi vs add, etc.
Dan Gohman92dfe202007-09-14 20:33:02 +0000457 if (MI->getOperand(OpNo).isImmediate())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000458 O << "i";
459 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000460 }
461 }
462
463 printOperand(MI, OpNo);
464 return false;
465}
466
Chris Lattner2c003e22006-02-24 20:27:40 +0000467bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
468 unsigned AsmVariant,
469 const char *ExtraCode) {
470 if (ExtraCode && ExtraCode[0])
471 return true; // Unknown modifier.
Chris Lattner9aa28952007-02-01 00:39:08 +0000472 if (MI->getOperand(OpNo).isRegister())
473 printMemRegReg(MI, OpNo);
474 else
475 printMemRegImm(MI, OpNo);
Chris Lattner2c003e22006-02-24 20:27:40 +0000476 return false;
477}
Chris Lattnere3f01572006-02-23 19:31:10 +0000478
Chris Lattneraf53a872006-11-04 05:27:39 +0000479void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
480 const char *Modifier) {
481 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
482 unsigned Code = MI->getOperand(OpNo).getImm();
483 if (!strcmp(Modifier, "cc")) {
484 switch ((PPC::Predicate)Code) {
485 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
486 case PPC::PRED_LT: O << "lt"; return;
487 case PPC::PRED_LE: O << "le"; return;
488 case PPC::PRED_EQ: O << "eq"; return;
489 case PPC::PRED_GE: O << "ge"; return;
490 case PPC::PRED_GT: O << "gt"; return;
491 case PPC::PRED_NE: O << "ne"; return;
492 case PPC::PRED_UN: O << "un"; return;
493 case PPC::PRED_NU: O << "nu"; return;
494 }
495
496 } else {
497 assert(!strcmp(Modifier, "reg") &&
498 "Need to specify 'cc' or 'reg' as predicate op modifier!");
499 // Don't print the register for 'always'.
500 if (Code == PPC::PRED_ALWAYS) return;
501 printOperand(MI, OpNo+1);
502 }
503}
504
505
Nate Begemane59bf592004-08-14 22:09:10 +0000506/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
507/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000508///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000509void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000510 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000511
Nate Begemanad5f65c2005-04-05 18:19:50 +0000512 // Check for slwi/srwi mnemonics.
513 if (MI->getOpcode() == PPC::RLWINM) {
514 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000515 unsigned char SH = MI->getOperand(2).getImm();
516 unsigned char MB = MI->getOperand(3).getImm();
517 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000518 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000519 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000520 }
521 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000522 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000523 SH = 32-SH;
524 }
525 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000526 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000527 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000528 printOperand(MI, 1);
Nate Begemanad5f65c2005-04-05 18:19:50 +0000529 O << ", " << (unsigned int)SH << "\n";
530 return;
531 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000532 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000533 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000534 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000535 printOperand(MI, 0);
536 O << ", ";
537 printOperand(MI, 1);
538 O << "\n";
539 return;
540 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000541 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000542 unsigned char SH = MI->getOperand(2).getImm();
543 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000544 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
545 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000546 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000547 printOperand(MI, 0);
548 O << ", ";
549 printOperand(MI, 1);
550 O << ", " << (unsigned int)SH << "\n";
551 return;
552 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000553 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000554
Nate Begemane59bf592004-08-14 22:09:10 +0000555 if (printInstruction(MI))
556 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000557
Nate Begemaned428532004-09-04 05:00:00 +0000558 assert(0 && "Unhandled instruction in asm writer!");
559 abort();
Nate Begemane59bf592004-08-14 22:09:10 +0000560 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000561}
562
Jim Laskeybf111822006-12-21 20:26:09 +0000563/// runOnMachineFunction - This uses the printMachineInstruction()
564/// method to print assembly for each instruction.
565///
566bool LinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000567 DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>());
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000568
Jim Laskeybf111822006-12-21 20:26:09 +0000569 SetupMachineFunction(MF);
570 O << "\n\n";
571
572 // 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);
578
579 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 }
Chris Lattner70d41072007-01-14 06:37:54 +0000593
594 if (F->hasHiddenVisibility())
595 if (const char *Directive = TAI->getHiddenDirective())
596 O << Directive << CurrentFnName << "\n";
597
Jim Laskeybf111822006-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 Chengfb8075d2008-02-28 00:43:03 +0000609 printBasicBlockLabel(I, true, true);
Jim Laskeybf111822006-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 Laskeybf111822006-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);
623
624 // Emit post-function debug information.
625 DW.EndFunction();
626
627 // We didn't modify anything.
628 return false;
629}
630
631bool LinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohmanb8275a32007-07-25 19:33:14 +0000632 bool Result = AsmPrinter::doInitialization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000633
634 // GNU as handles section names wrapped in quotes
635 Mang->setUseQuotes(true);
636
637 SwitchToTextSection(TAI->getTextSection());
638
639 // Emit initial debug information.
640 DW.BeginModule(&M);
Dan Gohmanb8275a32007-07-25 19:33:14 +0000641 return Result;
Jim Laskeybf111822006-12-21 20:26:09 +0000642}
643
Chris Lattnerec321b42008-02-15 19:04:54 +0000644/// PrintUnmangledNameSafely - Print out the printable characters in the name.
645/// Don't print things like \n or \0.
646static void PrintUnmangledNameSafely(const Value *V, std::ostream &OS) {
647 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
648 Name != E; ++Name)
649 if (isprint(*Name))
650 OS << *Name;
651}
652
Jim Laskeybf111822006-12-21 20:26:09 +0000653bool LinuxAsmPrinter::doFinalization(Module &M) {
654 const TargetData *TD = TM.getTargetData();
655
656 // Print out module-level global variables here.
657 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
658 I != E; ++I) {
659 if (!I->hasInitializer()) continue; // External global require no code
660
661 // Check to see if this is a special global used by LLVM, if so, emit it.
662 if (EmitSpecialLLVMGlobal(I))
663 continue;
Chris Lattner70d41072007-01-14 06:37:54 +0000664
Jim Laskeybf111822006-12-21 20:26:09 +0000665 std::string name = Mang->getValueName(I);
Chris Lattner70d41072007-01-14 06:37:54 +0000666
667 if (I->hasHiddenVisibility())
668 if (const char *Directive = TAI->getHiddenDirective())
669 O << Directive << name << "\n";
670
Jim Laskeybf111822006-12-21 20:26:09 +0000671 Constant *C = I->getInitializer();
Duncan Sandsca0ed742007-11-05 00:04:43 +0000672 unsigned Size = TD->getABITypeSize(C->getType());
Jim Laskeybf111822006-12-21 20:26:09 +0000673 unsigned Align = TD->getPreferredAlignmentLog(I);
674
675 if (C->isNullValue() && /* FIXME: Verify correct */
Dale Johannesenaafce772008-05-14 20:12:51 +0000676 !I->hasSection() && (I->hasCommonLinkage() ||
677 I->hasInternalLinkage() || I->hasWeakLinkage() ||
Evan Cheng76a40232007-09-21 00:41:19 +0000678 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000679 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
680 if (I->hasExternalLinkage()) {
681 O << "\t.global " << name << '\n';
682 O << "\t.type " << name << ", @object\n";
Nick Lewyckyf4c164c2007-11-04 17:32:10 +0000683 if (TAI->getBSSSection())
684 SwitchToDataSection(TAI->getBSSSection(), I);
Nick Lewyckye2b90522007-07-25 03:48:45 +0000685 O << name << ":\n";
686 O << "\t.zero " << Size << "\n";
Jim Laskeybf111822006-12-21 20:26:09 +0000687 } else if (I->hasInternalLinkage()) {
688 SwitchToDataSection("\t.data", I);
689 O << TAI->getLCOMMDirective() << name << "," << Size;
690 } else {
691 SwitchToDataSection("\t.data", I);
692 O << ".comm " << name << "," << Size;
693 }
Chris Lattnerec321b42008-02-15 19:04:54 +0000694 O << "\t\t" << TAI->getCommentString() << " '";
695 PrintUnmangledNameSafely(I, O);
696 O << "'\n";
Jim Laskeybf111822006-12-21 20:26:09 +0000697 } else {
698 switch (I->getLinkage()) {
699 case GlobalValue::LinkOnceLinkage:
700 case GlobalValue::WeakLinkage:
Dale Johannesenaafce772008-05-14 20:12:51 +0000701 case GlobalValue::CommonLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000702 O << "\t.global " << name << '\n'
703 << "\t.type " << name << ", @object\n"
704 << "\t.weak " << name << '\n';
705 SwitchToDataSection("\t.data", I);
706 break;
707 case GlobalValue::AppendingLinkage:
708 // FIXME: appending linkage variables should go into a section of
709 // their name or something. For now, just emit them as external.
710 case GlobalValue::ExternalLinkage:
711 // If external or appending, declare as a global symbol
712 O << "\t.global " << name << "\n"
713 << "\t.type " << name << ", @object\n";
714 // FALL THROUGH
715 case GlobalValue::InternalLinkage:
716 if (I->isConstant()) {
717 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
718 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
719 SwitchToDataSection(TAI->getCStringSection(), I);
720 break;
721 }
722 }
723
724 // FIXME: special handling for ".ctors" & ".dtors" sections
725 if (I->hasSection() &&
726 (I->getSection() == ".ctors" ||
727 I->getSection() == ".dtors")) {
728 std::string SectionName = ".section " + I->getSection()
729 + ",\"aw\",@progbits";
730 SwitchToDataSection(SectionName.c_str());
731 } else {
Evan Cheng032953d2007-03-08 08:31:54 +0000732 if (I->isConstant() && TAI->getReadOnlySection())
733 SwitchToDataSection(TAI->getReadOnlySection(), I);
734 else
735 SwitchToDataSection(TAI->getDataSection(), I);
Jim Laskeybf111822006-12-21 20:26:09 +0000736 }
737 break;
738 default:
739 cerr << "Unknown linkage type!";
740 abort();
741 }
742
743 EmitAlignment(Align, I);
Chris Lattnerec321b42008-02-15 19:04:54 +0000744 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
745 PrintUnmangledNameSafely(I, O);
746 O << "'\n";
Jim Laskeybf111822006-12-21 20:26:09 +0000747
748 // If the initializer is a extern weak symbol, remember to emit the weak
749 // reference!
750 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
751 if (GV->hasExternalWeakLinkage())
752 ExtWeakSymbols.insert(GV);
753
754 EmitGlobalConstant(C);
755 O << '\n';
756 }
757 }
758
759 // TODO
760
761 // Emit initial debug information.
762 DW.EndModule();
763
Dan Gohmanb8275a32007-07-25 19:33:14 +0000764 return AsmPrinter::doFinalization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000765}
766
767std::string LinuxAsmPrinter::getSectionForFunction(const Function &F) const {
768 switch (F.getLinkage()) {
769 default: assert(0 && "Unknown linkage type!");
770 case Function::ExternalLinkage:
771 case Function::InternalLinkage: return TAI->getTextSection();
772 case Function::WeakLinkage:
773 case Function::LinkOnceLinkage:
774 return ".text";
775 }
776}
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000777
778std::string DarwinAsmPrinter::getSectionForFunction(const Function &F) const {
779 switch (F.getLinkage()) {
780 default: assert(0 && "Unknown linkage type!");
781 case Function::ExternalLinkage:
782 case Function::InternalLinkage: return TAI->getTextSection();
783 case Function::WeakLinkage:
784 case Function::LinkOnceLinkage:
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000785 return "\t.section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000786 }
787}
788
Nate Begemaned428532004-09-04 05:00:00 +0000789/// runOnMachineFunction - This uses the printMachineInstruction()
790/// method to print assembly for each instruction.
791///
792bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000793 // We need this for Personality functions.
794 MMI = &getAnalysis<MachineModuleInfo>();
795 DW.SetModuleInfo(MMI);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000796
Chris Lattner8b8b9512005-11-21 07:51:23 +0000797 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000798 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000799
Nate Begemaned428532004-09-04 05:00:00 +0000800 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000801 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000802
803 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000804 const Function *F = MF.getFunction();
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000805 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Chris Lattnerb56dcc42006-10-05 00:35:50 +0000806
Chris Lattnera637c322005-12-16 00:22:14 +0000807 switch (F->getLinkage()) {
808 default: assert(0 && "Unknown linkage type!");
809 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000810 break;
811 case Function::ExternalLinkage:
Chris Lattnerf02a9162005-10-28 18:44:07 +0000812 O << "\t.globl\t" << CurrentFnName << "\n";
Chris Lattnera637c322005-12-16 00:22:14 +0000813 break;
814 case Function::WeakLinkage:
815 case Function::LinkOnceLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000816 O << "\t.globl\t" << CurrentFnName << "\n";
817 O << "\t.weak_definition\t" << CurrentFnName << "\n";
818 break;
819 }
Chris Lattner70d41072007-01-14 06:37:54 +0000820
821 if (F->hasHiddenVisibility())
822 if (const char *Directive = TAI->getHiddenDirective())
823 O << Directive << CurrentFnName << "\n";
824
Evan Chenge22e62b2008-03-25 22:29:46 +0000825 EmitAlignment(OptimizeForSize ? 2 : 4, F);
Nate Begemaned428532004-09-04 05:00:00 +0000826 O << CurrentFnName << ":\n";
827
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000828 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000829 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000830
Bill Wendling381802f2008-01-26 06:51:24 +0000831 // If the function is empty, then we need to emit *something*. Otherwise, the
832 // function's label might be associated with something that it wasn't meant to
833 // be associated with. We emit a noop in this situation.
834 MachineFunction::iterator I = MF.begin();
835
Bill Wendling824a7212008-01-26 09:03:52 +0000836 if (++I == MF.end() && MF.front().empty())
837 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000838
Nate Begemaned428532004-09-04 05:00:00 +0000839 // Print out code for the function.
840 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
841 I != E; ++I) {
842 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000843 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000844 printBasicBlockLabel(I, true, true);
Nate Begemancdf38c42006-05-02 05:37:32 +0000845 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000846 }
Bill Wendling381802f2008-01-26 06:51:24 +0000847 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
848 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000849 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000850 printMachineInstruction(II);
851 }
852 }
Nate Begemaned428532004-09-04 05:00:00 +0000853
Chris Lattnerfea13d32006-10-05 00:26:05 +0000854 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000855 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Chris Lattnerfea13d32006-10-05 00:26:05 +0000856
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000857 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000858 DW.EndFunction();
Chris Lattner37dfa022006-10-05 00:24:46 +0000859
Nate Begemaned428532004-09-04 05:00:00 +0000860 // We didn't modify anything.
861 return false;
862}
863
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000864
Nate Begeman18ed0292005-07-21 01:25:49 +0000865bool DarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000866 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000867 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000868 "ppc",
869 "ppc601",
870 "ppc602",
871 "ppc603",
872 "ppc7400",
873 "ppc750",
874 "ppc970",
875 "ppc64"
876 };
877
878 unsigned Directive = Subtarget.getDarwinDirective();
879 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
880 Directive = PPC::DIR_970;
881 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
882 Directive = PPC::DIR_7400;
883 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
884 Directive = PPC::DIR_64;
885 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
886 O << "\t.machine " << CPUDirectives[Directive] << "\n";
Jim Laskey55a7ec32006-12-12 16:07:33 +0000887
Dan Gohmanb8275a32007-07-25 19:33:14 +0000888 bool Result = AsmPrinter::doInitialization(M);
Chris Lattner85eac0d2005-11-10 19:33:43 +0000889
890 // Darwin wants symbols to be quoted if they have complex names.
891 Mang->setUseQuotes(true);
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000892
Jim Laskey2ada0852006-11-28 18:21:52 +0000893 // Prime text sections so they are adjacent. This reduces the likelihood a
894 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000895 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000896 "pure_instructions");
897 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000898 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000899 "pure_instructions,32");
900 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000901 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000902 "pure_instructions,16");
903 }
904 SwitchToTextSection(TAI->getTextSection());
905
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000906 // Emit initial debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000907 DW.BeginModule(&M);
Dan Gohmanb8275a32007-07-25 19:33:14 +0000908 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000909}
910
Nate Begemaned428532004-09-04 05:00:00 +0000911bool DarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +0000912 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000913
914 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +0000915 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattnerdeea4162005-12-13 04:33:58 +0000916 I != E; ++I) {
917 if (!I->hasInitializer()) continue; // External global require no code
918
Chris Lattnerd1239b72005-12-13 06:32:50 +0000919 // Check to see if this is a special global used by LLVM, if so, emit it.
Evan Chengb267ca12007-01-30 08:04:53 +0000920 if (EmitSpecialLLVMGlobal(I)) {
921 if (TM.getRelocationModel() == Reloc::Static) {
922 if (I->getName() == "llvm.global_ctors")
923 O << ".reference .constructors_used\n";
924 else if (I->getName() == "llvm.global_dtors")
925 O << ".reference .destructors_used\n";
926 }
Chris Lattnerd1239b72005-12-13 06:32:50 +0000927 continue;
Evan Chengb267ca12007-01-30 08:04:53 +0000928 }
Chris Lattnerdeea4162005-12-13 04:33:58 +0000929
Chris Lattnerdeea4162005-12-13 04:33:58 +0000930 std::string name = Mang->getValueName(I);
Chris Lattner70d41072007-01-14 06:37:54 +0000931
932 if (I->hasHiddenVisibility())
933 if (const char *Directive = TAI->getHiddenDirective())
934 O << Directive << name << "\n";
935
Chris Lattnerdeea4162005-12-13 04:33:58 +0000936 Constant *C = I->getInitializer();
Evan Cheng98ded762007-03-08 01:25:25 +0000937 const Type *Type = C->getType();
Duncan Sandsca0ed742007-11-05 00:04:43 +0000938 unsigned Size = TD->getABITypeSize(Type);
Devang Patelf9c197e2006-10-24 20:32:14 +0000939 unsigned Align = TD->getPreferredAlignmentLog(I);
Chris Lattnerdeea4162005-12-13 04:33:58 +0000940
941 if (C->isNullValue() && /* FIXME: Verify correct */
Dale Johannesenaafce772008-05-14 20:12:51 +0000942 !I->hasSection() && (I->hasCommonLinkage() ||
943 I->hasInternalLinkage() || I->hasWeakLinkage() ||
Dale Johannesend15d0862008-01-17 23:04:07 +0000944 I->hasLinkOnceLinkage() || I->hasExternalLinkage())) {
Chris Lattnerdeea4162005-12-13 04:33:58 +0000945 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Chris Lattner0d7db6f2006-02-14 22:18:23 +0000946 if (I->hasExternalLinkage()) {
947 O << "\t.globl " << name << '\n';
948 O << "\t.zerofill __DATA, __common, " << name << ", "
949 << Size << ", " << Align;
950 } else if (I->hasInternalLinkage()) {
Chris Lattner219f1b52006-05-09 16:15:00 +0000951 SwitchToDataSection("\t.data", I);
Jim Laskey563321a2006-09-06 18:34:40 +0000952 O << TAI->getLCOMMDirective() << name << "," << Size << "," << Align;
Dale Johannesenea7dd402008-05-16 20:09:25 +0000953 } else if (!I->hasCommonLinkage()) {
954 O << "\t.globl " << name << "\n"
955 << TAI->getWeakDefDirective() << name << "\n";
956 SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
957 EmitAlignment(Align, I);
958 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
959 PrintUnmangledNameSafely(I, O);
960 O << "\n";
961 EmitGlobalConstant(C);
962 continue;
Chris Lattner0d7db6f2006-02-14 22:18:23 +0000963 } else {
Chris Lattner219f1b52006-05-09 16:15:00 +0000964 SwitchToDataSection("\t.data", I);
Chris Lattnerdeea4162005-12-13 04:33:58 +0000965 O << ".comm " << name << "," << Size;
Chris Lattner564da5d2008-01-02 19:35:16 +0000966 // Darwin 9 and above support aligned common data.
967 if (Subtarget.isDarwin9())
968 O << "," << Align;
Chris Lattner0d7db6f2006-02-14 22:18:23 +0000969 }
Chris Lattnerec321b42008-02-15 19:04:54 +0000970 O << "\t\t" << TAI->getCommentString() << " '";
971 PrintUnmangledNameSafely(I, O);
972 O << "'\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000973 } else {
974 switch (I->getLinkage()) {
Jim Laskey45e507c2006-12-01 14:37:39 +0000975 case GlobalValue::LinkOnceLinkage:
Chris Lattnerdeea4162005-12-13 04:33:58 +0000976 case GlobalValue::WeakLinkage:
Dale Johannesenaafce772008-05-14 20:12:51 +0000977 case GlobalValue::CommonLinkage:
Chris Lattnercec26fc2005-12-22 21:15:17 +0000978 O << "\t.globl " << name << '\n'
979 << "\t.weak_definition " << name << '\n';
Dale Johannesen247580b2008-05-24 00:10:20 +0000980 if (!I->isConstant())
981 SwitchToDataSection("\t.section __DATA,__datacoal_nt,coalesced", I);
982 else {
983 const ArrayType *AT = dyn_cast<ArrayType>(Type);
984 if (AT && AT->getElementType()==Type::Int8Ty)
985 SwitchToDataSection("\t.section __TEXT,__const_coal,coalesced", I);
986 else
987 SwitchToDataSection("\t.section __DATA,__const_coal,coalesced", I);
988 }
Chris Lattnerdeea4162005-12-13 04:33:58 +0000989 break;
990 case GlobalValue::AppendingLinkage:
991 // FIXME: appending linkage variables should go into a section of
992 // their name or something. For now, just emit them as external.
993 case GlobalValue::ExternalLinkage:
994 // If external or appending, declare as a global symbol
995 O << "\t.globl " << name << "\n";
996 // FALL THROUGH
997 case GlobalValue::InternalLinkage:
Evan Cheng31b6dda2006-10-28 05:56:51 +0000998 if (I->isConstant()) {
Evan Cheng80aa9a12006-10-26 21:48:57 +0000999 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
Evan Cheng31b6dda2006-10-28 05:56:51 +00001000 if (TAI->getCStringSection() && CVA && CVA->isCString()) {
Evan Cheng80aa9a12006-10-26 21:48:57 +00001001 SwitchToDataSection(TAI->getCStringSection(), I);
1002 break;
1003 }
1004 }
Dale Johannesen25edeb32008-01-23 00:58:14 +00001005 if (I->hasSection()) {
1006 // Honor all section names on Darwin; ObjC uses this
1007 std::string SectionName = ".section " + I->getSection();
1008 SwitchToDataSection(SectionName.c_str());
1009 } else if (!I->isConstant())
Evan Cheng98ded762007-03-08 01:25:25 +00001010 SwitchToDataSection(TAI->getDataSection(), I);
1011 else {
1012 // Read-only data.
Evan Cheng032953d2007-03-08 08:31:54 +00001013 bool HasReloc = C->ContainsRelocations();
1014 if (HasReloc &&
Evan Cheng98ded762007-03-08 01:25:25 +00001015 TM.getRelocationModel() != Reloc::Static)
1016 SwitchToDataSection("\t.const_data\n");
Evan Cheng032953d2007-03-08 08:31:54 +00001017 else if (!HasReloc && Size == 4 &&
Evan Cheng98ded762007-03-08 01:25:25 +00001018 TAI->getFourByteConstantSection())
1019 SwitchToDataSection(TAI->getFourByteConstantSection(), I);
Evan Cheng032953d2007-03-08 08:31:54 +00001020 else if (!HasReloc && Size == 8 &&
Evan Cheng98ded762007-03-08 01:25:25 +00001021 TAI->getEightByteConstantSection())
1022 SwitchToDataSection(TAI->getEightByteConstantSection(), I);
Evan Cheng032953d2007-03-08 08:31:54 +00001023 else if (!HasReloc && Size == 16 &&
Evan Cheng98ded762007-03-08 01:25:25 +00001024 TAI->getSixteenByteConstantSection())
1025 SwitchToDataSection(TAI->getSixteenByteConstantSection(), I);
1026 else if (TAI->getReadOnlySection())
1027 SwitchToDataSection(TAI->getReadOnlySection(), I);
1028 else
1029 SwitchToDataSection(TAI->getDataSection(), I);
1030 }
Chris Lattnerdeea4162005-12-13 04:33:58 +00001031 break;
1032 default:
Bill Wendlingf5da1332006-12-07 22:21:48 +00001033 cerr << "Unknown linkage type!";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001034 abort();
1035 }
1036
1037 EmitAlignment(Align, I);
Chris Lattnerec321b42008-02-15 19:04:54 +00001038 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
1039 PrintUnmangledNameSafely(I, O);
1040 O << "'\n";
Evan Cheng81cf60f2006-12-01 09:13:26 +00001041
1042 // If the initializer is a extern weak symbol, remember to emit the weak
1043 // reference!
1044 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
1045 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +00001046 ExtWeakSymbols.insert(GV);
Evan Cheng81cf60f2006-12-01 09:13:26 +00001047
Chris Lattnerdeea4162005-12-13 04:33:58 +00001048 EmitGlobalConstant(C);
Chris Lattnerbc1c2152006-01-21 01:35:26 +00001049 O << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001050 }
1051 }
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001052
Chris Lattner7e097e42006-06-27 01:02:25 +00001053 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1054
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001055 // Output stubs for dynamically-linked functions
Chris Lattner35d86fe2006-07-26 21:12:04 +00001056 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerdeea4162005-12-13 04:33:58 +00001057 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1058 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001059 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001060 "pure_instructions,32");
Chris Lattner7e097e42006-06-27 01:02:25 +00001061 EmitAlignment(4);
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001062 std::string p = *i;
1063 std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ;
1064 printSuffixedName(p, "$stub");
1065 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001066 O << "\t.indirect_symbol " << *i << "\n";
1067 O << "\tmflr r0\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001068 O << "\tbcl 20,31," << L0p << "\n";
1069 O << L0p << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001070 O << "\tmflr r11\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001071 O << "\taddis r11,r11,ha16(";
1072 printSuffixedName(p, "$lazy_ptr");
1073 O << "-" << L0p << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001074 O << "\tmtlr r0\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001075 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001076 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001077 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001078 O << "\tlwzu r12,lo16(";
1079 printSuffixedName(p, "$lazy_ptr");
1080 O << "-" << L0p << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001081 O << "\tmtctr r12\n";
1082 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001083 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001084 printSuffixedName(p, "$lazy_ptr");
1085 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001086 O << "\t.indirect_symbol " << *i << "\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001087 if (isPPC64)
1088 O << "\t.quad dyld_stub_binding_helper\n";
1089 else
1090 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001091 }
1092 } else {
1093 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1094 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001095 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001096 "pure_instructions,16");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001097 EmitAlignment(4);
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001098 std::string p = *i;
1099 printSuffixedName(p, "$stub");
1100 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001101 O << "\t.indirect_symbol " << *i << "\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001102 O << "\tlis r11,ha16(";
1103 printSuffixedName(p, "$lazy_ptr");
1104 O << ")\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001105 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001106 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001107 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001108 O << "\tlwzu r12,lo16(";
1109 printSuffixedName(p, "$lazy_ptr");
1110 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001111 O << "\tmtctr r12\n";
1112 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001113 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001114 printSuffixedName(p, "$lazy_ptr");
1115 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001116 O << "\t.indirect_symbol " << *i << "\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001117 if (isPPC64)
1118 O << "\t.quad dyld_stub_binding_helper\n";
1119 else
1120 O << "\t.long dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001121 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001122 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001123
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001124 O << "\n";
1125
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001126 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001127 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001128 // Only referenced functions get into the Personalities list.
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001129 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1130
1131 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1132 E = Personalities.end(); I != E; ++I)
1133 if (*I) GVStubs.insert("_" + (*I)->getName());
1134 }
1135
Chris Lattnera637c322005-12-16 00:22:14 +00001136 // Output stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001137 if (!GVStubs.empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001138 SwitchToDataSection(".non_lazy_symbol_pointer");
Chris Lattnera637c322005-12-16 00:22:14 +00001139 for (std::set<std::string>::iterator I = GVStubs.begin(),
1140 E = GVStubs.end(); I != E; ++I) {
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001141 std::string p = *I;
1142 printSuffixedName(p, "$non_lazy_ptr");
1143 O << ":\n";
Chris Lattnera637c322005-12-16 00:22:14 +00001144 O << "\t.indirect_symbol " << *I << "\n";
Chris Lattner9f029a62006-06-27 20:20:53 +00001145 if (isPPC64)
1146 O << "\t.quad\t0\n";
1147 else
1148 O << "\t.long\t0\n";
1149
Chris Lattnerdeea4162005-12-13 04:33:58 +00001150 }
Nate Begemane59bf592004-08-14 22:09:10 +00001151 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001152
Jim Laskey063e7652006-01-17 17:31:53 +00001153 // Emit initial debug information.
Jim Laskey99db0442006-03-23 18:09:44 +00001154 DW.EndModule();
Jim Laskey063e7652006-01-17 17:31:53 +00001155
Chris Lattner5b0ac992005-11-01 00:12:36 +00001156 // Funny Darwin hack: This flag tells the linker that no global symbols
1157 // contain code that falls through to other global symbols (e.g. the obvious
1158 // implementation of multiple entry points). If this doesn't occur, the
1159 // linker can safely perform dead code stripping. Since LLVM never generates
1160 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001161 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001162
Dan Gohmanb8275a32007-07-25 19:33:14 +00001163 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001164}
Nate Begemaned428532004-09-04 05:00:00 +00001165
Chris Lattner4da1c822006-09-20 17:12:19 +00001166
1167
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001168/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1169/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001170/// Darwin assembler can deal with.
1171///
1172FunctionPass *llvm::createPPCAsmPrinterPass(std::ostream &o,
1173 PPCTargetMachine &tm) {
Jim Laskeybf111822006-12-21 20:26:09 +00001174 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1175
1176 if (Subtarget->isDarwin()) {
1177 return new DarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
1178 } else {
1179 return new LinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
1180 }
Chris Lattner4da1c822006-09-20 17:12:19 +00001181}
1182