blob: bcf17e94a1e86f2e549883384a4902895e5fc30f [file] [log] [blame]
Brian Gaeke4acfd032004-03-04 06:00:41 +00001//===-- SparcV8AsmPrinter.cpp - SparcV8 LLVM assembly writer --------------===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Brian Gaeke4acfd032004-03-04 06:00:41 +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//
Brian Gaeke4acfd032004-03-04 06:00:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to GAS-format Sparc V8 assembly language.
12//
13//===----------------------------------------------------------------------===//
14
15#include "SparcV8.h"
16#include "SparcV8InstrInfo.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/Module.h"
20#include "llvm/Assembly/Writer.h"
21#include "llvm/CodeGen/MachineFunctionPass.h"
22#include "llvm/CodeGen/MachineConstantPool.h"
23#include "llvm/CodeGen/MachineInstr.h"
24#include "llvm/Target/TargetMachine.h"
25#include "llvm/Support/Mangler.h"
Brian Gaeke74dfcf12004-09-02 02:37:43 +000026#include "llvm/ADT/Statistic.h"
27#include "llvm/ADT/StringExtras.h"
28#include "llvm/Support/CommandLine.h"
Jim Laskeyb8df7c22005-08-17 20:04:34 +000029#include "llvm/Support/MathExtras.h"
Brian Gaekea8b00ca2004-03-06 05:30:21 +000030#include <cctype>
Brian Gaeke4acfd032004-03-04 06:00:41 +000031using namespace llvm;
32
33namespace {
34 Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
35
Chris Lattner994b7352005-12-16 06:34:17 +000036 struct SparcV8AsmPrinter : public MachineFunctionPass {
Brian Gaeke4acfd032004-03-04 06:00:41 +000037 /// Output stream on which we're printing assembly code.
38 ///
39 std::ostream &O;
40
41 /// Target machine description which we query for reg. names, data
42 /// layout, etc.
43 ///
44 TargetMachine &TM;
45
46 /// Name-mangler for global names.
47 ///
48 Mangler *Mang;
49
Chris Lattner994b7352005-12-16 06:34:17 +000050 SparcV8AsmPrinter(std::ostream &o, TargetMachine &tm) : O(o), TM(tm) { }
Brian Gaeke4acfd032004-03-04 06:00:41 +000051
52 /// We name each basic block in a Function with a unique number, so
53 /// that we can consistently refer to them later. This is cleared
54 /// at the beginning of each call to runOnMachineFunction().
55 ///
56 typedef std::map<const Value *, unsigned> ValueMapTy;
57 ValueMapTy NumberForBB;
58
59 /// Cache of mangled name for current function. This is
60 /// recalculated at the beginning of each call to
61 /// runOnMachineFunction().
62 ///
63 std::string CurrentFnName;
64
65 virtual const char *getPassName() const {
66 return "SparcV8 Assembly Printer";
67 }
68
69 void emitConstantValueOnly(const Constant *CV);
70 void emitGlobalConstant(const Constant *CV);
71 void printConstantPool(MachineConstantPool *MCP);
Brian Gaeke446ae112004-06-15 19:52:59 +000072 void printOperand(const MachineInstr *MI, int opNum);
Brian Gaekeceb22412004-06-18 06:27:59 +000073 void printBaseOffsetPair (const MachineInstr *MI, int i, bool brackets=true);
Brian Gaeke4acfd032004-03-04 06:00:41 +000074 void printMachineInstruction(const MachineInstr *MI);
Chris Lattner994b7352005-12-16 06:34:17 +000075 bool printInstruction(const MachineInstr *MI); // autogenerated.
Misha Brukmanb5f662f2005-04-21 23:30:14 +000076 bool runOnMachineFunction(MachineFunction &F);
Brian Gaeke4acfd032004-03-04 06:00:41 +000077 bool doInitialization(Module &M);
78 bool doFinalization(Module &M);
79 };
80} // end of anonymous namespace
81
Chris Lattner994b7352005-12-16 06:34:17 +000082#include "SparcV8GenAsmWriter.inc"
83
Brian Gaeke4acfd032004-03-04 06:00:41 +000084/// createSparcV8CodePrinterPass - Returns a pass that prints the SparcV8
85/// assembly code for a MachineFunction to the given output stream,
86/// using the given target machine description. This should work
87/// regardless of whether the function is in SSA form.
88///
89FunctionPass *llvm::createSparcV8CodePrinterPass (std::ostream &o,
90 TargetMachine &tm) {
Chris Lattner994b7352005-12-16 06:34:17 +000091 return new SparcV8AsmPrinter(o, tm);
Brian Gaeke4acfd032004-03-04 06:00:41 +000092}
93
94/// toOctal - Convert the low order bits of X into an octal digit.
95///
96static inline char toOctal(int X) {
97 return (X&7)+'0';
98}
99
100/// getAsCString - Return the specified array as a C compatible
101/// string, only if the predicate isStringCompatible is true.
102///
103static void printAsCString(std::ostream &O, const ConstantArray *CVA) {
104 assert(CVA->isString() && "Array is not string compatible!");
105
106 O << "\"";
107 for (unsigned i = 0; i != CVA->getNumOperands(); ++i) {
108 unsigned char C = cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
109
110 if (C == '"') {
111 O << "\\\"";
112 } else if (C == '\\') {
113 O << "\\\\";
114 } else if (isprint(C)) {
115 O << C;
116 } else {
117 switch(C) {
118 case '\b': O << "\\b"; break;
119 case '\f': O << "\\f"; break;
120 case '\n': O << "\\n"; break;
121 case '\r': O << "\\r"; break;
122 case '\t': O << "\\t"; break;
123 default:
124 O << '\\';
125 O << toOctal(C >> 6);
126 O << toOctal(C >> 3);
127 O << toOctal(C >> 0);
128 break;
129 }
130 }
131 }
132 O << "\"";
133}
134
135// Print out the specified constant, without a storage class. Only the
136// constants valid in constant expressions can occur here.
Chris Lattner994b7352005-12-16 06:34:17 +0000137void SparcV8AsmPrinter::emitConstantValueOnly(const Constant *CV) {
Brian Gaeke54799c22004-11-14 03:22:05 +0000138 if (CV->isNullValue() || isa<UndefValue> (CV))
Brian Gaeke4acfd032004-03-04 06:00:41 +0000139 O << "0";
140 else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
141 assert(CB == ConstantBool::True);
142 O << "1";
143 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
144 if (((CI->getValue() << 32) >> 32) == CI->getValue())
145 O << CI->getValue();
146 else
147 O << (unsigned long long)CI->getValue();
148 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
149 O << CI->getValue();
Chris Lattner73302482004-07-18 07:26:17 +0000150 else if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV))
Brian Gaeke4acfd032004-03-04 06:00:41 +0000151 // This is a constant address for a global variable or function. Use the
152 // name of the variable or function as the address value.
Chris Lattner73302482004-07-18 07:26:17 +0000153 O << Mang->getValueName(GV);
Brian Gaeke4acfd032004-03-04 06:00:41 +0000154 else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
155 const TargetData &TD = TM.getTargetData();
156 switch(CE->getOpcode()) {
157 case Instruction::GetElementPtr: {
158 // generate a symbolic expression for the byte address
159 const Constant *ptrVal = CE->getOperand(0);
160 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
161 if (unsigned Offset = TD.getIndexedOffset(ptrVal->getType(), idxVec)) {
162 O << "(";
163 emitConstantValueOnly(ptrVal);
164 O << ") + " << Offset;
165 } else {
166 emitConstantValueOnly(ptrVal);
167 }
168 break;
169 }
170 case Instruction::Cast: {
171 // Support only non-converting or widening casts for now, that is, ones
172 // that do not involve a change in value. This assertion is really gross,
173 // and may not even be a complete check.
174 Constant *Op = CE->getOperand(0);
175 const Type *OpTy = Op->getType(), *Ty = CE->getType();
176
177 // Pointers on ILP32 machines can be losslessly converted back and
178 // forth into 32-bit or wider integers, regardless of signedness.
179 assert(((isa<PointerType>(OpTy)
180 && (Ty == Type::LongTy || Ty == Type::ULongTy
181 || Ty == Type::IntTy || Ty == Type::UIntTy))
182 || (isa<PointerType>(Ty)
183 && (OpTy == Type::LongTy || OpTy == Type::ULongTy
184 || OpTy == Type::IntTy || OpTy == Type::UIntTy))
185 || (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
186 && OpTy->isLosslesslyConvertibleTo(Ty))))
187 && "FIXME: Don't yet support this kind of constant cast expr");
188 O << "(";
189 emitConstantValueOnly(Op);
190 O << ")";
191 break;
192 }
193 case Instruction::Add:
194 O << "(";
195 emitConstantValueOnly(CE->getOperand(0));
196 O << ") + (";
197 emitConstantValueOnly(CE->getOperand(1));
198 O << ")";
199 break;
200 default:
201 assert(0 && "Unsupported operator!");
202 }
203 } else {
204 assert(0 && "Unknown constant value!");
205 }
206}
207
208// Print a constant value or values, with the appropriate storage class as a
209// prefix.
Chris Lattner994b7352005-12-16 06:34:17 +0000210void SparcV8AsmPrinter::emitGlobalConstant(const Constant *CV) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000211 const TargetData &TD = TM.getTargetData();
212
Brian Gaeke9d2427c2004-06-18 08:59:16 +0000213 if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000214 if (CVA->isString()) {
215 O << "\t.ascii\t";
216 printAsCString(O, CVA);
217 O << "\n";
218 } else { // Not a string. Print the values in successive locations
Chris Lattnercdf70122004-08-04 17:27:27 +0000219 for (unsigned i = 0, e = CVA->getNumOperands(); i != e; i++)
220 emitGlobalConstant(CVA->getOperand(i));
Brian Gaeke4acfd032004-03-04 06:00:41 +0000221 }
222 return;
223 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
224 // Print the fields in successive locations. Pad to align if needed!
225 const StructLayout *cvsLayout = TD.getStructLayout(CVS->getType());
Brian Gaeke4acfd032004-03-04 06:00:41 +0000226 unsigned sizeSoFar = 0;
Chris Lattnercdf70122004-08-04 17:27:27 +0000227 for (unsigned i = 0, e = CVS->getNumOperands(); i != e; i++) {
228 const Constant* field = CVS->getOperand(i);
Brian Gaeke4acfd032004-03-04 06:00:41 +0000229
230 // Check if padding is needed and insert one or more 0s.
231 unsigned fieldSize = TD.getTypeSize(field->getType());
Chris Lattnercdf70122004-08-04 17:27:27 +0000232 unsigned padSize = ((i == e-1? cvsLayout->StructSize
Brian Gaeke4acfd032004-03-04 06:00:41 +0000233 : cvsLayout->MemberOffsets[i+1])
234 - cvsLayout->MemberOffsets[i]) - fieldSize;
235 sizeSoFar += fieldSize + padSize;
236
237 // Now print the actual field value
238 emitGlobalConstant(field);
239
240 // Insert the field padding unless it's zero bytes...
241 if (padSize)
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000242 O << "\t.skip\t " << padSize << "\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000243 }
244 assert(sizeSoFar == cvsLayout->StructSize &&
245 "Layout of constant struct may be incorrect!");
246 return;
247 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
248 // FP Constants are printed as integer constants to avoid losing
249 // precision...
250 double Val = CFP->getValue();
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000251 switch (CFP->getType()->getTypeID()) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000252 default: assert(0 && "Unknown floating point type!");
253 case Type::FloatTyID: {
Jim Laskeycb6682f2005-08-17 19:34:49 +0000254 O << ".long\t" << FloatToBits(Val) << "\t! float " << Val << "\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000255 return;
256 }
257 case Type::DoubleTyID: {
Jim Laskeycb6682f2005-08-17 19:34:49 +0000258 O << ".word\t0x" << std::hex << (DoubleToBits(Val) >> 32) << std::dec << "\t! double " << Val << "\n";
259 O << ".word\t0x" << std::hex << (DoubleToBits(Val) & 0xffffffffUL) << std::dec << "\t! double " << Val << "\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000260 return;
261 }
262 }
Brian Gaeke54799c22004-11-14 03:22:05 +0000263 } else if (isa<UndefValue> (CV)) {
264 unsigned size = TD.getTypeSize (CV->getType ());
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000265 O << "\t.skip\t " << size << "\n";
Brian Gaeke54799c22004-11-14 03:22:05 +0000266 return;
Brian Gaeke4dd043f2004-11-23 21:10:49 +0000267 } else if (isa<ConstantAggregateZero> (CV)) {
268 unsigned size = TD.getTypeSize (CV->getType ());
269 for (unsigned i = 0; i < size; ++i)
Misha Brukman27177f82005-04-22 18:06:01 +0000270 O << "\t.byte 0\n";
Brian Gaeke4dd043f2004-11-23 21:10:49 +0000271 return;
Brian Gaeke4acfd032004-03-04 06:00:41 +0000272 }
273
274 const Type *type = CV->getType();
275 O << "\t";
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000276 switch (type->getTypeID()) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000277 case Type::BoolTyID: case Type::UByteTyID: case Type::SByteTyID:
278 O << ".byte";
279 break;
280 case Type::UShortTyID: case Type::ShortTyID:
Brian Gaeke3bf960c2004-12-09 18:51:01 +0000281 O << ".half";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000282 break;
283 case Type::FloatTyID: case Type::PointerTyID:
284 case Type::UIntTyID: case Type::IntTyID:
Brian Gaeke3bf960c2004-12-09 18:51:01 +0000285 O << ".word";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000286 break;
287 case Type::DoubleTyID:
288 case Type::ULongTyID: case Type::LongTyID:
Brian Gaeke3bf960c2004-12-09 18:51:01 +0000289 O << ".xword";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000290 break;
291 default:
292 assert (0 && "Can't handle printing this type of thing");
293 break;
294 }
295 O << "\t";
296 emitConstantValueOnly(CV);
297 O << "\n";
298}
299
300/// printConstantPool - Print to the current output stream assembly
301/// representations of the constants in the constant pool MCP. This is
302/// used to print out constants which have been "spilled to memory" by
303/// the code generator.
304///
Chris Lattner994b7352005-12-16 06:34:17 +0000305void SparcV8AsmPrinter::printConstantPool(MachineConstantPool *MCP) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000306 const std::vector<Constant*> &CP = MCP->getConstants();
307 const TargetData &TD = TM.getTargetData();
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000308
Brian Gaeke4acfd032004-03-04 06:00:41 +0000309 if (CP.empty()) return;
310
311 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
Brian Gaekeb27df442004-09-29 03:25:40 +0000312 O << "\t.section \".rodata\"\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000313 O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
314 << "\n";
Brian Gaeke79db7402004-03-16 22:37:12 +0000315 O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t!"
Brian Gaeke4acfd032004-03-04 06:00:41 +0000316 << *CP[i] << "\n";
317 emitGlobalConstant(CP[i]);
318 }
319}
320
321/// runOnMachineFunction - This uses the printMachineInstruction()
322/// method to print assembly for each instruction.
323///
Chris Lattner994b7352005-12-16 06:34:17 +0000324bool SparcV8AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000325 // BBNumber is used here so that a given Printer will never give two
326 // BBs the same name. (If you have a better way, please let me know!)
327 static unsigned BBNumber = 0;
328
329 O << "\n\n";
330 // What's my mangled name?
331 CurrentFnName = Mang->getValueName(MF.getFunction());
332
333 // Print out constants referenced by the function
334 printConstantPool(MF.getConstantPool());
335
336 // Print out labels for the function.
337 O << "\t.text\n";
338 O << "\t.align 16\n";
339 O << "\t.globl\t" << CurrentFnName << "\n";
Brian Gaeke54cc3c22004-03-16 22:52:04 +0000340 O << "\t.type\t" << CurrentFnName << ", #function\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000341 O << CurrentFnName << ":\n";
342
343 // Number each basic block so that we can consistently refer to them
344 // in PC-relative references.
345 NumberForBB.clear();
346 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
347 I != E; ++I) {
348 NumberForBB[I->getBasicBlock()] = BBNumber++;
349 }
350
351 // Print out code for the function.
352 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
353 I != E; ++I) {
354 // Print a label for the basic block.
Brian Gaeke09c13092004-06-17 19:39:23 +0000355 O << ".LBB" << Mang->getValueName(MF.getFunction ())
356 << "_" << I->getNumber () << ":\t! "
357 << I->getBasicBlock ()->getName () << "\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000358 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
Misha Brukman27177f82005-04-22 18:06:01 +0000359 II != E; ++II) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000360 // Print the assembly for the instruction.
Brian Gaeke4acfd032004-03-04 06:00:41 +0000361 printMachineInstruction(II);
362 }
363 }
364
365 // We didn't modify anything.
366 return false;
367}
368
Chris Lattner994b7352005-12-16 06:34:17 +0000369void SparcV8AsmPrinter::printOperand(const MachineInstr *MI, int opNum) {
Brian Gaeke446ae112004-06-15 19:52:59 +0000370 const MachineOperand &MO = MI->getOperand (opNum);
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000371 const MRegisterInfo &RI = *TM.getRegisterInfo();
Brian Gaeke446ae112004-06-15 19:52:59 +0000372 bool CloseParen = false;
373 if (MI->getOpcode() == V8::SETHIi && !MO.isRegister() && !MO.isImmediate()) {
374 O << "%hi(";
375 CloseParen = true;
Misha Brukmanf54ef972004-06-24 23:38:20 +0000376 } else if (MI->getOpcode() ==V8::ORri &&!MO.isRegister() &&!MO.isImmediate())
377 {
Brian Gaeke446ae112004-06-15 19:52:59 +0000378 O << "%lo(";
379 CloseParen = true;
380 }
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000381 switch (MO.getType()) {
382 case MachineOperand::MO_VirtualRegister:
383 if (Value *V = MO.getVRegValueOrNull()) {
384 O << "<" << V->getName() << ">";
Brian Gaeke446ae112004-06-15 19:52:59 +0000385 break;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000386 }
387 // FALLTHROUGH
388 case MachineOperand::MO_MachineRegister:
389 if (MRegisterInfo::isPhysicalRegister(MO.getReg()))
Brian Gaekea8b00ca2004-03-06 05:30:21 +0000390 O << "%" << LowercaseString (RI.get(MO.getReg()).Name);
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000391 else
392 O << "%reg" << MO.getReg();
Brian Gaeke446ae112004-06-15 19:52:59 +0000393 break;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000394
395 case MachineOperand::MO_SignExtendedImmed:
396 case MachineOperand::MO_UnextendedImmed:
397 O << (int)MO.getImmedValue();
Brian Gaeke446ae112004-06-15 19:52:59 +0000398 break;
Brian Gaeke09c13092004-06-17 19:39:23 +0000399 case MachineOperand::MO_MachineBasicBlock: {
400 MachineBasicBlock *MBBOp = MO.getMachineBasicBlock();
401 O << ".LBB" << Mang->getValueName(MBBOp->getParent()->getFunction())
402 << "_" << MBBOp->getNumber () << "\t! "
403 << MBBOp->getBasicBlock ()->getName ();
404 return;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000405 }
Brian Gaeke09c13092004-06-17 19:39:23 +0000406 case MachineOperand::MO_PCRelativeDisp:
407 std::cerr << "Shouldn't use addPCDisp() when building SparcV8 MachineInstrs";
408 abort ();
409 return;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000410 case MachineOperand::MO_GlobalAddress:
411 O << Mang->getValueName(MO.getGlobal());
Brian Gaeke446ae112004-06-15 19:52:59 +0000412 break;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000413 case MachineOperand::MO_ExternalSymbol:
414 O << MO.getSymbolName();
Brian Gaeke446ae112004-06-15 19:52:59 +0000415 break;
Brian Gaeke8a0ae9e2004-06-27 22:50:44 +0000416 case MachineOperand::MO_ConstantPoolIndex:
417 O << ".CPI" << CurrentFnName << "_" << MO.getConstantPoolIndex();
418 break;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000419 default:
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000420 O << "<unknown operand type>"; abort (); break;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000421 }
Brian Gaeke446ae112004-06-15 19:52:59 +0000422 if (CloseParen) O << ")";
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000423}
424
Brian Gaeke1c381752004-04-06 22:10:11 +0000425static bool isLoadInstruction (const MachineInstr *MI) {
426 switch (MI->getOpcode ()) {
Brian Gaekeaf0492e2004-06-24 07:37:12 +0000427 case V8::LDSB:
428 case V8::LDSH:
429 case V8::LDUB:
430 case V8::LDUH:
431 case V8::LD:
432 case V8::LDD:
433 case V8::LDFrr:
434 case V8::LDFri:
435 case V8::LDDFrr:
436 case V8::LDDFri:
Brian Gaeke1c381752004-04-06 22:10:11 +0000437 return true;
438 default:
439 return false;
440 }
441}
442
443static bool isStoreInstruction (const MachineInstr *MI) {
444 switch (MI->getOpcode ()) {
Brian Gaekeaf0492e2004-06-24 07:37:12 +0000445 case V8::STB:
446 case V8::STH:
447 case V8::ST:
448 case V8::STD:
449 case V8::STFrr:
450 case V8::STFri:
451 case V8::STDFrr:
452 case V8::STDFri:
Brian Gaeke1c381752004-04-06 22:10:11 +0000453 return true;
454 default:
455 return false;
456 }
457}
458
Brian Gaeked303a202004-07-16 10:31:47 +0000459static bool isPseudoInstruction (const MachineInstr *MI) {
460 switch (MI->getOpcode ()) {
461 case V8::PHI:
462 case V8::ADJCALLSTACKUP:
463 case V8::ADJCALLSTACKDOWN:
464 case V8::IMPLICIT_USE:
465 case V8::IMPLICIT_DEF:
466 return true;
467 default:
468 return false;
469 }
470}
471
Brian Gaekeceb22412004-06-18 06:27:59 +0000472/// printBaseOffsetPair - Print two consecutive operands of MI, starting at #i,
473/// which form a base + offset pair (which may have brackets around it, if
474/// brackets is true, or may be in the form base - constant, if offset is a
475/// negative constant).
476///
Chris Lattner994b7352005-12-16 06:34:17 +0000477void SparcV8AsmPrinter::printBaseOffsetPair (const MachineInstr *MI, int i,
Brian Gaekeceb22412004-06-18 06:27:59 +0000478 bool brackets) {
479 if (brackets) O << "[";
Brian Gaeke446ae112004-06-15 19:52:59 +0000480 printOperand (MI, i);
Brian Gaekeceb22412004-06-18 06:27:59 +0000481 if (MI->getOperand (i + 1).isImmediate()) {
482 int Val = (int) MI->getOperand (i + 1).getImmedValue ();
483 if (Val != 0) {
484 O << ((Val >= 0) ? " + " : " - ");
485 O << ((Val >= 0) ? Val : -Val);
486 }
487 } else {
488 O << " + ";
489 printOperand (MI, i + 1);
Brian Gaeke8005ed32004-04-07 17:33:56 +0000490 }
Brian Gaekeceb22412004-06-18 06:27:59 +0000491 if (brackets) O << "]";
Brian Gaeke1c381752004-04-06 22:10:11 +0000492}
493
Brian Gaeke4acfd032004-03-04 06:00:41 +0000494/// printMachineInstruction -- Print out a single SparcV8 LLVM instruction
495/// MI in GAS syntax to the current output stream.
496///
Chris Lattner994b7352005-12-16 06:34:17 +0000497void SparcV8AsmPrinter::printMachineInstruction(const MachineInstr *MI) {
498 if (printInstruction(MI)) return;
499 O << "\t";
500
Brian Gaeke4acfd032004-03-04 06:00:41 +0000501 unsigned Opcode = MI->getOpcode();
Chris Lattner143e0ea2004-06-02 05:47:26 +0000502 const TargetInstrInfo &TII = *TM.getInstrInfo();
Brian Gaeke4acfd032004-03-04 06:00:41 +0000503 const TargetInstrDescriptor &Desc = TII.get(Opcode);
Brian Gaeked303a202004-07-16 10:31:47 +0000504
505 // If it's a pseudo-instruction, comment it out.
506 if (isPseudoInstruction (MI))
507 O << "! ";
508
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000509 O << Desc.Name << " ";
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000510
Brian Gaeke1c381752004-04-06 22:10:11 +0000511 // Printing memory instructions is a special case.
Brian Gaekefa4bb092004-04-07 04:29:03 +0000512 // for loads: %dest = op %base, offset --> op [%base + offset], %dest
Brian Gaeke8308d042004-06-17 22:34:19 +0000513 // for stores: op %base, offset, %src --> op %src, [%base + offset]
Brian Gaeke1c381752004-04-06 22:10:11 +0000514 if (isLoadInstruction (MI)) {
Brian Gaekefa4bb092004-04-07 04:29:03 +0000515 printBaseOffsetPair (MI, 1);
Brian Gaeke1c381752004-04-06 22:10:11 +0000516 O << ", ";
Brian Gaeke446ae112004-06-15 19:52:59 +0000517 printOperand (MI, 0);
Brian Gaeke1c381752004-04-06 22:10:11 +0000518 O << "\n";
519 return;
520 } else if (isStoreInstruction (MI)) {
Brian Gaeke8308d042004-06-17 22:34:19 +0000521 printOperand (MI, 2);
Brian Gaeke1c381752004-04-06 22:10:11 +0000522 O << ", ";
Brian Gaeke8308d042004-06-17 22:34:19 +0000523 printBaseOffsetPair (MI, 0);
Brian Gaeke1c381752004-04-06 22:10:11 +0000524 O << "\n";
525 return;
Brian Gaekeceb22412004-06-18 06:27:59 +0000526 } else if (Opcode == V8::JMPLrr) {
527 printBaseOffsetPair (MI, 1, false);
528 O << ", ";
529 printOperand (MI, 0);
530 O << "\n";
531 return;
Brian Gaeke1c381752004-04-06 22:10:11 +0000532 }
533
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000534 // print non-immediate, non-register-def operands
535 // then print immediate operands
536 // then print register-def operands.
Brian Gaeke446ae112004-06-15 19:52:59 +0000537 std::vector<int> print_order;
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000538 for (unsigned i = 0; i < MI->getNumOperands (); ++i)
539 if (!(MI->getOperand (i).isImmediate ()
540 || (MI->getOperand (i).isRegister ()
541 && MI->getOperand (i).isDef ())))
Brian Gaeke446ae112004-06-15 19:52:59 +0000542 print_order.push_back (i);
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000543 for (unsigned i = 0; i < MI->getNumOperands (); ++i)
544 if (MI->getOperand (i).isImmediate ())
Brian Gaeke446ae112004-06-15 19:52:59 +0000545 print_order.push_back (i);
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000546 for (unsigned i = 0; i < MI->getNumOperands (); ++i)
547 if (MI->getOperand (i).isRegister () && MI->getOperand (i).isDef ())
Brian Gaeke446ae112004-06-15 19:52:59 +0000548 print_order.push_back (i);
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000549 for (unsigned i = 0, e = print_order.size (); i != e; ++i) {
Brian Gaeke446ae112004-06-15 19:52:59 +0000550 printOperand (MI, print_order[i]);
Brian Gaeke62aa28a2004-03-05 08:39:09 +0000551 if (i != (print_order.size () - 1))
552 O << ", ";
553 }
554 O << "\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000555}
556
Chris Lattner994b7352005-12-16 06:34:17 +0000557bool SparcV8AsmPrinter::doInitialization(Module &M) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000558 Mang = new Mangler(M);
559 return false; // success
560}
561
562// SwitchSection - Switch to the specified section of the executable if we are
563// not already in it!
564//
565static void SwitchSection(std::ostream &OS, std::string &CurSection,
566 const char *NewSection) {
567 if (CurSection != NewSection) {
568 CurSection = NewSection;
569 if (!CurSection.empty())
Brian Gaekeb27df442004-09-29 03:25:40 +0000570 OS << "\t.section \"" << NewSection << "\"\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000571 }
572}
573
Chris Lattner994b7352005-12-16 06:34:17 +0000574bool SparcV8AsmPrinter::doFinalization(Module &M) {
Brian Gaeke4acfd032004-03-04 06:00:41 +0000575 const TargetData &TD = TM.getTargetData();
576 std::string CurSection;
577
578 // Print out module-level global variables here.
Chris Lattnere4d5c442005-03-15 04:54:21 +0000579 for (Module::const_global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
Brian Gaeke4acfd032004-03-04 06:00:41 +0000580 if (I->hasInitializer()) { // External global require no code
581 O << "\n\n";
582 std::string name = Mang->getValueName(I);
583 Constant *C = I->getInitializer();
584 unsigned Size = TD.getTypeSize(C->getType());
585 unsigned Align = TD.getTypeAlignment(C->getType());
586
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000587 if (C->isNullValue() &&
Brian Gaeke4acfd032004-03-04 06:00:41 +0000588 (I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
589 I->hasWeakLinkage() /* FIXME: Verify correct */)) {
590 SwitchSection(O, CurSection, ".data");
591 if (I->hasInternalLinkage())
592 O << "\t.local " << name << "\n";
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000593
Brian Gaeke4acfd032004-03-04 06:00:41 +0000594 O << "\t.comm " << name << "," << TD.getTypeSize(C->getType())
595 << "," << (unsigned)TD.getTypeAlignment(C->getType());
Brian Gaeke79db7402004-03-16 22:37:12 +0000596 O << "\t\t! ";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000597 WriteAsOperand(O, I, true, true, &M);
598 O << "\n";
599 } else {
600 switch (I->getLinkage()) {
601 case GlobalValue::LinkOnceLinkage:
602 case GlobalValue::WeakLinkage: // FIXME: Verify correct for weak.
603 // Nonnull linkonce -> weak
604 O << "\t.weak " << name << "\n";
605 SwitchSection(O, CurSection, "");
Brian Gaekeb27df442004-09-29 03:25:40 +0000606 O << "\t.section\t\".llvm.linkonce.d." << name << "\",\"aw\",@progbits\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000607 break;
Misha Brukmanb5f662f2005-04-21 23:30:14 +0000608
Brian Gaeke4acfd032004-03-04 06:00:41 +0000609 case GlobalValue::AppendingLinkage:
610 // FIXME: appending linkage variables should go into a section of
611 // their name or something. For now, just emit them as external.
612 case GlobalValue::ExternalLinkage:
613 // If external or appending, declare as a global symbol
614 O << "\t.globl " << name << "\n";
615 // FALL THROUGH
616 case GlobalValue::InternalLinkage:
617 if (C->isNullValue())
618 SwitchSection(O, CurSection, ".bss");
619 else
620 SwitchSection(O, CurSection, ".data");
621 break;
Misha Brukmanc11c44f2004-11-19 21:49:19 +0000622 case GlobalValue::GhostLinkage:
623 std::cerr << "Should not have any unmaterialized functions!\n";
624 abort();
Brian Gaeke4acfd032004-03-04 06:00:41 +0000625 }
626
627 O << "\t.align " << Align << "\n";
Brian Gaeke54cc3c22004-03-16 22:52:04 +0000628 O << "\t.type " << name << ",#object\n";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000629 O << "\t.size " << name << "," << Size << "\n";
Brian Gaeke79db7402004-03-16 22:37:12 +0000630 O << name << ":\t\t\t\t! ";
Brian Gaeke4acfd032004-03-04 06:00:41 +0000631 WriteAsOperand(O, I, true, true, &M);
632 O << " = ";
633 WriteAsOperand(O, C, false, false, &M);
634 O << "\n";
635 emitGlobalConstant(C);
636 }
637 }
638
639 delete Mang;
640 return false; // success
641}