blob: 3fa73a60614fe4bbbffc37aad8155046a02be695 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 Lattner16e71f22005-10-14 23:59:06 +000021#include "PPCTargetMachine.h"
Chris Lattner26689592005-10-14 23:51:18 +000022#include "PPCSubtarget.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000023#include "llvm/Constants.h"
24#include "llvm/DerivedTypes.h"
25#include "llvm/Module.h"
26#include "llvm/Assembly/Writer.h"
Chris Lattnera3840792004-08-16 23:25:21 +000027#include "llvm/CodeGen/AsmPrinter.h"
Misha Brukman05794492004-06-24 17:31:42 +000028#include "llvm/CodeGen/MachineFunctionPass.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000029#include "llvm/CodeGen/MachineInstr.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000030#include "llvm/Support/Mangler.h"
Nate Begemana11c2e82004-09-04 14:51:26 +000031#include "llvm/Support/MathExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000032#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/Debug.h"
Nate Begeman17304c32004-10-26 06:02:38 +000034#include "llvm/Target/MRegisterInfo.h"
Nate Begemand4c8bea2004-11-25 07:09:01 +000035#include "llvm/Target/TargetInstrInfo.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000036#include "llvm/ADT/Statistic.h"
37#include "llvm/ADT/StringExtras.h"
Misha Brukman05794492004-06-24 17:31:42 +000038#include <set>
Chris Lattnera3840792004-08-16 23:25:21 +000039using namespace llvm;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000040
41namespace {
42 Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
43
Chris Lattnerac7fd7f2005-11-14 18:52:46 +000044 class PPCAsmPrinter : public AsmPrinter {
Chris Lattnerd717b192005-12-11 07:45:47 +000045 public:
Misha Brukman97a296f2004-07-21 20:11:11 +000046 std::set<std::string> FnStubs, GVStubs, LinkOnceStubs;
Chris Lattnerac7fd7f2005-11-14 18:52:46 +000047
Chris Lattner4c7b43b2005-10-14 23:37:35 +000048 PPCAsmPrinter(std::ostream &O, TargetMachine &TM)
Chris Lattner07455362005-11-21 08:14:07 +000049 : AsmPrinter(O, TM) {}
Misha Brukmanb5f662f2005-04-21 23:30:14 +000050
Misha Brukman5dfe3a92004-06-21 16:55:25 +000051 virtual const char *getPassName() const {
Nate Begemaned428532004-09-04 05:00:00 +000052 return "PowerPC Assembly Printer";
Misha Brukman5dfe3a92004-06-21 16:55:25 +000053 }
54
Nate Begeman21e463b2005-10-16 05:39:50 +000055 PPCTargetMachine &getTM() {
56 return static_cast<PPCTargetMachine&>(TM);
Chris Lattnera3840792004-08-16 23:25:21 +000057 }
58
Nate Begemanadeb43d2005-07-20 22:42:00 +000059 unsigned enumRegToMachineReg(unsigned enumReg) {
60 switch (enumReg) {
61 default: assert(0 && "Unhandled register!"); break;
62 case PPC::CR0: return 0;
63 case PPC::CR1: return 1;
64 case PPC::CR2: return 2;
65 case PPC::CR3: return 3;
66 case PPC::CR4: return 4;
67 case PPC::CR5: return 5;
68 case PPC::CR6: return 6;
69 case PPC::CR7: return 7;
70 }
71 abort();
72 }
73
Nate Begemane59bf592004-08-14 22:09:10 +000074 /// printInstruction - This method is automatically generated by tablegen
75 /// from the instruction set description. This method returns true if the
76 /// machine instruction was sufficiently described to print it, otherwise it
77 /// returns false.
78 bool printInstruction(const MachineInstr *MI);
79
Misha Brukman5dfe3a92004-06-21 16:55:25 +000080 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner9ba13e42005-11-17 19:25:59 +000081 void printOp(const MachineOperand &MO);
Chris Lattner7bb424f2004-08-14 23:27:29 +000082
Nate Begeman391c5d22005-11-30 18:54:35 +000083 void printOperand(const MachineInstr *MI, unsigned OpNo){
Chris Lattner7bb424f2004-08-14 23:27:29 +000084 const MachineOperand &MO = MI->getOperand(OpNo);
85 if (MO.getType() == MachineOperand::MO_MachineRegister) {
86 assert(MRegisterInfo::isPhysicalRegister(MO.getReg())&&"Not physreg??");
Chris Lattner9dc4d3c2005-08-22 22:00:02 +000087 O << TM.getRegisterInfo()->get(MO.getReg()).Name;
Chris Lattner0ea31712004-08-15 05:46:14 +000088 } else if (MO.isImmediate()) {
89 O << MO.getImmedValue();
Chris Lattner7bb424f2004-08-14 23:27:29 +000090 } else {
91 printOp(MO);
92 }
93 }
94
Nate Begeman391c5d22005-11-30 18:54:35 +000095 void printU5ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanc3306122004-08-21 05:56:39 +000096 unsigned char value = MI->getOperand(OpNo).getImmedValue();
Chris Lattner12585ba2004-08-21 19:11:03 +000097 assert(value <= 31 && "Invalid u5imm argument!");
Nate Begemanc3306122004-08-21 05:56:39 +000098 O << (unsigned int)value;
99 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000100 void printU6ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman07aada82004-08-30 02:28:06 +0000101 unsigned char value = MI->getOperand(OpNo).getImmedValue();
102 assert(value <= 63 && "Invalid u6imm argument!");
103 O << (unsigned int)value;
104 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000105 void printS16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000106 O << (short)MI->getOperand(OpNo).getImmedValue();
107 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000108 void printU16ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner97b2a2e2004-08-15 05:20:16 +0000109 O << (unsigned short)MI->getOperand(OpNo).getImmedValue();
110 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000111 void printS16X4ImmOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner841d12d2005-10-18 16:51:22 +0000112 O << (short)MI->getOperand(OpNo).getImmedValue()*4;
113 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000114 void printBranchOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000115 // Branches can take an immediate operand. This is used by the branch
116 // selection pass to print $+8, an eight byte displacement from the PC.
117 if (MI->getOperand(OpNo).isImmediate()) {
Nate Begeman27499e32005-04-10 01:48:29 +0000118 O << "$+" << MI->getOperand(OpNo).getImmedValue();
Nate Begemaned428532004-09-04 05:00:00 +0000119 } else {
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000120 printOp(MI->getOperand(OpNo));
Nate Begemaned428532004-09-04 05:00:00 +0000121 }
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000122 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000123 void printCallOperand(const MachineInstr *MI, unsigned OpNo) {
Chris Lattner9ba13e42005-11-17 19:25:59 +0000124 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattner9542f9712005-11-17 19:40:30 +0000125 if (!PPCGenerateStaticCode) {
126 if (MO.getType() == MachineOperand::MO_ExternalSymbol) {
127 std::string Name(GlobalPrefix); Name += MO.getSymbolName();
128 FnStubs.insert(Name);
129 O << "L" << Name << "$stub";
130 return;
131 } else if (MO.getType() == MachineOperand::MO_GlobalAddress &&
132 isa<Function>(MO.getGlobal()) &&
133 cast<Function>(MO.getGlobal())->isExternal()) {
134 // Dynamically-resolved functions need a stub for the function.
135 std::string Name = Mang->getValueName(MO.getGlobal());
136 FnStubs.insert(Name);
137 O << "L" << Name << "$stub";
138 return;
139 }
Chris Lattner9ba13e42005-11-17 19:25:59 +0000140 }
Chris Lattner9542f9712005-11-17 19:40:30 +0000141
142 printOp(MI->getOperand(OpNo));
Chris Lattner3e7f86a2005-11-17 19:16:08 +0000143 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000144 void printAbsAddrOperand(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman422b0ce2005-11-16 00:48:01 +0000145 O << (int)MI->getOperand(OpNo).getImmedValue()*4;
146 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000147 void printPICLabel(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000148 // FIXME: should probably be converted to cout.width and cout.fill
Chris Lattner07455362005-11-21 08:14:07 +0000149 O << "\"L0000" << getFunctionNumber() << "$pb\"\n";
150 O << "\"L0000" << getFunctionNumber() << "$pb\":";
Nate Begemanb7a8f2c2004-09-02 08:13:00 +0000151 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000152 void printSymbolHi(const MachineInstr *MI, unsigned OpNo) {
Nate Begeman2497e632005-07-21 20:44:43 +0000153 if (MI->getOperand(OpNo).isImmediate()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000154 printS16ImmOperand(MI, OpNo);
Nate Begeman2497e632005-07-21 20:44:43 +0000155 } else {
156 O << "ha16(";
157 printOp(MI->getOperand(OpNo));
158 if (PICEnabled)
Chris Lattner07455362005-11-21 08:14:07 +0000159 O << "-\"L0000" << getFunctionNumber() << "$pb\")";
Nate Begeman2497e632005-07-21 20:44:43 +0000160 else
161 O << ')';
162 }
Nate Begemaned428532004-09-04 05:00:00 +0000163 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000164 void printSymbolLo(const MachineInstr *MI, unsigned OpNo) {
Nate Begemaned428532004-09-04 05:00:00 +0000165 if (MI->getOperand(OpNo).isImmediate()) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000166 printS16ImmOperand(MI, OpNo);
Nate Begemaned428532004-09-04 05:00:00 +0000167 } else {
168 O << "lo16(";
Nate Begemand4c8bea2004-11-25 07:09:01 +0000169 printOp(MI->getOperand(OpNo));
Nate Begeman2497e632005-07-21 20:44:43 +0000170 if (PICEnabled)
Chris Lattner07455362005-11-21 08:14:07 +0000171 O << "-\"L0000" << getFunctionNumber() << "$pb\")";
Nate Begeman2497e632005-07-21 20:44:43 +0000172 else
173 O << ')';
Nate Begemaned428532004-09-04 05:00:00 +0000174 }
175 }
Nate Begeman391c5d22005-11-30 18:54:35 +0000176 void printcrbitm(const MachineInstr *MI, unsigned OpNo) {
Nate Begemanadeb43d2005-07-20 22:42:00 +0000177 unsigned CCReg = MI->getOperand(OpNo).getReg();
178 unsigned RegNo = enumRegToMachineReg(CCReg);
179 O << (0x80 >> RegNo);
180 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000181
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000182 virtual bool runOnMachineFunction(MachineFunction &F) = 0;
Nate Begemaned428532004-09-04 05:00:00 +0000183 virtual bool doFinalization(Module &M) = 0;
184 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000185
Misha Brukman3e0b51a2004-09-05 02:42:44 +0000186 /// DarwinAsmPrinter - PowerPC assembly printer, customized for Darwin/Mac OS
187 /// X
188 ///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000189 struct DarwinAsmPrinter : public PPCAsmPrinter {
Nate Begemaned428532004-09-04 05:00:00 +0000190
191 DarwinAsmPrinter(std::ostream &O, TargetMachine &TM)
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000192 : PPCAsmPrinter(O, TM) {
Nate Begemaned428532004-09-04 05:00:00 +0000193 CommentString = ";";
194 GlobalPrefix = "_";
Chris Lattnerf55366e2005-11-21 06:47:58 +0000195 PrivateGlobalPrefix = "L"; // Marker for constant pool idxs
Nate Begemaned428532004-09-04 05:00:00 +0000196 ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
197 Data64bitsDirective = 0; // we can't emit a 64-bit unit
198 AlignmentIsInBytes = false; // Alignment is by power of 2.
Chris Lattnerc569e612005-11-21 08:26:15 +0000199 ConstantPoolSection = "\t.const\t";
Chris Lattnerd717b192005-12-11 07:45:47 +0000200 LCOMMDirective = "\t.lcomm\t";
Chris Lattnerd1239b72005-12-13 06:32:50 +0000201 StaticCtorsSection = ".mod_init_func";
202 StaticDtorsSection = ".mod_term_func";
Nate Begemaned428532004-09-04 05:00:00 +0000203 }
204
205 virtual const char *getPassName() const {
206 return "Darwin PPC Assembly Printer";
207 }
Chris Lattner646f7af2005-12-09 18:24:29 +0000208
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000209 bool runOnMachineFunction(MachineFunction &F);
Nate Begeman18ed0292005-07-21 01:25:49 +0000210 bool doInitialization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000211 bool doFinalization(Module &M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000212 };
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000213
Misha Brukman3e0b51a2004-09-05 02:42:44 +0000214 /// AIXAsmPrinter - PowerPC assembly printer, customized for AIX
215 ///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000216 struct AIXAsmPrinter : public PPCAsmPrinter {
Nate Begemaned428532004-09-04 05:00:00 +0000217 /// Map for labels corresponding to global variables
218 ///
219 std::map<const GlobalVariable*,std::string> GVToLabelMap;
220
221 AIXAsmPrinter(std::ostream &O, TargetMachine &TM)
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000222 : PPCAsmPrinter(O, TM) {
Nate Begemaned428532004-09-04 05:00:00 +0000223 CommentString = "#";
Chris Lattner3459bfb2005-11-10 18:20:29 +0000224 GlobalPrefix = ".";
Nate Begemaned428532004-09-04 05:00:00 +0000225 ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
226 Data64bitsDirective = 0; // we can't emit a 64-bit unit
227 AlignmentIsInBytes = false; // Alignment is by power of 2.
Chris Lattnerc569e612005-11-21 08:26:15 +0000228 ConstantPoolSection = "\t.const\t";
Nate Begemaned428532004-09-04 05:00:00 +0000229 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000230
Nate Begemaned428532004-09-04 05:00:00 +0000231 virtual const char *getPassName() const {
232 return "AIX PPC Assembly Printer";
233 }
234
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000235 bool runOnMachineFunction(MachineFunction &F);
Nate Begemaned428532004-09-04 05:00:00 +0000236 bool doInitialization(Module &M);
237 bool doFinalization(Module &M);
238 };
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000239} // end of anonymous namespace
240
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000241/// createDarwinAsmPrinterPass - Returns a pass that prints the PPC assembly
242/// code for a MachineFunction to the given output stream, in a format that the
Nate Begemaned428532004-09-04 05:00:00 +0000243/// Darwin assembler can deal with.
244///
245FunctionPass *llvm::createDarwinAsmPrinter(std::ostream &o, TargetMachine &tm) {
246 return new DarwinAsmPrinter(o, tm);
247}
248
249/// createAIXAsmPrinterPass - Returns a pass that prints the PPC assembly code
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000250/// for a MachineFunction to the given output stream, in a format that the
Nate Begemaned428532004-09-04 05:00:00 +0000251/// AIX 5L assembler can deal with.
252///
253FunctionPass *llvm::createAIXAsmPrinter(std::ostream &o, TargetMachine &tm) {
254 return new AIXAsmPrinter(o, tm);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000255}
256
Nate Begemane59bf592004-08-14 22:09:10 +0000257// Include the auto-generated portion of the assembly writer
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000258#include "PPCGenAsmWriter.inc"
Nate Begemane59bf592004-08-14 22:09:10 +0000259
Chris Lattner9ba13e42005-11-17 19:25:59 +0000260void PPCAsmPrinter::printOp(const MachineOperand &MO) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000261 const MRegisterInfo &RI = *TM.getRegisterInfo();
262 int new_symbol;
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000263
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000264 switch (MO.getType()) {
265 case MachineOperand::MO_VirtualRegister:
266 if (Value *V = MO.getVRegValueOrNull()) {
267 O << "<" << V->getName() << ">";
268 return;
269 }
270 // FALLTHROUGH
271 case MachineOperand::MO_MachineRegister:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000272 case MachineOperand::MO_CCRegister:
Chris Lattner9dc4d3c2005-08-22 22:00:02 +0000273 O << RI.get(MO.getReg()).Name;
Misha Brukman7f484a52004-06-24 23:51:00 +0000274 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000275
276 case MachineOperand::MO_SignExtendedImmed:
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000277 case MachineOperand::MO_UnextendedImmed:
278 std::cerr << "printOp() does not handle immediate values\n";
279 abort();
Misha Brukman97a296f2004-07-21 20:11:11 +0000280 return;
281
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000282 case MachineOperand::MO_PCRelativeDisp:
283 std::cerr << "Shouldn't use addPCDisp() when building PPC MachineInstrs";
284 abort();
285 return;
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000286
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000287 case MachineOperand::MO_MachineBasicBlock: {
288 MachineBasicBlock *MBBOp = MO.getMachineBasicBlock();
Chris Lattner07455362005-11-21 08:14:07 +0000289 O << PrivateGlobalPrefix << "BB" << getFunctionNumber() << "_"
Chris Lattner7f9ccde2005-11-21 07:41:05 +0000290 << MBBOp->getNumber() << "\t; " << MBBOp->getBasicBlock()->getName();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000291 return;
292 }
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000293
294 case MachineOperand::MO_ConstantPoolIndex:
Chris Lattner07455362005-11-21 08:14:07 +0000295 O << PrivateGlobalPrefix << "CPI" << getFunctionNumber()
Chris Lattnerf55366e2005-11-21 06:47:58 +0000296 << '_' << MO.getConstantPoolIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000297 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000298
299 case MachineOperand::MO_ExternalSymbol:
Nate Begeman01d05262005-03-30 01:45:43 +0000300 O << GlobalPrefix << MO.getSymbolName();
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000301 return;
302
Nate Begemanb73a7112004-08-13 09:32:01 +0000303 case MachineOperand::MO_GlobalAddress: {
304 GlobalValue *GV = MO.getGlobal();
305 std::string Name = Mang->getValueName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000306
Nate Begemanfcf4a422004-10-17 23:01:34 +0000307 // External or weakly linked global variables need non-lazily-resolved stubs
Chris Lattner9542f9712005-11-17 19:40:30 +0000308 if (!PPCGenerateStaticCode &&
309 ((GV->isExternal() || GV->hasWeakLinkage() ||
310 GV->hasLinkOnceLinkage()))) {
Nate Begemand4c8bea2004-11-25 07:09:01 +0000311 if (GV->hasLinkOnceLinkage())
312 LinkOnceStubs.insert(Name);
313 else
314 GVStubs.insert(Name);
Nate Begemanb73a7112004-08-13 09:32:01 +0000315 O << "L" << Name << "$non_lazy_ptr";
316 return;
317 }
Nate Begemand4c8bea2004-11-25 07:09:01 +0000318
Chris Lattner9542f9712005-11-17 19:40:30 +0000319 O << Name;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000320 return;
Nate Begemanb73a7112004-08-13 09:32:01 +0000321 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000322
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000323 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000324 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000325 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000326 }
327}
328
Nate Begemane59bf592004-08-14 22:09:10 +0000329/// printMachineInstruction -- Print out a single PowerPC MI in Darwin syntax to
330/// the current output stream.
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000331///
Chris Lattner4c7b43b2005-10-14 23:37:35 +0000332void PPCAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
Nate Begemane59bf592004-08-14 22:09:10 +0000333 ++EmittedInsts;
Chris Lattner617742b2005-10-14 22:44:13 +0000334
Nate Begemanad5f65c2005-04-05 18:19:50 +0000335 // Check for slwi/srwi mnemonics.
336 if (MI->getOpcode() == PPC::RLWINM) {
337 bool FoundMnemonic = false;
338 unsigned char SH = MI->getOperand(2).getImmedValue();
339 unsigned char MB = MI->getOperand(3).getImmedValue();
340 unsigned char ME = MI->getOperand(4).getImmedValue();
341 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
342 O << "slwi "; FoundMnemonic = true;
343 }
344 if (SH <= 31 && MB == (32-SH) && ME == 31) {
345 O << "srwi "; FoundMnemonic = true;
346 SH = 32-SH;
347 }
348 if (FoundMnemonic) {
Nate Begeman391c5d22005-11-30 18:54:35 +0000349 printOperand(MI, 0);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000350 O << ", ";
Nate Begeman391c5d22005-11-30 18:54:35 +0000351 printOperand(MI, 1);
Nate Begemanad5f65c2005-04-05 18:19:50 +0000352 O << ", " << (unsigned int)SH << "\n";
353 return;
354 }
355 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000356
Nate Begemane59bf592004-08-14 22:09:10 +0000357 if (printInstruction(MI))
358 return; // Printer was automatically generated
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000359
Nate Begemaned428532004-09-04 05:00:00 +0000360 assert(0 && "Unhandled instruction in asm writer!");
361 abort();
Nate Begemane59bf592004-08-14 22:09:10 +0000362 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000363}
364
Chris Lattneref658742005-11-21 07:57:37 +0000365
Nate Begemaned428532004-09-04 05:00:00 +0000366/// runOnMachineFunction - This uses the printMachineInstruction()
367/// method to print assembly for each instruction.
368///
369bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner8b8b9512005-11-21 07:51:23 +0000370 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000371 O << "\n\n";
372
373 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000374 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000375
376 // Print out labels for the function.
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000377 const Function *F = MF.getFunction();
378 SwitchSection(".text", F);
Chris Lattner8b8b9512005-11-21 07:51:23 +0000379 EmitAlignment(4, F);
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000380 if (!F->hasInternalLinkage())
Chris Lattnerf02a9162005-10-28 18:44:07 +0000381 O << "\t.globl\t" << CurrentFnName << "\n";
Nate Begemaned428532004-09-04 05:00:00 +0000382 O << CurrentFnName << ":\n";
383
384 // Print out code for the function.
385 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
386 I != E; ++I) {
387 // Print a label for the basic block.
Chris Lattner1db1adb2005-08-21 19:09:33 +0000388 if (I != MF.begin()) {
Chris Lattner07455362005-11-21 08:14:07 +0000389 O << PrivateGlobalPrefix << "BB" << getFunctionNumber() << '_'
Chris Lattner7f9ccde2005-11-21 07:41:05 +0000390 << I->getNumber() << ":\t";
Chris Lattner1db1adb2005-08-21 19:09:33 +0000391 if (!I->getBasicBlock()->getName().empty())
392 O << CommentString << " " << I->getBasicBlock()->getName();
393 O << "\n";
394 }
Nate Begemaned428532004-09-04 05:00:00 +0000395 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
396 II != E; ++II) {
397 // Print the assembly for the instruction.
398 O << "\t";
399 printMachineInstruction(II);
400 }
401 }
Nate Begemaned428532004-09-04 05:00:00 +0000402
403 // We didn't modify anything.
404 return false;
405}
406
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000407
Nate Begeman18ed0292005-07-21 01:25:49 +0000408bool DarwinAsmPrinter::doInitialization(Module &M) {
Chris Lattner3c304a32005-08-05 22:05:03 +0000409 if (TM.getSubtarget<PPCSubtarget>().isGigaProcessor())
410 O << "\t.machine ppc970\n";
Nate Begeman18ed0292005-07-21 01:25:49 +0000411 AsmPrinter::doInitialization(M);
Chris Lattner85eac0d2005-11-10 19:33:43 +0000412
413 // Darwin wants symbols to be quoted if they have complex names.
414 Mang->setUseQuotes(true);
Nate Begeman18ed0292005-07-21 01:25:49 +0000415 return false;
416}
417
Nate Begemaned428532004-09-04 05:00:00 +0000418bool DarwinAsmPrinter::doFinalization(Module &M) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000419 const TargetData &TD = TM.getTargetData();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000420
421 // Print out module-level global variables here.
Chris Lattnerced704b2005-11-14 19:00:30 +0000422 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
Chris Lattnerdeea4162005-12-13 04:33:58 +0000423 I != E; ++I) {
424 if (!I->hasInitializer()) continue; // External global require no code
425
Chris Lattnerd1239b72005-12-13 06:32:50 +0000426 // Check to see if this is a special global used by LLVM, if so, emit it.
427 if (I->hasAppendingLinkage() && EmitSpecialLLVMGlobal(I))
428 continue;
Chris Lattnerdeea4162005-12-13 04:33:58 +0000429
430 O << '\n';
431 std::string name = Mang->getValueName(I);
432 Constant *C = I->getInitializer();
433 unsigned Size = TD.getTypeSize(C->getType());
434 unsigned Align = TD.getTypeAlignmentShift(C->getType());
435
436 if (C->isNullValue() && /* FIXME: Verify correct */
437 (I->hasInternalLinkage() || I->hasWeakLinkage() ||
438 I->hasLinkOnceLinkage())) {
439 SwitchSection(".data", I);
440 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
441 if (I->hasInternalLinkage())
442 O << LCOMMDirective << name << "," << Size << "," << Align;
443 else
444 O << ".comm " << name << "," << Size;
445 O << "\t\t; '" << I->getName() << "'\n";
446 } else {
447 switch (I->getLinkage()) {
448 case GlobalValue::LinkOnceLinkage:
449 SwitchSection("", 0);
450 O << ".section __TEXT,__textcoal_nt,coalesced,no_toc\n"
451 << ".weak_definition " << name << '\n'
452 << ".private_extern " << name << '\n'
453 << ".section __DATA,__datacoal_nt,coalesced,no_toc\n";
454 LinkOnceStubs.insert(name);
455 break;
456 case GlobalValue::WeakLinkage:
457 O << ".weak_definition " << name << '\n'
458 << ".private_extern " << name << '\n';
459 break;
460 case GlobalValue::AppendingLinkage:
461 // FIXME: appending linkage variables should go into a section of
462 // their name or something. For now, just emit them as external.
463 case GlobalValue::ExternalLinkage:
464 // If external or appending, declare as a global symbol
465 O << "\t.globl " << name << "\n";
466 // FALL THROUGH
467 case GlobalValue::InternalLinkage:
468 SwitchSection(".data", I);
469 break;
470 default:
471 std::cerr << "Unknown linkage type!";
472 abort();
473 }
474
475 EmitAlignment(Align, I);
476 O << name << ":\t\t\t\t; '" << I->getName() << "'\n";
477 EmitGlobalConstant(C);
478 }
479 }
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000480
481 // Output stubs for dynamically-linked functions
Chris Lattnerdeea4162005-12-13 04:33:58 +0000482 if (PICEnabled) {
483 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
484 i != e; ++i) {
485 O << ".data\n";
486 O<<".section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32\n";
487 EmitAlignment(2);
488 O << "L" << *i << "$stub:\n";
489 O << "\t.indirect_symbol " << *i << "\n";
490 O << "\tmflr r0\n";
491 O << "\tbcl 20,31,L0$" << *i << "\n";
492 O << "L0$" << *i << ":\n";
493 O << "\tmflr r11\n";
494 O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
495 O << "\tmtlr r0\n";
496 O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
497 O << "\tmtctr r12\n";
498 O << "\tbctr\n";
499 O << ".data\n";
500 O << ".lazy_symbol_pointer\n";
501 O << "L" << *i << "$lazy_ptr:\n";
502 O << "\t.indirect_symbol " << *i << "\n";
503 O << "\t.long dyld_stub_binding_helper\n";
504 }
505 } else {
506 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
507 i != e; ++i) {
508 O<<"\t.section __TEXT,__symbol_stub1,symbol_stubs,pure_instructions,16\n";
509 EmitAlignment(4);
510 O << "L" << *i << "$stub:\n";
511 O << "\t.indirect_symbol " << *i << "\n";
512 O << "\tlis r11,ha16(L" << *i << "$lazy_ptr)\n";
513 O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr)(r11)\n";
514 O << "\tmtctr r12\n";
515 O << "\tbctr\n";
516 O << "\t.lazy_symbol_pointer\n";
517 O << "L" << *i << "$lazy_ptr:\n";
518 O << "\t.indirect_symbol " << *i << "\n";
519 O << "\t.long dyld_stub_binding_helper\n";
Nate Begeman2497e632005-07-21 20:44:43 +0000520 }
Misha Brukman46fd00a2004-06-24 23:04:11 +0000521 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000522
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000523 O << "\n";
524
525 // Output stubs for external global variables
526 if (GVStubs.begin() != GVStubs.end())
Misha Brukmane2eceb52004-07-23 16:08:20 +0000527 O << ".data\n.non_lazy_symbol_pointer\n";
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000528 for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000529 i != e; ++i) {
530 O << "L" << *i << "$non_lazy_ptr:\n";
531 O << "\t.indirect_symbol " << *i << "\n";
532 O << "\t.long\t0\n";
533 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000534
Nate Begemane59bf592004-08-14 22:09:10 +0000535 // Output stubs for link-once variables
Chris Lattnerdeea4162005-12-13 04:33:58 +0000536 if (LinkOnceStubs.begin() != LinkOnceStubs.end()) {
Nate Begemane59bf592004-08-14 22:09:10 +0000537 O << ".data\n.align 2\n";
Chris Lattnerdeea4162005-12-13 04:33:58 +0000538 for (std::set<std::string>::iterator i = LinkOnceStubs.begin(),
Nate Begemane59bf592004-08-14 22:09:10 +0000539 e = LinkOnceStubs.end(); i != e; ++i) {
Chris Lattnerdeea4162005-12-13 04:33:58 +0000540 O << "L" << *i << "$non_lazy_ptr:\n"
541 << "\t.long\t" << *i << '\n';
542 }
Nate Begemane59bf592004-08-14 22:09:10 +0000543 }
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000544
Chris Lattner5b0ac992005-11-01 00:12:36 +0000545 // Funny Darwin hack: This flag tells the linker that no global symbols
546 // contain code that falls through to other global symbols (e.g. the obvious
547 // implementation of multiple entry points). If this doesn't occur, the
548 // linker can safely perform dead code stripping. Since LLVM never generates
549 // code that does this, it is always safe to set.
550 O << "\t.subsections_via_symbols\n";
551
Chris Lattnera3840792004-08-16 23:25:21 +0000552 AsmPrinter::doFinalization(M);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000553 return false; // success
554}
Nate Begemaned428532004-09-04 05:00:00 +0000555
556/// runOnMachineFunction - This uses the printMachineInstruction()
557/// method to print assembly for each instruction.
558///
559bool AIXAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Chris Lattner6d5a4f62005-11-21 08:02:41 +0000560 SetupMachineFunction(MF);
Nate Begemaned428532004-09-04 05:00:00 +0000561
562 // Print out constants referenced by the function
Chris Lattnerc569e612005-11-21 08:26:15 +0000563 EmitConstantPool(MF.getConstantPool());
Nate Begemaned428532004-09-04 05:00:00 +0000564
565 // Print out header for the function.
566 O << "\t.csect .text[PR]\n"
567 << "\t.align 2\n"
568 << "\t.globl " << CurrentFnName << '\n'
569 << "\t.globl ." << CurrentFnName << '\n'
570 << "\t.csect " << CurrentFnName << "[DS],3\n"
571 << CurrentFnName << ":\n"
572 << "\t.llong ." << CurrentFnName << ", TOC[tc0], 0\n"
573 << "\t.csect .text[PR]\n"
574 << '.' << CurrentFnName << ":\n";
575
576 // Print out code for the function.
577 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
578 I != E; ++I) {
579 // Print a label for the basic block.
Chris Lattner07455362005-11-21 08:14:07 +0000580 O << PrivateGlobalPrefix << "BB" << getFunctionNumber() << '_'
581 << I->getNumber()
Chris Lattner6d5a4f62005-11-21 08:02:41 +0000582 << ":\t" << CommentString << I->getBasicBlock()->getName() << '\n';
Nate Begemaned428532004-09-04 05:00:00 +0000583 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
584 II != E; ++II) {
585 // Print the assembly for the instruction.
586 O << "\t";
587 printMachineInstruction(II);
588 }
589 }
Nate Begemaned428532004-09-04 05:00:00 +0000590
591 O << "LT.." << CurrentFnName << ":\n"
592 << "\t.long 0\n"
593 << "\t.byte 0,0,32,65,128,0,0,0\n"
594 << "\t.long LT.." << CurrentFnName << "-." << CurrentFnName << '\n'
595 << "\t.short 3\n"
596 << "\t.byte \"" << CurrentFnName << "\"\n"
597 << "\t.align 2\n";
598
599 // We didn't modify anything.
600 return false;
601}
602
Nate Begemaned428532004-09-04 05:00:00 +0000603bool AIXAsmPrinter::doInitialization(Module &M) {
Chris Lattnerac7fd7f2005-11-14 18:52:46 +0000604 SwitchSection("", 0);
Nate Begemaned428532004-09-04 05:00:00 +0000605 const TargetData &TD = TM.getTargetData();
Nate Begemaned428532004-09-04 05:00:00 +0000606
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000607 O << "\t.machine \"ppc64\"\n"
Nate Begemaned428532004-09-04 05:00:00 +0000608 << "\t.toc\n"
609 << "\t.csect .text[PR]\n";
610
611 // Print out module-level global variables
Chris Lattner2e00d7d2005-07-26 19:03:27 +0000612 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
613 I != E; ++I) {
Nate Begemaned428532004-09-04 05:00:00 +0000614 if (!I->hasInitializer())
615 continue;
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000616
Nate Begemaned428532004-09-04 05:00:00 +0000617 std::string Name = I->getName();
618 Constant *C = I->getInitializer();
619 // N.B.: We are defaulting to writable strings
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000620 if (I->hasExternalLinkage()) {
Nate Begemaned428532004-09-04 05:00:00 +0000621 O << "\t.globl " << Name << '\n'
622 << "\t.csect .data[RW],3\n";
623 } else {
624 O << "\t.csect _global.rw_c[RW],3\n";
625 }
626 O << Name << ":\n";
Chris Lattner8b8b9512005-11-21 07:51:23 +0000627 EmitGlobalConstant(C);
Nate Begemaned428532004-09-04 05:00:00 +0000628 }
629
630 // Output labels for globals
Chris Lattnere4d5c442005-03-15 04:54:21 +0000631 if (M.global_begin() != M.global_end()) O << "\t.toc\n";
Chris Lattner2e00d7d2005-07-26 19:03:27 +0000632 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
633 I != E; ++I) {
Nate Begemaned428532004-09-04 05:00:00 +0000634 const GlobalVariable *GV = I;
635 // Do not output labels for unused variables
636 if (GV->isExternal() && GV->use_begin() == GV->use_end())
637 continue;
638
Chris Lattner07455362005-11-21 08:14:07 +0000639 IncrementFunctionNumber();
Nate Begemaned428532004-09-04 05:00:00 +0000640 std::string Name = GV->getName();
Chris Lattner07455362005-11-21 08:14:07 +0000641 std::string Label = "LC.." + utostr(getFunctionNumber());
Nate Begemaned428532004-09-04 05:00:00 +0000642 GVToLabelMap[GV] = Label;
643 O << Label << ":\n"
644 << "\t.tc " << Name << "[TC]," << Name;
645 if (GV->isExternal()) O << "[RW]";
646 O << '\n';
Chris Lattner07455362005-11-21 08:14:07 +0000647 }
Nate Begemaned428532004-09-04 05:00:00 +0000648
Chris Lattner3459bfb2005-11-10 18:20:29 +0000649 AsmPrinter::doInitialization(M);
Nate Begemaned428532004-09-04 05:00:00 +0000650 return false; // success
651}
652
653bool AIXAsmPrinter::doFinalization(Module &M) {
654 const TargetData &TD = TM.getTargetData();
655 // Print out module-level global variables
Chris Lattner2e00d7d2005-07-26 19:03:27 +0000656 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end();
657 I != E; ++I) {
Nate Begemaned428532004-09-04 05:00:00 +0000658 if (I->hasInitializer() || I->hasExternalLinkage())
659 continue;
660
661 std::string Name = I->getName();
662 if (I->hasInternalLinkage()) {
663 O << "\t.lcomm " << Name << ",16,_global.bss_c";
664 } else {
665 O << "\t.comm " << Name << "," << TD.getTypeSize(I->getType())
Chris Lattner0561b3f2005-08-02 19:26:06 +0000666 << "," << Log2_32((unsigned)TD.getTypeAlignment(I->getType()));
Nate Begemaned428532004-09-04 05:00:00 +0000667 }
Chris Lattner6d5a4f62005-11-21 08:02:41 +0000668 O << "\t\t" << CommentString << " ";
Chris Lattner8ca02912005-10-03 07:08:36 +0000669 WriteAsOperand(O, I, false, true, &M);
Nate Begemaned428532004-09-04 05:00:00 +0000670 O << "\n";
671 }
672
673 O << "_section_.text:\n"
674 << "\t.csect .data[RW],3\n"
675 << "\t.llong _section_.text\n";
Chris Lattner3459bfb2005-11-10 18:20:29 +0000676 AsmPrinter::doFinalization(M);
Nate Begemaned428532004-09-04 05:00:00 +0000677 return false; // success
678}