blob: 37f0fdbd4122a1b4cd1af661ecefed6b897bcc12 [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"
Devang Patele4c0c0f2009-06-25 00:47:42 +000027#include "llvm/MDNode.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000028#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000029#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000030#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000031#include "llvm/CodeGen/MachineModuleInfo.h"
Misha Brukman05794492004-06-24 17:31:42 +000032#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000033#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling381802f2008-01-26 06:51:24 +000034#include "llvm/CodeGen/MachineInstrBuilder.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000035#include "llvm/Support/Mangler.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000036#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000037#include "llvm/Support/CommandLine.h"
38#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000039#include "llvm/Support/ErrorHandling.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000040#include "llvm/Support/Compiler.h"
David Greene71847812009-07-14 20:18:05 +000041#include "llvm/Support/FormattedStream.h"
Jim Laskey563321a2006-09-06 18:34:40 +000042#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000043#include "llvm/Target/TargetRegisterInfo.h"
Nate Begemand4c8bea2004-11-25 07:09:01 +000044#include "llvm/Target/TargetInstrInfo.h"
Evan Chengd2ee2182006-02-18 00:08:58 +000045#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000046#include "llvm/ADT/Statistic.h"
47#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000048#include "llvm/ADT/StringSet.h"
Chris Lattnera3840792004-08-16 23:25:21 +000049using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000050
Chris Lattner95b2c7d2006-12-19 22:59:26 +000051STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukman5dfe3a92004-06-21 16:55:25 +000052
Chris Lattner95b2c7d2006-12-19 22:59:26 +000053namespace {
Bill Wendling57f0db82009-02-24 08:30:20 +000054 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
55 protected:
Evan Chengae94e592008-12-05 01:06:39 +000056 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Chris Lattnerdadceed2006-09-20 17:07:15 +000057 const PPCSubtarget &Subtarget;
Bill Wendling57f0db82009-02-24 08:30:20 +000058 public:
David Greene71847812009-07-14 20:18:05 +000059 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000060 const TargetAsmInfo *T, bool V)
61 : AsmPrinter(O, TM, T, V),
Bill Wendling57f0db82009-02-24 08:30:20 +000062 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000063
Misha Brukman5dfe3a92004-06-21 16:55:25 +000064 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000065 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000066 }
67
Nate Begeman21e463b2005-10-16 05:39:50 +000068 PPCTargetMachine &getTM() {
69 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000070 }
71
Nate Begemanadeb43d2005-07-20 22:42:00 +000072 unsigned enumRegToMachineReg(unsigned enumReg) {
73 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +000074 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +000075 case PPC::CR0: return 0;
76 case PPC::CR1: return 1;
77 case PPC::CR2: return 2;
78 case PPC::CR3: return 3;
79 case PPC::CR4: return 4;
80 case PPC::CR5: return 5;
81 case PPC::CR6: return 6;
82 case PPC::CR7: return 7;
83 }
Torok Edwinc23197a2009-07-14 16:55:14 +000084 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +000085 }
86
Nate Begemane59bf592004-08-14 22:09:10 +000087 /// printInstruction - This method is automatically generated by tablegen
88 /// from the instruction set description. This method returns true if the
89 /// machine instruction was sufficiently described to print it, otherwise it
90 /// returns false.
91 bool printInstruction(const MachineInstr *MI);
92
Misha Brukman5dfe3a92004-06-21 16:55:25 +000093 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +000094 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +000095
Jim Laskeyb608a4d2006-12-20 20:56:46 +000096 /// stripRegisterPrefix - This method strips the character prefix from a
97 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +000098 const char *stripRegisterPrefix(const char *RegName) {
99 switch (RegName[0]) {
100 case 'r':
101 case 'f':
102 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000103 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000104 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000105
Jim Laskey40ee69f2006-12-20 21:33:34 +0000106 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000107 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000108
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000109 /// printRegister - Print register according to target requirements.
110 ///
111 void printRegister(const MachineOperand &MO, bool R0AsZero) {
112 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000113 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000114
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000115 // If we should use 0 for R0.
116 if (R0AsZero && RegNo == PPC::R0) {
117 O << "0";
118 return;
119 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000120
Bill Wendling74ab84c2008-02-26 21:11:01 +0000121 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000122 // Linux assembler (Others?) does not take register mnemonics.
123 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000124 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
125 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000126 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000127
Chris Lattner58873272006-02-01 22:38:46 +0000128 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000129 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000130 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000131 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000132 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000133 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000134 } else {
135 printOp(MO);
136 }
137 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000138
Chris Lattner58873272006-02-01 22:38:46 +0000139 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000140 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000141 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
142 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000143
144
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000145 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000146 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000147 value = (value << (32-5)) >> (32-5);
148 O << (int)value;
149 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000150 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000151 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000152 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000153 O << (unsigned int)value;
154 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000155 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000156 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000157 assert(value <= 63 && "Invalid u6imm argument!");
158 O << (unsigned int)value;
159 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000160 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000161 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000162 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000163 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000164 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000165 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000166 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000167 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000168 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000169 } else {
170 O << "lo16(";
171 printOp(MI->getOperand(OpNo));
172 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000173 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000174 else
175 O << ')';
176 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000177 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000178 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000179 // Branches can take an immediate operand. This is used by the branch
180 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000181 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000182 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000183 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000184 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000185 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000186 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000187 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000188 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000189 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000190 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
191 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000192 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000193 // Dynamically-resolved functions need a stub for the function.
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000194 std::string Name = Mang->getMangledName(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000195 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000196 printSuffixedName(Name, "$stub");
Chris Lattnera637c322005-12-16 00:22:14 +0000197 return;
198 }
199 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000200 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Jim Laskey563321a2006-09-06 18:34:40 +0000201 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattner9542f9712005-11-17 19:40:30 +0000202 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000203 printSuffixedName(Name, "$stub");
Chris Lattner9542f9712005-11-17 19:40:30 +0000204 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000205 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000206 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000207
Chris Lattner9542f9712005-11-17 19:40:30 +0000208 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000209 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000210 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000211 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000212 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000213 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000214 O << "\"L" << getFunctionNumber() << "$pb\"\n";
215 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000216 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000217 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000218 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000219 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000220 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000221 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000222 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000223 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000224 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000225 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000226 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000227 else
228 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000229 }
Nate Begemaned428532004-09-04 05:00:00 +0000230 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000231 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000232 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000233 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000234 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000235 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000236 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000237 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000238 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000239 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000240 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000241 else
242 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000243 }
244 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000245 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000246 unsigned CCReg = MI->getOperand(OpNo).getReg();
247 unsigned RegNo = enumRegToMachineReg(CCReg);
248 O << (0x80 >> RegNo);
249 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000250 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000251 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
252 printSymbolLo(MI, OpNo);
253 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000254 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000255 MI->getOperand(OpNo+1).getReg() == PPC::R0)
256 O << "0";
257 else
258 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000259 O << ')';
260 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000261 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000262 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000263 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000264 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000265 printSymbolLo(MI, OpNo);
266 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000267 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000268 MI->getOperand(OpNo+1).getReg() == PPC::R0)
269 O << "0";
270 else
271 printOperand(MI, OpNo+1);
272 O << ')';
273 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000274
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000275 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000276 // When used as the base register, r0 reads constant zero rather than
277 // the value contained in the register. For this reason, the darwin
278 // assembler requires that we print r0 as 0 (no r) when used as the base.
279 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000280 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000281 O << ", ";
282 printOperand(MI, OpNo+1);
283 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000284
285 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000286 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000287
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000288 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000289 virtual bool doFinalization(Module &M) = 0;
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000290
291 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begemaned428532004-09-04 05:00:00 +0000292 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000293
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000294 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendling57f0db82009-02-24 08:30:20 +0000295 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000296 public:
David Greene71847812009-07-14 20:18:05 +0000297 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000298 const TargetAsmInfo *T, bool V)
299 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000300
301 virtual const char *getPassName() const {
302 return "Linux PPC Assembly Printer";
303 }
304
305 bool runOnMachineFunction(MachineFunction &F);
Jim Laskeybf111822006-12-21 20:26:09 +0000306 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000307
Jim Laskeybf111822006-12-21 20:26:09 +0000308 void getAnalysisUsage(AnalysisUsage &AU) const {
309 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000310 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000311 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000312 PPCAsmPrinter::getAnalysisUsage(AU);
313 }
314
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000315 void printModuleLevelGV(const GlobalVariable* GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000316 };
317
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000318 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
319 /// OS X
Bill Wendling57f0db82009-02-24 08:30:20 +0000320 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000321 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000322 public:
David Greene71847812009-07-14 20:18:05 +0000323 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000324 const TargetAsmInfo *T, bool V)
325 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000326
327 virtual const char *getPassName() const {
328 return "Darwin PPC Assembly Printer";
329 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000330
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000331 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman18ed0292005-07-21 01:25:49 +0000332 bool doInitialization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000333 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000334
Jim Laskeyb2efb852006-01-04 22:28:25 +0000335 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000336 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000337 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000338 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000339 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000340 }
341
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000342 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000343 };
344} // end of anonymous namespace
345
Nate Begemane59bf592004-08-14 22:09:10 +0000346// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000347#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000348
Chris Lattner9ba13e42005-11-17 19:25:59 +0000349void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000350 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000351 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000352 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000353
Nate Begeman37efe672006-04-22 18:53:45 +0000354 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000355 printBasicBlockLabel(MO.getMBB());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000356 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000357 case MachineOperand::MO_JumpTableIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000358 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000359 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000360 // FIXME: PIC relocation model
361 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000362 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000363 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000364 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000365 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000366 case MachineOperand::MO_ExternalSymbol:
Chris Lattnera637c322005-12-16 00:22:14 +0000367 // Computing the address of an external symbol, not calling it.
Evan Cheng4c1aa862006-02-22 20:19:42 +0000368 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskey563321a2006-09-06 18:34:40 +0000369 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnera637c322005-12-16 00:22:14 +0000370 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000371 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattnera637c322005-12-16 00:22:14 +0000372 return;
373 }
Jim Laskey563321a2006-09-06 18:34:40 +0000374 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000375 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000376 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000377 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000378 GlobalValue *GV = MO.getGlobal();
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000379 std::string Name = Mang->getMangledName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000380
Nate Begemanfcf4a422004-10-17 23:01:34 +0000381 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng4c1aa862006-02-22 20:19:42 +0000382 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner20674332009-07-02 16:08:53 +0000383 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Evan Chengae94e592008-12-05 01:06:39 +0000384 if (GV->hasHiddenVisibility()) {
Chris Lattner4fb75e52009-07-01 16:53:44 +0000385 if (GV->isDeclaration() || GV->hasCommonLinkage() ||
386 GV->hasAvailableExternallyLinkage()) {
Evan Chengae94e592008-12-05 01:06:39 +0000387 HiddenGVStubs.insert(Name);
388 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattner4fb75e52009-07-01 16:53:44 +0000389 } else {
390 O << Name;
Evan Chengae94e592008-12-05 01:06:39 +0000391 }
392 } else {
393 GVStubs.insert(Name);
394 printSuffixedName(Name, "$non_lazy_ptr");
395 }
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());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000402 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000403 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000404
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000405 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000406 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000407 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000408 }
409}
410
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000411/// EmitExternalGlobal - In this case we need to use the indirect symbol.
412///
413void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling7d16e852009-04-10 00:12:49 +0000414 std::string Name;
415 getGlobalLinkName(GV, Name);
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000416 if (TM.getRelocationModel() != Reloc::Static) {
Evan Chengae94e592008-12-05 01:06:39 +0000417 if (GV->hasHiddenVisibility())
418 HiddenGVStubs.insert(Name);
419 else
420 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000421 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000422 return;
423 }
424 O << Name;
425}
426
Chris Lattnere3f01572006-02-23 19:31:10 +0000427/// PrintAsmOperand - Print out an operand for an inline asm expression.
428///
429bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000430 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000431 const char *ExtraCode) {
432 // Does this asm operand have a single letter operand modifier?
433 if (ExtraCode && ExtraCode[0]) {
434 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000435
Chris Lattnere3f01572006-02-23 19:31:10 +0000436 switch (ExtraCode[0]) {
437 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000438 case 'c': // Don't print "$" before a global var name or constant.
439 // PPC never has a prefix.
440 printOperand(MI, OpNo);
441 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000442 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000443 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000444 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000445 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000446 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000447 return true;
448 ++OpNo; // Return the high-part.
449 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000450 case 'I':
451 // Write 'i' if an integer constant, otherwise nothing. Used to print
452 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000453 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000454 O << "i";
455 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000456 }
457 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000458
Chris Lattnere3f01572006-02-23 19:31:10 +0000459 printOperand(MI, OpNo);
460 return false;
461}
462
Chris Lattner2c003e22006-02-24 20:27:40 +0000463bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000464 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000465 const char *ExtraCode) {
466 if (ExtraCode && ExtraCode[0])
467 return true; // Unknown modifier.
Dan Gohmand735b802008-10-03 15:45:36 +0000468 if (MI->getOperand(OpNo).isReg())
Chris Lattner9aa28952007-02-01 00:39:08 +0000469 printMemRegReg(MI, OpNo);
470 else
471 printMemRegImm(MI, OpNo);
Chris Lattner2c003e22006-02-24 20:27:40 +0000472 return false;
473}
Chris Lattnere3f01572006-02-23 19:31:10 +0000474
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000475void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000476 const char *Modifier) {
477 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
478 unsigned Code = MI->getOperand(OpNo).getImm();
479 if (!strcmp(Modifier, "cc")) {
480 switch ((PPC::Predicate)Code) {
481 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
482 case PPC::PRED_LT: O << "lt"; return;
483 case PPC::PRED_LE: O << "le"; return;
484 case PPC::PRED_EQ: O << "eq"; return;
485 case PPC::PRED_GE: O << "ge"; return;
486 case PPC::PRED_GT: O << "gt"; return;
487 case PPC::PRED_NE: O << "ne"; return;
488 case PPC::PRED_UN: O << "un"; return;
489 case PPC::PRED_NU: O << "nu"; return;
490 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000491
Chris Lattneraf53a872006-11-04 05:27:39 +0000492 } else {
493 assert(!strcmp(Modifier, "reg") &&
494 "Need to specify 'cc' or 'reg' as predicate op modifier!");
495 // Don't print the register for 'always'.
496 if (Code == PPC::PRED_ALWAYS) return;
497 printOperand(MI, OpNo+1);
498 }
499}
500
501
Nate Begemane59bf592004-08-14 22:09:10 +0000502/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
503/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000504///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000505void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000506 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000507
Nate Begemanad5f65c2005-04-05 18:19:50 +0000508 // Check for slwi/srwi mnemonics.
509 if (MI->getOpcode() == PPC::RLWINM) {
510 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000511 unsigned char SH = MI->getOperand(2).getImm();
512 unsigned char MB = MI->getOperand(3).getImm();
513 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000514 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000515 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000516 }
517 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000518 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000519 SH = 32-SH;
520 }
521 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000522 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000523 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000524 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000525 O << ", " << (unsigned int)SH << '\n';
Nate Begemanad5f65c2005-04-05 18:19:50 +0000526 return;
527 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000528 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000529 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000530 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000531 printOperand(MI, 0);
532 O << ", ";
533 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000534 O << '\n';
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000535 return;
536 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000537 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000538 unsigned char SH = MI->getOperand(2).getImm();
539 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000540 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
541 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000542 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000543 printOperand(MI, 0);
544 O << ", ";
545 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000546 O << ", " << (unsigned int)SH << '\n';
Chris Lattner566c1b12006-11-18 01:23:56 +0000547 return;
548 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000549 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000550
Nate Begemane59bf592004-08-14 22:09:10 +0000551 if (printInstruction(MI))
552 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000553
Torok Edwinc23197a2009-07-14 16:55:14 +0000554 llvm_unreachable("Unhandled instruction in asm writer!");
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000555}
556
Jim Laskeybf111822006-12-21 20:26:09 +0000557/// runOnMachineFunction - This uses the printMachineInstruction()
558/// method to print assembly for each instruction.
559///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000560bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000561 this->MF = &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()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000574 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000575 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000576 case Function::InternalLinkage: // Symbols default to internal.
577 break;
578 case Function::ExternalLinkage:
579 O << "\t.global\t" << CurrentFnName << '\n'
580 << "\t.type\t" << CurrentFnName << ", @function\n";
581 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000582 case Function::WeakAnyLinkage:
583 case Function::WeakODRLinkage:
584 case Function::LinkOnceAnyLinkage:
585 case Function::LinkOnceODRLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000586 O << "\t.global\t" << CurrentFnName << '\n';
587 O << "\t.weak\t" << CurrentFnName << '\n';
588 break;
589 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000590
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000591 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000592
Bill Wendling20c568f2009-06-30 22:38:32 +0000593 EmitAlignment(MF.getAlignment(), F);
Jim Laskeybf111822006-12-21 20:26:09 +0000594 O << CurrentFnName << ":\n";
595
596 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000597 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000598
599 // Print out code for the function.
600 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
601 I != E; ++I) {
602 // Print a label for the basic block.
603 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000604 printBasicBlockLabel(I, true, true);
Jim Laskeybf111822006-12-21 20:26:09 +0000605 O << '\n';
606 }
607 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
608 II != E; ++II) {
609 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000610 printMachineInstruction(II);
611 }
612 }
613
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000614 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000615
616 // Print out jump tables referenced by the function.
617 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000618
Dale Johannesenf94a3272008-12-03 19:33:10 +0000619 SwitchToSection(TAI->SectionForGlobal(F));
620
Jim Laskeybf111822006-12-21 20:26:09 +0000621 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000622 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000623
Dan Gohmane5f4de42008-11-07 19:49:17 +0000624 O.flush();
625
Jim Laskeybf111822006-12-21 20:26:09 +0000626 // We didn't modify anything.
627 return false;
628}
629
Chris Lattnerec321b42008-02-15 19:04:54 +0000630/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000631/// Don't print things like \\n or \\0.
David Greene71847812009-07-14 20:18:05 +0000632static void PrintUnmangledNameSafely(const Value *V, formatted_raw_ostream &OS) {
Chris Lattnerec321b42008-02-15 19:04:54 +0000633 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
634 Name != E; ++Name)
635 if (isprint(*Name))
636 OS << *Name;
637}
638
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000639void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000640 const TargetData *TD = TM.getTargetData();
641
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000642 if (!GVar->hasInitializer())
643 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000644
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000645 // Check to see if this is a special global used by LLVM, if so, emit it.
646 if (EmitSpecialLLVMGlobal(GVar))
647 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000648
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000649 std::string name = Mang->getMangledName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000650
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000651 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000652
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000653 Constant *C = GVar->getInitializer();
Devang Patel0f05d222009-06-26 02:26:12 +0000654 if (isa<MDNode>(C) || isa<MDString>(C))
Devang Patele4c0c0f2009-06-25 00:47:42 +0000655 return;
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000656 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000657 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000658 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000659
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000660 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000661
662 if (C->isNullValue() && /* FIXME: Verify correct */
663 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000664 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000665 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000666 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000667
668 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000669 O << "\t.global " << name << '\n';
670 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000671 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000672 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000673 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000674 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000675 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000676 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000677 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000678 if (VerboseAsm) {
679 O << "\t\t" << TAI->getCommentString() << " '";
680 PrintUnmangledNameSafely(GVar, O);
681 O << "'";
682 }
683 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000684 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000685 }
686
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000687 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000688 case GlobalValue::LinkOnceAnyLinkage:
689 case GlobalValue::LinkOnceODRLinkage:
690 case GlobalValue::WeakAnyLinkage:
691 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000692 case GlobalValue::CommonLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000693 O << "\t.global " << name << '\n'
694 << "\t.type " << name << ", @object\n"
695 << "\t.weak " << name << '\n';
696 break;
697 case GlobalValue::AppendingLinkage:
698 // FIXME: appending linkage variables should go into a section of
699 // their name or something. For now, just emit them as external.
700 case GlobalValue::ExternalLinkage:
701 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000702 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000703 << "\t.type " << name << ", @object\n";
704 // FALL THROUGH
705 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000706 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000707 break;
708 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000709 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000710 }
711
712 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000713 O << name << ":";
714 if (VerboseAsm) {
715 O << "\t\t\t\t" << TAI->getCommentString() << " '";
716 PrintUnmangledNameSafely(GVar, O);
717 O << "'";
718 }
719 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000720
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000721 EmitGlobalConstant(C);
722 O << '\n';
723}
724
725bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
726 // Print out module-level global variables here.
727 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
728 I != E; ++I)
729 printModuleLevelGV(I);
730
Dan Gohmanb8275a32007-07-25 19:33:14 +0000731 return AsmPrinter::doFinalization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000732}
733
Nate Begemaned428532004-09-04 05:00:00 +0000734/// runOnMachineFunction - This uses the printMachineInstruction()
735/// method to print assembly for each instruction.
736///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000737bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000738 this->MF = &MF;
739
Chris Lattner8b8b9512005-11-21 07:51:23 +0000740 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000741 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000742
Nate Begemaned428532004-09-04 05:00:00 +0000743 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000744 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000745
746 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000747 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000748 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000749
Chris Lattnera637c322005-12-16 00:22:14 +0000750 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000751 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000752 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000753 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000754 break;
755 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000756 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000757 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000758 case Function::WeakAnyLinkage:
759 case Function::WeakODRLinkage:
760 case Function::LinkOnceAnyLinkage:
761 case Function::LinkOnceODRLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000762 O << "\t.globl\t" << CurrentFnName << '\n';
763 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000764 break;
765 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000766
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000767 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000768
Bill Wendling20c568f2009-06-30 22:38:32 +0000769 EmitAlignment(MF.getAlignment(), F);
Nate Begemaned428532004-09-04 05:00:00 +0000770 O << CurrentFnName << ":\n";
771
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000772 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000773 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000774
Bill Wendling381802f2008-01-26 06:51:24 +0000775 // If the function is empty, then we need to emit *something*. Otherwise, the
776 // function's label might be associated with something that it wasn't meant to
777 // be associated with. We emit a noop in this situation.
778 MachineFunction::iterator I = MF.begin();
779
Bill Wendling824a7212008-01-26 09:03:52 +0000780 if (++I == MF.end() && MF.front().empty())
781 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000782
Nate Begemaned428532004-09-04 05:00:00 +0000783 // Print out code for the function.
784 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
785 I != E; ++I) {
786 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000787 if (I != MF.begin()) {
Evan Chengf1c0ae92009-03-24 00:17:40 +0000788 printBasicBlockLabel(I, true, true, VerboseAsm);
Nate Begemancdf38c42006-05-02 05:37:32 +0000789 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000790 }
Bill Wendling381802f2008-01-26 06:51:24 +0000791 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
792 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000793 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000794 printMachineInstruction(II);
795 }
796 }
Nate Begemaned428532004-09-04 05:00:00 +0000797
Chris Lattnerfea13d32006-10-05 00:26:05 +0000798 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000799 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000800
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000801 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000802 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000803
Nate Begemaned428532004-09-04 05:00:00 +0000804 // We didn't modify anything.
805 return false;
806}
807
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000808
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000809bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000810 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000811 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000812 "ppc",
813 "ppc601",
814 "ppc602",
815 "ppc603",
816 "ppc7400",
817 "ppc750",
818 "ppc970",
819 "ppc64"
820 };
821
822 unsigned Directive = Subtarget.getDarwinDirective();
823 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
824 Directive = PPC::DIR_970;
825 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
826 Directive = PPC::DIR_7400;
827 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
828 Directive = PPC::DIR_64;
829 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000830 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000831
Dan Gohmanb8275a32007-07-25 19:33:14 +0000832 bool Result = AsmPrinter::doInitialization(M);
Devang Patel66b4d3b2009-06-20 01:00:07 +0000833 assert(MMI);
Dale Johannesen94618eb2008-07-09 20:43:39 +0000834
Jim Laskey2ada0852006-11-28 18:21:52 +0000835 // Prime text sections so they are adjacent. This reduces the likelihood a
836 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000837 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000838 "pure_instructions");
839 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000840 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000841 "pure_instructions,32");
842 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000843 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000844 "pure_instructions,16");
845 }
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000846 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000847
Dan Gohmanb8275a32007-07-25 19:33:14 +0000848 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000849}
850
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000851void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
852 const TargetData *TD = TM.getTargetData();
853
854 if (!GVar->hasInitializer())
855 return; // External global require no code
856
857 // Check to see if this is a special global used by LLVM, if so, emit it.
858 if (EmitSpecialLLVMGlobal(GVar)) {
859 if (TM.getRelocationModel() == Reloc::Static) {
860 if (GVar->getName() == "llvm.global_ctors")
861 O << ".reference .constructors_used\n";
862 else if (GVar->getName() == "llvm.global_dtors")
863 O << ".reference .destructors_used\n";
864 }
865 return;
866 }
867
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000868 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000869 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000870
871 Constant *C = GVar->getInitializer();
872 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000873 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000874 unsigned Align = TD->getPreferredAlignmentLog(GVar);
875
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000876 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000877
878 if (C->isNullValue() && /* FIXME: Verify correct */
879 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000880 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000881 GVar->isWeakForLinker()) &&
Evan Chengcaa0c2c2009-02-18 02:19:52 +0000882 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000883 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
884
885 if (GVar->hasExternalLinkage()) {
886 O << "\t.globl " << name << '\n';
887 O << "\t.zerofill __DATA, __common, " << name << ", "
888 << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000889 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000890 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000891 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000892 O << "\t.globl " << name << '\n'
893 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000894 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000895 O << name << ":";
896 if (VerboseAsm) {
897 O << "\t\t\t\t" << TAI->getCommentString() << " ";
898 PrintUnmangledNameSafely(GVar, O);
899 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000900 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000901 EmitGlobalConstant(C);
902 return;
903 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000904 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000905 // Darwin 9 and above support aligned common data.
906 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000907 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000908 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000909 if (VerboseAsm) {
910 O << "\t\t" << TAI->getCommentString() << " '";
911 PrintUnmangledNameSafely(GVar, O);
912 O << "'";
913 }
914 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000915 return;
916 }
917
918 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000919 case GlobalValue::LinkOnceAnyLinkage:
920 case GlobalValue::LinkOnceODRLinkage:
921 case GlobalValue::WeakAnyLinkage:
922 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000923 case GlobalValue::CommonLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000924 O << "\t.globl " << name << '\n'
925 << "\t.weak_definition " << name << '\n';
926 break;
927 case GlobalValue::AppendingLinkage:
928 // FIXME: appending linkage variables should go into a section of
929 // their name or something. For now, just emit them as external.
930 case GlobalValue::ExternalLinkage:
931 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000932 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000933 // FALL THROUGH
934 case GlobalValue::InternalLinkage:
Evan Cheng1902a122009-01-25 06:32:01 +0000935 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000936 break;
937 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000938 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000939 }
940
941 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000942 O << name << ":";
943 if (VerboseAsm) {
944 O << "\t\t\t\t" << TAI->getCommentString() << " '";
945 PrintUnmangledNameSafely(GVar, O);
946 O << "'";
947 }
948 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000949
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000950 EmitGlobalConstant(C);
951 O << '\n';
952}
953
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000954bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +0000955 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000956
957 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +0000958 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000959 I != E; ++I)
960 printModuleLevelGV(I);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000961
Chris Lattner7e097e42006-06-27 01:02:25 +0000962 bool isPPC64 = TD->getPointerSizeInBits() == 64;
963
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000964 // Output stubs for dynamically-linked functions
Chris Lattner35d86fe2006-07-26 21:12:04 +0000965 if (TM.getRelocationModel() == Reloc::PIC_) {
Evan Chengae94e592008-12-05 01:06:39 +0000966 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattnerdeea4162005-12-13 04:33:58 +0000967 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000968 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000969 "pure_instructions,32");
Chris Lattner7e097e42006-06-27 01:02:25 +0000970 EmitAlignment(4);
Evan Chengae94e592008-12-05 01:06:39 +0000971 const char *p = i->getKeyData();
972 bool hasQuote = p[0]=='\"';
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000973 printSuffixedName(p, "$stub");
974 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +0000975 O << "\t.indirect_symbol " << p << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +0000976 O << "\tmflr r0\n";
Evan Chengae94e592008-12-05 01:06:39 +0000977 O << "\tbcl 20,31,";
978 if (hasQuote)
979 O << "\"L0$" << &p[1];
980 else
981 O << "L0$" << p;
982 O << '\n';
983 if (hasQuote)
984 O << "\"L0$" << &p[1];
985 else
986 O << "L0$" << p;
987 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000988 O << "\tmflr r11\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000989 O << "\taddis r11,r11,ha16(";
990 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +0000991 O << "-";
992 if (hasQuote)
993 O << "\"L0$" << &p[1];
994 else
995 O << "L0$" << p;
996 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000997 O << "\tmtlr r0\n";
Chris Lattner7e097e42006-06-27 01:02:25 +0000998 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000999 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001000 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001001 O << "\tlwzu r12,lo16(";
1002 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +00001003 O << "-";
1004 if (hasQuote)
1005 O << "\"L0$" << &p[1];
1006 else
1007 O << "L0$" << p;
1008 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001009 O << "\tmtctr r12\n";
1010 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001011 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001012 printSuffixedName(p, "$lazy_ptr");
1013 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001014 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001015 if (isPPC64)
1016 O << "\t.quad dyld_stub_binding_helper\n";
1017 else
1018 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001019 }
1020 } else {
Evan Chengae94e592008-12-05 01:06:39 +00001021 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattnerdeea4162005-12-13 04:33:58 +00001022 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001023 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001024 "pure_instructions,16");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001025 EmitAlignment(4);
Evan Chengae94e592008-12-05 01:06:39 +00001026 const char *p = i->getKeyData();
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001027 printSuffixedName(p, "$stub");
1028 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001029 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001030 O << "\tlis r11,ha16(";
1031 printSuffixedName(p, "$lazy_ptr");
1032 O << ")\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001033 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001034 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001035 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001036 O << "\tlwzu r12,lo16(";
1037 printSuffixedName(p, "$lazy_ptr");
1038 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001039 O << "\tmtctr r12\n";
1040 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001041 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001042 printSuffixedName(p, "$lazy_ptr");
1043 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001044 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001045 if (isPPC64)
1046 O << "\t.quad dyld_stub_binding_helper\n";
1047 else
1048 O << "\t.long dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001049 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001050 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001051
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001052 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001053
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001054 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001055 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001056 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +00001057 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001058 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1059 E = Personalities.end(); I != E; ++I)
1060 if (*I) GVStubs.insert("_" + (*I)->getName());
1061 }
1062
Chris Lattnera637c322005-12-16 00:22:14 +00001063 // Output stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001064 if (!GVStubs.empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001065 SwitchToDataSection(".non_lazy_symbol_pointer");
Evan Chengae94e592008-12-05 01:06:39 +00001066 for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
1067 i != e; ++i) {
1068 std::string p = i->getKeyData();
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001069 printSuffixedName(p, "$non_lazy_ptr");
1070 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001071 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner9f029a62006-06-27 20:20:53 +00001072 if (isPPC64)
1073 O << "\t.quad\t0\n";
1074 else
1075 O << "\t.long\t0\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001076 }
Nate Begemane59bf592004-08-14 22:09:10 +00001077 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001078
Evan Chengae94e592008-12-05 01:06:39 +00001079 if (!HiddenGVStubs.empty()) {
1080 SwitchToSection(TAI->getDataSection());
1081 for (StringSet<>::iterator i = HiddenGVStubs.begin(), e = HiddenGVStubs.end();
1082 i != e; ++i) {
1083 std::string p = i->getKeyData();
1084 EmitAlignment(isPPC64 ? 3 : 2);
1085 printSuffixedName(p, "$non_lazy_ptr");
1086 O << ":\n";
1087 if (isPPC64)
1088 O << "\t.quad\t";
1089 else
1090 O << "\t.long\t";
1091 O << p << '\n';
1092 }
1093 }
1094
Chris Lattner5b0ac992005-11-01 00:12:36 +00001095 // Funny Darwin hack: This flag tells the linker that no global symbols
1096 // contain code that falls through to other global symbols (e.g. the obvious
1097 // implementation of multiple entry points). If this doesn't occur, the
1098 // linker can safely perform dead code stripping. Since LLVM never generates
1099 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001100 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001101
Dan Gohmanb8275a32007-07-25 19:33:14 +00001102 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001103}
Nate Begemaned428532004-09-04 05:00:00 +00001104
Chris Lattner4da1c822006-09-20 17:12:19 +00001105
1106
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001107/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1108/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001109/// Darwin assembler can deal with.
1110///
David Greene71847812009-07-14 20:18:05 +00001111FunctionPass *llvm::createPPCAsmPrinterPass(formatted_raw_ostream &o,
Bill Wendling57f0db82009-02-24 08:30:20 +00001112 PPCTargetMachine &tm,
Bill Wendling98a366d2009-04-29 23:29:43 +00001113 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001114 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1115
1116 if (Subtarget->isDarwin()) {
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +00001117 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Jim Laskeybf111822006-12-21 20:26:09 +00001118 } else {
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +00001119 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Jim Laskeybf111822006-12-21 20:26:09 +00001120 }
Chris Lattner4da1c822006-09-20 17:12:19 +00001121}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001122
1123namespace {
1124 static struct Register {
1125 Register() {
1126 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1127 }
1128 } Registrator;
1129}
Oscar Fuentes92adc192008-11-15 21:36:30 +00001130
1131extern "C" int PowerPCAsmPrinterForceLink;
1132int PowerPCAsmPrinterForceLink = 0;
Douglas Gregor1555a232009-06-16 20:12:29 +00001133
Bob Wilsona96751f2009-06-23 23:59:40 +00001134// Force static initialization.
1135extern "C" void LLVMInitializePowerPCAsmPrinter() { }