blob: 20589935fb62351c55eb0fd77296cd90837da9d0 [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"
Owen Andersoncb371882008-08-21 00:14:44 +000039#include "llvm/Support/raw_ostream.h"
Jim Laskey563321a2006-09-06 18:34:40 +000040#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000041#include "llvm/Target/TargetRegisterInfo.h"
Nate Begemand4c8bea2004-11-25 07:09:01 +000042#include "llvm/Target/TargetInstrInfo.h"
Evan Chengd2ee2182006-02-18 00:08:58 +000043#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000044#include "llvm/ADT/Statistic.h"
45#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000046#include "llvm/ADT/StringSet.h"
Chris Lattnera3840792004-08-16 23:25:21 +000047using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000048
Chris Lattner95b2c7d2006-12-19 22:59:26 +000049STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukman5dfe3a92004-06-21 16:55:25 +000050
Chris Lattner95b2c7d2006-12-19 22:59:26 +000051namespace {
Jim Laskey563321a2006-09-06 18:34:40 +000052 struct VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
Evan Chengae94e592008-12-05 01:06:39 +000053 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Chris Lattnerdadceed2006-09-20 17:07:15 +000054 const PPCSubtarget &Subtarget;
Evan Cheng1c45a662006-12-01 07:56:37 +000055
Owen Andersoncb371882008-08-21 00:14:44 +000056 PPCAsmPrinter(raw_ostream &O, TargetMachine &TM, const TargetAsmInfo *T)
Chris Lattnerdadceed2006-09-20 17:07:15 +000057 : AsmPrinter(O, TM, T), Subtarget(TM.getSubtarget<PPCSubtarget>()) {
58 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +000059
Misha Brukman5dfe3a92004-06-21 16:55:25 +000060 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000061 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000062 }
63
Nate Begeman21e463b2005-10-16 05:39:50 +000064 PPCTargetMachine &getTM() {
65 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000066 }
67
Nate Begemanadeb43d2005-07-20 22:42:00 +000068 unsigned enumRegToMachineReg(unsigned enumReg) {
69 switch (enumReg) {
70 default: assert(0 && "Unhandled register!"); break;
71 case PPC::CR0: return 0;
72 case PPC::CR1: return 1;
73 case PPC::CR2: return 2;
74 case PPC::CR3: return 3;
75 case PPC::CR4: return 4;
76 case PPC::CR5: return 5;
77 case PPC::CR6: return 6;
78 case PPC::CR7: return 7;
79 }
80 abort();
81 }
82
Nate Begemane59bf592004-08-14 22:09:10 +000083 /// printInstruction - This method is automatically generated by tablegen
84 /// from the instruction set description. This method returns true if the
85 /// machine instruction was sufficiently described to print it, otherwise it
86 /// returns false.
87 bool printInstruction(const MachineInstr *MI);
88
Misha Brukman5dfe3a92004-06-21 16:55:25 +000089 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +000090 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +000091
Jim Laskeyb608a4d2006-12-20 20:56:46 +000092 /// stripRegisterPrefix - This method strips the character prefix from a
93 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +000094 const char *stripRegisterPrefix(const char *RegName) {
95 switch (RegName[0]) {
96 case 'r':
97 case 'f':
98 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +000099 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000100 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000101
Jim Laskey40ee69f2006-12-20 21:33:34 +0000102 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000103 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000104
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000105 /// printRegister - Print register according to target requirements.
106 ///
107 void printRegister(const MachineOperand &MO, bool R0AsZero) {
108 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000109 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000110
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000111 // If we should use 0 for R0.
112 if (R0AsZero && RegNo == PPC::R0) {
113 O << "0";
114 return;
115 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000116
Bill Wendling74ab84c2008-02-26 21:11:01 +0000117 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000118 // Linux assembler (Others?) does not take register mnemonics.
119 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000120 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
121 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000122 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000123
Chris Lattner58873272006-02-01 22:38:46 +0000124 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000125 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000126 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000127 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000128 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000129 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000130 } else {
131 printOp(MO);
132 }
133 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000134
Chris Lattner58873272006-02-01 22:38:46 +0000135 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000136 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000137 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
138 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000139
140
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000141 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000142 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000143 value = (value << (32-5)) >> (32-5);
144 O << (int)value;
145 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000146 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000147 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000148 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000149 O << (unsigned int)value;
150 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000151 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000152 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000153 assert(value <= 63 && "Invalid u6imm argument!");
154 O << (unsigned int)value;
155 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000156 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000157 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000158 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000159 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000160 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000161 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000162 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000163 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000164 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000165 } else {
166 O << "lo16(";
167 printOp(MI->getOperand(OpNo));
168 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000169 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000170 else
171 O << ')';
172 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000173 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000174 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000175 // Branches can take an immediate operand. This is used by the branch
176 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000177 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000178 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000179 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000180 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000181 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000182 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000183 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000184 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000185 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000186 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
187 GlobalValue *GV = MO.getGlobal();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000188 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesenaafce772008-05-14 20:12:51 +0000189 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Chris Lattnera637c322005-12-16 00:22:14 +0000190 // Dynamically-resolved functions need a stub for the function.
191 std::string Name = Mang->getValueName(GV);
192 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000193 printSuffixedName(Name, "$stub");
Evan Cheng1c45a662006-12-01 07:56:37 +0000194 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000195 ExtWeakSymbols.insert(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000196 return;
197 }
198 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000199 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Jim Laskey563321a2006-09-06 18:34:40 +0000200 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattner9542f9712005-11-17 19:40:30 +0000201 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000202 printSuffixedName(Name, "$stub");
Chris Lattner9542f9712005-11-17 19:40:30 +0000203 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000204 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000205 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000206
Chris Lattner9542f9712005-11-17 19:40:30 +0000207 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000208 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000209 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000210 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000211 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000212 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000213 O << "\"L" << getFunctionNumber() << "$pb\"\n";
214 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000215 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000216 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000217 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000218 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000219 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000220 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000221 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000222 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000223 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000224 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000225 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000226 else
227 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000228 }
Nate Begemaned428532004-09-04 05:00:00 +0000229 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000230 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000231 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000232 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000233 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000234 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000235 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000236 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000237 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000238 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000239 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000240 else
241 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000242 }
243 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000244 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000245 unsigned CCReg = MI->getOperand(OpNo).getReg();
246 unsigned RegNo = enumRegToMachineReg(CCReg);
247 O << (0x80 >> RegNo);
248 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000249 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000250 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
251 printSymbolLo(MI, OpNo);
252 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000253 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000254 MI->getOperand(OpNo+1).getReg() == PPC::R0)
255 O << "0";
256 else
257 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000258 O << ')';
259 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000260 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000261 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000262 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000263 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000264 printSymbolLo(MI, OpNo);
265 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000266 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000267 MI->getOperand(OpNo+1).getReg() == PPC::R0)
268 O << "0";
269 else
270 printOperand(MI, OpNo+1);
271 O << ')';
272 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000273
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000274 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000275 // When used as the base register, r0 reads constant zero rather than
276 // the value contained in the register. For this reason, the darwin
277 // assembler requires that we print r0 as 0 (no r) when used as the base.
278 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000279 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000280 O << ", ";
281 printOperand(MI, OpNo+1);
282 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000283
284 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000285 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000286
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000287 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000288 virtual bool doFinalization(Module &M) = 0;
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000289
290 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begemaned428532004-09-04 05:00:00 +0000291 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000292
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000293 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
294 struct VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Devang Pateleb3fc282009-01-08 23:40:34 +0000295 DwarfWriter *DW;
Dale Johannesen757809a2008-07-09 21:24:07 +0000296 MachineModuleInfo *MMI;
Jim Laskeybf111822006-12-21 20:26:09 +0000297
Owen Andersoncb371882008-08-21 00:14:44 +0000298 PPCLinuxAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Jim Laskeybf111822006-12-21 20:26:09 +0000299 const TargetAsmInfo *T)
Devang Pateleb3fc282009-01-08 23:40:34 +0000300 : PPCAsmPrinter(O, TM, T), DW(0), 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>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000314 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000315 PPCAsmPrinter::getAnalysisUsage(AU);
316 }
317
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000318 void printModuleLevelGV(const GlobalVariable* GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000319 };
320
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000321 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
322 /// OS X
323 struct VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
324
Devang Pateleb3fc282009-01-08 23:40:34 +0000325 DwarfWriter *DW;
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000326 MachineModuleInfo *MMI;
Devang Pateleb3fc282009-01-08 23:40:34 +0000327 raw_ostream &OS;
Owen Andersoncb371882008-08-21 00:14:44 +0000328 PPCDarwinAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000329 const TargetAsmInfo *T)
Devang Pateleb3fc282009-01-08 23:40:34 +0000330 : PPCAsmPrinter(O, TM, T), DW(0), MMI(0), OS(O) {
Nate Begemaned428532004-09-04 05:00:00 +0000331 }
332
333 virtual const char *getPassName() const {
334 return "Darwin PPC Assembly Printer";
335 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +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);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000340
Jim Laskeyb2efb852006-01-04 22:28:25 +0000341 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>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000344 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000345 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000346 }
347
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000348 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000349 };
350} // end of anonymous namespace
351
Nate Begemane59bf592004-08-14 22:09:10 +0000352// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000353#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000354
Chris Lattner9ba13e42005-11-17 19:25:59 +0000355void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000356 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000357 case MachineOperand::MO_Immediate:
Bill Wendlingf5da1332006-12-07 22:21:48 +0000358 cerr << "printOp() does not handle immediate values\n";
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000359 abort();
Misha Brukman97a296f2004-07-21 20:11:11 +0000360 return;
361
Nate Begeman37efe672006-04-22 18:53:45 +0000362 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000363 printBasicBlockLabel(MO.getMBB());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000364 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000365 case MachineOperand::MO_JumpTableIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000366 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000367 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000368 // FIXME: PIC relocation model
369 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000370 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000371 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000372 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000373 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000374 case MachineOperand::MO_ExternalSymbol:
Chris Lattnera637c322005-12-16 00:22:14 +0000375 // Computing the address of an external symbol, not calling it.
Evan Cheng4c1aa862006-02-22 20:19:42 +0000376 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskey563321a2006-09-06 18:34:40 +0000377 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnera637c322005-12-16 00:22:14 +0000378 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000379 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattnera637c322005-12-16 00:22:14 +0000380 return;
381 }
Jim Laskey563321a2006-09-06 18:34:40 +0000382 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000383 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000384 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000385 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000386 GlobalValue *GV = MO.getGlobal();
387 std::string Name = Mang->getValueName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000388
Nate Begemanfcf4a422004-10-17 23:01:34 +0000389 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng4c1aa862006-02-22 20:19:42 +0000390 if (TM.getRelocationModel() != Reloc::Static) {
Evan Chengae94e592008-12-05 01:06:39 +0000391 if (GV->isDeclaration() || GV->mayBeOverridden()) {
392 if (GV->hasHiddenVisibility()) {
393 if (!GV->isDeclaration() && !GV->hasCommonLinkage())
394 O << Name;
395 else {
396 HiddenGVStubs.insert(Name);
397 printSuffixedName(Name, "$non_lazy_ptr");
398 }
399 } else {
400 GVStubs.insert(Name);
401 printSuffixedName(Name, "$non_lazy_ptr");
402 }
Dale Johannesenea7dd402008-05-16 20:09:25 +0000403 if (GV->hasExternalWeakLinkage())
404 ExtWeakSymbols.insert(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000405 return;
406 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000407 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000408 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000409
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000410 printOffset(MO.getOffset());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000411
Evan Cheng1c45a662006-12-01 07:56:37 +0000412 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000413 ExtWeakSymbols.insert(GV);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000414 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000415 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000416
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000417 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000418 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000419 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000420 }
421}
422
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000423/// EmitExternalGlobal - In this case we need to use the indirect symbol.
424///
425void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
426 std::string Name = getGlobalLinkName(GV);
427 if (TM.getRelocationModel() != Reloc::Static) {
Evan Chengae94e592008-12-05 01:06:39 +0000428 if (GV->hasHiddenVisibility())
429 HiddenGVStubs.insert(Name);
430 else
431 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000432 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000433 return;
434 }
435 O << Name;
436}
437
Chris Lattnere3f01572006-02-23 19:31:10 +0000438/// PrintAsmOperand - Print out an operand for an inline asm expression.
439///
440bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000441 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000442 const char *ExtraCode) {
443 // Does this asm operand have a single letter operand modifier?
444 if (ExtraCode && ExtraCode[0]) {
445 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000446
Chris Lattnere3f01572006-02-23 19:31:10 +0000447 switch (ExtraCode[0]) {
448 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000449 case 'c': // Don't print "$" before a global var name or constant.
450 // PPC never has a prefix.
451 printOperand(MI, OpNo);
452 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000453 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000454 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000455 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000456 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000457 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000458 return true;
459 ++OpNo; // Return the high-part.
460 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000461 case 'I':
462 // Write 'i' if an integer constant, otherwise nothing. Used to print
463 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000464 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000465 O << "i";
466 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000467 }
468 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000469
Chris Lattnere3f01572006-02-23 19:31:10 +0000470 printOperand(MI, OpNo);
471 return false;
472}
473
Chris Lattner2c003e22006-02-24 20:27:40 +0000474bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000475 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000476 const char *ExtraCode) {
477 if (ExtraCode && ExtraCode[0])
478 return true; // Unknown modifier.
Dan Gohmand735b802008-10-03 15:45:36 +0000479 if (MI->getOperand(OpNo).isReg())
Chris Lattner9aa28952007-02-01 00:39:08 +0000480 printMemRegReg(MI, OpNo);
481 else
482 printMemRegImm(MI, OpNo);
Chris Lattner2c003e22006-02-24 20:27:40 +0000483 return false;
484}
Chris Lattnere3f01572006-02-23 19:31:10 +0000485
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000486void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000487 const char *Modifier) {
488 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
489 unsigned Code = MI->getOperand(OpNo).getImm();
490 if (!strcmp(Modifier, "cc")) {
491 switch ((PPC::Predicate)Code) {
492 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
493 case PPC::PRED_LT: O << "lt"; return;
494 case PPC::PRED_LE: O << "le"; return;
495 case PPC::PRED_EQ: O << "eq"; return;
496 case PPC::PRED_GE: O << "ge"; return;
497 case PPC::PRED_GT: O << "gt"; return;
498 case PPC::PRED_NE: O << "ne"; return;
499 case PPC::PRED_UN: O << "un"; return;
500 case PPC::PRED_NU: O << "nu"; return;
501 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000502
Chris Lattneraf53a872006-11-04 05:27:39 +0000503 } else {
504 assert(!strcmp(Modifier, "reg") &&
505 "Need to specify 'cc' or 'reg' as predicate op modifier!");
506 // Don't print the register for 'always'.
507 if (Code == PPC::PRED_ALWAYS) return;
508 printOperand(MI, OpNo+1);
509 }
510}
511
512
Nate Begemane59bf592004-08-14 22:09:10 +0000513/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
514/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000515///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000516void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000517 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000518
Nate Begemanad5f65c2005-04-05 18:19:50 +0000519 // Check for slwi/srwi mnemonics.
520 if (MI->getOpcode() == PPC::RLWINM) {
521 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000522 unsigned char SH = MI->getOperand(2).getImm();
523 unsigned char MB = MI->getOperand(3).getImm();
524 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000525 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000526 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000527 }
528 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000529 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000530 SH = 32-SH;
531 }
532 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000533 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000534 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000535 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000536 O << ", " << (unsigned int)SH << '\n';
Nate Begemanad5f65c2005-04-05 18:19:50 +0000537 return;
538 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000539 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000540 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000541 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000542 printOperand(MI, 0);
543 O << ", ";
544 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000545 O << '\n';
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000546 return;
547 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000548 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000549 unsigned char SH = MI->getOperand(2).getImm();
550 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000551 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
552 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000553 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000554 printOperand(MI, 0);
555 O << ", ";
556 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000557 O << ", " << (unsigned int)SH << '\n';
Chris Lattner566c1b12006-11-18 01:23:56 +0000558 return;
559 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000560 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000561
Nate Begemane59bf592004-08-14 22:09:10 +0000562 if (printInstruction(MI))
563 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000564
Nate Begemaned428532004-09-04 05:00:00 +0000565 assert(0 && "Unhandled instruction in asm writer!");
566 abort();
Nate Begemane59bf592004-08-14 22:09:10 +0000567 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000568}
569
Jim Laskeybf111822006-12-21 20:26:09 +0000570/// runOnMachineFunction - This uses the printMachineInstruction()
571/// method to print assembly for each instruction.
572///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000573bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000574
Jim Laskeybf111822006-12-21 20:26:09 +0000575 SetupMachineFunction(MF);
576 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000577
Jim Laskeybf111822006-12-21 20:26:09 +0000578 // Print out constants referenced by the function
579 EmitConstantPool(MF.getConstantPool());
580
581 // Print out labels for the function.
582 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000583 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000584
Jim Laskeybf111822006-12-21 20:26:09 +0000585 switch (F->getLinkage()) {
586 default: assert(0 && "Unknown linkage type!");
587 case Function::InternalLinkage: // Symbols default to internal.
588 break;
589 case Function::ExternalLinkage:
590 O << "\t.global\t" << CurrentFnName << '\n'
591 << "\t.type\t" << CurrentFnName << ", @function\n";
592 break;
593 case Function::WeakLinkage:
594 case Function::LinkOnceLinkage:
595 O << "\t.global\t" << CurrentFnName << '\n';
596 O << "\t.weak\t" << CurrentFnName << '\n';
597 break;
598 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000599
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000600 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000601
Jim Laskeybf111822006-12-21 20:26:09 +0000602 EmitAlignment(2, F);
603 O << CurrentFnName << ":\n";
604
605 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000606 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000607
608 // Print out code for the function.
609 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
610 I != E; ++I) {
611 // Print a label for the basic block.
612 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000613 printBasicBlockLabel(I, true, true);
Jim Laskeybf111822006-12-21 20:26:09 +0000614 O << '\n';
615 }
616 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
617 II != E; ++II) {
618 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000619 printMachineInstruction(II);
620 }
621 }
622
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000623 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000624
625 // Print out jump tables referenced by the function.
626 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000627
Dale Johannesenf94a3272008-12-03 19:33:10 +0000628 SwitchToSection(TAI->SectionForGlobal(F));
629
Jim Laskeybf111822006-12-21 20:26:09 +0000630 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000631 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000632
Dan Gohmane5f4de42008-11-07 19:49:17 +0000633 O.flush();
634
Jim Laskeybf111822006-12-21 20:26:09 +0000635 // We didn't modify anything.
636 return false;
637}
638
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000639bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohmanb8275a32007-07-25 19:33:14 +0000640 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000641
Dale Johannesen757809a2008-07-09 21:24:07 +0000642 // Emit initial debug information.
Dale Johannesen757809a2008-07-09 21:24:07 +0000643 MMI = getAnalysisToUpdate<MachineModuleInfo>();
644 assert(MMI);
Devang Pateleb3fc282009-01-08 23:40:34 +0000645 DW = getAnalysisToUpdate<DwarfWriter>();
646 assert(DW && "DwarfWriter is not available");
647 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesen757809a2008-07-09 21:24:07 +0000648
Jim Laskeybf111822006-12-21 20:26:09 +0000649 // GNU as handles section names wrapped in quotes
650 Mang->setUseQuotes(true);
651
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000652 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000653
Dan Gohmanb8275a32007-07-25 19:33:14 +0000654 return Result;
Jim Laskeybf111822006-12-21 20:26:09 +0000655}
656
Chris Lattnerec321b42008-02-15 19:04:54 +0000657/// PrintUnmangledNameSafely - Print out the printable characters in the name.
658/// Don't print things like \n or \0.
Owen Andersoncb371882008-08-21 00:14:44 +0000659static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
Chris Lattnerec321b42008-02-15 19:04:54 +0000660 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
661 Name != E; ++Name)
662 if (isprint(*Name))
663 OS << *Name;
664}
665
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000666void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000667 const TargetData *TD = TM.getTargetData();
668
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000669 if (!GVar->hasInitializer())
670 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000671
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000672 // Check to see if this is a special global used by LLVM, if so, emit it.
673 if (EmitSpecialLLVMGlobal(GVar))
674 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000675
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000676 std::string name = Mang->getValueName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000677
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000678 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000679
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000680 Constant *C = GVar->getInitializer();
681 const Type *Type = C->getType();
682 unsigned Size = TD->getABITypeSize(Type);
683 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000684
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000685 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000686
687 if (C->isNullValue() && /* FIXME: Verify correct */
688 !GVar->hasSection() &&
689 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands5df31862008-09-29 11:25:42 +0000690 GVar->mayBeOverridden())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000691 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000692
693 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000694 O << "\t.global " << name << '\n';
695 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000696 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000697 O << "\t.zero " << Size << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000698 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000699 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000700 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000701 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000702 }
Chris Lattnerec321b42008-02-15 19:04:54 +0000703 O << "\t\t" << TAI->getCommentString() << " '";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000704 PrintUnmangledNameSafely(GVar, O);
Chris Lattnerec321b42008-02-15 19:04:54 +0000705 O << "'\n";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000706 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000707 }
708
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000709 switch (GVar->getLinkage()) {
710 case GlobalValue::LinkOnceLinkage:
711 case GlobalValue::WeakLinkage:
712 case GlobalValue::CommonLinkage:
713 O << "\t.global " << name << '\n'
714 << "\t.type " << name << ", @object\n"
715 << "\t.weak " << name << '\n';
716 break;
717 case GlobalValue::AppendingLinkage:
718 // FIXME: appending linkage variables should go into a section of
719 // their name or something. For now, just emit them as external.
720 case GlobalValue::ExternalLinkage:
721 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000722 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000723 << "\t.type " << name << ", @object\n";
724 // FALL THROUGH
725 case GlobalValue::InternalLinkage:
726 break;
727 default:
728 cerr << "Unknown linkage type!";
729 abort();
730 }
731
732 EmitAlignment(Align, GVar);
733 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
734 PrintUnmangledNameSafely(GVar, O);
735 O << "'\n";
736
737 // If the initializer is a extern weak symbol, remember to emit the weak
738 // reference!
739 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
740 if (GV->hasExternalWeakLinkage())
741 ExtWeakSymbols.insert(GV);
742
743 EmitGlobalConstant(C);
744 O << '\n';
745}
746
747bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
748 // Print out module-level global variables here.
749 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
750 I != E; ++I)
751 printModuleLevelGV(I);
752
Jim Laskeybf111822006-12-21 20:26:09 +0000753 // TODO
754
755 // Emit initial debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000756 DW->EndModule();
Jim Laskeybf111822006-12-21 20:26:09 +0000757
Dan Gohmanb8275a32007-07-25 19:33:14 +0000758 return AsmPrinter::doFinalization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000759}
760
Nate Begemaned428532004-09-04 05:00:00 +0000761/// runOnMachineFunction - This uses the printMachineInstruction()
762/// method to print assembly for each instruction.
763///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000764bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner8b8b9512005-11-21 07:51:23 +0000765 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000766 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000767
Nate Begemaned428532004-09-04 05:00:00 +0000768 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000769 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000770
771 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000772 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000773 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000774
Chris Lattnera637c322005-12-16 00:22:14 +0000775 switch (F->getLinkage()) {
776 default: assert(0 && "Unknown linkage type!");
777 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000778 break;
779 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000780 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000781 break;
782 case Function::WeakLinkage:
783 case Function::LinkOnceLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000784 O << "\t.globl\t" << CurrentFnName << '\n';
785 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000786 break;
787 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000788
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000789 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000790
Devang Patel4ae641f2008-10-01 23:18:38 +0000791 EmitAlignment(F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4, F);
Nate Begemaned428532004-09-04 05:00:00 +0000792 O << CurrentFnName << ":\n";
793
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000794 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000795 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000796
Bill Wendling381802f2008-01-26 06:51:24 +0000797 // If the function is empty, then we need to emit *something*. Otherwise, the
798 // function's label might be associated with something that it wasn't meant to
799 // be associated with. We emit a noop in this situation.
800 MachineFunction::iterator I = MF.begin();
801
Bill Wendling824a7212008-01-26 09:03:52 +0000802 if (++I == MF.end() && MF.front().empty())
803 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000804
Nate Begemaned428532004-09-04 05:00:00 +0000805 // Print out code for the function.
806 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
807 I != E; ++I) {
808 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000809 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000810 printBasicBlockLabel(I, true, true);
Nate Begemancdf38c42006-05-02 05:37:32 +0000811 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000812 }
Bill Wendling381802f2008-01-26 06:51:24 +0000813 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
814 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000815 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000816 printMachineInstruction(II);
817 }
818 }
Nate Begemaned428532004-09-04 05:00:00 +0000819
Chris Lattnerfea13d32006-10-05 00:26:05 +0000820 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000821 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000822
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000823 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000824 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000825
Nate Begemaned428532004-09-04 05:00:00 +0000826 // We didn't modify anything.
827 return false;
828}
829
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000830
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000831bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000832 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000833 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000834 "ppc",
835 "ppc601",
836 "ppc602",
837 "ppc603",
838 "ppc7400",
839 "ppc750",
840 "ppc970",
841 "ppc64"
842 };
843
844 unsigned Directive = Subtarget.getDarwinDirective();
845 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
846 Directive = PPC::DIR_970;
847 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
848 Directive = PPC::DIR_7400;
849 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
850 Directive = PPC::DIR_64;
851 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000852 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000853
Dan Gohmanb8275a32007-07-25 19:33:14 +0000854 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000855
Dale Johannesen94618eb2008-07-09 20:43:39 +0000856 // Emit initial debug information.
Dale Johannesen94618eb2008-07-09 20:43:39 +0000857 // We need this for Personality functions.
858 // AsmPrinter::doInitialization should have done this analysis.
859 MMI = getAnalysisToUpdate<MachineModuleInfo>();
860 assert(MMI);
Devang Pateleb3fc282009-01-08 23:40:34 +0000861 DW = getAnalysisToUpdate<DwarfWriter>();
862 assert(DW && "DwarfWriter is not available");
863 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesen94618eb2008-07-09 20:43:39 +0000864
Chris Lattner85eac0d2005-11-10 19:33:43 +0000865 // Darwin wants symbols to be quoted if they have complex names.
866 Mang->setUseQuotes(true);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000867
Jim Laskey2ada0852006-11-28 18:21:52 +0000868 // Prime text sections so they are adjacent. This reduces the likelihood a
869 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000870 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000871 "pure_instructions");
872 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000873 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000874 "pure_instructions,32");
875 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000876 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000877 "pure_instructions,16");
878 }
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000879 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000880
Dan Gohmanb8275a32007-07-25 19:33:14 +0000881 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000882}
883
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000884void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
885 const TargetData *TD = TM.getTargetData();
886
887 if (!GVar->hasInitializer())
888 return; // External global require no code
889
890 // Check to see if this is a special global used by LLVM, if so, emit it.
891 if (EmitSpecialLLVMGlobal(GVar)) {
892 if (TM.getRelocationModel() == Reloc::Static) {
893 if (GVar->getName() == "llvm.global_ctors")
894 O << ".reference .constructors_used\n";
895 else if (GVar->getName() == "llvm.global_dtors")
896 O << ".reference .destructors_used\n";
897 }
898 return;
899 }
900
901 std::string name = Mang->getValueName(GVar);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000902
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000903 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000904
905 Constant *C = GVar->getInitializer();
906 const Type *Type = C->getType();
907 unsigned Size = TD->getABITypeSize(Type);
908 unsigned Align = TD->getPreferredAlignmentLog(GVar);
909
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000910 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000911
912 if (C->isNullValue() && /* FIXME: Verify correct */
913 !GVar->hasSection() &&
914 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands5df31862008-09-29 11:25:42 +0000915 GVar->mayBeOverridden())) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000916 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
917
918 if (GVar->hasExternalLinkage()) {
919 O << "\t.globl " << name << '\n';
920 O << "\t.zerofill __DATA, __common, " << name << ", "
921 << Size << ", " << Align;
922 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000923 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000924 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000925 O << "\t.globl " << name << '\n'
926 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000927 EmitAlignment(Align, GVar);
928 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
929 PrintUnmangledNameSafely(GVar, O);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000930 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000931 EmitGlobalConstant(C);
932 return;
933 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000934 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000935 // Darwin 9 and above support aligned common data.
936 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000937 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000938 }
939 O << "\t\t" << TAI->getCommentString() << " '";
940 PrintUnmangledNameSafely(GVar, O);
941 O << "'\n";
942 return;
943 }
944
945 switch (GVar->getLinkage()) {
946 case GlobalValue::LinkOnceLinkage:
947 case GlobalValue::WeakLinkage:
948 case GlobalValue::CommonLinkage:
949 O << "\t.globl " << name << '\n'
950 << "\t.weak_definition " << name << '\n';
951 break;
952 case GlobalValue::AppendingLinkage:
953 // FIXME: appending linkage variables should go into a section of
954 // their name or something. For now, just emit them as external.
955 case GlobalValue::ExternalLinkage:
956 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000957 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000958 // FALL THROUGH
959 case GlobalValue::InternalLinkage:
960 break;
961 default:
962 cerr << "Unknown linkage type!";
963 abort();
964 }
965
966 EmitAlignment(Align, GVar);
967 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
968 PrintUnmangledNameSafely(GVar, O);
969 O << "'\n";
970
971 // If the initializer is a extern weak symbol, remember to emit the weak
972 // reference!
973 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
974 if (GV->hasExternalWeakLinkage())
975 ExtWeakSymbols.insert(GV);
976
977 EmitGlobalConstant(C);
978 O << '\n';
979}
980
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000981bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +0000982 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000983
984 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +0000985 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000986 I != E; ++I)
987 printModuleLevelGV(I);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000988
Chris Lattner7e097e42006-06-27 01:02:25 +0000989 bool isPPC64 = TD->getPointerSizeInBits() == 64;
990
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000991 // Output stubs for dynamically-linked functions
Chris Lattner35d86fe2006-07-26 21:12:04 +0000992 if (TM.getRelocationModel() == Reloc::PIC_) {
Evan Chengae94e592008-12-05 01:06:39 +0000993 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattnerdeea4162005-12-13 04:33:58 +0000994 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000995 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000996 "pure_instructions,32");
Chris Lattner7e097e42006-06-27 01:02:25 +0000997 EmitAlignment(4);
Evan Chengae94e592008-12-05 01:06:39 +0000998 const char *p = i->getKeyData();
999 bool hasQuote = p[0]=='\"';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001000 printSuffixedName(p, "$stub");
1001 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001002 O << "\t.indirect_symbol " << p << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001003 O << "\tmflr r0\n";
Evan Chengae94e592008-12-05 01:06:39 +00001004 O << "\tbcl 20,31,";
1005 if (hasQuote)
1006 O << "\"L0$" << &p[1];
1007 else
1008 O << "L0$" << p;
1009 O << '\n';
1010 if (hasQuote)
1011 O << "\"L0$" << &p[1];
1012 else
1013 O << "L0$" << p;
1014 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001015 O << "\tmflr r11\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001016 O << "\taddis r11,r11,ha16(";
1017 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +00001018 O << "-";
1019 if (hasQuote)
1020 O << "\"L0$" << &p[1];
1021 else
1022 O << "L0$" << p;
1023 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001024 O << "\tmtlr r0\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001025 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001026 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001027 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001028 O << "\tlwzu r12,lo16(";
1029 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +00001030 O << "-";
1031 if (hasQuote)
1032 O << "\"L0$" << &p[1];
1033 else
1034 O << "L0$" << p;
1035 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001036 O << "\tmtctr r12\n";
1037 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001038 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001039 printSuffixedName(p, "$lazy_ptr");
1040 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001041 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001042 if (isPPC64)
1043 O << "\t.quad dyld_stub_binding_helper\n";
1044 else
1045 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001046 }
1047 } else {
Evan Chengae94e592008-12-05 01:06:39 +00001048 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattnerdeea4162005-12-13 04:33:58 +00001049 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001050 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001051 "pure_instructions,16");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001052 EmitAlignment(4);
Evan Chengae94e592008-12-05 01:06:39 +00001053 const char *p = i->getKeyData();
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001054 printSuffixedName(p, "$stub");
1055 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001056 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001057 O << "\tlis r11,ha16(";
1058 printSuffixedName(p, "$lazy_ptr");
1059 O << ")\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001060 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001061 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001062 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001063 O << "\tlwzu r12,lo16(";
1064 printSuffixedName(p, "$lazy_ptr");
1065 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001066 O << "\tmtctr r12\n";
1067 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001068 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001069 printSuffixedName(p, "$lazy_ptr");
1070 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001071 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001072 if (isPPC64)
1073 O << "\t.quad dyld_stub_binding_helper\n";
1074 else
1075 O << "\t.long dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001076 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001077 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001078
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001079 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001080
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001081 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001082 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001083 // Only referenced functions get into the Personalities list.
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001084 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1085
1086 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1087 E = Personalities.end(); I != E; ++I)
1088 if (*I) GVStubs.insert("_" + (*I)->getName());
1089 }
1090
Chris Lattnera637c322005-12-16 00:22:14 +00001091 // Output stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001092 if (!GVStubs.empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001093 SwitchToDataSection(".non_lazy_symbol_pointer");
Evan Chengae94e592008-12-05 01:06:39 +00001094 for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
1095 i != e; ++i) {
1096 std::string p = i->getKeyData();
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001097 printSuffixedName(p, "$non_lazy_ptr");
1098 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001099 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner9f029a62006-06-27 20:20:53 +00001100 if (isPPC64)
1101 O << "\t.quad\t0\n";
1102 else
1103 O << "\t.long\t0\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001104 }
Nate Begemane59bf592004-08-14 22:09:10 +00001105 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001106
Evan Chengae94e592008-12-05 01:06:39 +00001107 if (!HiddenGVStubs.empty()) {
1108 SwitchToSection(TAI->getDataSection());
1109 for (StringSet<>::iterator i = HiddenGVStubs.begin(), e = HiddenGVStubs.end();
1110 i != e; ++i) {
1111 std::string p = i->getKeyData();
1112 EmitAlignment(isPPC64 ? 3 : 2);
1113 printSuffixedName(p, "$non_lazy_ptr");
1114 O << ":\n";
1115 if (isPPC64)
1116 O << "\t.quad\t";
1117 else
1118 O << "\t.long\t";
1119 O << p << '\n';
1120 }
1121 }
1122
1123
Jim Laskey063e7652006-01-17 17:31:53 +00001124 // Emit initial debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +00001125 DW->EndModule();
Jim Laskey063e7652006-01-17 17:31:53 +00001126
Chris Lattner5b0ac992005-11-01 00:12:36 +00001127 // Funny Darwin hack: This flag tells the linker that no global symbols
1128 // contain code that falls through to other global symbols (e.g. the obvious
1129 // implementation of multiple entry points). If this doesn't occur, the
1130 // linker can safely perform dead code stripping. Since LLVM never generates
1131 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001132 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001133
Dan Gohmanb8275a32007-07-25 19:33:14 +00001134 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001135}
Nate Begemaned428532004-09-04 05:00:00 +00001136
Chris Lattner4da1c822006-09-20 17:12:19 +00001137
1138
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001139/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1140/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001141/// Darwin assembler can deal with.
1142///
Owen Andersoncb371882008-08-21 00:14:44 +00001143FunctionPass *llvm::createPPCAsmPrinterPass(raw_ostream &o,
Chris Lattner4da1c822006-09-20 17:12:19 +00001144 PPCTargetMachine &tm) {
Jim Laskeybf111822006-12-21 20:26:09 +00001145 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1146
1147 if (Subtarget->isDarwin()) {
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001148 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskeybf111822006-12-21 20:26:09 +00001149 } else {
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001150 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskeybf111822006-12-21 20:26:09 +00001151 }
Chris Lattner4da1c822006-09-20 17:12:19 +00001152}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001153
1154namespace {
1155 static struct Register {
1156 Register() {
1157 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1158 }
1159 } Registrator;
1160}
Oscar Fuentes92adc192008-11-15 21:36:30 +00001161
1162extern "C" int PowerPCAsmPrinterForceLink;
1163int PowerPCAsmPrinterForceLink = 0;