blob: e3186f26514ecbf77a17de79ecea7771594ea39a [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);
Anton Korobeynikov34da1272008-08-08 18:22:59 +000090
Jim Laskeyb608a4d2006-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 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 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000100
Jim Laskey40ee69f2006-12-20 21:33:34 +0000101 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000102 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000103
Jim Laskeyb608a4d2006-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 Gohman6f0d0242008-02-10 18:45:23 +0000108 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000109
Jim Laskeyb608a4d2006-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 Korobeynikov34da1272008-08-08 18:22:59 +0000115
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 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000133
Chris Lattner58873272006-02-01 22:38:46 +0000134 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);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000138
139
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 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000205
Chris Lattner9542f9712005-11-17 19:40:30 +0000206 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 << '(';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000252 if (MI->getOperand(OpNo+1).isRegister() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000253 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);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000262 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000263 printSymbolLo(MI, OpNo);
264 O << '(';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000265 if (MI->getOperand(OpNo+1).isRegister() &&
Chris Lattnere5ba5802006-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 Korobeynikov34da1272008-08-08 18:22:59 +0000272
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 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000282
283 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000284 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000285
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
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000292 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
293 struct VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Jim Laskeybf111822006-12-21 20:26:09 +0000294
295 DwarfWriter DW;
Dale Johannesen757809a2008-07-09 21:24:07 +0000296 MachineModuleInfo *MMI;
Jim Laskeybf111822006-12-21 20:26:09 +0000297
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000298 PPCLinuxAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
Jim Laskeybf111822006-12-21 20:26:09 +0000299 const TargetAsmInfo *T)
Dale Johannesen757809a2008-07-09 21:24:07 +0000300 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Jim Laskeybf111822006-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 Korobeynikov34da1272008-08-08 18:22:59 +0000310
Jim Laskeybf111822006-12-21 20:26:09 +0000311 void getAnalysisUsage(AnalysisUsage &AU) const {
312 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000313 AU.addRequired<MachineModuleInfo>();
Jim Laskeybf111822006-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;
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000320 void printModuleLevelGV(const GlobalVariable* GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000321 };
322
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000323 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
324 /// OS X
325 struct VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
326
Jim Laskey563321a2006-09-06 18:34:40 +0000327 DwarfWriter DW;
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000328 MachineModuleInfo *MMI;
Nate Begemaned428532004-09-04 05:00:00 +0000329
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000330 PPCDarwinAsmPrinter(std::ostream &O, PPCTargetMachine &TM,
331 const TargetAsmInfo *T)
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000332 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Nate Begemaned428532004-09-04 05:00:00 +0000333 }
334
335 virtual const char *getPassName() const {
336 return "Darwin PPC Assembly Printer";
337 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000338
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000339 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman18ed0292005-07-21 01:25:49 +0000340 bool doInitialization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000341 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000342
Jim Laskeyb2efb852006-01-04 22:28:25 +0000343 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000344 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000345 AU.addRequired<MachineModuleInfo>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000346 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000347 }
348
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000349 /// getSectionForFunction - Return the section that we should emit the
350 /// specified function body into.
351 virtual std::string getSectionForFunction(const Function &F) const;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000352 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000353 };
354} // end of anonymous namespace
355
Nate Begemane59bf592004-08-14 22:09:10 +0000356// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000357#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000358
Chris Lattner9ba13e42005-11-17 19:25:59 +0000359void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000360 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000361 case MachineOperand::MO_Immediate:
Bill Wendlingf5da1332006-12-07 22:21:48 +0000362 cerr << "printOp() does not handle immediate values\n";
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000363 abort();
Misha Brukman97a296f2004-07-21 20:11:11 +0000364 return;
365
Nate Begeman37efe672006-04-22 18:53:45 +0000366 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000367 printBasicBlockLabel(MO.getMBB());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000368 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000369 case MachineOperand::MO_JumpTableIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000370 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000371 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000372 // FIXME: PIC relocation model
373 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000374 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000375 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000376 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000377 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000378 case MachineOperand::MO_ExternalSymbol:
Chris Lattnera637c322005-12-16 00:22:14 +0000379 // Computing the address of an external symbol, not calling it.
Evan Cheng4c1aa862006-02-22 20:19:42 +0000380 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskey563321a2006-09-06 18:34:40 +0000381 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnera637c322005-12-16 00:22:14 +0000382 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000383 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattnera637c322005-12-16 00:22:14 +0000384 return;
385 }
Jim Laskey563321a2006-09-06 18:34:40 +0000386 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000387 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000388 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000389 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000390 GlobalValue *GV = MO.getGlobal();
391 std::string Name = Mang->getValueName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000392
Nate Begemanfcf4a422004-10-17 23:01:34 +0000393 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng4c1aa862006-02-22 20:19:42 +0000394 if (TM.getRelocationModel() != Reloc::Static) {
Reid Spencer5cbf9852007-01-30 20:08:39 +0000395 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesenaafce772008-05-14 20:12:51 +0000396 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Nate Begemand4c8bea2004-11-25 07:09:01 +0000397 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000398 printSuffixedName(Name, "$non_lazy_ptr");
Dale Johannesenea7dd402008-05-16 20:09:25 +0000399 if (GV->hasExternalWeakLinkage())
400 ExtWeakSymbols.insert(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000401 return;
402 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000403 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000404 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000405
Chris Lattner4105a9f2007-05-03 16:39:48 +0000406 if (MO.getOffset() > 0)
407 O << "+" << MO.getOffset();
408 else if (MO.getOffset() < 0)
409 O << MO.getOffset();
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000410
Evan Cheng1c45a662006-12-01 07:56:37 +0000411 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000412 ExtWeakSymbols.insert(GV);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000413 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000414 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000415
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000416 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000417 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000418 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000419 }
420}
421
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000422/// EmitExternalGlobal - In this case we need to use the indirect symbol.
423///
424void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
425 std::string Name = getGlobalLinkName(GV);
426 if (TM.getRelocationModel() != Reloc::Static) {
427 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000428 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000429 return;
430 }
431 O << Name;
432}
433
Chris Lattnere3f01572006-02-23 19:31:10 +0000434/// PrintAsmOperand - Print out an operand for an inline asm expression.
435///
436bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000437 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000438 const char *ExtraCode) {
439 // Does this asm operand have a single letter operand modifier?
440 if (ExtraCode && ExtraCode[0]) {
441 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000442
Chris Lattnere3f01572006-02-23 19:31:10 +0000443 switch (ExtraCode[0]) {
444 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000445 case 'c': // Don't print "$" before a global var name or constant.
446 // PPC never has a prefix.
447 printOperand(MI, OpNo);
448 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000449 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000450 // Verify that this operand has two consecutive registers.
451 if (!MI->getOperand(OpNo).isRegister() ||
452 OpNo+1 == MI->getNumOperands() ||
453 !MI->getOperand(OpNo+1).isRegister())
454 return true;
455 ++OpNo; // Return the high-part.
456 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000457 case 'I':
458 // Write 'i' if an integer constant, otherwise nothing. Used to print
459 // addi vs add, etc.
Dan Gohman92dfe202007-09-14 20:33:02 +0000460 if (MI->getOperand(OpNo).isImmediate())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000461 O << "i";
462 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000463 }
464 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000465
Chris Lattnere3f01572006-02-23 19:31:10 +0000466 printOperand(MI, OpNo);
467 return false;
468}
469
Chris Lattner2c003e22006-02-24 20:27:40 +0000470bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000471 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000472 const char *ExtraCode) {
473 if (ExtraCode && ExtraCode[0])
474 return true; // Unknown modifier.
Chris Lattner9aa28952007-02-01 00:39:08 +0000475 if (MI->getOperand(OpNo).isRegister())
476 printMemRegReg(MI, OpNo);
477 else
478 printMemRegImm(MI, OpNo);
Chris Lattner2c003e22006-02-24 20:27:40 +0000479 return false;
480}
Chris Lattnere3f01572006-02-23 19:31:10 +0000481
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000482void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000483 const char *Modifier) {
484 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
485 unsigned Code = MI->getOperand(OpNo).getImm();
486 if (!strcmp(Modifier, "cc")) {
487 switch ((PPC::Predicate)Code) {
488 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
489 case PPC::PRED_LT: O << "lt"; return;
490 case PPC::PRED_LE: O << "le"; return;
491 case PPC::PRED_EQ: O << "eq"; return;
492 case PPC::PRED_GE: O << "ge"; return;
493 case PPC::PRED_GT: O << "gt"; return;
494 case PPC::PRED_NE: O << "ne"; return;
495 case PPC::PRED_UN: O << "un"; return;
496 case PPC::PRED_NU: O << "nu"; return;
497 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000498
Chris Lattneraf53a872006-11-04 05:27:39 +0000499 } else {
500 assert(!strcmp(Modifier, "reg") &&
501 "Need to specify 'cc' or 'reg' as predicate op modifier!");
502 // Don't print the register for 'always'.
503 if (Code == PPC::PRED_ALWAYS) return;
504 printOperand(MI, OpNo+1);
505 }
506}
507
508
Nate Begemane59bf592004-08-14 22:09:10 +0000509/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
510/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000511///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000512void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000513 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000514
Nate Begemanad5f65c2005-04-05 18:19:50 +0000515 // Check for slwi/srwi mnemonics.
516 if (MI->getOpcode() == PPC::RLWINM) {
517 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000518 unsigned char SH = MI->getOperand(2).getImm();
519 unsigned char MB = MI->getOperand(3).getImm();
520 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000521 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000522 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000523 }
524 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000525 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000526 SH = 32-SH;
527 }
528 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000529 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000530 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000531 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000532 O << ", " << (unsigned int)SH << '\n';
Nate Begemanad5f65c2005-04-05 18:19:50 +0000533 return;
534 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000535 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000536 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000537 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000538 printOperand(MI, 0);
539 O << ", ";
540 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000541 O << '\n';
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000542 return;
543 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000544 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000545 unsigned char SH = MI->getOperand(2).getImm();
546 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000547 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
548 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000549 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000550 printOperand(MI, 0);
551 O << ", ";
552 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000553 O << ", " << (unsigned int)SH << '\n';
Chris Lattner566c1b12006-11-18 01:23:56 +0000554 return;
555 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000556 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000557
Nate Begemane59bf592004-08-14 22:09:10 +0000558 if (printInstruction(MI))
559 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000560
Nate Begemaned428532004-09-04 05:00:00 +0000561 assert(0 && "Unhandled instruction in asm writer!");
562 abort();
Nate Begemane59bf592004-08-14 22:09:10 +0000563 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000564}
565
Jim Laskeybf111822006-12-21 20:26:09 +0000566/// runOnMachineFunction - This uses the printMachineInstruction()
567/// method to print assembly for each instruction.
568///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000569bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000570
Jim Laskeybf111822006-12-21 20:26:09 +0000571 SetupMachineFunction(MF);
572 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000573
Jim Laskeybf111822006-12-21 20:26:09 +0000574 // Print out constants referenced by the function
575 EmitConstantPool(MF.getConstantPool());
576
577 // Print out labels for the function.
578 const Function *F = MF.getFunction();
579 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000580
Jim Laskeybf111822006-12-21 20:26:09 +0000581 switch (F->getLinkage()) {
582 default: assert(0 && "Unknown linkage type!");
583 case Function::InternalLinkage: // Symbols default to internal.
584 break;
585 case Function::ExternalLinkage:
586 O << "\t.global\t" << CurrentFnName << '\n'
587 << "\t.type\t" << CurrentFnName << ", @function\n";
588 break;
589 case Function::WeakLinkage:
590 case Function::LinkOnceLinkage:
591 O << "\t.global\t" << CurrentFnName << '\n';
592 O << "\t.weak\t" << CurrentFnName << '\n';
593 break;
594 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000595
Chris Lattner70d41072007-01-14 06:37:54 +0000596 if (F->hasHiddenVisibility())
597 if (const char *Directive = TAI->getHiddenDirective())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000598 O << Directive << CurrentFnName << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000599
Jim Laskeybf111822006-12-21 20:26:09 +0000600 EmitAlignment(2, F);
601 O << CurrentFnName << ":\n";
602
603 // Emit pre-function debug information.
604 DW.BeginFunction(&MF);
605
606 // Print out code for the function.
607 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
608 I != E; ++I) {
609 // Print a label for the basic block.
610 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000611 printBasicBlockLabel(I, true, true);
Jim Laskeybf111822006-12-21 20:26:09 +0000612 O << '\n';
613 }
614 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
615 II != E; ++II) {
616 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000617 printMachineInstruction(II);
618 }
619 }
620
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000621 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000622
623 // Print out jump tables referenced by the function.
624 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000625
Jim Laskeybf111822006-12-21 20:26:09 +0000626 // Emit post-function debug information.
627 DW.EndFunction();
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000628
Jim Laskeybf111822006-12-21 20:26:09 +0000629 // We didn't modify anything.
630 return false;
631}
632
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000633bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohmanb8275a32007-07-25 19:33:14 +0000634 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000635
Dale Johannesen757809a2008-07-09 21:24:07 +0000636 // Emit initial debug information.
637 DW.BeginModule(&M);
638
639 // AsmPrinter::doInitialization should have done this analysis.
640 MMI = getAnalysisToUpdate<MachineModuleInfo>();
641 assert(MMI);
642 DW.SetModuleInfo(MMI);
643
Jim Laskeybf111822006-12-21 20:26:09 +0000644 // GNU as handles section names wrapped in quotes
645 Mang->setUseQuotes(true);
646
647 SwitchToTextSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000648
Dan Gohmanb8275a32007-07-25 19:33:14 +0000649 return Result;
Jim Laskeybf111822006-12-21 20:26:09 +0000650}
651
Chris Lattnerec321b42008-02-15 19:04:54 +0000652/// PrintUnmangledNameSafely - Print out the printable characters in the name.
653/// Don't print things like \n or \0.
654static void PrintUnmangledNameSafely(const Value *V, std::ostream &OS) {
655 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
656 Name != E; ++Name)
657 if (isprint(*Name))
658 OS << *Name;
659}
660
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000661void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000662 const TargetData *TD = TM.getTargetData();
663
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000664 if (!GVar->hasInitializer())
665 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000666
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000667 // Check to see if this is a special global used by LLVM, if so, emit it.
668 if (EmitSpecialLLVMGlobal(GVar))
669 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000670
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000671 std::string name = Mang->getValueName(GVar);
672 std::string SectionName = TAI->SectionForGlobal(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000673
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000674 if (GVar->hasHiddenVisibility())
675 if (const char *Directive = TAI->getHiddenDirective())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000676 O << Directive << name << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000677
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000678 Constant *C = GVar->getInitializer();
679 const Type *Type = C->getType();
680 unsigned Size = TD->getABITypeSize(Type);
681 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000682
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000683 SwitchToDataSection(SectionName.c_str());
684
685 if (C->isNullValue() && /* FIXME: Verify correct */
686 !GVar->hasSection() &&
687 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
688 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000689 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000690
691 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000692 O << "\t.global " << name << '\n';
693 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000694 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000695 O << "\t.zero " << Size << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000696 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000697 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000698 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000699 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000700 }
Chris Lattnerec321b42008-02-15 19:04:54 +0000701 O << "\t\t" << TAI->getCommentString() << " '";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000702 PrintUnmangledNameSafely(GVar, O);
Chris Lattnerec321b42008-02-15 19:04:54 +0000703 O << "'\n";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000704 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000705 }
706
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000707 switch (GVar->getLinkage()) {
708 case GlobalValue::LinkOnceLinkage:
709 case GlobalValue::WeakLinkage:
710 case GlobalValue::CommonLinkage:
711 O << "\t.global " << name << '\n'
712 << "\t.type " << name << ", @object\n"
713 << "\t.weak " << name << '\n';
714 break;
715 case GlobalValue::AppendingLinkage:
716 // FIXME: appending linkage variables should go into a section of
717 // their name or something. For now, just emit them as external.
718 case GlobalValue::ExternalLinkage:
719 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000720 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000721 << "\t.type " << name << ", @object\n";
722 // FALL THROUGH
723 case GlobalValue::InternalLinkage:
724 break;
725 default:
726 cerr << "Unknown linkage type!";
727 abort();
728 }
729
730 EmitAlignment(Align, GVar);
731 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
732 PrintUnmangledNameSafely(GVar, O);
733 O << "'\n";
734
735 // If the initializer is a extern weak symbol, remember to emit the weak
736 // reference!
737 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
738 if (GV->hasExternalWeakLinkage())
739 ExtWeakSymbols.insert(GV);
740
741 EmitGlobalConstant(C);
742 O << '\n';
743}
744
745bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
746 // Print out module-level global variables here.
747 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
748 I != E; ++I)
749 printModuleLevelGV(I);
750
Jim Laskeybf111822006-12-21 20:26:09 +0000751 // TODO
752
753 // Emit initial debug information.
754 DW.EndModule();
755
Dan Gohmanb8275a32007-07-25 19:33:14 +0000756 return AsmPrinter::doFinalization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000757}
758
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000759std::string PPCLinuxAsmPrinter::getSectionForFunction(const Function &F) const {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000760 return TAI->SectionForGlobal(&F);
Jim Laskeybf111822006-12-21 20:26:09 +0000761}
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000762
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000763std::string PPCDarwinAsmPrinter::getSectionForFunction(const Function &F) const {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000764 return TAI->SectionForGlobal(&F);
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000765}
766
Nate Begemaned428532004-09-04 05:00:00 +0000767/// runOnMachineFunction - This uses the printMachineInstruction()
768/// method to print assembly for each instruction.
769///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000770bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner8b8b9512005-11-21 07:51:23 +0000771 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000772 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000773
Nate Begemaned428532004-09-04 05:00:00 +0000774 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000775 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000776
777 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000778 const Function *F = MF.getFunction();
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000779 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000780
Chris Lattnera637c322005-12-16 00:22:14 +0000781 switch (F->getLinkage()) {
782 default: assert(0 && "Unknown linkage type!");
783 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000784 break;
785 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000786 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000787 break;
788 case Function::WeakLinkage:
789 case Function::LinkOnceLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000790 O << "\t.globl\t" << CurrentFnName << '\n';
791 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000792 break;
793 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000794
Chris Lattner70d41072007-01-14 06:37:54 +0000795 if (F->hasHiddenVisibility())
796 if (const char *Directive = TAI->getHiddenDirective())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000797 O << Directive << CurrentFnName << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000798
Evan Chenge22e62b2008-03-25 22:29:46 +0000799 EmitAlignment(OptimizeForSize ? 2 : 4, F);
Nate Begemaned428532004-09-04 05:00:00 +0000800 O << CurrentFnName << ":\n";
801
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000802 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000803 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000804
Bill Wendling381802f2008-01-26 06:51:24 +0000805 // If the function is empty, then we need to emit *something*. Otherwise, the
806 // function's label might be associated with something that it wasn't meant to
807 // be associated with. We emit a noop in this situation.
808 MachineFunction::iterator I = MF.begin();
809
Bill Wendling824a7212008-01-26 09:03:52 +0000810 if (++I == MF.end() && MF.front().empty())
811 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000812
Nate Begemaned428532004-09-04 05:00:00 +0000813 // Print out code for the function.
814 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
815 I != E; ++I) {
816 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000817 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000818 printBasicBlockLabel(I, true, true);
Nate Begemancdf38c42006-05-02 05:37:32 +0000819 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000820 }
Bill Wendling381802f2008-01-26 06:51:24 +0000821 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
822 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000823 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000824 printMachineInstruction(II);
825 }
826 }
Nate Begemaned428532004-09-04 05:00:00 +0000827
Chris Lattnerfea13d32006-10-05 00:26:05 +0000828 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000829 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000830
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000831 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000832 DW.EndFunction();
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000833
Nate Begemaned428532004-09-04 05:00:00 +0000834 // We didn't modify anything.
835 return false;
836}
837
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000838
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000839bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000840 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000841 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000842 "ppc",
843 "ppc601",
844 "ppc602",
845 "ppc603",
846 "ppc7400",
847 "ppc750",
848 "ppc970",
849 "ppc64"
850 };
851
852 unsigned Directive = Subtarget.getDarwinDirective();
853 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
854 Directive = PPC::DIR_970;
855 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
856 Directive = PPC::DIR_7400;
857 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
858 Directive = PPC::DIR_64;
859 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000860 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000861
Dan Gohmanb8275a32007-07-25 19:33:14 +0000862 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000863
Dale Johannesen94618eb2008-07-09 20:43:39 +0000864 // Emit initial debug information.
865 DW.BeginModule(&M);
866
867 // We need this for Personality functions.
868 // AsmPrinter::doInitialization should have done this analysis.
869 MMI = getAnalysisToUpdate<MachineModuleInfo>();
870 assert(MMI);
871 DW.SetModuleInfo(MMI);
872
Chris Lattner85eac0d2005-11-10 19:33:43 +0000873 // Darwin wants symbols to be quoted if they have complex names.
874 Mang->setUseQuotes(true);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000875
Jim Laskey2ada0852006-11-28 18:21:52 +0000876 // Prime text sections so they are adjacent. This reduces the likelihood a
877 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000878 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000879 "pure_instructions");
880 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000881 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000882 "pure_instructions,32");
883 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000884 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000885 "pure_instructions,16");
886 }
887 SwitchToTextSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000888
Dan Gohmanb8275a32007-07-25 19:33:14 +0000889 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000890}
891
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000892void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
893 const TargetData *TD = TM.getTargetData();
894
895 if (!GVar->hasInitializer())
896 return; // External global require no code
897
898 // Check to see if this is a special global used by LLVM, if so, emit it.
899 if (EmitSpecialLLVMGlobal(GVar)) {
900 if (TM.getRelocationModel() == Reloc::Static) {
901 if (GVar->getName() == "llvm.global_ctors")
902 O << ".reference .constructors_used\n";
903 else if (GVar->getName() == "llvm.global_dtors")
904 O << ".reference .destructors_used\n";
905 }
906 return;
907 }
908
909 std::string name = Mang->getValueName(GVar);
910 std::string SectionName = TAI->SectionForGlobal(GVar);
911
912 if (GVar->hasHiddenVisibility())
913 if (const char *Directive = TAI->getHiddenDirective())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000914 O << Directive << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000915
916 Constant *C = GVar->getInitializer();
917 const Type *Type = C->getType();
918 unsigned Size = TD->getABITypeSize(Type);
919 unsigned Align = TD->getPreferredAlignmentLog(GVar);
920
921 SwitchToDataSection(SectionName.c_str());
922
923 if (C->isNullValue() && /* FIXME: Verify correct */
924 !GVar->hasSection() &&
925 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
926 GVar->isWeakForLinker())) {
927 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
928
929 if (GVar->hasExternalLinkage()) {
930 O << "\t.globl " << name << '\n';
931 O << "\t.zerofill __DATA, __common, " << name << ", "
932 << Size << ", " << Align;
933 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000934 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000935 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000936 O << "\t.globl " << name << '\n'
937 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000938 EmitAlignment(Align, GVar);
939 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
940 PrintUnmangledNameSafely(GVar, O);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000941 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000942 EmitGlobalConstant(C);
943 return;
944 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000945 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000946 // Darwin 9 and above support aligned common data.
947 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000948 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000949 }
950 O << "\t\t" << TAI->getCommentString() << " '";
951 PrintUnmangledNameSafely(GVar, O);
952 O << "'\n";
953 return;
954 }
955
956 switch (GVar->getLinkage()) {
957 case GlobalValue::LinkOnceLinkage:
958 case GlobalValue::WeakLinkage:
959 case GlobalValue::CommonLinkage:
960 O << "\t.globl " << name << '\n'
961 << "\t.weak_definition " << name << '\n';
962 break;
963 case GlobalValue::AppendingLinkage:
964 // FIXME: appending linkage variables should go into a section of
965 // their name or something. For now, just emit them as external.
966 case GlobalValue::ExternalLinkage:
967 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000968 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000969 // FALL THROUGH
970 case GlobalValue::InternalLinkage:
971 break;
972 default:
973 cerr << "Unknown linkage type!";
974 abort();
975 }
976
977 EmitAlignment(Align, GVar);
978 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
979 PrintUnmangledNameSafely(GVar, O);
980 O << "'\n";
981
982 // If the initializer is a extern weak symbol, remember to emit the weak
983 // reference!
984 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
985 if (GV->hasExternalWeakLinkage())
986 ExtWeakSymbols.insert(GV);
987
988 EmitGlobalConstant(C);
989 O << '\n';
990}
991
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000992bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +0000993 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000994
995 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +0000996 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000997 I != E; ++I)
998 printModuleLevelGV(I);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000999
Chris Lattner7e097e42006-06-27 01:02:25 +00001000 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1001
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001002 // Output stubs for dynamically-linked functions
Chris Lattner35d86fe2006-07-26 21:12:04 +00001003 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerdeea4162005-12-13 04:33:58 +00001004 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1005 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001006 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001007 "pure_instructions,32");
Chris Lattner7e097e42006-06-27 01:02:25 +00001008 EmitAlignment(4);
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001009 std::string p = *i;
1010 std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ;
1011 printSuffixedName(p, "$stub");
1012 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001013 O << "\t.indirect_symbol " << *i << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001014 O << "\tmflr r0\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001015 O << "\tbcl 20,31," << L0p << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001016 O << L0p << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001017 O << "\tmflr r11\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001018 O << "\taddis r11,r11,ha16(";
1019 printSuffixedName(p, "$lazy_ptr");
1020 O << "-" << L0p << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001021 O << "\tmtlr r0\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001022 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001023 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001024 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001025 O << "\tlwzu r12,lo16(";
1026 printSuffixedName(p, "$lazy_ptr");
1027 O << "-" << L0p << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001028 O << "\tmtctr r12\n";
1029 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001030 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001031 printSuffixedName(p, "$lazy_ptr");
1032 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001033 O << "\t.indirect_symbol " << *i << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001034 if (isPPC64)
1035 O << "\t.quad dyld_stub_binding_helper\n";
1036 else
1037 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001038 }
1039 } else {
1040 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1041 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001042 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001043 "pure_instructions,16");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001044 EmitAlignment(4);
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001045 std::string p = *i;
1046 printSuffixedName(p, "$stub");
1047 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001048 O << "\t.indirect_symbol " << *i << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001049 O << "\tlis r11,ha16(";
1050 printSuffixedName(p, "$lazy_ptr");
1051 O << ")\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001052 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001053 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001054 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001055 O << "\tlwzu r12,lo16(";
1056 printSuffixedName(p, "$lazy_ptr");
1057 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001058 O << "\tmtctr r12\n";
1059 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001060 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001061 printSuffixedName(p, "$lazy_ptr");
1062 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001063 O << "\t.indirect_symbol " << *i << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001064 if (isPPC64)
1065 O << "\t.quad dyld_stub_binding_helper\n";
1066 else
1067 O << "\t.long dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001068 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001069 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001070
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001071 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001072
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001073 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001074 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001075 // Only referenced functions get into the Personalities list.
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001076 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1077
1078 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1079 E = Personalities.end(); I != E; ++I)
1080 if (*I) GVStubs.insert("_" + (*I)->getName());
1081 }
1082
Chris Lattnera637c322005-12-16 00:22:14 +00001083 // Output stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001084 if (!GVStubs.empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001085 SwitchToDataSection(".non_lazy_symbol_pointer");
Chris Lattnera637c322005-12-16 00:22:14 +00001086 for (std::set<std::string>::iterator I = GVStubs.begin(),
1087 E = GVStubs.end(); I != E; ++I) {
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001088 std::string p = *I;
1089 printSuffixedName(p, "$non_lazy_ptr");
1090 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001091 O << "\t.indirect_symbol " << *I << '\n';
Chris Lattner9f029a62006-06-27 20:20:53 +00001092 if (isPPC64)
1093 O << "\t.quad\t0\n";
1094 else
1095 O << "\t.long\t0\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001096 }
Nate Begemane59bf592004-08-14 22:09:10 +00001097 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001098
Jim Laskey063e7652006-01-17 17:31:53 +00001099 // Emit initial debug information.
Jim Laskey99db0442006-03-23 18:09:44 +00001100 DW.EndModule();
Jim Laskey063e7652006-01-17 17:31:53 +00001101
Chris Lattner5b0ac992005-11-01 00:12:36 +00001102 // Funny Darwin hack: This flag tells the linker that no global symbols
1103 // contain code that falls through to other global symbols (e.g. the obvious
1104 // implementation of multiple entry points). If this doesn't occur, the
1105 // linker can safely perform dead code stripping. Since LLVM never generates
1106 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001107 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001108
Dan Gohmanb8275a32007-07-25 19:33:14 +00001109 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001110}
Nate Begemaned428532004-09-04 05:00:00 +00001111
Chris Lattner4da1c822006-09-20 17:12:19 +00001112
1113
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001114/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1115/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001116/// Darwin assembler can deal with.
1117///
1118FunctionPass *llvm::createPPCAsmPrinterPass(std::ostream &o,
1119 PPCTargetMachine &tm) {
Jim Laskeybf111822006-12-21 20:26:09 +00001120 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1121
1122 if (Subtarget->isDarwin()) {
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001123 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskeybf111822006-12-21 20:26:09 +00001124 } else {
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001125 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskeybf111822006-12-21 20:26:09 +00001126 }
Chris Lattner4da1c822006-09-20 17:12:19 +00001127}