blob: 5b68062ab1048d04115231934745849205b91e12 [file] [log] [blame]
Nate Begeman21e463b2005-10-16 05:39:50 +00001//===-- PPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --------=//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00008//===----------------------------------------------------------------------===//
9//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000010// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to PowerPC assembly language. This printer is
Chris Lattner83660c52004-07-28 20:18:53 +000012// the output mechanism used by `llc'.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000013//
Misha Brukman05fcd0c2004-07-08 17:58:04 +000014// Documentation at http://developer.apple.com/documentation/DeveloperTools/
15// Reference/Assembler/ASMIntroduction/chapter_1_section_1.html
Misha Brukman218bec72004-06-29 17:13:26 +000016//
Misha Brukman5dfe3a92004-06-21 16:55:25 +000017//===----------------------------------------------------------------------===//
18
Misha Brukman05794492004-06-24 17:31:42 +000019#define DEBUG_TYPE "asmprinter"
Chris Lattner26689592005-10-14 23:51:18 +000020#include "PPC.h"
Chris Lattnerdf4ed632006-11-17 22:10:59 +000021#include "PPCPredicates.h"
Chris Lattner16e71f22005-10-14 23:59:06 +000022#include "PPCTargetMachine.h"
Chris Lattner26689592005-10-14 23:51:18 +000023#include "PPCSubtarget.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
26#include "llvm/Module.h"
27#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000028#include "llvm/CodeGen/AsmPrinter.h"
Jim Laskeya7cea6f2006-01-04 13:52:30 +000029#include "llvm/CodeGen/DwarfWriter.h"
Jim Laskey44c3b9f2007-01-26 21:22:28 +000030#include "llvm/CodeGen/MachineModuleInfo.h"
Misha Brukman05794492004-06-24 17:31:42 +000031#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000032#include "llvm/CodeGen/MachineInstr.h"
Bill Wendling381802f2008-01-26 06:51:24 +000033#include "llvm/CodeGen/MachineInstrBuilder.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000034#include "llvm/Support/Mangler.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000035#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000036#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000038#include "llvm/Support/Compiler.h"
Owen Andersoncb371882008-08-21 00:14:44 +000039#include "llvm/Support/raw_ostream.h"
Jim Laskey563321a2006-09-06 18:34:40 +000040#include "llvm/Target/TargetAsmInfo.h"
Dan Gohman6f0d0242008-02-10 18:45:23 +000041#include "llvm/Target/TargetRegisterInfo.h"
Nate Begemand4c8bea2004-11-25 07:09:01 +000042#include "llvm/Target/TargetInstrInfo.h"
Evan Chengd2ee2182006-02-18 00:08:58 +000043#include "llvm/Target/TargetOptions.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000044#include "llvm/ADT/Statistic.h"
45#include "llvm/ADT/StringExtras.h"
Evan Chengae94e592008-12-05 01:06:39 +000046#include "llvm/ADT/StringSet.h"
Chris Lattnera3840792004-08-16 23:25:21 +000047using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000048
Chris Lattner95b2c7d2006-12-19 22:59:26 +000049STATISTIC(EmittedInsts, "Number of machine instrs printed");
Misha Brukman5dfe3a92004-06-21 16:55:25 +000050
Chris Lattner95b2c7d2006-12-19 22:59:26 +000051namespace {
Bill Wendling57f0db82009-02-24 08:30:20 +000052 class VISIBILITY_HIDDEN PPCAsmPrinter : public AsmPrinter {
53 protected:
Evan Chengae94e592008-12-05 01:06:39 +000054 StringSet<> FnStubs, GVStubs, HiddenGVStubs;
Chris Lattnerdadceed2006-09-20 17:07:15 +000055 const PPCSubtarget &Subtarget;
Bill Wendling57f0db82009-02-24 08:30:20 +000056 public:
57 PPCAsmPrinter(raw_ostream &O, TargetMachine &TM,
Evan Cheng42bf74b2009-03-25 01:47:28 +000058 const TargetAsmInfo *T, bool F, bool V)
59 : AsmPrinter(O, TM, T, F, V),
Bill Wendling57f0db82009-02-24 08:30:20 +000060 Subtarget(TM.getSubtarget<PPCSubtarget>()) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000061
Misha Brukman5dfe3a92004-06-21 16:55:25 +000062 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000063 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000064 }
65
Nate Begeman21e463b2005-10-16 05:39:50 +000066 PPCTargetMachine &getTM() {
67 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000068 }
69
Nate Begemanadeb43d2005-07-20 22:42:00 +000070 unsigned enumRegToMachineReg(unsigned enumReg) {
71 switch (enumReg) {
72 default: assert(0 && "Unhandled register!"); break;
73 case PPC::CR0: return 0;
74 case PPC::CR1: return 1;
75 case PPC::CR2: return 2;
76 case PPC::CR3: return 3;
77 case PPC::CR4: return 4;
78 case PPC::CR5: return 5;
79 case PPC::CR6: return 6;
80 case PPC::CR7: return 7;
81 }
82 abort();
83 }
84
Nate Begemane59bf592004-08-14 22:09:10 +000085 /// printInstruction - This method is automatically generated by tablegen
86 /// from the instruction set description. This method returns true if the
87 /// machine instruction was sufficiently described to print it, otherwise it
88 /// returns false.
89 bool printInstruction(const MachineInstr *MI);
90
Misha Brukman5dfe3a92004-06-21 16:55:25 +000091 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +000092 void printOp(const MachineOperand &MO);
Anton Korobeynikov34da1272008-08-08 18:22:59 +000093
Jim Laskeyb608a4d2006-12-20 20:56:46 +000094 /// stripRegisterPrefix - This method strips the character prefix from a
95 /// register name so that only the number is left. Used by for linux asm.
Jim Laskey40ee69f2006-12-20 21:33:34 +000096 const char *stripRegisterPrefix(const char *RegName) {
97 switch (RegName[0]) {
98 case 'r':
99 case 'f':
100 case 'v': return RegName + 1;
Jim Laskey2aa14aa2006-12-20 21:35:00 +0000101 case 'c': if (RegName[1] == 'r') return RegName + 2;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000102 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000103
Jim Laskey40ee69f2006-12-20 21:33:34 +0000104 return RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000105 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000106
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000107 /// printRegister - Print register according to target requirements.
108 ///
109 void printRegister(const MachineOperand &MO, bool R0AsZero) {
110 unsigned RegNo = MO.getReg();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000111 assert(TargetRegisterInfo::isPhysicalRegister(RegNo) && "Not physreg??");
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000112
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000113 // If we should use 0 for R0.
114 if (R0AsZero && RegNo == PPC::R0) {
115 O << "0";
116 return;
117 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000118
Bill Wendling74ab84c2008-02-26 21:11:01 +0000119 const char *RegName = TM.getRegisterInfo()->get(RegNo).AsmName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000120 // Linux assembler (Others?) does not take register mnemonics.
121 // FIXME - What about special registers used in mfspr/mtspr?
Jim Laskey40ee69f2006-12-20 21:33:34 +0000122 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
123 O << RegName;
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000124 }
Chris Lattner7bb424f2004-08-14 23:27:29 +0000125
Chris Lattner58873272006-02-01 22:38:46 +0000126 void printOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner7bb424f2004-08-14 23:27:29 +0000127 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohmand735b802008-10-03 15:45:36 +0000128 if (MO.isReg()) {
Jim Laskeyb608a4d2006-12-20 20:56:46 +0000129 printRegister(MO, false);
Dan Gohmand735b802008-10-03 15:45:36 +0000130 } else if (MO.isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000131 O << MO.getImm();
Chris Lattner7bb424f2004-08-14 23:27:29 +0000132 } else {
133 printOp(MO);
134 }
135 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000136
Chris Lattner58873272006-02-01 22:38:46 +0000137 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattnere3f01572006-02-23 19:31:10 +0000138 unsigned AsmVariant, const char *ExtraCode);
Chris Lattner2c003e22006-02-24 20:27:40 +0000139 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
140 unsigned AsmVariant, const char *ExtraCode);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000141
142
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000143 void printS5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000144 char value = MI->getOperand(OpNo).getImm();
Chris Lattner9c61dcf2006-03-25 06:12:06 +0000145 value = (value << (32-5)) >> (32-5);
146 O << (int)value;
147 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000148 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000149 unsigned char value = MI->getOperand(OpNo).getImm();
Chris Lattner12585ba2004-08-21 19:11:03 +0000150 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +0000151 O << (unsigned int)value;
152 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000153 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000154 unsigned char value = MI->getOperand(OpNo).getImm();
Nate Begeman07aada82004-08-30 02:28:06 +0000155 assert(value <= 63 && "Invalid u6imm argument!");
156 O << (unsigned int)value;
157 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000158 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000159 O << (short)MI->getOperand(OpNo).getImm();
Nate Begemaned428532004-09-04 05:00:00 +0000160 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000161 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000162 O << (unsigned short)MI->getOperand(OpNo).getImm();
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000163 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000164 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Dan Gohmand735b802008-10-03 15:45:36 +0000165 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000166 O << (short)(MI->getOperand(OpNo).getImm()*4);
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000167 } else {
168 O << "lo16(";
169 printOp(MI->getOperand(OpNo));
170 if (TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000171 O << "-\"L" << getFunctionNumber() << "$pb\")";
Chris Lattner1b0a2d82006-11-16 21:45:30 +0000172 else
173 O << ')';
174 }
Chris Lattner841d12d2005-10-18 16:51:22 +0000175 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000176 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000177 // Branches can take an immediate operand. This is used by the branch
178 // selection pass to print $+8, an eight byte displacement from the PC.
Dan Gohmand735b802008-10-03 15:45:36 +0000179 if (MI->getOperand(OpNo).isImm()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000180 O << "$+" << MI->getOperand(OpNo).getImm()*4;
Nate Begemaned428532004-09-04 05:00:00 +0000181 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000182 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000183 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000184 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000185 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000186 const MachineOperand &MO = MI->getOperand(OpNo);
Evan Cheng4c1aa862006-02-22 20:19:42 +0000187 if (TM.getRelocationModel() != Reloc::Static) {
Chris Lattnera637c322005-12-16 00:22:14 +0000188 if (MO.getType() == MachineOperand::MO_GlobalAddress) {
189 GlobalValue *GV = MO.getGlobal();
Reid Spencer5cbf9852007-01-30 20:08:39 +0000190 if (((GV->isDeclaration() || GV->hasWeakLinkage() ||
Dale Johannesenaafce772008-05-14 20:12:51 +0000191 GV->hasLinkOnceLinkage() || GV->hasCommonLinkage()))) {
Chris Lattnera637c322005-12-16 00:22:14 +0000192 // Dynamically-resolved functions need a stub for the function.
193 std::string Name = Mang->getValueName(GV);
194 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000195 printSuffixedName(Name, "$stub");
Evan Cheng1c45a662006-12-01 07:56:37 +0000196 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000197 ExtWeakSymbols.insert(GV);
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 {
Devang Pateleb3fc282009-01-08 23:40:34 +0000297 DwarfWriter *DW;
Dale Johannesen757809a2008-07-09 21:24:07 +0000298 MachineModuleInfo *MMI;
Bill Wendling57f0db82009-02-24 08:30:20 +0000299 public:
Owen Andersoncb371882008-08-21 00:14:44 +0000300 PPCLinuxAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Evan Cheng42bf74b2009-03-25 01:47:28 +0000301 const TargetAsmInfo *T, bool F, bool V)
302 : PPCAsmPrinter(O, TM, T, F, V), DW(0), MMI(0) {}
Jim Laskeybf111822006-12-21 20:26:09 +0000303
304 virtual const char *getPassName() const {
305 return "Linux PPC Assembly Printer";
306 }
307
308 bool runOnMachineFunction(MachineFunction &F);
309 bool doInitialization(Module &M);
310 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000311
Jim Laskeybf111822006-12-21 20:26:09 +0000312 void getAnalysisUsage(AnalysisUsage &AU) const {
313 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000314 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000315 AU.addRequired<DwarfWriter>();
Jim Laskeybf111822006-12-21 20:26:09 +0000316 PPCAsmPrinter::getAnalysisUsage(AU);
317 }
318
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000319 void printModuleLevelGV(const GlobalVariable* GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000320 };
321
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000322 /// PPCDarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac
323 /// OS X
Bill Wendling57f0db82009-02-24 08:30:20 +0000324 class VISIBILITY_HIDDEN PPCDarwinAsmPrinter : public PPCAsmPrinter {
Devang Pateleb3fc282009-01-08 23:40:34 +0000325 DwarfWriter *DW;
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000326 MachineModuleInfo *MMI;
Devang Pateleb3fc282009-01-08 23:40:34 +0000327 raw_ostream &OS;
Bill Wendling57f0db82009-02-24 08:30:20 +0000328 public:
Owen Andersoncb371882008-08-21 00:14:44 +0000329 PPCDarwinAsmPrinter(raw_ostream &O, PPCTargetMachine &TM,
Evan Cheng42bf74b2009-03-25 01:47:28 +0000330 const TargetAsmInfo *T, bool F, bool V)
331 : PPCAsmPrinter(O, TM, T, F, V), DW(0), MMI(0), OS(O) {}
Nate Begemaned428532004-09-04 05:00:00 +0000332
333 virtual const char *getPassName() const {
334 return "Darwin PPC Assembly Printer";
335 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000336
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000337 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman18ed0292005-07-21 01:25:49 +0000338 bool doInitialization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000339 bool doFinalization(Module &M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000340
Jim Laskeyb2efb852006-01-04 22:28:25 +0000341 void getAnalysisUsage(AnalysisUsage &AU) const {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000342 AU.setPreservesAll();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000343 AU.addRequired<MachineModuleInfo>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000344 AU.addRequired<DwarfWriter>();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000345 PPCAsmPrinter::getAnalysisUsage(AU);
Jim Laskeyb2efb852006-01-04 22:28:25 +0000346 }
347
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000348 void printModuleLevelGV(const GlobalVariable* GVar);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000349 };
350} // end of anonymous namespace
351
Nate Begemane59bf592004-08-14 22:09:10 +0000352// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000353#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000354
Chris Lattner9ba13e42005-11-17 19:25:59 +0000355void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000356 switch (MO.getType()) {
Chris Lattner63b3d712006-05-04 17:21:20 +0000357 case MachineOperand::MO_Immediate:
Bill Wendlingf5da1332006-12-07 22:21:48 +0000358 cerr << "printOp() does not handle immediate values\n";
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000359 abort();
Misha Brukman97a296f2004-07-21 20:11:11 +0000360 return;
361
Nate Begeman37efe672006-04-22 18:53:45 +0000362 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000363 printBasicBlockLabel(MO.getMBB());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000364 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000365 case MachineOperand::MO_JumpTableIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000366 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000367 << '_' << MO.getIndex();
Nate Begeman37efe672006-04-22 18:53:45 +0000368 // FIXME: PIC relocation model
369 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000370 case MachineOperand::MO_ConstantPoolIndex:
Evan Cheng347d39f2007-10-14 05:57:21 +0000371 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber()
Chris Lattner8aa797a2007-12-30 23:10:15 +0000372 << '_' << MO.getIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000373 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000374 case MachineOperand::MO_ExternalSymbol:
Chris Lattnera637c322005-12-16 00:22:14 +0000375 // Computing the address of an external symbol, not calling it.
Evan Cheng4c1aa862006-02-22 20:19:42 +0000376 if (TM.getRelocationModel() != Reloc::Static) {
Jim Laskey563321a2006-09-06 18:34:40 +0000377 std::string Name(TAI->getGlobalPrefix()); Name += MO.getSymbolName();
Chris Lattnera637c322005-12-16 00:22:14 +0000378 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000379 printSuffixedName(Name, "$non_lazy_ptr");
Chris Lattnera637c322005-12-16 00:22:14 +0000380 return;
381 }
Jim Laskey563321a2006-09-06 18:34:40 +0000382 O << TAI->getGlobalPrefix() << MO.getSymbolName();
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000383 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000384 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera637c322005-12-16 00:22:14 +0000385 // Computing the address of a global symbol, not calling it.
Nate Begemanb73a7112004-08-13 09:32:01 +0000386 GlobalValue *GV = MO.getGlobal();
387 std::string Name = Mang->getValueName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000388
Nate Begemanfcf4a422004-10-17 23:01:34 +0000389 // External or weakly linked global variables need non-lazily-resolved stubs
Evan Cheng4c1aa862006-02-22 20:19:42 +0000390 if (TM.getRelocationModel() != Reloc::Static) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000391 if (GV->isDeclaration() || GV->isWeakForLinker()) {
Evan Chengae94e592008-12-05 01:06:39 +0000392 if (GV->hasHiddenVisibility()) {
393 if (!GV->isDeclaration() && !GV->hasCommonLinkage())
394 O << Name;
395 else {
396 HiddenGVStubs.insert(Name);
397 printSuffixedName(Name, "$non_lazy_ptr");
398 }
399 } else {
400 GVStubs.insert(Name);
401 printSuffixedName(Name, "$non_lazy_ptr");
402 }
Dale Johannesenea7dd402008-05-16 20:09:25 +0000403 if (GV->hasExternalWeakLinkage())
404 ExtWeakSymbols.insert(GV);
Chris Lattnera637c322005-12-16 00:22:14 +0000405 return;
406 }
Nate Begemanb73a7112004-08-13 09:32:01 +0000407 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000408 O << Name;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000409
Anton Korobeynikov7751ad92008-11-22 16:15:34 +0000410 printOffset(MO.getOffset());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000411
Evan Cheng1c45a662006-12-01 07:56:37 +0000412 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000413 ExtWeakSymbols.insert(GV);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000414 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000415 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000416
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000417 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000418 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000419 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000420 }
421}
422
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000423/// EmitExternalGlobal - In this case we need to use the indirect symbol.
424///
425void PPCAsmPrinter::EmitExternalGlobal(const GlobalVariable *GV) {
Bill Wendling7d16e852009-04-10 00:12:49 +0000426 std::string Name;
427 getGlobalLinkName(GV, Name);
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000428 if (TM.getRelocationModel() != Reloc::Static) {
Evan Chengae94e592008-12-05 01:06:39 +0000429 if (GV->hasHiddenVisibility())
430 HiddenGVStubs.insert(Name);
431 else
432 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000433 printSuffixedName(Name, "$non_lazy_ptr");
Jim Laskeybda9b0e2007-02-21 22:47:38 +0000434 return;
435 }
436 O << Name;
437}
438
Chris Lattnere3f01572006-02-23 19:31:10 +0000439/// PrintAsmOperand - Print out an operand for an inline asm expression.
440///
441bool PPCAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000442 unsigned AsmVariant,
Chris Lattnere3f01572006-02-23 19:31:10 +0000443 const char *ExtraCode) {
444 // Does this asm operand have a single letter operand modifier?
445 if (ExtraCode && ExtraCode[0]) {
446 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000447
Chris Lattnere3f01572006-02-23 19:31:10 +0000448 switch (ExtraCode[0]) {
449 default: return true; // Unknown modifier.
Chris Lattner78192b62007-01-25 02:52:50 +0000450 case 'c': // Don't print "$" before a global var name or constant.
451 // PPC never has a prefix.
452 printOperand(MI, OpNo);
453 return false;
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000454 case 'L': // Write second word of DImode reference.
Chris Lattnere3f01572006-02-23 19:31:10 +0000455 // Verify that this operand has two consecutive registers.
Dan Gohmand735b802008-10-03 15:45:36 +0000456 if (!MI->getOperand(OpNo).isReg() ||
Chris Lattnere3f01572006-02-23 19:31:10 +0000457 OpNo+1 == MI->getNumOperands() ||
Dan Gohmand735b802008-10-03 15:45:36 +0000458 !MI->getOperand(OpNo+1).isReg())
Chris Lattnere3f01572006-02-23 19:31:10 +0000459 return true;
460 ++OpNo; // Return the high-part.
461 break;
Chris Lattner6c2d2602007-04-24 22:51:03 +0000462 case 'I':
463 // Write 'i' if an integer constant, otherwise nothing. Used to print
464 // addi vs add, etc.
Dan Gohmand735b802008-10-03 15:45:36 +0000465 if (MI->getOperand(OpNo).isImm())
Chris Lattner6c2d2602007-04-24 22:51:03 +0000466 O << "i";
467 return false;
Chris Lattnere3f01572006-02-23 19:31:10 +0000468 }
469 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000470
Chris Lattnere3f01572006-02-23 19:31:10 +0000471 printOperand(MI, OpNo);
472 return false;
473}
474
Chris Lattner2c003e22006-02-24 20:27:40 +0000475bool PPCAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000476 unsigned AsmVariant,
Chris Lattner2c003e22006-02-24 20:27:40 +0000477 const char *ExtraCode) {
478 if (ExtraCode && ExtraCode[0])
479 return true; // Unknown modifier.
Dan Gohmand735b802008-10-03 15:45:36 +0000480 if (MI->getOperand(OpNo).isReg())
Chris Lattner9aa28952007-02-01 00:39:08 +0000481 printMemRegReg(MI, OpNo);
482 else
483 printMemRegImm(MI, OpNo);
Chris Lattner2c003e22006-02-24 20:27:40 +0000484 return false;
485}
Chris Lattnere3f01572006-02-23 19:31:10 +0000486
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000487void PPCAsmPrinter::printPredicateOperand(const MachineInstr *MI, unsigned OpNo,
Chris Lattneraf53a872006-11-04 05:27:39 +0000488 const char *Modifier) {
489 assert(Modifier && "Must specify 'cc' or 'reg' as predicate op modifier!");
490 unsigned Code = MI->getOperand(OpNo).getImm();
491 if (!strcmp(Modifier, "cc")) {
492 switch ((PPC::Predicate)Code) {
493 case PPC::PRED_ALWAYS: return; // Don't print anything for always.
494 case PPC::PRED_LT: O << "lt"; return;
495 case PPC::PRED_LE: O << "le"; return;
496 case PPC::PRED_EQ: O << "eq"; return;
497 case PPC::PRED_GE: O << "ge"; return;
498 case PPC::PRED_GT: O << "gt"; return;
499 case PPC::PRED_NE: O << "ne"; return;
500 case PPC::PRED_UN: O << "un"; return;
501 case PPC::PRED_NU: O << "nu"; return;
502 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000503
Chris Lattneraf53a872006-11-04 05:27:39 +0000504 } else {
505 assert(!strcmp(Modifier, "reg") &&
506 "Need to specify 'cc' or 'reg' as predicate op modifier!");
507 // Don't print the register for 'always'.
508 if (Code == PPC::PRED_ALWAYS) return;
509 printOperand(MI, OpNo+1);
510 }
511}
512
513
Nate Begemane59bf592004-08-14 22:09:10 +0000514/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
515/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000516///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000517void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000518 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000519
Nate Begemanad5f65c2005-04-05 18:19:50 +0000520 // Check for slwi/srwi mnemonics.
521 if (MI->getOpcode() == PPC::RLWINM) {
522 bool FoundMnemonic = false;
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000523 unsigned char SH = MI->getOperand(2).getImm();
524 unsigned char MB = MI->getOperand(3).getImm();
525 unsigned char ME = MI->getOperand(4).getImm();
Nate Begemanad5f65c2005-04-05 18:19:50 +0000526 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000527 O << "\tslwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000528 }
529 if (SH <= 31 && MB == (32-SH) && ME == 31) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000530 O << "\tsrwi "; FoundMnemonic = true;
Nate Begemanad5f65c2005-04-05 18:19:50 +0000531 SH = 32-SH;
532 }
533 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000534 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000535 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000536 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000537 O << ", " << (unsigned int)SH << '\n';
Nate Begemanad5f65c2005-04-05 18:19:50 +0000538 return;
539 }
Chris Lattnerb410dc92006-06-20 23:18:58 +0000540 } else if (MI->getOpcode() == PPC::OR || MI->getOpcode() == PPC::OR8) {
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000541 if (MI->getOperand(1).getReg() == MI->getOperand(2).getReg()) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000542 O << "\tmr ";
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000543 printOperand(MI, 0);
544 O << ", ";
545 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000546 O << '\n';
Chris Lattner4d73a5a2006-02-08 06:56:40 +0000547 return;
548 }
Chris Lattner566c1b12006-11-18 01:23:56 +0000549 } else if (MI->getOpcode() == PPC::RLDICR) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000550 unsigned char SH = MI->getOperand(2).getImm();
551 unsigned char ME = MI->getOperand(3).getImm();
Chris Lattner566c1b12006-11-18 01:23:56 +0000552 // rldicr RA, RS, SH, 63-SH == sldi RA, RS, SH
553 if (63-SH == ME) {
Nate Begeman5a804e32008-02-05 08:49:09 +0000554 O << "\tsldi ";
Chris Lattner566c1b12006-11-18 01:23:56 +0000555 printOperand(MI, 0);
556 O << ", ";
557 printOperand(MI, 1);
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000558 O << ", " << (unsigned int)SH << '\n';
Chris Lattner566c1b12006-11-18 01:23:56 +0000559 return;
560 }
Nate Begemanad5f65c2005-04-05 18:19:50 +0000561 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000562
Nate Begemane59bf592004-08-14 22:09:10 +0000563 if (printInstruction(MI))
564 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000565
Nate Begemaned428532004-09-04 05:00:00 +0000566 assert(0 && "Unhandled instruction in asm writer!");
567 abort();
Nate Begemane59bf592004-08-14 22:09:10 +0000568 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000569}
570
Jim Laskeybf111822006-12-21 20:26:09 +0000571/// runOnMachineFunction - This uses the printMachineInstruction()
572/// method to print assembly for each instruction.
573///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000574bool PPCLinuxAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000575 this->MF = &MF;
Chris Lattner9b7ce7d2006-10-05 02:42:20 +0000576
Jim Laskeybf111822006-12-21 20:26:09 +0000577 SetupMachineFunction(MF);
578 O << "\n\n";
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000579
Jim Laskeybf111822006-12-21 20:26:09 +0000580 // Print out constants referenced by the function
581 EmitConstantPool(MF.getConstantPool());
582
583 // Print out labels for the function.
584 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000585 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000586
Jim Laskeybf111822006-12-21 20:26:09 +0000587 switch (F->getLinkage()) {
588 default: assert(0 && "Unknown linkage type!");
Rafael Espindolabb46f522009-01-15 20:18:42 +0000589 case Function::PrivateLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000590 case Function::InternalLinkage: // Symbols default to internal.
591 break;
592 case Function::ExternalLinkage:
593 O << "\t.global\t" << CurrentFnName << '\n'
594 << "\t.type\t" << CurrentFnName << ", @function\n";
595 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000596 case Function::WeakAnyLinkage:
597 case Function::WeakODRLinkage:
598 case Function::LinkOnceAnyLinkage:
599 case Function::LinkOnceODRLinkage:
Jim Laskeybf111822006-12-21 20:26:09 +0000600 O << "\t.global\t" << CurrentFnName << '\n';
601 O << "\t.weak\t" << CurrentFnName << '\n';
602 break;
603 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000604
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000605 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000606
Jim Laskeybf111822006-12-21 20:26:09 +0000607 EmitAlignment(2, F);
608 O << CurrentFnName << ":\n";
609
610 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000611 DW->BeginFunction(&MF);
Jim Laskeybf111822006-12-21 20:26:09 +0000612
613 // Print out code for the function.
614 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
615 I != E; ++I) {
616 // Print a label for the basic block.
617 if (I != MF.begin()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000618 printBasicBlockLabel(I, true, true);
Jim Laskeybf111822006-12-21 20:26:09 +0000619 O << '\n';
620 }
621 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
622 II != E; ++II) {
623 // Print the assembly for the instruction.
Jim Laskeybf111822006-12-21 20:26:09 +0000624 printMachineInstruction(II);
625 }
626 }
627
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000628 O << "\t.size\t" << CurrentFnName << ",.-" << CurrentFnName << '\n';
Jim Laskeybf111822006-12-21 20:26:09 +0000629
630 // Print out jump tables referenced by the function.
631 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000632
Dale Johannesenf94a3272008-12-03 19:33:10 +0000633 SwitchToSection(TAI->SectionForGlobal(F));
634
Jim Laskeybf111822006-12-21 20:26:09 +0000635 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000636 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000637
Dan Gohmane5f4de42008-11-07 19:49:17 +0000638 O.flush();
639
Jim Laskeybf111822006-12-21 20:26:09 +0000640 // We didn't modify anything.
641 return false;
642}
643
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000644bool PPCLinuxAsmPrinter::doInitialization(Module &M) {
Dan Gohmanb8275a32007-07-25 19:33:14 +0000645 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000646
Dale Johannesen757809a2008-07-09 21:24:07 +0000647 // Emit initial debug information.
Duncan Sands1465d612009-01-28 13:14:17 +0000648 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
Dale Johannesen757809a2008-07-09 21:24:07 +0000649 assert(MMI);
Duncan Sands1465d612009-01-28 13:14:17 +0000650 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000651 assert(DW && "DwarfWriter is not available");
652 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesen757809a2008-07-09 21:24:07 +0000653
Jim Laskeybf111822006-12-21 20:26:09 +0000654 // GNU as handles section names wrapped in quotes
655 Mang->setUseQuotes(true);
656
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000657 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000658
Dan Gohmanb8275a32007-07-25 19:33:14 +0000659 return Result;
Jim Laskeybf111822006-12-21 20:26:09 +0000660}
661
Chris Lattnerec321b42008-02-15 19:04:54 +0000662/// PrintUnmangledNameSafely - Print out the printable characters in the name.
Dan Gohman0f8b53f2009-03-03 02:55:14 +0000663/// Don't print things like \\n or \\0.
Owen Andersoncb371882008-08-21 00:14:44 +0000664static void PrintUnmangledNameSafely(const Value *V, raw_ostream &OS) {
Chris Lattnerec321b42008-02-15 19:04:54 +0000665 for (const char *Name = V->getNameStart(), *E = Name+V->getNameLen();
666 Name != E; ++Name)
667 if (isprint(*Name))
668 OS << *Name;
669}
670
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000671void PPCLinuxAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
Jim Laskeybf111822006-12-21 20:26:09 +0000672 const TargetData *TD = TM.getTargetData();
673
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000674 if (!GVar->hasInitializer())
675 return; // External global require no code
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000676
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000677 // Check to see if this is a special global used by LLVM, if so, emit it.
678 if (EmitSpecialLLVMGlobal(GVar))
679 return;
Chris Lattner70d41072007-01-14 06:37:54 +0000680
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000681 std::string name = Mang->getValueName(GVar);
Chris Lattner70d41072007-01-14 06:37:54 +0000682
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000683 printVisibility(name, GVar->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000684
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000685 Constant *C = GVar->getInitializer();
686 const Type *Type = C->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000687 unsigned Size = TD->getTypePaddedSize(Type);
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000688 unsigned Align = TD->getPreferredAlignmentLog(GVar);
Jim Laskeybf111822006-12-21 20:26:09 +0000689
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000690 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000691
692 if (C->isNullValue() && /* FIXME: Verify correct */
693 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000694 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000695 GVar->isWeakForLinker())) {
Jim Laskeybf111822006-12-21 20:26:09 +0000696 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000697
698 if (GVar->hasExternalLinkage()) {
Jim Laskeybf111822006-12-21 20:26:09 +0000699 O << "\t.global " << name << '\n';
700 O << "\t.type " << name << ", @object\n";
Nick Lewyckye2b90522007-07-25 03:48:45 +0000701 O << name << ":\n";
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000702 O << "\t.zero " << Size << '\n';
Rafael Espindolabb46f522009-01-15 20:18:42 +0000703 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000704 O << TAI->getLCOMMDirective() << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000705 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000706 O << ".comm " << name << ',' << Size;
Jim Laskeybf111822006-12-21 20:26:09 +0000707 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000708 if (VerboseAsm) {
709 O << "\t\t" << TAI->getCommentString() << " '";
710 PrintUnmangledNameSafely(GVar, O);
711 O << "'";
712 }
713 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000714 return;
Jim Laskeybf111822006-12-21 20:26:09 +0000715 }
716
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000717 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000718 case GlobalValue::LinkOnceAnyLinkage:
719 case GlobalValue::LinkOnceODRLinkage:
720 case GlobalValue::WeakAnyLinkage:
721 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000722 case GlobalValue::CommonLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000723 O << "\t.global " << name << '\n'
724 << "\t.type " << name << ", @object\n"
725 << "\t.weak " << name << '\n';
726 break;
727 case GlobalValue::AppendingLinkage:
728 // FIXME: appending linkage variables should go into a section of
729 // their name or something. For now, just emit them as external.
730 case GlobalValue::ExternalLinkage:
731 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000732 O << "\t.global " << name << '\n'
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000733 << "\t.type " << name << ", @object\n";
734 // FALL THROUGH
735 case GlobalValue::InternalLinkage:
Rafael Espindolabb46f522009-01-15 20:18:42 +0000736 case GlobalValue::PrivateLinkage:
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000737 break;
738 default:
739 cerr << "Unknown linkage type!";
740 abort();
741 }
742
743 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000744 O << name << ":";
745 if (VerboseAsm) {
746 O << "\t\t\t\t" << TAI->getCommentString() << " '";
747 PrintUnmangledNameSafely(GVar, O);
748 O << "'";
749 }
750 O << '\n';
Anton Korobeynikov7396e592008-08-08 18:23:49 +0000751
752 // If the initializer is a extern weak symbol, remember to emit the weak
753 // reference!
754 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
755 if (GV->hasExternalWeakLinkage())
756 ExtWeakSymbols.insert(GV);
757
758 EmitGlobalConstant(C);
759 O << '\n';
760}
761
762bool PPCLinuxAsmPrinter::doFinalization(Module &M) {
763 // Print out module-level global variables here.
764 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
765 I != E; ++I)
766 printModuleLevelGV(I);
767
Jim Laskeybf111822006-12-21 20:26:09 +0000768 // TODO
769
770 // Emit initial debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000771 DW->EndModule();
Jim Laskeybf111822006-12-21 20:26:09 +0000772
Dan Gohmanb8275a32007-07-25 19:33:14 +0000773 return AsmPrinter::doFinalization(M);
Jim Laskeybf111822006-12-21 20:26:09 +0000774}
775
Nate Begemaned428532004-09-04 05:00:00 +0000776/// runOnMachineFunction - This uses the printMachineInstruction()
777/// method to print assembly for each instruction.
778///
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000779bool PPCDarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Bill Wendling57f0db82009-02-24 08:30:20 +0000780 this->MF = &MF;
781
Chris Lattner8b8b9512005-11-21 07:51:23 +0000782 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000783 O << "\n\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000784
Nate Begemaned428532004-09-04 05:00:00 +0000785 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000786 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000787
788 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000789 const Function *F = MF.getFunction();
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000790 SwitchToSection(TAI->SectionForGlobal(F));
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000791
Chris Lattnera637c322005-12-16 00:22:14 +0000792 switch (F->getLinkage()) {
793 default: assert(0 && "Unknown linkage type!");
Evan Cheng1902a122009-01-25 06:32:01 +0000794 case Function::PrivateLinkage:
Chris Lattnera637c322005-12-16 00:22:14 +0000795 case Function::InternalLinkage: // Symbols default to internal.
Chris Lattnera637c322005-12-16 00:22:14 +0000796 break;
797 case Function::ExternalLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000798 O << "\t.globl\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000799 break;
Duncan Sands667d4b82009-03-07 15:45:40 +0000800 case Function::WeakAnyLinkage:
801 case Function::WeakODRLinkage:
802 case Function::LinkOnceAnyLinkage:
803 case Function::LinkOnceODRLinkage:
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000804 O << "\t.globl\t" << CurrentFnName << '\n';
805 O << "\t.weak_definition\t" << CurrentFnName << '\n';
Chris Lattnera637c322005-12-16 00:22:14 +0000806 break;
807 }
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000808
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000809 printVisibility(CurrentFnName, F->getVisibility());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000810
Devang Patel4ae641f2008-10-01 23:18:38 +0000811 EmitAlignment(F->hasFnAttr(Attribute::OptimizeForSize) ? 2 : 4, F);
Nate Begemaned428532004-09-04 05:00:00 +0000812 O << CurrentFnName << ":\n";
813
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000814 // Emit pre-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000815 DW->BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000816
Bill Wendling381802f2008-01-26 06:51:24 +0000817 // If the function is empty, then we need to emit *something*. Otherwise, the
818 // function's label might be associated with something that it wasn't meant to
819 // be associated with. We emit a noop in this situation.
820 MachineFunction::iterator I = MF.begin();
821
Bill Wendling824a7212008-01-26 09:03:52 +0000822 if (++I == MF.end() && MF.front().empty())
823 O << "\tnop\n";
Bill Wendling381802f2008-01-26 06:51:24 +0000824
Nate Begemaned428532004-09-04 05:00:00 +0000825 // Print out code for the function.
826 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
827 I != E; ++I) {
828 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000829 if (I != MF.begin()) {
Evan Chengf1c0ae92009-03-24 00:17:40 +0000830 printBasicBlockLabel(I, true, true, VerboseAsm);
Nate Begemancdf38c42006-05-02 05:37:32 +0000831 O << '\n';
Chris Lattner1db1adb2005-08-21 19:09:33 +0000832 }
Bill Wendling381802f2008-01-26 06:51:24 +0000833 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
834 II != IE; ++II) {
Nate Begemaned428532004-09-04 05:00:00 +0000835 // Print the assembly for the instruction.
Nate Begemaned428532004-09-04 05:00:00 +0000836 printMachineInstruction(II);
837 }
838 }
Nate Begemaned428532004-09-04 05:00:00 +0000839
Chris Lattnerfea13d32006-10-05 00:26:05 +0000840 // Print out jump tables referenced by the function.
Chris Lattner1da31ee2006-10-05 03:01:21 +0000841 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000842
Jim Laskeya7cea6f2006-01-04 13:52:30 +0000843 // Emit post-function debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +0000844 DW->EndFunction(&MF);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000845
Nate Begemaned428532004-09-04 05:00:00 +0000846 // We didn't modify anything.
847 return false;
848}
849
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000850
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000851bool PPCDarwinAsmPrinter::doInitialization(Module &M) {
Dan Gohmancfbb2f02008-03-25 21:45:14 +0000852 static const char *const CPUDirectives[] = {
Dale Johannesendb01c8b2008-02-14 23:35:16 +0000853 "",
Jim Laskeyc35010d2006-12-12 20:57:08 +0000854 "ppc",
855 "ppc601",
856 "ppc602",
857 "ppc603",
858 "ppc7400",
859 "ppc750",
860 "ppc970",
861 "ppc64"
862 };
863
864 unsigned Directive = Subtarget.getDarwinDirective();
865 if (Subtarget.isGigaProcessor() && Directive < PPC::DIR_970)
866 Directive = PPC::DIR_970;
867 if (Subtarget.hasAltivec() && Directive < PPC::DIR_7400)
868 Directive = PPC::DIR_7400;
869 if (Subtarget.isPPC64() && Directive < PPC::DIR_970)
870 Directive = PPC::DIR_64;
871 assert(Directive <= PPC::DIR_64 && "Directive out of range.");
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000872 O << "\t.machine " << CPUDirectives[Directive] << '\n';
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000873
Dan Gohmanb8275a32007-07-25 19:33:14 +0000874 bool Result = AsmPrinter::doInitialization(M);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000875
Dale Johannesen94618eb2008-07-09 20:43:39 +0000876 // Emit initial debug information.
Dale Johannesen94618eb2008-07-09 20:43:39 +0000877 // We need this for Personality functions.
878 // AsmPrinter::doInitialization should have done this analysis.
Duncan Sands1465d612009-01-28 13:14:17 +0000879 MMI = getAnalysisIfAvailable<MachineModuleInfo>();
Dale Johannesen94618eb2008-07-09 20:43:39 +0000880 assert(MMI);
Duncan Sands1465d612009-01-28 13:14:17 +0000881 DW = getAnalysisIfAvailable<DwarfWriter>();
Devang Pateleb3fc282009-01-08 23:40:34 +0000882 assert(DW && "DwarfWriter is not available");
883 DW->BeginModule(&M, MMI, O, this, TAI);
Dale Johannesen94618eb2008-07-09 20:43:39 +0000884
Chris Lattner85eac0d2005-11-10 19:33:43 +0000885 // Darwin wants symbols to be quoted if they have complex names.
886 Mang->setUseQuotes(true);
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000887
Jim Laskey2ada0852006-11-28 18:21:52 +0000888 // Prime text sections so they are adjacent. This reduces the likelihood a
889 // large data or debug section causes a branch to exceed 16M limit.
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000890 SwitchToTextSection("\t.section __TEXT,__textcoal_nt,coalesced,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000891 "pure_instructions");
892 if (TM.getRelocationModel() == Reloc::PIC_) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000893 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000894 "pure_instructions,32");
895 } else if (TM.getRelocationModel() == Reloc::DynamicNoPIC) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +0000896 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Jim Laskey2ada0852006-11-28 18:21:52 +0000897 "pure_instructions,16");
898 }
Anton Korobeynikovd7ca4162008-09-24 22:15:21 +0000899 SwitchToSection(TAI->getTextSection());
Anton Korobeynikov34da1272008-08-08 18:22:59 +0000900
Dan Gohmanb8275a32007-07-25 19:33:14 +0000901 return Result;
Nate Begeman18ed0292005-07-21 01:25:49 +0000902}
903
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000904void PPCDarwinAsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
905 const TargetData *TD = TM.getTargetData();
906
907 if (!GVar->hasInitializer())
908 return; // External global require no code
909
910 // Check to see if this is a special global used by LLVM, if so, emit it.
911 if (EmitSpecialLLVMGlobal(GVar)) {
912 if (TM.getRelocationModel() == Reloc::Static) {
913 if (GVar->getName() == "llvm.global_ctors")
914 O << ".reference .constructors_used\n";
915 else if (GVar->getName() == "llvm.global_dtors")
916 O << ".reference .destructors_used\n";
917 }
918 return;
919 }
920
921 std::string name = Mang->getValueName(GVar);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000922
Anton Korobeynikovf5b6a472008-08-08 18:25:07 +0000923 printVisibility(name, GVar->getVisibility());
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000924
925 Constant *C = GVar->getInitializer();
926 const Type *Type = C->getType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000927 unsigned Size = TD->getTypePaddedSize(Type);
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000928 unsigned Align = TD->getPreferredAlignmentLog(GVar);
929
Anton Korobeynikovc25e1ea2008-09-24 22:14:23 +0000930 SwitchToSection(TAI->SectionForGlobal(GVar));
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000931
932 if (C->isNullValue() && /* FIXME: Verify correct */
933 !GVar->hasSection() &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000934 (GVar->hasLocalLinkage() || GVar->hasExternalLinkage() ||
Duncan Sands667d4b82009-03-07 15:45:40 +0000935 GVar->isWeakForLinker()) &&
Evan Chengcaa0c2c2009-02-18 02:19:52 +0000936 TAI->SectionKindForGlobal(GVar) != SectionKind::RODataMergeStr) {
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000937 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
938
939 if (GVar->hasExternalLinkage()) {
940 O << "\t.globl " << name << '\n';
941 O << "\t.zerofill __DATA, __common, " << name << ", "
942 << Size << ", " << Align;
Rafael Espindolabb46f522009-01-15 20:18:42 +0000943 } else if (GVar->hasLocalLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000944 O << TAI->getLCOMMDirective() << name << ',' << Size << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000945 } else if (!GVar->hasCommonLinkage()) {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000946 O << "\t.globl " << name << '\n'
947 << TAI->getWeakDefDirective() << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000948 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000949 O << name << ":";
950 if (VerboseAsm) {
951 O << "\t\t\t\t" << TAI->getCommentString() << " ";
952 PrintUnmangledNameSafely(GVar, O);
953 }
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000954 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000955 EmitGlobalConstant(C);
956 return;
957 } else {
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000958 O << ".comm " << name << ',' << Size;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000959 // Darwin 9 and above support aligned common data.
960 if (Subtarget.isDarwin9())
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000961 O << ',' << Align;
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000962 }
Evan Chengf1c0ae92009-03-24 00:17:40 +0000963 if (VerboseAsm) {
964 O << "\t\t" << TAI->getCommentString() << " '";
965 PrintUnmangledNameSafely(GVar, O);
966 O << "'";
967 }
968 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000969 return;
970 }
971
972 switch (GVar->getLinkage()) {
Duncan Sands667d4b82009-03-07 15:45:40 +0000973 case GlobalValue::LinkOnceAnyLinkage:
974 case GlobalValue::LinkOnceODRLinkage:
975 case GlobalValue::WeakAnyLinkage:
976 case GlobalValue::WeakODRLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +0000977 case GlobalValue::CommonLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000978 O << "\t.globl " << name << '\n'
979 << "\t.weak_definition " << name << '\n';
980 break;
981 case GlobalValue::AppendingLinkage:
982 // FIXME: appending linkage variables should go into a section of
983 // their name or something. For now, just emit them as external.
984 case GlobalValue::ExternalLinkage:
985 // If external or appending, declare as a global symbol
Anton Korobeynikov382f0022008-08-08 18:24:10 +0000986 O << "\t.globl " << name << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000987 // FALL THROUGH
988 case GlobalValue::InternalLinkage:
Evan Cheng1902a122009-01-25 06:32:01 +0000989 case GlobalValue::PrivateLinkage:
Anton Korobeynikovbc331a82008-08-08 18:23:25 +0000990 break;
991 default:
992 cerr << "Unknown linkage type!";
993 abort();
994 }
995
996 EmitAlignment(Align, GVar);
Evan Chengf1c0ae92009-03-24 00:17:40 +0000997 O << name << ":";
998 if (VerboseAsm) {
999 O << "\t\t\t\t" << TAI->getCommentString() << " '";
1000 PrintUnmangledNameSafely(GVar, O);
1001 O << "'";
1002 }
1003 O << '\n';
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001004
1005 // If the initializer is a extern weak symbol, remember to emit the weak
1006 // reference!
1007 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C))
1008 if (GV->hasExternalWeakLinkage())
1009 ExtWeakSymbols.insert(GV);
1010
1011 EmitGlobalConstant(C);
1012 O << '\n';
1013}
1014
Anton Korobeynikov34da1272008-08-08 18:22:59 +00001015bool PPCDarwinAsmPrinter::doFinalization(Module &M) {
Owen Andersona69571c2006-05-03 01:29:57 +00001016 const TargetData *TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001017
1018 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +00001019 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Anton Korobeynikovbc331a82008-08-08 18:23:25 +00001020 I != E; ++I)
1021 printModuleLevelGV(I);
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001022
Chris Lattner7e097e42006-06-27 01:02:25 +00001023 bool isPPC64 = TD->getPointerSizeInBits() == 64;
1024
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001025 // Output stubs for dynamically-linked functions
Chris Lattner35d86fe2006-07-26 21:12:04 +00001026 if (TM.getRelocationModel() == Reloc::PIC_) {
Evan Chengae94e592008-12-05 01:06:39 +00001027 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattnerdeea4162005-12-13 04:33:58 +00001028 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001029 SwitchToTextSection("\t.section __TEXT,__picsymbolstub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001030 "pure_instructions,32");
Chris Lattner7e097e42006-06-27 01:02:25 +00001031 EmitAlignment(4);
Evan Chengae94e592008-12-05 01:06:39 +00001032 const char *p = i->getKeyData();
1033 bool hasQuote = p[0]=='\"';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001034 printSuffixedName(p, "$stub");
1035 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001036 O << "\t.indirect_symbol " << p << '\n';
Chris Lattnerdeea4162005-12-13 04:33:58 +00001037 O << "\tmflr r0\n";
Evan Chengae94e592008-12-05 01:06:39 +00001038 O << "\tbcl 20,31,";
1039 if (hasQuote)
1040 O << "\"L0$" << &p[1];
1041 else
1042 O << "L0$" << p;
1043 O << '\n';
1044 if (hasQuote)
1045 O << "\"L0$" << &p[1];
1046 else
1047 O << "L0$" << p;
1048 O << ":\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001049 O << "\tmflr r11\n";
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001050 O << "\taddis r11,r11,ha16(";
1051 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +00001052 O << "-";
1053 if (hasQuote)
1054 O << "\"L0$" << &p[1];
1055 else
1056 O << "L0$" << p;
1057 O << ")\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001058 O << "\tmtlr r0\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001059 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001060 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001061 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001062 O << "\tlwzu r12,lo16(";
1063 printSuffixedName(p, "$lazy_ptr");
Evan Chengae94e592008-12-05 01:06:39 +00001064 O << "-";
1065 if (hasQuote)
1066 O << "\"L0$" << &p[1];
1067 else
1068 O << "L0$" << p;
1069 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001070 O << "\tmtctr r12\n";
1071 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001072 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001073 printSuffixedName(p, "$lazy_ptr");
1074 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001075 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001076 if (isPPC64)
1077 O << "\t.quad dyld_stub_binding_helper\n";
1078 else
1079 O << "\t.long dyld_stub_binding_helper\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001080 }
1081 } else {
Evan Chengae94e592008-12-05 01:06:39 +00001082 for (StringSet<>::iterator i = FnStubs.begin(), e = FnStubs.end();
Chris Lattnerdeea4162005-12-13 04:33:58 +00001083 i != e; ++i) {
Dale Johannesenc7406ae2008-01-11 00:54:37 +00001084 SwitchToTextSection("\t.section __TEXT,__symbol_stub1,symbol_stubs,"
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001085 "pure_instructions,16");
Chris Lattnerdeea4162005-12-13 04:33:58 +00001086 EmitAlignment(4);
Evan Chengae94e592008-12-05 01:06:39 +00001087 const char *p = i->getKeyData();
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001088 printSuffixedName(p, "$stub");
1089 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001090 O << "\t.indirect_symbol " << p << '\n';
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001091 O << "\tlis r11,ha16(";
1092 printSuffixedName(p, "$lazy_ptr");
1093 O << ")\n";
Chris Lattner7e097e42006-06-27 01:02:25 +00001094 if (isPPC64)
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001095 O << "\tldu r12,lo16(";
Chris Lattner7e097e42006-06-27 01:02:25 +00001096 else
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001097 O << "\tlwzu r12,lo16(";
1098 printSuffixedName(p, "$lazy_ptr");
1099 O << ")(r11)\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001100 O << "\tmtctr r12\n";
1101 O << "\tbctr\n";
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001102 SwitchToDataSection(".lazy_symbol_pointer");
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001103 printSuffixedName(p, "$lazy_ptr");
1104 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001105 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner7e097e42006-06-27 01:02:25 +00001106 if (isPPC64)
1107 O << "\t.quad dyld_stub_binding_helper\n";
1108 else
1109 O << "\t.long dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +00001110 }
Misha Brukman46fd00a2004-06-24 23:04:11 +00001111 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001112
Anton Korobeynikov382f0022008-08-08 18:24:10 +00001113 O << '\n';
Misha Brukmanda2b13f2004-07-16 20:29:04 +00001114
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001115 if (TAI->doesSupportExceptionHandling() && MMI) {
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001116 // Add the (possibly multiple) personalities to the set of global values.
Dale Johannesen1532f3d2008-04-02 00:25:04 +00001117 // Only referenced functions get into the Personalities list.
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +00001118 const std::vector<Function *>& Personalities = MMI->getPersonalities();
1119
1120 for (std::vector<Function *>::const_iterator I = Personalities.begin(),
1121 E = Personalities.end(); I != E; ++I)
1122 if (*I) GVStubs.insert("_" + (*I)->getName());
1123 }
1124
Chris Lattnera637c322005-12-16 00:22:14 +00001125 // Output stubs for external and common global variables.
Dan Gohmancb406c22007-10-03 19:26:29 +00001126 if (!GVStubs.empty()) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +00001127 SwitchToDataSection(".non_lazy_symbol_pointer");
Evan Chengae94e592008-12-05 01:06:39 +00001128 for (StringSet<>::iterator i = GVStubs.begin(), e = GVStubs.end();
1129 i != e; ++i) {
1130 std::string p = i->getKeyData();
Dale Johannesenc215b3e2008-05-19 21:38:18 +00001131 printSuffixedName(p, "$non_lazy_ptr");
1132 O << ":\n";
Evan Chengae94e592008-12-05 01:06:39 +00001133 O << "\t.indirect_symbol " << p << '\n';
Chris Lattner9f029a62006-06-27 20:20:53 +00001134 if (isPPC64)
1135 O << "\t.quad\t0\n";
1136 else
1137 O << "\t.long\t0\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +00001138 }
Nate Begemane59bf592004-08-14 22:09:10 +00001139 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +00001140
Evan Chengae94e592008-12-05 01:06:39 +00001141 if (!HiddenGVStubs.empty()) {
1142 SwitchToSection(TAI->getDataSection());
1143 for (StringSet<>::iterator i = HiddenGVStubs.begin(), e = HiddenGVStubs.end();
1144 i != e; ++i) {
1145 std::string p = i->getKeyData();
1146 EmitAlignment(isPPC64 ? 3 : 2);
1147 printSuffixedName(p, "$non_lazy_ptr");
1148 O << ":\n";
1149 if (isPPC64)
1150 O << "\t.quad\t";
1151 else
1152 O << "\t.long\t";
1153 O << p << '\n';
1154 }
1155 }
1156
1157
Jim Laskey063e7652006-01-17 17:31:53 +00001158 // Emit initial debug information.
Devang Pateleb3fc282009-01-08 23:40:34 +00001159 DW->EndModule();
Jim Laskey063e7652006-01-17 17:31:53 +00001160
Chris Lattner5b0ac992005-11-01 00:12:36 +00001161 // Funny Darwin hack: This flag tells the linker that no global symbols
1162 // contain code that falls through to other global symbols (e.g. the obvious
1163 // implementation of multiple entry points). If this doesn't occur, the
1164 // linker can safely perform dead code stripping. Since LLVM never generates
1165 // code that does this, it is always safe to set.
Chris Lattner4da1c822006-09-20 17:12:19 +00001166 O << "\t.subsections_via_symbols\n";
Chris Lattner5b0ac992005-11-01 00:12:36 +00001167
Dan Gohmanb8275a32007-07-25 19:33:14 +00001168 return AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001169}
Nate Begemaned428532004-09-04 05:00:00 +00001170
Chris Lattner4da1c822006-09-20 17:12:19 +00001171
1172
Jim Laskeyb608a4d2006-12-20 20:56:46 +00001173/// createPPCAsmPrinterPass - Returns a pass that prints the PPC assembly code
1174/// for a MachineFunction to the given output stream, in a format that the
Chris Lattner4da1c822006-09-20 17:12:19 +00001175/// Darwin assembler can deal with.
1176///
Owen Andersoncb371882008-08-21 00:14:44 +00001177FunctionPass *llvm::createPPCAsmPrinterPass(raw_ostream &o,
Bill Wendling57f0db82009-02-24 08:30:20 +00001178 PPCTargetMachine &tm,
Evan Cheng42bf74b2009-03-25 01:47:28 +00001179 bool fast, bool verbose) {
Jim Laskeybf111822006-12-21 20:26:09 +00001180 const PPCSubtarget *Subtarget = &tm.getSubtarget<PPCSubtarget>();
1181
1182 if (Subtarget->isDarwin()) {
Evan Cheng42bf74b2009-03-25 01:47:28 +00001183 return new PPCDarwinAsmPrinter(o, tm, tm.getTargetAsmInfo(), fast, verbose);
Jim Laskeybf111822006-12-21 20:26:09 +00001184 } else {
Evan Cheng42bf74b2009-03-25 01:47:28 +00001185 return new PPCLinuxAsmPrinter(o, tm, tm.getTargetAsmInfo(), fast, verbose);
Jim Laskeybf111822006-12-21 20:26:09 +00001186 }
Chris Lattner4da1c822006-09-20 17:12:19 +00001187}
Anton Korobeynikov06be9972008-08-17 13:54:28 +00001188
1189namespace {
1190 static struct Register {
1191 Register() {
1192 PPCTargetMachine::registerAsmPrinter(createPPCAsmPrinterPass);
1193 }
1194 } Registrator;
1195}
Oscar Fuentes92adc192008-11-15 21:36:30 +00001196
1197extern "C" int PowerPCAsmPrinterForceLink;
1198int PowerPCAsmPrinterForceLink = 0;