blob: 3ed7265840147f263d12f1713b57d29458201843 [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"
Misha Brukman05794492004-06-24 17:31:42 +000046#include <set>
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 {
Chris Lattnera637c322005-12-16 00:22:14 +000053 std::set<std::string> FnStubs, GVStubs;
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 {
Jim Laskeybf111822006-12-21 20:26:09 +0000295
296 DwarfWriter DW;
Dale Johannesen757809a2008-07-09 21:24:07 +0000297 MachineModuleInfo *MMI;
Jim Laskeybf111822006-12-21 20:26:09 +0000298
Owen Andersoncb371882008-08-21 00:14:44 +0000299 PPCLinuxAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Jim Laskeybf111822006-12-21 20:26:09 +0000300 const TargetAsmInfo *T)
Dale Johannesen757809a2008-07-09 21:24:07 +0000301 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Jim Laskeybf111822006-12-21 20:26:09 +0000302 }
303
304 virtual const char *getPassName() const {
305 return "Linux PPC Assembly Printer";
306 }
307
308 bool runOnMachineFunction(MachineFunction &F);
309 bool doInitialization(Module &M);
310 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000311
Jim Laskeybf111822006-12-21 20:26:09 +0000312 void getAnalysisUsage(AnalysisUsage &AU) const {
313 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000314 AU.addRequired<MachineModuleInfo>();
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
Jim Laskey563321a2006-09-06 18:34:40 +0000325 DwarfWriter DW;
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000326 MachineModuleInfo *MMI;
Nate Begemaned428532004-09-04 05:00:00 +0000327
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)
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000330 : PPCAsmPrinter(O, TM, T), DW(O, this, T), MMI(0) {
Nate Begemaned428532004-09-04 05:00:00 +0000331 }
332
333 virtual const char *getPassName() const {
334 return "Darwin PPC Assembly Printer";
335 }
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>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000344 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000345 }
346
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000347 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000348 };
349} // end of anonymous namespace
350
Nate Begemane59bf592004-08-14 22:09:10 +0000351// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000352#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000353
Chris Lattner9ba13e42005-11-17 19:25:59 +0000354void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000355 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000356 case MachineOperand::MO_Immediate:
Bill Wendlingf5da1332006-12-07 22:21:48 +0000357 cerr << "printOp() does not handle immediate values\n";
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000358 abort();
Misha Brukman97a296f2004-07-21 20:11:11 +0000359 return;
360
Nate Begeman37efe672006-04-22 18:53:45 +0000361 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000362 printBasicBlockLabel(MO.getMBB());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000363 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000364 case MachineOperand::MO_JumpTableIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000365 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000366 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000367 // FIXME: PIC relocation model
368 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000369 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000370 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000371 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000372 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000373 case MachineOperand::MO_ExternalSymbol:
Chris Lattnera637c322005-12-16 00:22:14 +0000374 // Computing the address of an external symbol, not calling it.
Evan Cheng4c1aa862006-02-22 20:19:42 +0000375 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskey563321a2006-09-06 18:34:40 +0000376 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnera637c322005-12-16 00:22:14 +0000377 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000378 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattnera637c322005-12-16 00:22:14 +0000379 return;
380 }
Jim Laskey563321a2006-09-06 18:34:40 +0000381 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000382 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000383 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000384 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000385 GlobalValue *GV = MO.getGlobal();
386 std::string Name = Mang->getValueName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000387
Nate Begemanfcf4a422004-10-17 23:01:34 +0000388 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng4c1aa862006-02-22 20:19:42 +0000389 if (TM.getRelocationModel() != Reloc::Static) {
Bill Wendlinga8103da2008-12-04 04:07:00 +0000390 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
391 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Nate Begemand4c8bea2004-11-25 07:09:01 +0000392 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000393 printSuffixedName(Name, "$non_lazy_ptr");
Dale Johannesenea7dd402008-05-16 20:09:25 +0000394 if (GV->hasExternalWeakLinkage())
395 ExtWeakSymbols.insert(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000396 return;
397 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000398 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000399 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000400
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000401 printOffset(MO.getOffset());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000402
Evan Cheng1c45a662006-12-01 07:56:37 +0000403 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000404 ExtWeakSymbols.insert(GV);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000405 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000406 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000407
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000408 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000409 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000410 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000411 }
412}
413
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000414/// EmitExternalGlobal - In this case we need to use the indirect symbol.
415///
416void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
417 std::string Name = getGlobalLinkName(GV);
418 if (TM.getRelocationModel() != Reloc::Static) {
419 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000420 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000421 return;
422 }
423 O << Name;
424}
425
Chris Lattnere3f01572006-02-23 19:31:10 +0000426/// PrintAsmOperand - Print out an operand for an inline asm expression.
427///
428bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000429 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000430 const char *ExtraCode) {
431 // Does this asm operand have a single letter operand modifier?
432 if (ExtraCode && ExtraCode[0]) {
433 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000434
Chris Lattnere3f01572006-02-23 19:31:10 +0000435 switch (ExtraCode[0]) {
436 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000437 case 'c': // Don't print "$" before a global var name or constant.
438 // PPC never has a prefix.
439 printOperand(MI, OpNo);
440 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000441 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000442 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000443 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000444 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000445 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000446 return true;
447 ++OpNo; // Return the high-part.
448 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000449 case 'I':
450 // Write 'i' if an integer constant, otherwise nothing. Used to print
451 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000452 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000453 O << "i";
454 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000455 }
456 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000457
Chris Lattnere3f01572006-02-23 19:31:10 +0000458 printOperand(MI, OpNo);
459 return false;
460}
461
Chris Lattner2c003e22006-02-24 20:27:40 +0000462bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000463 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000464 const char *ExtraCode) {
465 if (ExtraCode && ExtraCode[0])
466 return true; // Unknown modifier.
Dan Gohmand735b802008-10-03 15:45:36 +0000467 if (MI->getOperand(OpNo).isReg())
Chris Lattner9aa28952007-02-01 00:39:08 +0000468 printMemRegReg(MI, OpNo);
469 else
470 printMemRegImm(MI, OpNo);
Chris Lattner2c003e22006-02-24 20:27:40 +0000471 return false;
472}
Chris Lattnere3f01572006-02-23 19:31:10 +0000473
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000474void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000475 const char *Modifier) {
476 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
477 unsigned Code = MI->getOperand(OpNo).getImm();
478 if (!strcmp(Modifier, "cc")) {
479 switch ((PPC::Predicate)Code) {
480 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
481 case PPC::PRED_LT: O << "lt"; return;
482 case PPC::PRED_LE: O << "le"; return;
483 case PPC::PRED_EQ: O << "eq"; return;
484 case PPC::PRED_GE: O << "ge"; return;
485 case PPC::PRED_GT: O << "gt"; return;
486 case PPC::PRED_NE: O << "ne"; return;
487 case PPC::PRED_UN: O << "un"; return;
488 case PPC::PRED_NU: O << "nu"; return;
489 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000490
Chris Lattneraf53a872006-11-04 05:27:39 +0000491 } else {
492 assert(!strcmp(Modifier, "reg") &&
493 "Need to specify 'cc' or 'reg' as predicate op modifier!");
494 // Don't print the register for 'always'.
495 if (Code == PPC::PRED_ALWAYS) return;
496 printOperand(MI, OpNo+1);
497 }
498}
499
500
Nate Begemane59bf592004-08-14 22:09:10 +0000501/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
502/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000503///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000504void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000505 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000506
Nate Begemanad5f65c2005-04-05 18:19:50 +0000507 // Check for slwi/srwi mnemonics.
508 if (MI->getOpcode() == PPC::RLWINM) {
509 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000510 unsigned char SH = MI->getOperand(2).getImm();
511 unsigned char MB = MI->getOperand(3).getImm();
512 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000513 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000514 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000515 }
516 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000517 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000518 SH = 32-SH;
519 }
520 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000521 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000522 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000523 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000524 O << ", " << (unsigned int)SH << '\n';
Nate Begemanad5f65c2005-04-05 18:19:50 +0000525 return;
526 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000527 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000528 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000529 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000530 printOperand(MI, 0);
531 O << ", ";
532 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000533 O << '\n';
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000534 return;
535 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000536 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000537 unsigned char SH = MI->getOperand(2).getImm();
538 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000539 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
540 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000541 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000542 printOperand(MI, 0);
543 O << ", ";
544 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000545 O << ", " << (unsigned int)SH << '\n';
Chris Lattner566c1b12006-11-18 01:23:56 +0000546 return;
547 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000548 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000549
Nate Begemane59bf592004-08-14 22:09:10 +0000550 if (printInstruction(MI))
551 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000552
Nate Begemaned428532004-09-04 05:00:00 +0000553 assert(0 && "Unhandled instruction in asm writer!");
554 abort();
Nate Begemane59bf592004-08-14 22:09:10 +0000555 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000556}
557
Jim Laskeybf111822006-12-21 20:26:09 +0000558/// runOnMachineFunction - This uses the printMachineInstruction()
559/// method to print assembly for each instruction.
560///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000561bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000562
Jim Laskeybf111822006-12-21 20:26:09 +0000563 SetupMachineFunction(MF);
564 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000565
Jim Laskeybf111822006-12-21 20:26:09 +0000566 // Print out constants referenced by the function
567 EmitConstantPool(MF.getConstantPool());
568
569 // Print out labels for the function.
570 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000571 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000572
Jim Laskeybf111822006-12-21 20:26:09 +0000573 switch (F->getLinkage()) {
574 default: assert(0 && "Unknown linkage type!");
575 case Function::InternalLinkage: // Symbols default to internal.
576 break;
577 case Function::ExternalLinkage:
578 O << "\t.global\t" << CurrentFnName << '\n'
579 << "\t.type\t" << CurrentFnName << ", @function\n";
580 break;
581 case Function::WeakLinkage:
582 case Function::LinkOnceLinkage:
583 O << "\t.global\t" << CurrentFnName << '\n';
584 O << "\t.weak\t" << CurrentFnName << '\n';
585 break;
586 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000587
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000588 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000589
Jim Laskeybf111822006-12-21 20:26:09 +0000590 EmitAlignment(2, F);
591 O << CurrentFnName << ":\n";
592
593 // Emit pre-function debug information.
594 DW.BeginFunction(&MF);
595
596 // Print out code for the function.
597 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
598 I != E; ++I) {
599 // Print a label for the basic block.
600 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000601 printBasicBlockLabel(I, true, true);
Jim Laskeybf111822006-12-21 20:26:09 +0000602 O << '\n';
603 }
604 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
605 II != E; ++II) {
606 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000607 printMachineInstruction(II);
608 }
609 }
610
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000611 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000612
613 // Print out jump tables referenced by the function.
614 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000615
Dale Johannesenf94a3272008-12-03 19:33:10 +0000616 SwitchToSection(TAI->SectionForGlobal(F));
617
Jim Laskeybf111822006-12-21 20:26:09 +0000618 // Emit post-function debug information.
Bill Wendlingd751c642008-09-26 00:28:12 +0000619 DW.EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000620
Dan Gohmane5f4de42008-11-07 19:49:17 +0000621 O.flush();
622
Jim Laskeybf111822006-12-21 20:26:09 +0000623 // We didn't modify anything.
624 return false;
625}
626
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000627bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohmanb8275a32007-07-25 19:33:14 +0000628 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000629
Dale Johannesen757809a2008-07-09 21:24:07 +0000630 // Emit initial debug information.
631 DW.BeginModule(&M);
632
633 // AsmPrinter::doInitialization should have done this analysis.
634 MMI = getAnalysisToUpdate<MachineModuleInfo>();
635 assert(MMI);
636 DW.SetModuleInfo(MMI);
637
Jim Laskeybf111822006-12-21 20:26:09 +0000638 // GNU as handles section names wrapped in quotes
639 Mang->setUseQuotes(true);
640
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000641 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000642
Dan Gohmanb8275a32007-07-25 19:33:14 +0000643 return Result;
Jim Laskeybf111822006-12-21 20:26:09 +0000644}
645
Chris Lattnerec321b42008-02-15 19:04:54 +0000646/// PrintUnmangledNameSafely - Print out the printable characters in the name.
647/// Don't print things like \n or \0.
Owen Andersoncb371882008-08-21 00:14:44 +0000648static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
Chris Lattnerec321b42008-02-15 19:04:54 +0000649 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
650 Name != E; ++Name)
651 if (isprint(*Name))
652 OS << *Name;
653}
654
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000655void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000656 const TargetData *TD = TM.getTargetData();
657
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000658 if (!GVar->hasInitializer())
659 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000660
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000661 // Check to see if this is a special global used by LLVM, if so, emit it.
662 if (EmitSpecialLLVMGlobal(GVar))
663 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000664
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000665 std::string name = Mang->getValueName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000666
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000667 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000668
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000669 Constant *C = GVar->getInitializer();
670 const Type *Type = C->getType();
671 unsigned Size = TD->getABITypeSize(Type);
672 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000673
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000674 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000675
676 if (C->isNullValue() && /* FIXME: Verify correct */
677 !GVar->hasSection() &&
678 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands5df31862008-09-29 11:25:42 +0000679 GVar->mayBeOverridden())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000680 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000681
682 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000683 O << "\t.global " << name << '\n';
684 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000685 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000686 O << "\t.zero " << Size << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000687 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000688 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000689 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000690 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000691 }
Chris Lattnerec321b42008-02-15 19:04:54 +0000692 O << "\t\t" << TAI->getCommentString() << " '";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000693 PrintUnmangledNameSafely(GVar, O);
Chris Lattnerec321b42008-02-15 19:04:54 +0000694 O << "'\n";
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000695 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000696 }
697
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000698 switch (GVar->getLinkage()) {
699 case GlobalValue::LinkOnceLinkage:
700 case GlobalValue::WeakLinkage:
701 case GlobalValue::CommonLinkage:
702 O << "\t.global " << name << '\n'
703 << "\t.type " << name << ", @object\n"
704 << "\t.weak " << name << '\n';
705 break;
706 case GlobalValue::AppendingLinkage:
707 // FIXME: appending linkage variables should go into a section of
708 // their name or something. For now, just emit them as external.
709 case GlobalValue::ExternalLinkage:
710 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000711 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000712 << "\t.type " << name << ", @object\n";
713 // FALL THROUGH
714 case GlobalValue::InternalLinkage:
715 break;
716 default:
717 cerr << "Unknown linkage type!";
718 abort();
719 }
720
721 EmitAlignment(Align, GVar);
722 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
723 PrintUnmangledNameSafely(GVar, O);
724 O << "'\n";
725
726 // If the initializer is a extern weak symbol, remember to emit the weak
727 // reference!
728 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
729 if (GV->hasExternalWeakLinkage())
730 ExtWeakSymbols.insert(GV);
731
732 EmitGlobalConstant(C);
733 O << '\n';
734}
735
736bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
737 // Print out module-level global variables here.
738 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
739 I != E; ++I)
740 printModuleLevelGV(I);
741
Jim Laskeybf111822006-12-21 20:26:09 +0000742 // TODO
743
744 // Emit initial debug information.
745 DW.EndModule();
746
Dan Gohmanb8275a32007-07-25 19:33:14 +0000747 return AsmPrinter::doFinalization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000748}
749
Nate Begemaned428532004-09-04 05:00:00 +0000750/// runOnMachineFunction - This uses the printMachineInstruction()
751/// method to print assembly for each instruction.
752///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000753bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner8b8b9512005-11-21 07:51:23 +0000754 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000755 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000756
Nate Begemaned428532004-09-04 05:00:00 +0000757 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000758 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000759
760 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000761 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000762 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000763
Chris Lattnera637c322005-12-16 00:22:14 +0000764 switch (F->getLinkage()) {
765 default: assert(0 && "Unknown linkage type!");
766 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000767 break;
768 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000769 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000770 break;
771 case Function::WeakLinkage:
772 case Function::LinkOnceLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000773 O << "\t.globl\t" << CurrentFnName << '\n';
774 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000775 break;
776 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000777
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000778 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000779
Devang Patel4ae641f2008-10-01 23:18:38 +0000780 EmitAlignment(F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4, F);
Nate Begemaned428532004-09-04 05:00:00 +0000781 O << CurrentFnName << ":\n";
782
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000783 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000784 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000785
Bill Wendling381802f2008-01-26 06:51:24 +0000786 // If the function is empty, then we need to emit *something*. Otherwise, the
787 // function's label might be associated with something that it wasn't meant to
788 // be associated with. We emit a noop in this situation.
789 MachineFunction::iterator I = MF.begin();
790
Bill Wendling824a7212008-01-26 09:03:52 +0000791 if (++I == MF.end() && MF.front().empty())
792 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000793
Nate Begemaned428532004-09-04 05:00:00 +0000794 // Print out code for the function.
795 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
796 I != E; ++I) {
797 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000798 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000799 printBasicBlockLabel(I, true, true);
Nate Begemancdf38c42006-05-02 05:37:32 +0000800 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000801 }
Bill Wendling381802f2008-01-26 06:51:24 +0000802 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
803 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000804 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000805 printMachineInstruction(II);
806 }
807 }
Nate Begemaned428532004-09-04 05:00:00 +0000808
Chris Lattnerfea13d32006-10-05 00:26:05 +0000809 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000810 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000811
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000812 // Emit post-function debug information.
Bill Wendlingd751c642008-09-26 00:28:12 +0000813 DW.EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000814
Nate Begemaned428532004-09-04 05:00:00 +0000815 // We didn't modify anything.
816 return false;
817}
818
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000819
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000820bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000821 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000822 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000823 "ppc",
824 "ppc601",
825 "ppc602",
826 "ppc603",
827 "ppc7400",
828 "ppc750",
829 "ppc970",
830 "ppc64"
831 };
832
833 unsigned Directive = Subtarget.getDarwinDirective();
834 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
835 Directive = PPC::DIR_970;
836 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
837 Directive = PPC::DIR_7400;
838 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
839 Directive = PPC::DIR_64;
840 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000841 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000842
Dan Gohmanb8275a32007-07-25 19:33:14 +0000843 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000844
Dale Johannesen94618eb2008-07-09 20:43:39 +0000845 // Emit initial debug information.
846 DW.BeginModule(&M);
847
848 // We need this for Personality functions.
849 // AsmPrinter::doInitialization should have done this analysis.
850 MMI = getAnalysisToUpdate<MachineModuleInfo>();
851 assert(MMI);
852 DW.SetModuleInfo(MMI);
853
Chris Lattner85eac0d2005-11-10 19:33:43 +0000854 // Darwin wants symbols to be quoted if they have complex names.
855 Mang->setUseQuotes(true);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000856
Jim Laskey2ada0852006-11-28 18:21:52 +0000857 // Prime text sections so they are adjacent. This reduces the likelihood a
858 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000859 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000860 "pure_instructions");
861 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000862 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000863 "pure_instructions,32");
864 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000865 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000866 "pure_instructions,16");
867 }
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000868 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000869
Dan Gohmanb8275a32007-07-25 19:33:14 +0000870 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000871}
872
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000873void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
874 const TargetData *TD = TM.getTargetData();
875
876 if (!GVar->hasInitializer())
877 return; // External global require no code
878
879 // Check to see if this is a special global used by LLVM, if so, emit it.
880 if (EmitSpecialLLVMGlobal(GVar)) {
881 if (TM.getRelocationModel() == Reloc::Static) {
882 if (GVar->getName() == "llvm.global_ctors")
883 O << ".reference .constructors_used\n";
884 else if (GVar->getName() == "llvm.global_dtors")
885 O << ".reference .destructors_used\n";
886 }
887 return;
888 }
889
890 std::string name = Mang->getValueName(GVar);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000891
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000892 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000893
894 Constant *C = GVar->getInitializer();
895 const Type *Type = C->getType();
896 unsigned Size = TD->getABITypeSize(Type);
897 unsigned Align = TD->getPreferredAlignmentLog(GVar);
898
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000899 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000900
901 if (C->isNullValue() && /* FIXME: Verify correct */
902 !GVar->hasSection() &&
903 (GVar->hasInternalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands5df31862008-09-29 11:25:42 +0000904 GVar->mayBeOverridden())) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000905 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
906
907 if (GVar->hasExternalLinkage()) {
908 O << "\t.globl " << name << '\n';
909 O << "\t.zerofill __DATA, __common, " << name << ", "
910 << Size << ", " << Align;
911 } else if (GVar->hasInternalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000912 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000913 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000914 O << "\t.globl " << name << '\n'
915 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000916 EmitAlignment(Align, GVar);
917 O << name << ":\t\t\t\t" << TAI->getCommentString() << " ";
918 PrintUnmangledNameSafely(GVar, O);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000919 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000920 EmitGlobalConstant(C);
921 return;
922 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000923 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000924 // Darwin 9 and above support aligned common data.
925 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000926 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000927 }
928 O << "\t\t" << TAI->getCommentString() << " '";
929 PrintUnmangledNameSafely(GVar, O);
930 O << "'\n";
931 return;
932 }
933
934 switch (GVar->getLinkage()) {
935 case GlobalValue::LinkOnceLinkage:
936 case GlobalValue::WeakLinkage:
937 case GlobalValue::CommonLinkage:
938 O << "\t.globl " << name << '\n'
939 << "\t.weak_definition " << name << '\n';
940 break;
941 case GlobalValue::AppendingLinkage:
942 // FIXME: appending linkage variables should go into a section of
943 // their name or something. For now, just emit them as external.
944 case GlobalValue::ExternalLinkage:
945 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000946 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000947 // FALL THROUGH
948 case GlobalValue::InternalLinkage:
949 break;
950 default:
951 cerr << "Unknown linkage type!";
952 abort();
953 }
954
955 EmitAlignment(Align, GVar);
956 O << name << ":\t\t\t\t" << TAI->getCommentString() << " '";
957 PrintUnmangledNameSafely(GVar, O);
958 O << "'\n";
959
960 // If the initializer is a extern weak symbol, remember to emit the weak
961 // reference!
962 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
963 if (GV->hasExternalWeakLinkage())
964 ExtWeakSymbols.insert(GV);
965
966 EmitGlobalConstant(C);
967 O << '\n';
968}
969
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000970bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +0000971 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000972
973 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +0000974 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000975 I != E; ++I)
976 printModuleLevelGV(I);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000977
Chris Lattner7e097e42006-06-27 01:02:25 +0000978 bool isPPC64 = TD->getPointerSizeInBits() == 64;
979
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000980 // Output stubs for dynamically-linked functions
Chris Lattner35d86fe2006-07-26 21:12:04 +0000981 if (TM.getRelocationModel() == Reloc::PIC_) {
Chris Lattnerdeea4162005-12-13 04:33:58 +0000982 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
983 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000984 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000985 "pure_instructions,32");
Chris Lattner7e097e42006-06-27 01:02:25 +0000986 EmitAlignment(4);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000987 std::string p = *i;
988 std::string L0p = (p[0]=='\"') ? "\"L0$" + p.substr(1) : "L0$" + p ;
989 printSuffixedName(p, "$stub");
990 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000991 O << "\t.indirect_symbol " << *i << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +0000992 O << "\tmflr r0\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000993 O << "\tbcl 20,31," << L0p << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000994 O << L0p << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000995 O << "\tmflr r11\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000996 O << "\taddis r11,r11,ha16(";
997 printSuffixedName(p, "$lazy_ptr");
998 O << "-" << L0p << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000999 O << "\tmtlr r0\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001000 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001001 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001002 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001003 O << "\tlwzu r12,lo16(";
1004 printSuffixedName(p, "$lazy_ptr");
1005 O << "-" << L0p << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001006 O << "\tmtctr r12\n";
1007 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001008 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001009 printSuffixedName(p, "$lazy_ptr");
1010 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001011 O << "\t.indirect_symbol " << *i << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001012 if (isPPC64)
1013 O << "\t.quad dyld_stub_binding_helper\n";
1014 else
1015 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001016 }
1017 } else {
1018 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
1019 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001020 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001021 "pure_instructions,16");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001022 EmitAlignment(4);
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001023 std::string p = *i;
1024 printSuffixedName(p, "$stub");
1025 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001026 O << "\t.indirect_symbol " << *i << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001027 O << "\tlis r11,ha16(";
1028 printSuffixedName(p, "$lazy_ptr");
1029 O << ")\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001030 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001031 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001032 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001033 O << "\tlwzu r12,lo16(";
1034 printSuffixedName(p, "$lazy_ptr");
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";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001041 O << "\t.indirect_symbol " << *i << '\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";
Nate Begeman2497e632005-07-21 20:44:43 +00001046 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001047 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001048
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001049 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001050
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001051 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001052 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001053 // Only referenced functions get into the Personalities list.
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001054 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1055
1056 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1057 E = Personalities.end(); I != E; ++I)
1058 if (*I) GVStubs.insert("_" + (*I)->getName());
1059 }
1060
Chris Lattnera637c322005-12-16 00:22:14 +00001061 // Output stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001062 if (!GVStubs.empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001063 SwitchToDataSection(".non_lazy_symbol_pointer");
Chris Lattnera637c322005-12-16 00:22:14 +00001064 for (std::set<std::string>::iterator I = GVStubs.begin(),
1065 E = GVStubs.end(); I != E; ++I) {
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001066 std::string p = *I;
1067 printSuffixedName(p, "$non_lazy_ptr");
1068 O << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001069 O << "\t.indirect_symbol " << *I << '\n';
Chris Lattner9f029a62006-06-27 20:20:53 +00001070 if (isPPC64)
1071 O << "\t.quad\t0\n";
1072 else
1073 O << "\t.long\t0\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001074 }
Nate Begemane59bf592004-08-14 22:09:10 +00001075 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001076
Jim Laskey063e7652006-01-17 17:31:53 +00001077 // Emit initial debug information.
Jim Laskey99db0442006-03-23 18:09:44 +00001078 DW.EndModule();
Jim Laskey063e7652006-01-17 17:31:53 +00001079
Chris Lattner5b0ac992005-11-01 00:12:36 +00001080 // Funny Darwin hack: This flag tells the linker that no global symbols
1081 // contain code that falls through to other global symbols (e.g. the obvious
1082 // implementation of multiple entry points). If this doesn't occur, the
1083 // linker can safely perform dead code stripping. Since LLVM never generates
1084 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001085 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001086
Dan Gohmanb8275a32007-07-25 19:33:14 +00001087 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001088}
Nate Begemaned428532004-09-04 05:00:00 +00001089
Chris Lattner4da1c822006-09-20 17:12:19 +00001090
1091
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001092/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1093/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001094/// Darwin assembler can deal with.
1095///
Owen Andersoncb371882008-08-21 00:14:44 +00001096FunctionPass *llvm::createPPCAsmPrinterPass(raw_ostream &o,
Chris Lattner4da1c822006-09-20 17:12:19 +00001097 PPCTargetMachine &tm) {
Jim Laskeybf111822006-12-21 20:26:09 +00001098 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1099
1100 if (Subtarget->isDarwin()) {
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001101 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskeybf111822006-12-21 20:26:09 +00001102 } else {
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001103 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo());
Jim Laskeybf111822006-12-21 20:26:09 +00001104 }
Chris Lattner4da1c822006-09-20 17:12:19 +00001105}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001106
1107namespace {
1108 static struct Register {
1109 Register() {
1110 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1111 }
1112 } Registrator;
1113}
Oscar Fuentes92adc192008-11-15 21:36:30 +00001114
1115extern "C" int PowerPCAsmPrinterForceLink;
1116int PowerPCAsmPrinterForceLink = 0;