blob: b52f055c8cffbfbbaadc6fdf673c3989faa623d4 [file] [log] [blame]
Chris Lattner83660c52004-07-28 20:18:53 +00001//===-- PowerPCAsmPrinter.cpp - Print machine instrs to PowerPC assembly --===//
Misha Brukman5dfe3a92004-06-21 16:55:25 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
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"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000020#include "PowerPC.h"
21#include "PowerPCInstrInfo.h"
Misha Brukmane2eceb52004-07-23 16:08:20 +000022#include "PowerPCTargetMachine.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"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000027#include "llvm/CodeGen/MachineConstantPool.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"
30#include "llvm/Target/TargetMachine.h"
31#include "llvm/Support/Mangler.h"
Misha Brukman05794492004-06-24 17:31:42 +000032#include "Support/CommandLine.h"
33#include "Support/Debug.h"
Misha Brukman5dfe3a92004-06-21 16:55:25 +000034#include "Support/Statistic.h"
35#include "Support/StringExtras.h"
Misha Brukman05794492004-06-24 17:31:42 +000036#include <set>
Misha Brukman5dfe3a92004-06-21 16:55:25 +000037
38namespace llvm {
39
40namespace {
41 Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
42
43 struct Printer : public MachineFunctionPass {
44 /// Output stream on which we're printing assembly code.
45 ///
46 std::ostream &O;
47
48 /// Target machine description which we query for reg. names, data
49 /// layout, etc.
50 ///
Misha Brukmane2eceb52004-07-23 16:08:20 +000051 PowerPCTargetMachine &TM;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000052
53 /// Name-mangler for global names.
54 ///
55 Mangler *Mang;
Misha Brukman97a296f2004-07-21 20:11:11 +000056 std::set<std::string> FnStubs, GVStubs, LinkOnceStubs;
Misha Brukman5dfe3a92004-06-21 16:55:25 +000057 std::set<std::string> Strings;
58
Misha Brukmancf8d2442004-07-26 16:28:33 +000059 Printer(std::ostream &o, TargetMachine &tm) : O(o),
60 TM(reinterpret_cast<PowerPCTargetMachine&>(tm)), LabelNumber(0) {}
Misha Brukman5dfe3a92004-06-21 16:55:25 +000061
Misha Brukman5dfe3a92004-06-21 16:55:25 +000062 /// Cache of mangled name for current function. This is
63 /// recalculated at the beginning of each call to
64 /// runOnMachineFunction().
65 ///
66 std::string CurrentFnName;
67
Misha Brukmancf8d2442004-07-26 16:28:33 +000068 /// Unique incrementer for label values for referencing Global values.
Misha Brukman218bec72004-06-29 17:13:26 +000069 ///
Misha Brukmancf8d2442004-07-26 16:28:33 +000070 unsigned LabelNumber;
71
Misha Brukman5dfe3a92004-06-21 16:55:25 +000072 virtual const char *getPassName() const {
73 return "PowerPC Assembly Printer";
74 }
75
76 void printMachineInstruction(const MachineInstr *MI);
Misha Brukmanbb4a9082004-06-28 15:53:27 +000077 void printOp(const MachineOperand &MO, bool elideOffsetKeyword = false);
Misha Brukmanaf313fb2004-07-28 00:00:48 +000078 void printImmOp(const MachineOperand &MO, unsigned ArgType);
Misha Brukman5dfe3a92004-06-21 16:55:25 +000079 void printConstantPool(MachineConstantPool *MCP);
80 bool runOnMachineFunction(MachineFunction &F);
81 bool doInitialization(Module &M);
82 bool doFinalization(Module &M);
83 void emitGlobalConstant(const Constant* CV);
84 void emitConstantValueOnly(const Constant *CV);
85 };
86} // end of anonymous namespace
87
Misha Brukman7103fba2004-08-09 22:27:45 +000088/// createPPCAsmPrinterPass - Returns a pass that prints the PPC
Misha Brukman5dfe3a92004-06-21 16:55:25 +000089/// assembly code for a MachineFunction to the given output stream,
90/// using the given target machine description. This should work
Misha Brukman7103fba2004-08-09 22:27:45 +000091/// regardless of whether the function is in SSA form or not.
Misha Brukman5dfe3a92004-06-21 16:55:25 +000092///
Misha Brukman7103fba2004-08-09 22:27:45 +000093FunctionPass *createPPCAsmPrinterPass(std::ostream &o,TargetMachine &tm) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +000094 return new Printer(o, tm);
95}
96
97/// isStringCompatible - Can we treat the specified array as a string?
98/// Only if it is an array of ubytes or non-negative sbytes.
99///
100static bool isStringCompatible(const ConstantArray *CVA) {
101 const Type *ETy = cast<ArrayType>(CVA->getType())->getElementType();
102 if (ETy == Type::UByteTy) return true;
103 if (ETy != Type::SByteTy) return false;
104
105 for (unsigned i = 0; i < CVA->getNumOperands(); ++i)
106 if (cast<ConstantSInt>(CVA->getOperand(i))->getValue() < 0)
107 return false;
108
109 return true;
110}
111
112/// toOctal - Convert the low order bits of X into an octal digit.
113///
114static inline char toOctal(int X) {
115 return (X&7)+'0';
116}
117
118/// getAsCString - Return the specified array as a C compatible
119/// string, only if the predicate isStringCompatible is true.
120///
121static void printAsCString(std::ostream &O, const ConstantArray *CVA) {
122 assert(isStringCompatible(CVA) && "Array is not string compatible!");
123
124 O << "\"";
125 for (unsigned i = 0; i < CVA->getNumOperands(); ++i) {
126 unsigned char C = cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
127
128 if (C == '"') {
129 O << "\\\"";
130 } else if (C == '\\') {
131 O << "\\\\";
132 } else if (isprint(C)) {
133 O << C;
134 } else {
Misha Brukmane2eceb52004-07-23 16:08:20 +0000135 switch (C) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000136 case '\b': O << "\\b"; break;
137 case '\f': O << "\\f"; break;
138 case '\n': O << "\\n"; break;
139 case '\r': O << "\\r"; break;
140 case '\t': O << "\\t"; break;
141 default:
142 O << '\\';
143 O << toOctal(C >> 6);
144 O << toOctal(C >> 3);
145 O << toOctal(C >> 0);
146 break;
147 }
148 }
149 }
150 O << "\"";
151}
152
153// Print out the specified constant, without a storage class. Only the
154// constants valid in constant expressions can occur here.
155void Printer::emitConstantValueOnly(const Constant *CV) {
156 if (CV->isNullValue())
157 O << "0";
158 else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
159 assert(CB == ConstantBool::True);
160 O << "1";
161 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
162 O << CI->getValue();
163 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
164 O << CI->getValue();
Chris Lattner67910e12004-07-18 07:29:35 +0000165 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000166 // This is a constant address for a global variable or function. Use the
167 // name of the variable or function as the address value.
Chris Lattner67910e12004-07-18 07:29:35 +0000168 O << Mang->getValueName(GV);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000169 else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
170 const TargetData &TD = TM.getTargetData();
Misha Brukmane2eceb52004-07-23 16:08:20 +0000171 switch (CE->getOpcode()) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000172 case Instruction::GetElementPtr: {
173 // generate a symbolic expression for the byte address
174 const Constant *ptrVal = CE->getOperand(0);
175 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
176 if (unsigned Offset = TD.getIndexedOffset(ptrVal->getType(), idxVec)) {
177 O << "(";
178 emitConstantValueOnly(ptrVal);
179 O << ") + " << Offset;
180 } else {
181 emitConstantValueOnly(ptrVal);
182 }
183 break;
184 }
185 case Instruction::Cast: {
186 // Support only non-converting or widening casts for now, that is, ones
187 // that do not involve a change in value. This assertion is really gross,
188 // and may not even be a complete check.
189 Constant *Op = CE->getOperand(0);
190 const Type *OpTy = Op->getType(), *Ty = CE->getType();
191
192 // Remember, kids, pointers on x86 can be losslessly converted back and
193 // forth into 32-bit or wider integers, regardless of signedness. :-P
194 assert(((isa<PointerType>(OpTy)
195 && (Ty == Type::LongTy || Ty == Type::ULongTy
196 || Ty == Type::IntTy || Ty == Type::UIntTy))
197 || (isa<PointerType>(Ty)
198 && (OpTy == Type::LongTy || OpTy == Type::ULongTy
199 || OpTy == Type::IntTy || OpTy == Type::UIntTy))
200 || (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
201 && OpTy->isLosslesslyConvertibleTo(Ty))))
202 && "FIXME: Don't yet support this kind of constant cast expr");
203 O << "(";
204 emitConstantValueOnly(Op);
205 O << ")";
206 break;
207 }
208 case Instruction::Add:
209 O << "(";
210 emitConstantValueOnly(CE->getOperand(0));
211 O << ") + (";
212 emitConstantValueOnly(CE->getOperand(1));
213 O << ")";
214 break;
215 default:
216 assert(0 && "Unsupported operator!");
217 }
218 } else {
219 assert(0 && "Unknown constant value!");
220 }
221}
222
223// Print a constant value or values, with the appropriate storage class as a
224// prefix.
225void Printer::emitGlobalConstant(const Constant *CV) {
226 const TargetData &TD = TM.getTargetData();
227
Misha Brukmane48178e2004-07-20 15:45:27 +0000228 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000229 if (isStringCompatible(CVA)) {
Misha Brukman218bec72004-06-29 17:13:26 +0000230 O << "\t.ascii ";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000231 printAsCString(O, CVA);
232 O << "\n";
233 } else { // Not a string. Print the values in successive locations
Chris Lattner6173cd92004-08-04 17:29:14 +0000234 for (unsigned i=0, e = CVA->getNumOperands(); i != e; i++)
235 emitGlobalConstant(CVA->getOperand(i));
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000236 }
237 return;
238 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
239 // Print the fields in successive locations. Pad to align if needed!
240 const StructLayout *cvsLayout = TD.getStructLayout(CVS->getType());
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000241 unsigned sizeSoFar = 0;
Chris Lattner6173cd92004-08-04 17:29:14 +0000242 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; i++) {
243 const Constant* field = CVS->getOperand(i);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000244
245 // Check if padding is needed and insert one or more 0s.
246 unsigned fieldSize = TD.getTypeSize(field->getType());
Chris Lattner6173cd92004-08-04 17:29:14 +0000247 unsigned padSize = ((i == e-1? cvsLayout->StructSize
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000248 : cvsLayout->MemberOffsets[i+1])
249 - cvsLayout->MemberOffsets[i]) - fieldSize;
250 sizeSoFar += fieldSize + padSize;
251
252 // Now print the actual field value
253 emitGlobalConstant(field);
254
255 // Insert the field padding unless it's zero bytes...
256 if (padSize)
257 O << "\t.space\t " << padSize << "\n";
258 }
259 assert(sizeSoFar == cvsLayout->StructSize &&
260 "Layout of constant struct may be incorrect!");
261 return;
262 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
263 // FP Constants are printed as integer constants to avoid losing
264 // precision...
265 double Val = CFP->getValue();
Misha Brukmand71bd562004-06-21 17:19:08 +0000266 switch (CFP->getType()->getTypeID()) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000267 default: assert(0 && "Unknown floating point type!");
268 case Type::FloatTyID: {
269 union FU { // Abide by C TBAA rules
270 float FVal;
271 unsigned UVal;
272 } U;
273 U.FVal = Val;
Misha Brukman218bec72004-06-29 17:13:26 +0000274 O << ".long\t" << U.UVal << "\t; float " << Val << "\n";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000275 return;
276 }
277 case Type::DoubleTyID: {
278 union DU { // Abide by C TBAA rules
279 double FVal;
280 uint64_t UVal;
281 struct {
Misha Brukman46fd00a2004-06-24 23:04:11 +0000282 uint32_t MSWord;
283 uint32_t LSWord;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000284 } T;
285 } U;
286 U.FVal = Val;
287
Misha Brukman218bec72004-06-29 17:13:26 +0000288 O << ".long\t" << U.T.MSWord << "\t; double most significant word "
Misha Brukman46fd00a2004-06-24 23:04:11 +0000289 << Val << "\n";
Misha Brukman29188c62004-07-16 19:01:13 +0000290 O << ".long\t" << U.T.LSWord << "\t; double least significant word "
Misha Brukman46fd00a2004-06-24 23:04:11 +0000291 << Val << "\n";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000292 return;
293 }
294 }
Misha Brukmanf63bc192004-07-28 19:12:24 +0000295 } else if (CV->getType() == Type::ULongTy || CV->getType() == Type::LongTy) {
Misha Brukman2bf183c2004-06-25 15:42:10 +0000296 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) {
297 union DU { // Abide by C TBAA rules
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000298 int64_t UVal;
299 struct {
Misha Brukman46fd00a2004-06-24 23:04:11 +0000300 uint32_t MSWord;
301 uint32_t LSWord;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000302 } T;
303 } U;
304 U.UVal = CI->getRawValue();
305
Misha Brukman218bec72004-06-29 17:13:26 +0000306 O << ".long\t" << U.T.MSWord << "\t; Double-word most significant word "
Misha Brukman46fd00a2004-06-24 23:04:11 +0000307 << U.UVal << "\n";
Misha Brukman29188c62004-07-16 19:01:13 +0000308 O << ".long\t" << U.T.LSWord << "\t; Double-word least significant word "
Misha Brukman46fd00a2004-06-24 23:04:11 +0000309 << U.UVal << "\n";
310 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000311 }
312 }
313
314 const Type *type = CV->getType();
315 O << "\t";
Misha Brukmand71bd562004-06-21 17:19:08 +0000316 switch (type->getTypeID()) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000317 case Type::UByteTyID: case Type::SByteTyID:
318 O << ".byte";
319 break;
320 case Type::UShortTyID: case Type::ShortTyID:
321 O << ".short";
322 break;
323 case Type::BoolTyID:
324 case Type::PointerTyID:
325 case Type::UIntTyID: case Type::IntTyID:
326 O << ".long";
327 break;
328 case Type::ULongTyID: case Type::LongTyID:
Misha Brukman46fd00a2004-06-24 23:04:11 +0000329 assert (0 && "Should have already output double-word constant.");
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000330 case Type::FloatTyID: case Type::DoubleTyID:
331 assert (0 && "Should have already output floating point constant.");
332 default:
Misha Brukman97a296f2004-07-21 20:11:11 +0000333 if (CV == Constant::getNullValue(type)) { // Zero initializer?
334 O << ".space\t" << TD.getTypeSize(type) << "\n";
335 return;
336 }
337 std::cerr << "Can't handle printing: " << *CV;
338 abort();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000339 break;
340 }
341 O << "\t";
342 emitConstantValueOnly(CV);
343 O << "\n";
344}
345
346/// printConstantPool - Print to the current output stream assembly
347/// representations of the constants in the constant pool MCP. This is
348/// used to print out constants which have been "spilled to memory" by
349/// the code generator.
350///
351void Printer::printConstantPool(MachineConstantPool *MCP) {
352 const std::vector<Constant*> &CP = MCP->getConstants();
353 const TargetData &TD = TM.getTargetData();
354
355 if (CP.empty()) return;
356
357 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
358 O << "\t.const\n";
359 O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
360 << "\n";
Misha Brukman218bec72004-06-29 17:13:26 +0000361 O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t;"
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000362 << *CP[i] << "\n";
363 emitGlobalConstant(CP[i]);
364 }
365}
366
367/// runOnMachineFunction - This uses the printMachineInstruction()
368/// method to print assembly for each instruction.
369///
370bool Printer::runOnMachineFunction(MachineFunction &MF) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000371 O << "\n\n";
372 // What's my mangled name?
373 CurrentFnName = Mang->getValueName(MF.getFunction());
374
375 // Print out constants referenced by the function
376 printConstantPool(MF.getConstantPool());
377
378 // Print out labels for the function.
379 O << "\t.text\n";
380 O << "\t.globl\t" << CurrentFnName << "\n";
Misha Brukman61297ee2004-06-29 23:40:57 +0000381 O << "\t.align 2\n";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000382 O << CurrentFnName << ":\n";
383
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000384 // 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.
Misha Brukman218bec72004-06-29 17:13:26 +0000388 O << ".LBB" << CurrentFnName << "_" << I->getNumber() << ":\t; "
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000389 << I->getBasicBlock()->getName() << "\n";
390 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
Misha Brukman46fd00a2004-06-24 23:04:11 +0000391 II != E; ++II) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000392 // Print the assembly for the instruction.
393 O << "\t";
394 printMachineInstruction(II);
395 }
396 }
Misha Brukmancf8d2442004-07-26 16:28:33 +0000397 ++LabelNumber;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000398
399 // We didn't modify anything.
400 return false;
401}
402
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000403void Printer::printOp(const MachineOperand &MO,
Misha Brukman46fd00a2004-06-24 23:04:11 +0000404 bool elideOffsetKeyword /* = false */) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000405 const MRegisterInfo &RI = *TM.getRegisterInfo();
406 int new_symbol;
407
408 switch (MO.getType()) {
409 case MachineOperand::MO_VirtualRegister:
410 if (Value *V = MO.getVRegValueOrNull()) {
411 O << "<" << V->getName() << ">";
412 return;
413 }
414 // FALLTHROUGH
415 case MachineOperand::MO_MachineRegister:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000416 case MachineOperand::MO_CCRegister:
Misha Brukman7f484a52004-06-24 23:51:00 +0000417 O << LowercaseString(RI.get(MO.getReg()).Name);
418 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000419
420 case MachineOperand::MO_SignExtendedImmed:
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000421 case MachineOperand::MO_UnextendedImmed:
422 std::cerr << "printOp() does not handle immediate values\n";
423 abort();
Misha Brukman97a296f2004-07-21 20:11:11 +0000424 return;
425
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000426 case MachineOperand::MO_PCRelativeDisp:
427 std::cerr << "Shouldn't use addPCDisp() when building PPC MachineInstrs";
428 abort();
429 return;
430
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000431 case MachineOperand::MO_MachineBasicBlock: {
432 MachineBasicBlock *MBBOp = MO.getMachineBasicBlock();
433 O << ".LBB" << Mang->getValueName(MBBOp->getParent()->getFunction())
Misha Brukman218bec72004-06-29 17:13:26 +0000434 << "_" << MBBOp->getNumber() << "\t; "
Misha Brukman2bf183c2004-06-25 15:42:10 +0000435 << MBBOp->getBasicBlock()->getName();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000436 return;
437 }
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000438
439 case MachineOperand::MO_ConstantPoolIndex:
440 O << ".CPI" << CurrentFnName << "_" << MO.getConstantPoolIndex();
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000441 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000442
443 case MachineOperand::MO_ExternalSymbol:
444 O << MO.getSymbolName();
445 return;
446
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000447 case MachineOperand::MO_GlobalAddress:
448 if (!elideOffsetKeyword) {
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000449 GlobalValue *GV = MO.getGlobal();
450 std::string Name = Mang->getValueName(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000451
Misha Brukmana6e58b32004-06-28 18:03:37 +0000452 // Dynamically-resolved functions need a stub for the function
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000453 Function *F = dyn_cast<Function>(GV);
Misha Brukmane2eceb52004-07-23 16:08:20 +0000454 if (F && F->isExternal() &&
455 TM.CalledFunctions.find(F) != TM.CalledFunctions.end()) {
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000456 FnStubs.insert(Name);
457 O << "L" << Name << "$stub";
Misha Brukmane2eceb52004-07-23 16:08:20 +0000458 return;
Misha Brukman46fd00a2004-06-24 23:04:11 +0000459 }
Misha Brukmane2eceb52004-07-23 16:08:20 +0000460
461 // External global variables need a non-lazily-resolved stub
Misha Brukman1245c352004-07-23 21:43:26 +0000462 if (!GV->hasInternalLinkage() &&
Misha Brukmane2eceb52004-07-23 16:08:20 +0000463 TM.AddressTaken.find(GV) != TM.AddressTaken.end()) {
464 GVStubs.insert(Name);
465 O << "L" << Name << "$non_lazy_ptr";
466 return;
467 }
468
469 O << Mang->getValueName(GV);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000470 }
471 return;
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000472
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000473 default:
Misha Brukman05fcd0c2004-07-08 17:58:04 +0000474 O << "<unknown operand type: " << MO.getType() << ">";
Misha Brukman22e12072004-06-25 15:11:34 +0000475 return;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000476 }
477}
478
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000479void Printer::printImmOp(const MachineOperand &MO, unsigned ArgType) {
480 int Imm = MO.getImmedValue();
Misha Brukman5b570812004-08-10 22:47:03 +0000481 if (ArgType == PPCII::Simm16 || ArgType == PPCII::Disimm16) {
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000482 O << (short)Imm;
Misha Brukman5b570812004-08-10 22:47:03 +0000483 } else if (ArgType == PPCII::Zimm16) {
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000484 O << (unsigned short)Imm;
485 } else {
486 O << Imm;
487 }
488}
489
Misha Brukman5b570812004-08-10 22:47:03 +0000490/// printMachineInstruction -- Print out a single PPC LLVM instruction
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000491/// MI in Darwin syntax to the current output stream.
492///
493void Printer::printMachineInstruction(const MachineInstr *MI) {
494 unsigned Opcode = MI->getOpcode();
495 const TargetInstrInfo &TII = *TM.getInstrInfo();
496 const TargetInstrDescriptor &Desc = TII.get(Opcode);
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000497 unsigned i;
Misha Brukmanc6cc10f2004-06-25 19:24:52 +0000498
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000499 unsigned ArgCount = MI->getNumOperands();
500 unsigned ArgType[] = {
Misha Brukman5b570812004-08-10 22:47:03 +0000501 (Desc.TSFlags >> PPCII::Arg0TypeShift) & PPCII::ArgTypeMask,
502 (Desc.TSFlags >> PPCII::Arg1TypeShift) & PPCII::ArgTypeMask,
503 (Desc.TSFlags >> PPCII::Arg2TypeShift) & PPCII::ArgTypeMask,
504 (Desc.TSFlags >> PPCII::Arg3TypeShift) & PPCII::ArgTypeMask,
505 (Desc.TSFlags >> PPCII::Arg4TypeShift) & PPCII::ArgTypeMask
Misha Brukman22e12072004-06-25 15:11:34 +0000506 };
Misha Brukman5b570812004-08-10 22:47:03 +0000507 assert(((Desc.TSFlags & PPCII::VMX) == 0) &&
Misha Brukman46fd00a2004-06-24 23:04:11 +0000508 "Instruction requires VMX support");
Misha Brukman5b570812004-08-10 22:47:03 +0000509 assert(((Desc.TSFlags & PPCII::PPC64) == 0) &&
Misha Brukman46fd00a2004-06-24 23:04:11 +0000510 "Instruction requires 64 bit support");
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000511 ++EmittedInsts;
512
Misha Brukman61114612004-07-20 00:42:19 +0000513 // CALLpcrel and CALLindirect are handled specially here to print only the
514 // appropriate number of args that the assembler expects. This is because
515 // may have many arguments appended to record the uses of registers that are
516 // holding arguments to the called function.
Misha Brukman5b570812004-08-10 22:47:03 +0000517 if (Opcode == PPC::COND_BRANCH) {
Misha Brukmanab967902004-07-27 18:40:39 +0000518 std::cerr << "Error: untranslated conditional branch psuedo instruction!\n";
519 abort();
Misha Brukman5b570812004-08-10 22:47:03 +0000520 } else if (Opcode == PPC::IMPLICIT_DEF) {
Misha Brukman29188c62004-07-16 19:01:13 +0000521 O << "; IMPLICIT DEF ";
522 printOp(MI->getOperand(0));
523 O << "\n";
524 return;
Misha Brukman5b570812004-08-10 22:47:03 +0000525 } else if (Opcode == PPC::CALLpcrel) {
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000526 O << TII.getName(Opcode) << " ";
Misha Brukman61114612004-07-20 00:42:19 +0000527 printOp(MI->getOperand(0));
528 O << "\n";
529 return;
Misha Brukman5b570812004-08-10 22:47:03 +0000530 } else if (Opcode == PPC::CALLindirect) {
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000531 O << TII.getName(Opcode) << " ";
532 printImmOp(MI->getOperand(0), ArgType[0]);
Misha Brukman61114612004-07-20 00:42:19 +0000533 O << ", ";
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000534 printImmOp(MI->getOperand(1), ArgType[0]);
Misha Brukman61114612004-07-20 00:42:19 +0000535 O << "\n";
536 return;
Misha Brukman5b570812004-08-10 22:47:03 +0000537 } else if (Opcode == PPC::MovePCtoLR) {
Misha Brukman61114612004-07-20 00:42:19 +0000538 // FIXME: should probably be converted to cout.width and cout.fill
Misha Brukmancf8d2442004-07-26 16:28:33 +0000539 O << "bl \"L0000" << LabelNumber << "$pb\"\n";
540 O << "\"L0000" << LabelNumber << "$pb\":\n";
Misha Brukman218bec72004-06-29 17:13:26 +0000541 O << "\tmflr ";
542 printOp(MI->getOperand(0));
Misha Brukman218bec72004-06-29 17:13:26 +0000543 O << "\n";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000544 return;
545 }
546
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000547 O << TII.getName(Opcode) << " ";
Misha Brukman5b570812004-08-10 22:47:03 +0000548 if (Opcode == PPC::LOADLoDirect || Opcode == PPC::LOADLoIndirect) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000549 printOp(MI->getOperand(0));
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000550 O << ", lo16(";
551 printOp(MI->getOperand(2));
Misha Brukmancf8d2442004-07-26 16:28:33 +0000552 O << "-\"L0000" << LabelNumber << "$pb\")";
Misha Brukman218bec72004-06-29 17:13:26 +0000553 O << "(";
Misha Brukman5b570812004-08-10 22:47:03 +0000554 if (MI->getOperand(1).getReg() == PPC::R0)
Misha Brukman218bec72004-06-29 17:13:26 +0000555 O << "0";
556 else
557 printOp(MI->getOperand(1));
558 O << ")\n";
Misha Brukman5b570812004-08-10 22:47:03 +0000559 } else if (Opcode == PPC::LOADHiAddr) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000560 printOp(MI->getOperand(0));
561 O << ", ";
Misha Brukman5b570812004-08-10 22:47:03 +0000562 if (MI->getOperand(1).getReg() == PPC::R0)
Misha Brukman218bec72004-06-29 17:13:26 +0000563 O << "0";
564 else
565 printOp(MI->getOperand(1));
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000566 O << ", ha16(" ;
567 printOp(MI->getOperand(2));
Misha Brukmancf8d2442004-07-26 16:28:33 +0000568 O << "-\"L0000" << LabelNumber << "$pb\")\n";
Misha Brukman5b570812004-08-10 22:47:03 +0000569 } else if (ArgCount == 3 && ArgType[1] == PPCII::Disimm16) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000570 printOp(MI->getOperand(0));
571 O << ", ";
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000572 printImmOp(MI->getOperand(1), ArgType[1]);
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000573 O << "(";
Misha Brukmanb9e8f972004-06-30 21:54:12 +0000574 if (MI->getOperand(2).hasAllocatedReg() &&
Misha Brukman5b570812004-08-10 22:47:03 +0000575 MI->getOperand(2).getReg() == PPC::R0)
Misha Brukman46fd00a2004-06-24 23:04:11 +0000576 O << "0";
577 else
578 printOp(MI->getOperand(2));
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000579 O << ")\n";
580 } else {
Misha Brukman7f484a52004-06-24 23:51:00 +0000581 for (i = 0; i < ArgCount; ++i) {
Misha Brukmanab967902004-07-27 18:40:39 +0000582 // addi and friends
Misha Brukman5b570812004-08-10 22:47:03 +0000583 if (i == 1 && ArgCount == 3 && ArgType[2] == PPCII::Simm16 &&
Misha Brukman4363bdb2004-07-01 21:09:12 +0000584 MI->getOperand(1).hasAllocatedReg() &&
Misha Brukman5b570812004-08-10 22:47:03 +0000585 MI->getOperand(1).getReg() == PPC::R0) {
Misha Brukman46fd00a2004-06-24 23:04:11 +0000586 O << "0";
Misha Brukmanab967902004-07-27 18:40:39 +0000587 // for long branch support, bc $+8
588 } else if (i == 1 && ArgCount == 2 && MI->getOperand(1).isImmediate() &&
589 TII.isBranch(MI->getOpcode())) {
590 O << "$+8";
591 assert(8 == MI->getOperand(i).getImmedValue()
592 && "branch off PC not to pc+8?");
593 //printOp(MI->getOperand(i));
Misha Brukmanaf313fb2004-07-28 00:00:48 +0000594 } else if (MI->getOperand(i).isImmediate()) {
595 printImmOp(MI->getOperand(i), ArgType[i]);
Misha Brukman218bec72004-06-29 17:13:26 +0000596 } else {
Misha Brukman46fd00a2004-06-24 23:04:11 +0000597 printOp(MI->getOperand(i));
598 }
Misha Brukman7f484a52004-06-24 23:51:00 +0000599 if (ArgCount - 1 == i)
Misha Brukman46fd00a2004-06-24 23:04:11 +0000600 O << "\n";
601 else
602 O << ", ";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000603 }
604 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000605}
606
607bool Printer::doInitialization(Module &M) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000608 Mang = new Mangler(M, true);
609 return false; // success
610}
611
612// SwitchSection - Switch to the specified section of the executable if we are
613// not already in it!
614//
615static void SwitchSection(std::ostream &OS, std::string &CurSection,
616 const char *NewSection) {
617 if (CurSection != NewSection) {
618 CurSection = NewSection;
619 if (!CurSection.empty())
620 OS << "\t" << NewSection << "\n";
621 }
622}
623
624bool Printer::doFinalization(Module &M) {
625 const TargetData &TD = TM.getTargetData();
626 std::string CurSection;
627
628 // Print out module-level global variables here.
629 for (Module::const_giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
630 if (I->hasInitializer()) { // External global require no code
631 O << "\n\n";
632 std::string name = Mang->getValueName(I);
633 Constant *C = I->getInitializer();
634 unsigned Size = TD.getTypeSize(C->getType());
635 unsigned Align = TD.getTypeAlignment(C->getType());
636
Misha Brukman97a296f2004-07-21 20:11:11 +0000637 if (C->isNullValue() && /* FIXME: Verify correct */
638 (I->hasInternalLinkage() || I->hasWeakLinkage())) {
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000639 SwitchSection(O, CurSection, ".data");
640 if (I->hasInternalLinkage())
Misha Brukmane2eceb52004-07-23 16:08:20 +0000641 O << ".lcomm " << name << "," << TD.getTypeSize(C->getType())
Misha Brukman218bec72004-06-29 17:13:26 +0000642 << "," << (unsigned)TD.getTypeAlignment(C->getType());
643 else
Misha Brukmane2eceb52004-07-23 16:08:20 +0000644 O << ".comm " << name << "," << TD.getTypeSize(C->getType());
Misha Brukman218bec72004-06-29 17:13:26 +0000645 O << "\t\t; ";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000646 WriteAsOperand(O, I, true, true, &M);
647 O << "\n";
648 } else {
649 switch (I->getLinkage()) {
650 case GlobalValue::LinkOnceLinkage:
Misha Brukman97a296f2004-07-21 20:11:11 +0000651 O << ".section __TEXT,__textcoal_nt,coalesced,no_toc\n"
652 << ".weak_definition " << name << '\n'
653 << ".private_extern " << name << '\n'
654 << ".section __DATA,__datacoal_nt,coalesced,no_toc\n";
655 LinkOnceStubs.insert(name);
656 break;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000657 case GlobalValue::WeakLinkage: // FIXME: Verify correct for weak.
658 // Nonnull linkonce -> weak
659 O << "\t.weak " << name << "\n";
660 SwitchSection(O, CurSection, "");
661 O << "\t.section\t.llvm.linkonce.d." << name << ",\"aw\",@progbits\n";
662 break;
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000663 case GlobalValue::AppendingLinkage:
664 // FIXME: appending linkage variables should go into a section of
665 // their name or something. For now, just emit them as external.
666 case GlobalValue::ExternalLinkage:
667 // If external or appending, declare as a global symbol
668 O << "\t.globl " << name << "\n";
669 // FALL THROUGH
670 case GlobalValue::InternalLinkage:
Misha Brukman61297ee2004-06-29 23:40:57 +0000671 SwitchSection(O, CurSection, ".data");
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000672 break;
673 }
674
675 O << "\t.align " << Align << "\n";
Misha Brukman218bec72004-06-29 17:13:26 +0000676 O << name << ":\t\t\t\t; ";
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000677 WriteAsOperand(O, I, true, true, &M);
678 O << " = ";
679 WriteAsOperand(O, C, false, false, &M);
680 O << "\n";
681 emitGlobalConstant(C);
682 }
683 }
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000684
Misha Brukman97a296f2004-07-21 20:11:11 +0000685 // Output stubs for link-once variables
686 if (LinkOnceStubs.begin() != LinkOnceStubs.end())
687 O << ".data\n.align 2\n";
688 for (std::set<std::string>::iterator i = LinkOnceStubs.begin(),
Misha Brukmane2eceb52004-07-23 16:08:20 +0000689 e = LinkOnceStubs.end(); i != e; ++i) {
Misha Brukman97a296f2004-07-21 20:11:11 +0000690 O << *i << "$non_lazy_ptr:\n"
691 << "\t.long\t" << *i << '\n';
692 }
693
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000694 // Output stubs for dynamically-linked functions
695 for (std::set<std::string>::iterator i = FnStubs.begin(), e = FnStubs.end();
696 i != e; ++i)
Misha Brukman46fd00a2004-06-24 23:04:11 +0000697 {
Misha Brukmane2eceb52004-07-23 16:08:20 +0000698 O << ".data\n";
699 O << ".section __TEXT,__picsymbolstub1,symbol_stubs,pure_instructions,32\n";
700 O << "\t.align 2\n";
Misha Brukman46fd00a2004-06-24 23:04:11 +0000701 O << "L" << *i << "$stub:\n";
702 O << "\t.indirect_symbol " << *i << "\n";
703 O << "\tmflr r0\n";
Misha Brukmane2eceb52004-07-23 16:08:20 +0000704 O << "\tbcl 20,31,L0$" << *i << "\n";
Misha Brukman46fd00a2004-06-24 23:04:11 +0000705 O << "L0$" << *i << ":\n";
706 O << "\tmflr r11\n";
707 O << "\taddis r11,r11,ha16(L" << *i << "$lazy_ptr-L0$" << *i << ")\n";
708 O << "\tmtlr r0\n";
Misha Brukmane2eceb52004-07-23 16:08:20 +0000709 O << "\tlwzu r12,lo16(L" << *i << "$lazy_ptr-L0$" << *i << ")(r11)\n";
Misha Brukman46fd00a2004-06-24 23:04:11 +0000710 O << "\tmtctr r12\n";
711 O << "\tbctr\n";
712 O << ".data\n";
713 O << ".lazy_symbol_pointer\n";
714 O << "L" << *i << "$lazy_ptr:\n";
Misha Brukmane2eceb52004-07-23 16:08:20 +0000715 O << "\t.indirect_symbol " << *i << "\n";
716 O << "\t.long dyld_stub_binding_helper\n";
Misha Brukman46fd00a2004-06-24 23:04:11 +0000717 }
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000718
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000719 O << "\n";
720
721 // Output stubs for external global variables
722 if (GVStubs.begin() != GVStubs.end())
Misha Brukmane2eceb52004-07-23 16:08:20 +0000723 O << ".data\n.non_lazy_symbol_pointer\n";
Misha Brukmanda2b13f2004-07-16 20:29:04 +0000724 for (std::set<std::string>::iterator i = GVStubs.begin(), e = GVStubs.end();
725 i != e; ++i) {
726 O << "L" << *i << "$non_lazy_ptr:\n";
727 O << "\t.indirect_symbol " << *i << "\n";
728 O << "\t.long\t0\n";
729 }
730
Misha Brukman5dfe3a92004-06-21 16:55:25 +0000731 delete Mang;
732 return false; // success
733}
734
735} // End llvm namespace