blob: b8b1516fc0b90acf7ac7d5081c6c82e98d76150b [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:
Chris Lattner8f831cb2009-07-15 01:14:44 +000056 StringSet<> FnStubs;
57 StringMap<std::string> GVStubs, HiddenGVStubs;
Chris Lattnerdadceed2006-09-20 17:07:15 +000058 const PPCSubtarget &Subtarget;
Bill Wendling57f0db82009-02-24 08:30:20 +000059 public:
David Greene71847812009-07-14 20:18:05 +000060 explicit PPCAsmPrinter(formatted_raw_ostream &O, TargetMachine &TM,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +000061 const TargetAsmInfo *T, bool V)
62 : AsmPrinter(O, TM, T, V),
Bill Wendling57f0db82009-02-24 08:30:20 +000063 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000064
Misha Brukman5dfe3a92004-06-21 16:55:25 +000065 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000066 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000067 }
68
Nate Begeman21e463b2005-10-16 05:39:50 +000069 PPCTargetMachine &getTM() {
70 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000071 }
72
Nate Begemanadeb43d2005-07-20 22:42:00 +000073 unsigned enumRegToMachineReg(unsigned enumReg) {
74 switch (enumReg) {
Torok Edwinc23197a2009-07-14 16:55:14 +000075 default: llvm_unreachable("Unhandled register!");
Nate Begemanadeb43d2005-07-20 22:42:00 +000076 case PPC::CR0: return 0;
77 case PPC::CR1: return 1;
78 case PPC::CR2: return 2;
79 case PPC::CR3: return 3;
80 case PPC::CR4: return 4;
81 case PPC::CR5: return 5;
82 case PPC::CR6: return 6;
83 case PPC::CR7: return 7;
84 }
Torok Edwinc23197a2009-07-14 16:55:14 +000085 llvm_unreachable(0);
Nate Begemanadeb43d2005-07-20 22:42:00 +000086 }
87
Nate Begemane59bf592004-08-14 22:09:10 +000088 /// printInstruction - This method is automatically generated by tablegen
89 /// from the instruction set description. This method returns true if the
90 /// machine instruction was sufficiently described to print it, otherwise it
91 /// returns false.
92 bool printInstruction(const MachineInstr *MI);
93
Misha Brukman5dfe3a92004-06-21 16:55:25 +000094 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +000095 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +000096
Jim Laskeyb608a4d2006-12-20 20:56:46 +000097 /// stripRegisterPrefix - This method strips the character prefix from a
98 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +000099 const char *stripRegisterPrefix(const char *RegName) {
100 switch (RegName[0]) {
101 case 'r':
102 case 'f':
103 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000104 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000105 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000106
Jim Laskey40ee69f2006-12-20 21:33:34 +0000107 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000108 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000109
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000110 /// printRegister - Print register according to target requirements.
111 ///
112 void printRegister(const MachineOperand &MO, bool R0AsZero) {
113 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000114 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000115
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000116 // If we should use 0 for R0.
117 if (R0AsZero && RegNo == PPC::R0) {
118 O << "0";
119 return;
120 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000121
Bill Wendling74ab84c2008-02-26 21:11:01 +0000122 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000123 // Linux assembler (Others?) does not take register mnemonics.
124 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000125 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
126 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000127 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000128
Chris Lattner58873272006-02-01 22:38:46 +0000129 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000130 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000131 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000132 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000133 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000134 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000135 } else {
136 printOp(MO);
137 }
138 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000139
Chris Lattner58873272006-02-01 22:38:46 +0000140 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000141 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000142 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
143 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000144
145
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000146 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000147 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000148 value = (value << (32-5)) >> (32-5);
149 O << (int)value;
150 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000151 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000152 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000153 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000154 O << (unsigned int)value;
155 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000156 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000157 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000158 assert(value <= 63 && "Invalid u6imm argument!");
159 O << (unsigned int)value;
160 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000161 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000162 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000163 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000164 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000165 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000166 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000167 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000168 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000169 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000170 } else {
171 O << "lo16(";
172 printOp(MI->getOperand(OpNo));
173 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000174 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000175 else
176 O << ')';
177 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000178 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000179 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000180 // Branches can take an immediate operand. This is used by the branch
181 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000182 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000183 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000184 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000185 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000186 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000187 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000188 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000189 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000190 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000191 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
192 GlobalValue *GV = MO.getGlobal();
Chris Lattner20674332009-07-02 16:08:53 +0000193 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Chris Lattnera637c322005-12-16 00:22:14 +0000194 // Dynamically-resolved functions need a stub for the function.
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000195 std::string Name = Mang->getMangledName(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000196 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000197 printSuffixedName(Name, "$stub");
Chris Lattnera637c322005-12-16 00:22:14 +0000198 return;
199 }
200 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000201 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
Jim Laskey563321a2006-09-06 18:34:40 +0000202 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattner9542f9712005-11-17 19:40:30 +0000203 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000204 printSuffixedName(Name, "$stub");
Chris Lattner9542f9712005-11-17 19:40:30 +0000205 return;
Chris Lattner9542f9712005-11-17 19:40:30 +0000206 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000207 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000208
Chris Lattner9542f9712005-11-17 19:40:30 +0000209 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000210 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000211 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000212 O << (int)MI->getOperand(OpNo).getImm()*4;
Nate Begeman422b0ce2005-11-16 00:48:01 +0000213 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000214 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000215 O << "\"L" << getFunctionNumber() << "$pb\"\n";
216 O << "\"L" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000217 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000218 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000219 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000220 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000221 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000222 if (Subtarget.isDarwin()) O << "ha16(";
Nate Begeman2497e632005-07-21 20:44:43 +0000223 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000224 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000225 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000226 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000227 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000228 else
229 O << "@ha";
Nate Begeman2497e632005-07-21 20:44:43 +0000230 }
Nate Begemaned428532004-09-04 05:00:00 +0000231 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000232 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000233 if (MI->getOperand(OpNo).isImm()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000234 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000235 } else {
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000236 if (Subtarget.isDarwin()) O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000237 printOp(MI->getOperand(OpNo));
Chris Lattner35d86fe2006-07-26 21:12:04 +0000238 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000239 O << "-\"L" << getFunctionNumber() << "$pb\"";
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000240 if (Subtarget.isDarwin())
Nate Begeman2497e632005-07-21 20:44:43 +0000241 O << ')';
Nick Lewyckyf54949d2007-03-03 05:29:51 +0000242 else
243 O << "@l";
Nate Begemaned428532004-09-04 05:00:00 +0000244 }
245 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000246 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000247 unsigned CCReg = MI->getOperand(OpNo).getReg();
248 unsigned RegNo = enumRegToMachineReg(CCReg);
249 O << (0x80 >> RegNo);
250 }
Chris Lattner2c003e22006-02-24 20:27:40 +0000251 // The new addressing mode printers.
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000252 void printMemRegImm(const MachineInstr *MI, unsigned OpNo) {
253 printSymbolLo(MI, OpNo);
254 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000255 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattner13feb582006-03-21 17:21:13 +0000256 MI->getOperand(OpNo+1).getReg() == PPC::R0)
257 O << "0";
258 else
259 printOperand(MI, OpNo+1);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000260 O << ')';
261 }
Chris Lattnere5ba5802006-03-22 05:26:03 +0000262 void printMemRegImmShifted(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000263 if (MI->getOperand(OpNo).isImm())
Chris Lattnere5ba5802006-03-22 05:26:03 +0000264 printS16X4ImmOperand(MI, OpNo);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000265 else
Chris Lattnere5ba5802006-03-22 05:26:03 +0000266 printSymbolLo(MI, OpNo);
267 O << '(';
Dan Gohmand735b802008-10-03 15:45:36 +0000268 if (MI->getOperand(OpNo+1).isReg() &&
Chris Lattnere5ba5802006-03-22 05:26:03 +0000269 MI->getOperand(OpNo+1).getReg() == PPC::R0)
270 O << "0";
271 else
272 printOperand(MI, OpNo+1);
273 O << ')';
274 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000275
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000276 void printMemRegReg(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman88276b82005-12-19 23:40:42 +0000277 // When used as the base register, r0 reads constant zero rather than
278 // the value contained in the register. For this reason, the darwin
279 // assembler requires that we print r0 as 0 (no r) when used as the base.
280 const MachineOperand &MO = MI->getOperand(OpNo);
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000281 printRegister(MO, true);
Nate Begeman7fd1edd2005-12-19 23:25:09 +0000282 O << ", ";
283 printOperand(MI, OpNo+1);
284 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000285
286 void printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000287 const char *Modifier);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000288
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000289 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000290 virtual bool doFinalization(Module &M) = 0;
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000291
292 virtual void EmitExternalGlobal(const GlobalVariable *GV);
Nate Begemaned428532004-09-04 05:00:00 +0000293 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000294
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000295 /// PPCLinuxAsmPrinter - PowerPC assembly printer, customized for Linux
Bill Wendling57f0db82009-02-24 08:30:20 +0000296 class VISIBILITY_HIDDEN PPCLinuxAsmPrinter : public PPCAsmPrinter {
Bill Wendling57f0db82009-02-24 08:30:20 +0000297 public:
David Greene71847812009-07-14 20:18:05 +0000298 explicit PPCLinuxAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000299 const TargetAsmInfo *T, bool V)
300 : PPCAsmPrinter(O, TM, T, V){}
Jim Laskeybf111822006-12-21 20:26:09 +0000301
302 virtual const char *getPassName() const {
303 return "Linux PPC Assembly Printer";
304 }
305
306 bool runOnMachineFunction(MachineFunction &F);
Jim Laskeybf111822006-12-21 20:26:09 +0000307 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000308
Jim Laskeybf111822006-12-21 20:26:09 +0000309 void getAnalysisUsage(AnalysisUsage &AU) const {
310 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000311 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000312 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000313 PPCAsmPrinter::getAnalysisUsage(AU);
314 }
315
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000316 void printModuleLevelGV(const GlobalVariable* GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000317 };
318
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000319 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
320 /// OS X
Bill Wendling57f0db82009-02-24 08:30:20 +0000321 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
David Greene71847812009-07-14 20:18:05 +0000322 formatted_raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000323 public:
David Greene71847812009-07-14 20:18:05 +0000324 explicit PPCDarwinAsmPrinter(formatted_raw_ostream &O, PPCTargetMachine &TM,
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +0000325 const TargetAsmInfo *T, bool V)
326 : PPCAsmPrinter(O, TM, T, V), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000327
328 virtual const char *getPassName() const {
329 return "Darwin PPC Assembly Printer";
330 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000331
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000332 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman18ed0292005-07-21 01:25:49 +0000333 bool doInitialization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000334 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000335
Jim Laskeyb2efb852006-01-04 22:28:25 +0000336 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000337 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000338 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000339 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000340 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000341 }
342
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000343 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000344 };
345} // end of anonymous namespace
346
Nate Begemane59bf592004-08-14 22:09:10 +0000347// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000348#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000349
Chris Lattner9ba13e42005-11-17 19:25:59 +0000350void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000351 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000352 case MachineOperand::MO_Immediate:
Torok Edwinc23197a2009-07-14 16:55:14 +0000353 llvm_unreachable("printOp() does not handle immediate values");
Misha Brukman97a296f2004-07-21 20:11:11 +0000354
Nate Begeman37efe672006-04-22 18:53:45 +0000355 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000356 printBasicBlockLabel(MO.getMBB());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000357 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000358 case MachineOperand::MO_JumpTableIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000359 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000360 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000361 // FIXME: PIC relocation model
362 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000363 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000364 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000365 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000366 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000367 case MachineOperand::MO_ExternalSymbol: {
Chris Lattnera637c322005-12-16 00:22:14 +0000368 // Computing the address of an external symbol, not calling it.
Chris Lattner8f831cb2009-07-15 01:14:44 +0000369 std::string Name(TAI->getGlobalPrefix());
370 Name += MO.getSymbolName();
371
Evan Cheng4c1aa862006-02-22 20:19:42 +0000372 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner8f831cb2009-07-15 01:14:44 +0000373 GVStubs[Name] = Name+"$non_lazy_ptr";
374 Name += "$non_lazy_ptr";
Chris Lattnera637c322005-12-16 00:22:14 +0000375 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000376 O << Name;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000377 return;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000378 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000379 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000380 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000381 GlobalValue *GV = MO.getGlobal();
Chris Lattner8f831cb2009-07-15 01:14:44 +0000382 std::string Name;
Misha Brukmane2eceb52004-07-23 16:08:20 +0000383
Nate Begemanfcf4a422004-10-17 23:01:34 +0000384 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner8f831cb2009-07-15 01:14:44 +0000385 if (TM.getRelocationModel() != Reloc::Static &&
386 (GV->isDeclaration() || GV->isWeakForLinker())) {
387 if (!GV->hasHiddenVisibility()) {
388 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
389 GVStubs[Mang->getMangledName(GV)] = Name;
390 } else if (GV->isDeclaration() || GV->hasCommonLinkage() ||
391 GV->hasAvailableExternallyLinkage()) {
392 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
393 HiddenGVStubs[Mang->getMangledName(GV)] = Name;
394 } else {
395 Name = Mang->getMangledName(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000396 }
Chris Lattner8f831cb2009-07-15 01:14:44 +0000397 } else {
398 Name = Mang->getMangledName(GV);
Nate Begemanb73a7112004-08-13 09:32:01 +0000399 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000400 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000401
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000402 printOffset(MO.getOffset());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000403 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000404 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000405
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000406 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000407 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000408 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000409 }
410}
411
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000412/// EmitExternalGlobal - In this case we need to use the indirect symbol.
413///
414void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling7d16e852009-04-10 00:12:49 +0000415 std::string Name;
Chris Lattner8f831cb2009-07-15 01:14:44 +0000416
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000417 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattner8f831cb2009-07-15 01:14:44 +0000418 Name = Mang->getMangledName(GV, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +0000419 } else {
420 Name = Mang->getMangledName(GV);
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000421 }
422 O << Name;
423}
424
Chris Lattnere3f01572006-02-23 19:31:10 +0000425/// PrintAsmOperand - Print out an operand for an inline asm expression.
426///
427bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000428 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000429 const char *ExtraCode) {
430 // Does this asm operand have a single letter operand modifier?
431 if (ExtraCode && ExtraCode[0]) {
432 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000433
Chris Lattnere3f01572006-02-23 19:31:10 +0000434 switch (ExtraCode[0]) {
435 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000436 case 'c': // Don't print "$" before a global var name or constant.
437 // PPC never has a prefix.
438 printOperand(MI, OpNo);
439 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000440 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000441 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000442 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000443 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000444 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000445 return true;
446 ++OpNo; // Return the high-part.
447 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000448 case 'I':
449 // Write 'i' if an integer constant, otherwise nothing. Used to print
450 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000451 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000452 O << "i";
453 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000454 }
455 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000456
Chris Lattnere3f01572006-02-23 19:31:10 +0000457 printOperand(MI, OpNo);
458 return false;
459}
460
Chris Lattner2c003e22006-02-24 20:27:40 +0000461bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000462 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000463 const char *ExtraCode) {
464 if (ExtraCode && ExtraCode[0])
465 return true; // Unknown modifier.
Dan Gohmand735b802008-10-03 15:45:36 +0000466 if (MI->getOperand(OpNo).isReg())
Chris Lattner9aa28952007-02-01 00:39:08 +0000467 printMemRegReg(MI, OpNo);
468 else
469 printMemRegImm(MI, OpNo);
Chris Lattner2c003e22006-02-24 20:27:40 +0000470 return false;
471}
Chris Lattnere3f01572006-02-23 19:31:10 +0000472
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000473void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000474 const char *Modifier) {
475 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
476 unsigned Code = MI->getOperand(OpNo).getImm();
477 if (!strcmp(Modifier, "cc")) {
478 switch ((PPC::Predicate)Code) {
479 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
480 case PPC::PRED_LT: O << "lt"; return;
481 case PPC::PRED_LE: O << "le"; return;
482 case PPC::PRED_EQ: O << "eq"; return;
483 case PPC::PRED_GE: O << "ge"; return;
484 case PPC::PRED_GT: O << "gt"; return;
485 case PPC::PRED_NE: O << "ne"; return;
486 case PPC::PRED_UN: O << "un"; return;
487 case PPC::PRED_NU: O << "nu"; return;
488 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000489
Chris Lattneraf53a872006-11-04 05:27:39 +0000490 } else {
491 assert(!strcmp(Modifier, "reg") &&
492 "Need to specify 'cc' or 'reg' as predicate op modifier!");
493 // Don't print the register for 'always'.
494 if (Code == PPC::PRED_ALWAYS) return;
495 printOperand(MI, OpNo+1);
496 }
497}
498
499
Nate Begemane59bf592004-08-14 22:09:10 +0000500/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
501/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000502///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000503void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000504 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000505
Nate Begemanad5f65c2005-04-05 18:19:50 +0000506 // Check for slwi/srwi mnemonics.
507 if (MI->getOpcode() == PPC::RLWINM) {
508 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000509 unsigned char SH = MI->getOperand(2).getImm();
510 unsigned char MB = MI->getOperand(3).getImm();
511 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000512 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000513 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000514 }
515 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000516 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000517 SH = 32-SH;
518 }
519 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000520 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000521 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000522 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000523 O << ", " << (unsigned int)SH << '\n';
Nate Begemanad5f65c2005-04-05 18:19:50 +0000524 return;
525 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000526 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000527 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000528 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000529 printOperand(MI, 0);
530 O << ", ";
531 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000532 O << '\n';
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000533 return;
534 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000535 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000536 unsigned char SH = MI->getOperand(2).getImm();
537 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000538 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
539 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000540 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000541 printOperand(MI, 0);
542 O << ", ";
543 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000544 O << ", " << (unsigned int)SH << '\n';
Chris Lattner566c1b12006-11-18 01:23:56 +0000545 return;
546 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000547 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000548
Nate Begemane59bf592004-08-14 22:09:10 +0000549 if (printInstruction(MI))
550 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000551
Torok Edwinc23197a2009-07-14 16:55:14 +0000552 llvm_unreachable("Unhandled instruction in asm writer!");
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000553}
554
Jim Laskeybf111822006-12-21 20:26:09 +0000555/// runOnMachineFunction - This uses the printMachineInstruction()
556/// method to print assembly for each instruction.
557///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000558bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000559 this->MF = &MF;
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000560
Jim Laskeybf111822006-12-21 20:26:09 +0000561 SetupMachineFunction(MF);
562 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000563
Jim Laskeybf111822006-12-21 20:26:09 +0000564 // Print out constants referenced by the function
565 EmitConstantPool(MF.getConstantPool());
566
567 // Print out labels for the function.
568 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000569 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000570
Jim Laskeybf111822006-12-21 20:26:09 +0000571 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000572 default: llvm_unreachable("Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000573 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000574 case Function::InternalLinkage: // Symbols default to internal.
575 break;
576 case Function::ExternalLinkage:
577 O << "\t.global\t" << CurrentFnName << '\n'
578 << "\t.type\t" << CurrentFnName << ", @function\n";
579 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000580 case Function::WeakAnyLinkage:
581 case Function::WeakODRLinkage:
582 case Function::LinkOnceAnyLinkage:
583 case Function::LinkOnceODRLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000584 O << "\t.global\t" << CurrentFnName << '\n';
585 O << "\t.weak\t" << CurrentFnName << '\n';
586 break;
587 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000588
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000589 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000590
Bill Wendling20c568f2009-06-30 22:38:32 +0000591 EmitAlignment(MF.getAlignment(), F);
Jim Laskeybf111822006-12-21 20:26:09 +0000592 O << CurrentFnName << ":\n";
593
594 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000595 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000596
597 // Print out code for the function.
598 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
599 I != E; ++I) {
600 // Print a label for the basic block.
601 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000602 printBasicBlockLabel(I, true, true);
Jim Laskeybf111822006-12-21 20:26:09 +0000603 O << '\n';
604 }
605 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
606 II != E; ++II) {
607 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000608 printMachineInstruction(II);
609 }
610 }
611
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000612 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000613
614 // Print out jump tables referenced by the function.
615 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000616
Dale Johannesenf94a3272008-12-03 19:33:10 +0000617 SwitchToSection(TAI->SectionForGlobal(F));
618
Jim Laskeybf111822006-12-21 20:26:09 +0000619 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000620 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000621
Dan Gohmane5f4de42008-11-07 19:49:17 +0000622 O.flush();
623
Jim Laskeybf111822006-12-21 20:26:09 +0000624 // We didn't modify anything.
625 return false;
626}
627
Chris Lattnerec321b42008-02-15 19:04:54 +0000628/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000629/// Don't print things like \\n or \\0.
David Greene71847812009-07-14 20:18:05 +0000630static void PrintUnmangledNameSafely(const Value *V, formatted_raw_ostream &OS) {
Chris Lattnerec321b42008-02-15 19:04:54 +0000631 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
632 Name != E; ++Name)
633 if (isprint(*Name))
634 OS << *Name;
635}
636
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000637void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000638 const TargetData *TD = TM.getTargetData();
639
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000640 if (!GVar->hasInitializer())
641 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000642
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000643 // Check to see if this is a special global used by LLVM, if so, emit it.
644 if (EmitSpecialLLVMGlobal(GVar))
645 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000646
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000647 std::string name = Mang->getMangledName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000648
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000649 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000650
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000651 Constant *C = GVar->getInitializer();
Devang Patel0f05d222009-06-26 02:26:12 +0000652 if (isa<MDNode>(C) || isa<MDString>(C))
Devang Patele4c0c0f2009-06-25 00:47:42 +0000653 return;
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000654 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000655 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000656 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000657
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000658 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000659
660 if (C->isNullValue() && /* FIXME: Verify correct */
661 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000662 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000663 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000664 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000665
666 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000667 O << "\t.global " << name << '\n';
668 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000669 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000670 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000671 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000672 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000673 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000674 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000675 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000676 if (VerboseAsm) {
677 O << "\t\t" << TAI->getCommentString() << " '";
678 PrintUnmangledNameSafely(GVar, O);
679 O << "'";
680 }
681 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000682 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000683 }
684
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000685 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000686 case GlobalValue::LinkOnceAnyLinkage:
687 case GlobalValue::LinkOnceODRLinkage:
688 case GlobalValue::WeakAnyLinkage:
689 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000690 case GlobalValue::CommonLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000691 O << "\t.global " << name << '\n'
692 << "\t.type " << name << ", @object\n"
693 << "\t.weak " << name << '\n';
694 break;
695 case GlobalValue::AppendingLinkage:
696 // FIXME: appending linkage variables should go into a section of
697 // their name or something. For now, just emit them as external.
698 case GlobalValue::ExternalLinkage:
699 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000700 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000701 << "\t.type " << name << ", @object\n";
702 // FALL THROUGH
703 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000704 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000705 break;
706 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000707 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000708 }
709
710 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000711 O << name << ":";
712 if (VerboseAsm) {
713 O << "\t\t\t\t" << TAI->getCommentString() << " '";
714 PrintUnmangledNameSafely(GVar, O);
715 O << "'";
716 }
717 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000718
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000719 EmitGlobalConstant(C);
720 O << '\n';
721}
722
723bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
724 // Print out module-level global variables here.
725 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
726 I != E; ++I)
727 printModuleLevelGV(I);
728
Dan Gohmanb8275a32007-07-25 19:33:14 +0000729 return AsmPrinter::doFinalization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000730}
731
Nate Begemaned428532004-09-04 05:00:00 +0000732/// runOnMachineFunction - This uses the printMachineInstruction()
733/// method to print assembly for each instruction.
734///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000735bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000736 this->MF = &MF;
737
Chris Lattner8b8b9512005-11-21 07:51:23 +0000738 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000739 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000740
Nate Begemaned428532004-09-04 05:00:00 +0000741 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000742 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000743
744 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000745 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000746 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000747
Chris Lattnera637c322005-12-16 00:22:14 +0000748 switch (F->getLinkage()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000749 default: llvm_unreachable("Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000750 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000751 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000752 break;
753 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000754 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000755 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000756 case Function::WeakAnyLinkage:
757 case Function::WeakODRLinkage:
758 case Function::LinkOnceAnyLinkage:
759 case Function::LinkOnceODRLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000760 O << "\t.globl\t" << CurrentFnName << '\n';
761 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000762 break;
763 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000764
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000765 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000766
Bill Wendling20c568f2009-06-30 22:38:32 +0000767 EmitAlignment(MF.getAlignment(), F);
Nate Begemaned428532004-09-04 05:00:00 +0000768 O << CurrentFnName << ":\n";
769
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000770 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000771 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000772
Bill Wendling381802f2008-01-26 06:51:24 +0000773 // If the function is empty, then we need to emit *something*. Otherwise, the
774 // function's label might be associated with something that it wasn't meant to
775 // be associated with. We emit a noop in this situation.
776 MachineFunction::iterator I = MF.begin();
777
Bill Wendling824a7212008-01-26 09:03:52 +0000778 if (++I == MF.end() && MF.front().empty())
779 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000780
Nate Begemaned428532004-09-04 05:00:00 +0000781 // Print out code for the function.
782 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
783 I != E; ++I) {
784 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000785 if (I != MF.begin()) {
Evan Chengf1c0ae92009-03-24 00:17:40 +0000786 printBasicBlockLabel(I, true, true, VerboseAsm);
Nate Begemancdf38c42006-05-02 05:37:32 +0000787 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000788 }
Bill Wendling381802f2008-01-26 06:51:24 +0000789 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
790 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000791 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000792 printMachineInstruction(II);
793 }
794 }
Nate Begemaned428532004-09-04 05:00:00 +0000795
Chris Lattnerfea13d32006-10-05 00:26:05 +0000796 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000797 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000798
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000799 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000800 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000801
Nate Begemaned428532004-09-04 05:00:00 +0000802 // We didn't modify anything.
803 return false;
804}
805
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000806
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000807bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000808 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000809 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000810 "ppc",
811 "ppc601",
812 "ppc602",
813 "ppc603",
814 "ppc7400",
815 "ppc750",
816 "ppc970",
817 "ppc64"
818 };
819
820 unsigned Directive = Subtarget.getDarwinDirective();
821 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
822 Directive = PPC::DIR_970;
823 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
824 Directive = PPC::DIR_7400;
825 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
826 Directive = PPC::DIR_64;
827 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000828 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000829
Dan Gohmanb8275a32007-07-25 19:33:14 +0000830 bool Result = AsmPrinter::doInitialization(M);
Devang Patel66b4d3b2009-06-20 01:00:07 +0000831 assert(MMI);
Dale Johannesen94618eb2008-07-09 20:43:39 +0000832
Jim Laskey2ada0852006-11-28 18:21:52 +0000833 // Prime text sections so they are adjacent. This reduces the likelihood a
834 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000835 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000836 "pure_instructions");
837 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000838 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000839 "pure_instructions,32");
840 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000841 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000842 "pure_instructions,16");
843 }
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000844 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000845
Dan Gohmanb8275a32007-07-25 19:33:14 +0000846 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000847}
848
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000849void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
850 const TargetData *TD = TM.getTargetData();
851
852 if (!GVar->hasInitializer())
853 return; // External global require no code
854
855 // Check to see if this is a special global used by LLVM, if so, emit it.
856 if (EmitSpecialLLVMGlobal(GVar)) {
857 if (TM.getRelocationModel() == Reloc::Static) {
858 if (GVar->getName() == "llvm.global_ctors")
859 O << ".reference .constructors_used\n";
860 else if (GVar->getName() == "llvm.global_dtors")
861 O << ".reference .destructors_used\n";
862 }
863 return;
864 }
865
Chris Lattnerb8158ac2009-07-14 18:17:16 +0000866 std::string name = Mang->getMangledName(GVar);
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000867 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000868
869 Constant *C = GVar->getInitializer();
870 const Type *Type = C->getType();
Duncan Sands777d2302009-05-09 07:06:46 +0000871 unsigned Size = TD->getTypeAllocSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000872 unsigned Align = TD->getPreferredAlignmentLog(GVar);
873
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000874 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000875
876 if (C->isNullValue() && /* FIXME: Verify correct */
877 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000878 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000879 GVar->isWeakForLinker()) &&
Evan Chengcaa0c2c2009-02-18 02:19:52 +0000880 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000881 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
882
883 if (GVar->hasExternalLinkage()) {
884 O << "\t.globl " << name << '\n';
885 O << "\t.zerofill __DATA, __common, " << name << ", "
886 << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000887 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000888 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000889 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000890 O << "\t.globl " << name << '\n'
891 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000892 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000893 O << name << ":";
894 if (VerboseAsm) {
895 O << "\t\t\t\t" << TAI->getCommentString() << " ";
896 PrintUnmangledNameSafely(GVar, O);
897 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000898 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000899 EmitGlobalConstant(C);
900 return;
901 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000902 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000903 // Darwin 9 and above support aligned common data.
904 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000905 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000906 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000907 if (VerboseAsm) {
908 O << "\t\t" << TAI->getCommentString() << " '";
909 PrintUnmangledNameSafely(GVar, O);
910 O << "'";
911 }
912 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000913 return;
914 }
915
916 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000917 case GlobalValue::LinkOnceAnyLinkage:
918 case GlobalValue::LinkOnceODRLinkage:
919 case GlobalValue::WeakAnyLinkage:
920 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000921 case GlobalValue::CommonLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000922 O << "\t.globl " << name << '\n'
923 << "\t.weak_definition " << name << '\n';
924 break;
925 case GlobalValue::AppendingLinkage:
926 // FIXME: appending linkage variables should go into a section of
927 // their name or something. For now, just emit them as external.
928 case GlobalValue::ExternalLinkage:
929 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000930 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000931 // FALL THROUGH
932 case GlobalValue::InternalLinkage:
Evan Cheng1902a122009-01-25 06:32:01 +0000933 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000934 break;
935 default:
Torok Edwinc23197a2009-07-14 16:55:14 +0000936 llvm_unreachable("Unknown linkage type!");
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000937 }
938
939 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000940 O << name << ":";
941 if (VerboseAsm) {
942 O << "\t\t\t\t" << TAI->getCommentString() << " '";
943 PrintUnmangledNameSafely(GVar, O);
944 O << "'";
945 }
946 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000947
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000948 EmitGlobalConstant(C);
949 O << '\n';
950}
951
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000952bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +0000953 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000954
955 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +0000956 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000957 I != E; ++I)
958 printModuleLevelGV(I);
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000959
Chris Lattner7e097e42006-06-27 01:02:25 +0000960 bool isPPC64 = TD->getPointerSizeInBits() == 64;
961
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000962 // Output stubs for dynamically-linked functions
Chris Lattnerea56f102009-07-15 00:55:58 +0000963 if (TM.getRelocationModel() == Reloc::PIC_ && !FnStubs.empty()) {
964 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
965 "pure_instructions,32");
Chris Lattner8f831cb2009-07-15 01:14:44 +0000966 for (StringSet<>::iterator I = FnStubs.begin(), E = FnStubs.end();
967 I != E; ++I) {
Chris Lattner7e097e42006-06-27 01:02:25 +0000968 EmitAlignment(4);
Chris Lattner8f831cb2009-07-15 01:14:44 +0000969 const char *p = I->getKeyData();
Evan Chengae94e592008-12-05 01:06:39 +0000970 bool hasQuote = p[0]=='\"';
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000971 printSuffixedName(p, "$stub");
972 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +0000973 O << "\t.indirect_symbol " << p << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +0000974 O << "\tmflr r0\n";
Evan Chengae94e592008-12-05 01:06:39 +0000975 O << "\tbcl 20,31,";
976 if (hasQuote)
977 O << "\"L0$" << &p[1];
978 else
979 O << "L0$" << p;
980 O << '\n';
981 if (hasQuote)
982 O << "\"L0$" << &p[1];
983 else
984 O << "L0$" << p;
985 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000986 O << "\tmflr r11\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000987 O << "\taddis r11,r11,ha16(";
988 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +0000989 O << "-";
990 if (hasQuote)
991 O << "\"L0$" << &p[1];
992 else
993 O << "L0$" << p;
994 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000995 O << "\tmtlr r0\n";
Chris Lattner7e097e42006-06-27 01:02:25 +0000996 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000997 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +0000998 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000999 O << "\tlwzu r12,lo16(";
1000 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +00001001 O << "-";
1002 if (hasQuote)
1003 O << "\"L0$" << &p[1];
1004 else
1005 O << "L0$" << p;
1006 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001007 O << "\tmtctr r12\n";
1008 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001009 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001010 printSuffixedName(p, "$lazy_ptr");
1011 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001012 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001013 if (isPPC64)
1014 O << "\t.quad dyld_stub_binding_helper\n";
1015 else
1016 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001017 }
Chris Lattnerea56f102009-07-15 00:55:58 +00001018 } else if (!FnStubs.empty()) {
1019 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
1020 "pure_instructions,16");
Chris Lattner8f831cb2009-07-15 01:14:44 +00001021 for (StringSet<>::iterator I = FnStubs.begin(), E = FnStubs.end();
1022 I != E; ++I) {
Chris Lattnerdeea4162005-12-13 04:33:58 +00001023 EmitAlignment(4);
Chris Lattner8f831cb2009-07-15 01:14:44 +00001024 const char *p = I->getKeyData();
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001025 printSuffixedName(p, "$stub");
1026 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001027 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001028 O << "\tlis r11,ha16(";
1029 printSuffixedName(p, "$lazy_ptr");
1030 O << ")\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001031 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001032 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001033 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001034 O << "\tlwzu r12,lo16(";
1035 printSuffixedName(p, "$lazy_ptr");
1036 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001037 O << "\tmtctr r12\n";
1038 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001039 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001040 printSuffixedName(p, "$lazy_ptr");
1041 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001042 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001043 if (isPPC64)
1044 O << "\t.quad dyld_stub_binding_helper\n";
1045 else
1046 O << "\t.long dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001047 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001048 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001049
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001050 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001051
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001052 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001053 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001054 // Only referenced functions get into the Personalities list.
Chris Lattner0de1fc42009-06-24 19:09:55 +00001055 const std::vector<Function *> &Personalities = MMI->getPersonalities();
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001056 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
Chris Lattner8f831cb2009-07-15 01:14:44 +00001057 E = Personalities.end(); I != E; ++I) {
1058 if (*I)
1059 GVStubs[Mang->getMangledName(*I)] =
Chris Lattner0f6c8f22009-07-15 01:16:38 +00001060 Mang->getMangledName(*I, "$non_lazy_ptr", true);
Chris Lattner8f831cb2009-07-15 01:14:44 +00001061 }
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001062 }
1063
Chris Lattnera637c322005-12-16 00:22:14 +00001064 // Output stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001065 if (!GVStubs.empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001066 SwitchToDataSection(".non_lazy_symbol_pointer");
Chris Lattner8f831cb2009-07-15 01:14:44 +00001067 for (StringMap<std::string>::iterator I = GVStubs.begin(),
1068 E = GVStubs.end(); I != E; ++I) {
1069 O << I->second << ":\n";
1070 O << "\t.indirect_symbol " << I->getKeyData() << '\n';
1071 O << (isPPC64 ? "\t.quad\t0\n" : "\t.long\t0\n");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001072 }
Nate Begemane59bf592004-08-14 22:09:10 +00001073 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001074
Evan Chengae94e592008-12-05 01:06:39 +00001075 if (!HiddenGVStubs.empty()) {
1076 SwitchToSection(TAI->getDataSection());
Chris Lattner8f831cb2009-07-15 01:14:44 +00001077 EmitAlignment(isPPC64 ? 3 : 2);
1078 for (StringMap<std::string>::iterator I = HiddenGVStubs.begin(),
1079 E = HiddenGVStubs.end(); I != E; ++I) {
1080 O << I->second << ":\n";
1081 O << (isPPC64 ? "\t.quad\t" : "\t.long\t") << I->getKeyData() << '\n';
Evan Chengae94e592008-12-05 01:06:39 +00001082 }
1083 }
1084
Chris Lattner5b0ac992005-11-01 00:12:36 +00001085 // Funny Darwin hack: This flag tells the linker that no global symbols
1086 // contain code that falls through to other global symbols (e.g. the obvious
1087 // implementation of multiple entry points). If this doesn't occur, the
1088 // linker can safely perform dead code stripping. Since LLVM never generates
1089 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001090 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001091
Dan Gohmanb8275a32007-07-25 19:33:14 +00001092 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001093}
Nate Begemaned428532004-09-04 05:00:00 +00001094
Chris Lattner4da1c822006-09-20 17:12:19 +00001095
1096
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001097/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1098/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001099/// Darwin assembler can deal with.
1100///
David Greene71847812009-07-14 20:18:05 +00001101FunctionPass *llvm::createPPCAsmPrinterPass(formatted_raw_ostream &o,
Bill Wendling57f0db82009-02-24 08:30:20 +00001102 PPCTargetMachine &tm,
Bill Wendling98a366d2009-04-29 23:29:43 +00001103 bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001104 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1105
1106 if (Subtarget->isDarwin()) {
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +00001107 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Jim Laskeybf111822006-12-21 20:26:09 +00001108 } else {
Daniel Dunbar5bcc8bd2009-07-01 01:48:54 +00001109 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), verbose);
Jim Laskeybf111822006-12-21 20:26:09 +00001110 }
Chris Lattner4da1c822006-09-20 17:12:19 +00001111}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001112
1113namespace {
1114 static struct Register {
1115 Register() {
1116 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1117 }
1118 } Registrator;
1119}
Oscar Fuentes92adc192008-11-15 21:36:30 +00001120
1121extern "C" int PowerPCAsmPrinterForceLink;
1122int PowerPCAsmPrinterForceLink = 0;
Douglas Gregor1555a232009-06-16 20:12:29 +00001123
Bob Wilsona96751f2009-06-23 23:59:40 +00001124// Force static initialization.
1125extern "C" void LLVMInitializePowerPCAsmPrinter() { }