blob: 660404598516c8bda709424ff28b1e835b14e485 [file] [log] [blame]
Brian Gaeke92bdfe62003-07-23 18:37:06 +00001//===-- X86/Printer.cpp - Convert X86 LLVM code to Intel assembly ---------===//
Chris Lattner72614082002-10-25 22:55:53 +00002//
Brian Gaeke92bdfe62003-07-23 18:37:06 +00003// This file contains a printer that converts from our internal
4// representation of machine-dependent LLVM code to Intel-format
5// assembly language. This printer is the output mechanism used
6// by `llc' and `lli -printmachineinstrs' on X86.
Chris Lattner72614082002-10-25 22:55:53 +00007//
8//===----------------------------------------------------------------------===//
9
10#include "X86.h"
Brian Gaeke6559bb92002-11-14 22:32:30 +000011#include "X86InstrInfo.h"
Chris Lattnere0121322003-08-03 23:37:09 +000012#include "llvm/Module.h"
13#include "llvm/Type.h"
14#include "llvm/Constants.h"
15#include "llvm/DerivedTypes.h"
Brian Gaeke6559bb92002-11-14 22:32:30 +000016#include "llvm/Target/TargetMachine.h"
Chris Lattner0285a332002-12-28 20:25:38 +000017#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb7089442003-01-13 00:35:03 +000018#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerdbb61c62002-11-17 22:53:13 +000019#include "llvm/CodeGen/MachineInstr.h"
Brian Gaeke01d79ff2003-06-25 18:01:07 +000020#include "llvm/Assembly/Writer.h"
Brian Gaeked9fb37a2003-07-24 20:20:44 +000021#include "llvm/Support/Mangler.h"
Chris Lattnere0121322003-08-03 23:37:09 +000022#include "Support/StringExtras.h"
Chris Lattner72614082002-10-25 22:55:53 +000023
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000024namespace {
Chris Lattner0285a332002-12-28 20:25:38 +000025 struct Printer : public MachineFunctionPass {
Brian Gaekede420ae2003-07-23 20:25:08 +000026 /// Output stream on which we're printing assembly code.
Brian Gaeke92bdfe62003-07-23 18:37:06 +000027 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000028 std::ostream &O;
Brian Gaekede420ae2003-07-23 20:25:08 +000029
30 /// Target machine description which we query for reg. names, data
31 /// layout, etc.
32 ///
33 TargetMachine &TM;
34
Brian Gaeked9fb37a2003-07-24 20:20:44 +000035 /// Name-mangler for global names.
36 ///
37 Mangler *Mang;
38
Brian Gaekede420ae2003-07-23 20:25:08 +000039 Printer(std::ostream &o, TargetMachine &tm) : O(o), TM(tm) { }
Brian Gaeke92bdfe62003-07-23 18:37:06 +000040
41 /// We name each basic block in a Function with a unique number, so
42 /// that we can consistently refer to them later. This is cleared
43 /// at the beginning of each call to runOnMachineFunction().
44 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000045 typedef std::map<const Value *, unsigned> ValueMapTy;
46 ValueMapTy NumberForBB;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000047
48 /// Cache of mangled name for current function. This is
49 /// recalculated at the beginning of each call to
50 /// runOnMachineFunction().
51 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000052 std::string CurrentFnName;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000053
Chris Lattnerf0eb7be2002-12-15 21:13:40 +000054 virtual const char *getPassName() const {
55 return "X86 Assembly Printer";
56 }
57
Brian Gaeke2a098772003-08-11 19:05:46 +000058 void checkImplUses (const TargetInstrDescriptor &Desc);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000059 void printMachineInstruction(const MachineInstr *MI);
Brian Gaeke92bdfe62003-07-23 18:37:06 +000060 void printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +000061 bool elideOffsetKeyword = false);
62 void printMemReference(const MachineInstr *MI, unsigned Op);
63 void printConstantPool(MachineConstantPool *MCP);
Brian Gaeke01d79ff2003-06-25 18:01:07 +000064 bool runOnMachineFunction(MachineFunction &F);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000065 std::string ConstantExprToString(const ConstantExpr* CE);
66 std::string valToExprString(const Value* V);
Brian Gaeke9e474c42003-06-19 19:32:32 +000067 bool doInitialization(Module &M);
68 bool doFinalization(Module &M);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000069 void printConstantValueOnly(const Constant* CV, int numPadBytesAfter = 0);
70 void printSingleConstantValue(const Constant* CV);
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000071 };
Brian Gaeked7908f62003-06-27 00:00:48 +000072} // end of anonymous namespace
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000073
Brian Gaeke92bdfe62003-07-23 18:37:06 +000074/// createX86CodePrinterPass - Returns a pass that prints the X86
Brian Gaekede420ae2003-07-23 20:25:08 +000075/// assembly code for a MachineFunction to the given output stream,
76/// using the given target machine description. This should work
77/// regardless of whether the function is in SSA form.
Chris Lattnerdbb61c62002-11-17 22:53:13 +000078///
Brian Gaekede420ae2003-07-23 20:25:08 +000079Pass *createX86CodePrinterPass(std::ostream &o, TargetMachine &tm) {
80 return new Printer(o, tm);
Chris Lattnerdbb61c62002-11-17 22:53:13 +000081}
82
Brian Gaeke92bdfe62003-07-23 18:37:06 +000083/// valToExprString - Helper function for ConstantExprToString().
84/// Appends result to argument string S.
85///
Brian Gaeked9fb37a2003-07-24 20:20:44 +000086std::string Printer::valToExprString(const Value* V) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +000087 std::string S;
88 bool failed = false;
89 if (const Constant* CV = dyn_cast<Constant>(V)) { // symbolic or known
90 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV))
91 S += std::string(CB == ConstantBool::True ? "1" : "0");
92 else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
93 S += itostr(CI->getValue());
94 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
95 S += utostr(CI->getValue());
96 else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
97 S += ftostr(CFP->getValue());
98 else if (isa<ConstantPointerNull>(CV))
99 S += "0";
100 else if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CV))
101 S += valToExprString(CPR->getValue());
102 else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV))
103 S += ConstantExprToString(CE);
104 else
105 failed = true;
106 } else if (const GlobalValue* GV = dyn_cast<GlobalValue>(V)) {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000107 S += Mang->getValueName(GV);
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000108 }
109 else
110 failed = true;
111
112 if (failed) {
113 assert(0 && "Cannot convert value to string");
114 S += "<illegal-value>";
115 }
116 return S;
117}
118
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000119/// ConstantExprToString - Convert a ConstantExpr to an asm expression
120/// and return this as a string.
121///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000122std::string Printer::ConstantExprToString(const ConstantExpr* CE) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000123 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000124 switch(CE->getOpcode()) {
125 case Instruction::GetElementPtr:
126 { // generate a symbolic expression for the byte address
127 const Value* ptrVal = CE->getOperand(0);
128 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
Chris Lattner72feb152003-08-04 01:04:59 +0000129 if (unsigned Offset = TD.getIndexedOffset(ptrVal->getType(), idxVec))
130 return "(" + valToExprString(ptrVal) + ") + " + utostr(Offset);
131 else
132 return valToExprString(ptrVal);
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000133 }
134
135 case Instruction::Cast:
Brian Gaekeb3011a02003-07-24 17:30:45 +0000136 // Support only non-converting or widening casts for now, that is,
137 // ones that do not involve a change in value. This assertion is
138 // not a complete check.
139 {
140 Constant *Op = CE->getOperand(0);
141 const Type *OpTy = Op->getType(), *Ty = CE->getType();
142 assert(((isa<PointerType>(OpTy)
143 && (Ty == Type::LongTy || Ty == Type::ULongTy))
144 || (isa<PointerType>(Ty)
145 && (OpTy == Type::LongTy || OpTy == Type::ULongTy)))
146 || (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
Chris Lattner72feb152003-08-04 01:04:59 +0000147 && (OpTy->isLosslesslyConvertibleTo(Ty))))
Brian Gaekeb3011a02003-07-24 17:30:45 +0000148 && "FIXME: Don't yet support this kind of constant cast expr");
Chris Lattner72feb152003-08-04 01:04:59 +0000149 return "(" + valToExprString(Op) + ")";
Brian Gaekeb3011a02003-07-24 17:30:45 +0000150 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000151
152 case Instruction::Add:
Chris Lattner72feb152003-08-04 01:04:59 +0000153 return "(" + valToExprString(CE->getOperand(0)) + ") + ("
154 + valToExprString(CE->getOperand(1)) + ")";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000155
156 default:
157 assert(0 && "Unsupported operator in ConstantExprToString()");
Chris Lattner72feb152003-08-04 01:04:59 +0000158 return "";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000159 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000160}
161
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000162/// printSingleConstantValue - Print a single constant value.
163///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000164void
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000165Printer::printSingleConstantValue(const Constant* CV)
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000166{
167 assert(CV->getType() != Type::VoidTy &&
168 CV->getType() != Type::TypeTy &&
169 CV->getType() != Type::LabelTy &&
170 "Unexpected type for Constant");
171
172 assert((!isa<ConstantArray>(CV) && ! isa<ConstantStruct>(CV))
173 && "Aggregate types should be handled outside this function");
174
175 const Type *type = CV->getType();
176 O << "\t";
177 switch(type->getPrimitiveID())
178 {
179 case Type::BoolTyID: case Type::UByteTyID: case Type::SByteTyID:
180 O << ".byte";
181 break;
182 case Type::UShortTyID: case Type::ShortTyID:
183 O << ".word";
184 break;
185 case Type::UIntTyID: case Type::IntTyID: case Type::PointerTyID:
186 O << ".long";
187 break;
188 case Type::ULongTyID: case Type::LongTyID:
189 O << ".quad";
190 break;
191 case Type::FloatTyID:
192 O << ".long";
193 break;
194 case Type::DoubleTyID:
195 O << ".quad";
196 break;
197 case Type::ArrayTyID:
198 if ((cast<ArrayType>(type)->getElementType() == Type::UByteTy) ||
199 (cast<ArrayType>(type)->getElementType() == Type::SByteTy))
200 O << ".string";
201 else
202 assert (0 && "Can't handle printing this type of array");
203 break;
204 default:
205 assert (0 && "Can't handle printing this type of thing");
206 break;
207 }
208 O << "\t";
209
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000210 if (const ConstantExpr* CE = dyn_cast<ConstantExpr>(CV))
211 {
212 // Constant expression built from operators, constants, and
213 // symbolic addrs
214 O << ConstantExprToString(CE) << "\n";
215 }
216 else if (type->isPrimitiveType())
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000217 {
218 if (type->isFloatingPoint()) {
219 // FP Constants are printed as integer constants to avoid losing
220 // precision...
221 double Val = cast<ConstantFP>(CV)->getValue();
222 if (type == Type::FloatTy) {
223 float FVal = (float)Val;
224 char *ProxyPtr = (char*)&FVal; // Abide by C TBAA rules
225 O << *(unsigned int*)ProxyPtr;
226 } else if (type == Type::DoubleTy) {
227 char *ProxyPtr = (char*)&Val; // Abide by C TBAA rules
228 O << *(uint64_t*)ProxyPtr;
229 } else {
230 assert(0 && "Unknown floating point type!");
231 }
232
233 O << "\t# " << type->getDescription() << " value: " << Val << "\n";
234 } else {
235 WriteAsOperand(O, CV, false, false) << "\n";
236 }
237 }
238 else if (const ConstantPointerRef* CPR = dyn_cast<ConstantPointerRef>(CV))
239 {
240 // This is a constant address for a global variable or method.
241 // Use the name of the variable or method as the address value.
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000242 O << Mang->getValueName(CPR->getValue()) << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000243 }
244 else if (isa<ConstantPointerNull>(CV))
245 {
246 // Null pointer value
247 O << "0\n";
248 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000249 else
250 {
251 assert(0 && "Unknown elementary type for constant");
252 }
253}
254
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000255/// isStringCompatible - Can we treat the specified array as a string?
256/// Only if it is an array of ubytes or non-negative sbytes.
257///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000258static bool isStringCompatible(const ConstantArray *CVA) {
259 const Type *ETy = cast<ArrayType>(CVA->getType())->getElementType();
260 if (ETy == Type::UByteTy) return true;
261 if (ETy != Type::SByteTy) return false;
262
263 for (unsigned i = 0; i < CVA->getNumOperands(); ++i)
264 if (cast<ConstantSInt>(CVA->getOperand(i))->getValue() < 0)
265 return false;
266
267 return true;
268}
269
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000270/// toOctal - Convert the low order bits of X into an octal digit.
271///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000272static inline char toOctal(int X) {
273 return (X&7)+'0';
274}
275
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000276/// getAsCString - Return the specified array as a C compatible
277/// string, only if the predicate isStringCompatible is true.
278///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000279static std::string getAsCString(const ConstantArray *CVA) {
280 assert(isStringCompatible(CVA) && "Array is not string compatible!");
281
282 std::string Result;
283 const Type *ETy = cast<ArrayType>(CVA->getType())->getElementType();
284 Result = "\"";
285 for (unsigned i = 0; i < CVA->getNumOperands(); ++i) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000286 unsigned char C = cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000287
288 if (C == '"') {
289 Result += "\\\"";
290 } else if (C == '\\') {
291 Result += "\\\\";
292 } else if (isprint(C)) {
293 Result += C;
294 } else {
295 switch(C) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000296 case '\b': Result += "\\b"; break;
297 case '\f': Result += "\\f"; break;
298 case '\n': Result += "\\n"; break;
299 case '\r': Result += "\\r"; break;
300 case '\t': Result += "\\t"; break;
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000301 default:
302 Result += '\\';
303 Result += toOctal(C >> 6);
304 Result += toOctal(C >> 3);
305 Result += toOctal(C >> 0);
306 break;
307 }
308 }
309 }
310 Result += "\"";
311 return Result;
312}
313
314// Print a constant value or values (it may be an aggregate).
315// Uses printSingleConstantValue() to print each individual value.
316void
317Printer::printConstantValueOnly(const Constant* CV,
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000318 int numPadBytesAfter /* = 0 */)
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000319{
320 const ConstantArray *CVA = dyn_cast<ConstantArray>(CV);
Brian Gaekede420ae2003-07-23 20:25:08 +0000321 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000322
323 if (CVA && isStringCompatible(CVA))
324 { // print the string alone and return
Chris Lattnere0121322003-08-03 23:37:09 +0000325 O << "\t.string\t" << getAsCString(CVA) << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000326 }
327 else if (CVA)
328 { // Not a string. Print the values in successive locations
329 const std::vector<Use> &constValues = CVA->getValues();
330 for (unsigned i=0; i < constValues.size(); i++)
331 printConstantValueOnly(cast<Constant>(constValues[i].get()));
332 }
333 else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
334 { // Print the fields in successive locations. Pad to align if needed!
335 const StructLayout *cvsLayout =
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000336 TD.getStructLayout(CVS->getType());
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000337 const std::vector<Use>& constValues = CVS->getValues();
338 unsigned sizeSoFar = 0;
339 for (unsigned i=0, N = constValues.size(); i < N; i++)
340 {
341 const Constant* field = cast<Constant>(constValues[i].get());
342
343 // Check if padding is needed and insert one or more 0s.
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000344 unsigned fieldSize = TD.getTypeSize(field->getType());
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000345 int padSize = ((i == N-1? cvsLayout->StructSize
346 : cvsLayout->MemberOffsets[i+1])
347 - cvsLayout->MemberOffsets[i]) - fieldSize;
348 sizeSoFar += (fieldSize + padSize);
349
350 // Now print the actual field value
351 printConstantValueOnly(field, padSize);
352 }
353 assert(sizeSoFar == cvsLayout->StructSize &&
354 "Layout of constant struct may be incorrect!");
355 }
356 else
357 printSingleConstantValue(CV);
358
Chris Lattnere0121322003-08-03 23:37:09 +0000359 if (numPadBytesAfter) O << "\t.zero\t " << numPadBytesAfter << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000360}
Chris Lattnerdbb61c62002-11-17 22:53:13 +0000361
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000362/// printConstantPool - Print to the current output stream assembly
363/// representations of the constants in the constant pool MCP. This is
364/// used to print out constants which have been "spilled to memory" by
365/// the code generator.
366///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000367void Printer::printConstantPool(MachineConstantPool *MCP) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000368 const std::vector<Constant*> &CP = MCP->getConstants();
Brian Gaekede420ae2003-07-23 20:25:08 +0000369 const TargetData &TD = TM.getTargetData();
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000370
Chris Lattnerb7089442003-01-13 00:35:03 +0000371 if (CP.empty()) return;
372
373 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
374 O << "\t.section .rodata\n";
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000375 O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
Brian Gaeke5e001572003-06-26 18:02:30 +0000376 << "\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000377 O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t#"
378 << *CP[i] << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000379 printConstantValueOnly (CP[i]);
Chris Lattnerb7089442003-01-13 00:35:03 +0000380 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000381}
382
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000383/// runOnMachineFunction - This uses the printMachineInstruction()
384/// method to print assembly for each instruction.
385///
Chris Lattner0285a332002-12-28 20:25:38 +0000386bool Printer::runOnMachineFunction(MachineFunction &MF) {
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000387 // BBNumber is used here so that a given Printer will never give two
388 // BBs the same name. (If you have a better way, please let me know!)
Chris Lattner0285a332002-12-28 20:25:38 +0000389 static unsigned BBNumber = 0;
Brian Gaeke6559bb92002-11-14 22:32:30 +0000390
Chris Lattnere0121322003-08-03 23:37:09 +0000391 O << "\n\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000392 // What's my mangled name?
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000393 CurrentFnName = Mang->getValueName(MF.getFunction());
Brian Gaeked7908f62003-06-27 00:00:48 +0000394
Chris Lattnerb7089442003-01-13 00:35:03 +0000395 // Print out constants referenced by the function
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000396 printConstantPool(MF.getConstantPool());
Chris Lattnerb7089442003-01-13 00:35:03 +0000397
Brian Gaeke6559bb92002-11-14 22:32:30 +0000398 // Print out labels for the function.
Chris Lattnerb7089442003-01-13 00:35:03 +0000399 O << "\t.text\n";
400 O << "\t.align 16\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000401 O << "\t.globl\t" << CurrentFnName << "\n";
402 O << "\t.type\t" << CurrentFnName << ", @function\n";
403 O << CurrentFnName << ":\n";
Brian Gaeke6559bb92002-11-14 22:32:30 +0000404
Brian Gaeked7908f62003-06-27 00:00:48 +0000405 // Number each basic block so that we can consistently refer to them
406 // in PC-relative references.
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000407 NumberForBB.clear();
408 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
409 I != E; ++I) {
410 NumberForBB[I->getBasicBlock()] = BBNumber++;
411 }
412
Brian Gaeke6559bb92002-11-14 22:32:30 +0000413 // Print out code for the function.
Chris Lattner0285a332002-12-28 20:25:38 +0000414 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
415 I != E; ++I) {
416 // Print a label for the basic block.
Brian Gaeke002a50a2003-07-31 17:38:52 +0000417 O << ".LBB" << NumberForBB[I->getBasicBlock()] << ":\t# "
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000418 << I->getBasicBlock()->getName() << "\n";
Chris Lattner0285a332002-12-28 20:25:38 +0000419 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
420 II != E; ++II) {
421 // Print the assembly for the instruction.
422 O << "\t";
Brian Gaekede420ae2003-07-23 20:25:08 +0000423 printMachineInstruction(*II);
Brian Gaeke6559bb92002-11-14 22:32:30 +0000424 }
Chris Lattner0285a332002-12-28 20:25:38 +0000425 }
Brian Gaeke6559bb92002-11-14 22:32:30 +0000426
427 // We didn't modify anything.
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000428 return false;
429}
430
Chris Lattner3d3067b2002-11-21 20:44:15 +0000431static bool isScale(const MachineOperand &MO) {
Chris Lattnerd9096832002-12-15 08:01:39 +0000432 return MO.isImmediate() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000433 (MO.getImmedValue() == 1 || MO.getImmedValue() == 2 ||
434 MO.getImmedValue() == 4 || MO.getImmedValue() == 8);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000435}
436
437static bool isMem(const MachineInstr *MI, unsigned Op) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000438 if (MI->getOperand(Op).isFrameIndex()) return true;
439 if (MI->getOperand(Op).isConstantPoolIndex()) return true;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000440 return Op+4 <= MI->getNumOperands() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000441 MI->getOperand(Op ).isRegister() &&isScale(MI->getOperand(Op+1)) &&
442 MI->getOperand(Op+2).isRegister() &&MI->getOperand(Op+3).isImmediate();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000443}
444
Brian Gaeke2a098772003-08-11 19:05:46 +0000445
446
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000447void Printer::printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000448 bool elideOffsetKeyword /* = false */) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000449 const MRegisterInfo &RI = *TM.getRegisterInfo();
Chris Lattnerf9f60882002-11-18 06:56:51 +0000450 switch (MO.getType()) {
451 case MachineOperand::MO_VirtualRegister:
Chris Lattnerac573f62002-12-04 17:32:52 +0000452 if (Value *V = MO.getVRegValueOrNull()) {
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000453 O << "<" << V->getName() << ">";
454 return;
455 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000456 // FALLTHROUGH
Misha Brukmane1f0d812002-11-20 18:56:41 +0000457 case MachineOperand::MO_MachineRegister:
Chris Lattnerf9f60882002-11-18 06:56:51 +0000458 if (MO.getReg() < MRegisterInfo::FirstVirtualRegister)
Brian Gaeke2a098772003-08-11 19:05:46 +0000459 // Bug Workaround: See note in Printer::doInitialization about %.
460 O << "%" << RI.get(MO.getReg()).Name;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000461 else
462 O << "%reg" << MO.getReg();
463 return;
Chris Lattner77875d82002-11-21 02:00:20 +0000464
465 case MachineOperand::MO_SignExtendedImmed:
466 case MachineOperand::MO_UnextendedImmed:
467 O << (int)MO.getImmedValue();
468 return;
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000469 case MachineOperand::MO_PCRelativeDisp:
Brian Gaeked7908f62003-06-27 00:00:48 +0000470 {
471 ValueMapTy::const_iterator i = NumberForBB.find(MO.getVRegValue());
472 assert (i != NumberForBB.end()
473 && "Could not find a BB I previously put in the NumberForBB map!");
Brian Gaeke002a50a2003-07-31 17:38:52 +0000474 O << ".LBB" << i->second << " # PC rel: " << MO.getVRegValue()->getName();
Brian Gaeked7908f62003-06-27 00:00:48 +0000475 }
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000476 return;
Chris Lattnerb7089442003-01-13 00:35:03 +0000477 case MachineOperand::MO_GlobalAddress:
Brian Gaeke002a50a2003-07-31 17:38:52 +0000478 if (!elideOffsetKeyword)
479 O << "OFFSET ";
480 O << Mang->getValueName(MO.getGlobal());
Chris Lattnerb7089442003-01-13 00:35:03 +0000481 return;
482 case MachineOperand::MO_ExternalSymbol:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000483 O << MO.getSymbolName();
Chris Lattnerb7089442003-01-13 00:35:03 +0000484 return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000485 default:
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000486 O << "<unknown operand type>"; return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000487 }
488}
489
Chris Lattner3501fea2003-01-14 22:00:31 +0000490static const std::string sizePtr(const TargetInstrDescriptor &Desc) {
Chris Lattnera0f38c82002-12-13 03:51:55 +0000491 switch (Desc.TSFlags & X86II::ArgMask) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000492 default: assert(0 && "Unknown arg size!");
493 case X86II::Arg8: return "BYTE PTR";
494 case X86II::Arg16: return "WORD PTR";
495 case X86II::Arg32: return "DWORD PTR";
496 case X86II::Arg64: return "QWORD PTR";
497 case X86II::ArgF32: return "DWORD PTR";
498 case X86II::ArgF64: return "QWORD PTR";
499 case X86II::ArgF80: return "XWORD PTR";
Brian Gaeke86764d72002-12-05 08:30:40 +0000500 }
501}
502
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000503void Printer::printMemReference(const MachineInstr *MI, unsigned Op) {
Chris Lattner3d3067b2002-11-21 20:44:15 +0000504 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattnerb7089442003-01-13 00:35:03 +0000505
506 if (MI->getOperand(Op).isFrameIndex()) {
507 O << "[frame slot #" << MI->getOperand(Op).getFrameIndex();
508 if (MI->getOperand(Op+3).getImmedValue())
509 O << " + " << MI->getOperand(Op+3).getImmedValue();
510 O << "]";
511 return;
512 } else if (MI->getOperand(Op).isConstantPoolIndex()) {
Brian Gaeked7908f62003-06-27 00:00:48 +0000513 O << "[.CPI" << CurrentFnName << "_"
Brian Gaeke5e001572003-06-26 18:02:30 +0000514 << MI->getOperand(Op).getConstantPoolIndex();
Chris Lattnerb7089442003-01-13 00:35:03 +0000515 if (MI->getOperand(Op+3).getImmedValue())
516 O << " + " << MI->getOperand(Op+3).getImmedValue();
517 O << "]";
518 return;
519 }
520
Chris Lattner3d3067b2002-11-21 20:44:15 +0000521 const MachineOperand &BaseReg = MI->getOperand(Op);
Chris Lattner0285a332002-12-28 20:25:38 +0000522 int ScaleVal = MI->getOperand(Op+1).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000523 const MachineOperand &IndexReg = MI->getOperand(Op+2);
Chris Lattner0285a332002-12-28 20:25:38 +0000524 int DispVal = MI->getOperand(Op+3).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000525
526 O << "[";
527 bool NeedPlus = false;
528 if (BaseReg.getReg()) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000529 printOp(BaseReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000530 NeedPlus = true;
531 }
532
533 if (IndexReg.getReg()) {
534 if (NeedPlus) O << " + ";
Chris Lattner0285a332002-12-28 20:25:38 +0000535 if (ScaleVal != 1)
536 O << ScaleVal << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000537 printOp(IndexReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000538 NeedPlus = true;
539 }
540
Chris Lattner0285a332002-12-28 20:25:38 +0000541 if (DispVal) {
542 if (NeedPlus)
543 if (DispVal > 0)
544 O << " + ";
545 else {
546 O << " - ";
547 DispVal = -DispVal;
548 }
549 O << DispVal;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000550 }
551 O << "]";
552}
553
Brian Gaeke2a098772003-08-11 19:05:46 +0000554/// checkImplUses - Emit the implicit-use registers for the
555/// instruction described by DESC, if its PrintImplUses flag is set.
556///
557void Printer::checkImplUses (const TargetInstrDescriptor &Desc) {
558 const MRegisterInfo &RI = *TM.getRegisterInfo();
559 if (Desc.TSFlags & X86II::PrintImplUses) {
560 for (const unsigned *p = Desc.ImplicitUses; *p; ++p) {
561 // Bug Workaround: See note in Printer::doInitialization about %.
562 O << ", %" << RI.get(*p).Name;
563 }
564 }
565}
566
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000567/// printMachineInstruction -- Print out a single X86 LLVM instruction
Brian Gaekede420ae2003-07-23 20:25:08 +0000568/// MI in Intel syntax to the current output stream.
Brian Gaeked7908f62003-06-27 00:00:48 +0000569///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000570void Printer::printMachineInstruction(const MachineInstr *MI) {
Chris Lattnerf9f60882002-11-18 06:56:51 +0000571 unsigned Opcode = MI->getOpcode();
Brian Gaeked7908f62003-06-27 00:00:48 +0000572 const TargetInstrInfo &TII = TM.getInstrInfo();
573 const TargetInstrDescriptor &Desc = TII.get(Opcode);
Chris Lattnerf9f60882002-11-18 06:56:51 +0000574
Chris Lattnereca1f632002-12-25 05:09:01 +0000575 switch (Desc.TSFlags & X86II::FormMask) {
576 case X86II::Pseudo:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000577 // Print pseudo-instructions as comments; either they should have been
578 // turned into real instructions by now, or they don't need to be
579 // seen by the assembler (e.g., IMPLICIT_USEs.)
580 O << "# ";
Chris Lattnereca1f632002-12-25 05:09:01 +0000581 if (Opcode == X86::PHI) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000582 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000583 O << " = phi ";
584 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i+=2) {
585 if (i != 1) O << ", ";
586 O << "[";
Brian Gaekede420ae2003-07-23 20:25:08 +0000587 printOp(MI->getOperand(i));
Chris Lattnereca1f632002-12-25 05:09:01 +0000588 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000589 printOp(MI->getOperand(i+1));
Chris Lattnereca1f632002-12-25 05:09:01 +0000590 O << "]";
591 }
592 } else {
593 unsigned i = 0;
Vikram S. Adve49cab032003-05-27 00:03:17 +0000594 if (MI->getNumOperands() && (MI->getOperand(0).opIsDefOnly() ||
595 MI->getOperand(0).opIsDefAndUse())) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000596 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000597 O << " = ";
598 ++i;
599 }
Brian Gaeked7908f62003-06-27 00:00:48 +0000600 O << TII.getName(MI->getOpcode());
Chris Lattnereca1f632002-12-25 05:09:01 +0000601
602 for (unsigned e = MI->getNumOperands(); i != e; ++i) {
603 O << " ";
Vikram S. Adve49cab032003-05-27 00:03:17 +0000604 if (MI->getOperand(i).opIsDefOnly() ||
605 MI->getOperand(i).opIsDefAndUse()) O << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000606 printOp(MI->getOperand(i));
Vikram S. Adve49cab032003-05-27 00:03:17 +0000607 if (MI->getOperand(i).opIsDefOnly() ||
608 MI->getOperand(i).opIsDefAndUse()) O << "*";
Chris Lattnereca1f632002-12-25 05:09:01 +0000609 }
Chris Lattner3faae2d2002-12-13 09:59:26 +0000610 }
611 O << "\n";
612 return;
Chris Lattner3faae2d2002-12-13 09:59:26 +0000613
Chris Lattnerf9f60882002-11-18 06:56:51 +0000614 case X86II::RawFrm:
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000615 // The accepted forms of Raw instructions are:
616 // 1. nop - No operand required
617 // 2. jmp foo - PC relative displacement operand
Chris Lattnerb7089442003-01-13 00:35:03 +0000618 // 3. call bar - GlobalAddress Operand or External Symbol Operand
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000619 //
620 assert(MI->getNumOperands() == 0 ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000621 (MI->getNumOperands() == 1 &&
622 (MI->getOperand(0).isPCRelativeDisp() ||
623 MI->getOperand(0).isGlobalAddress() ||
624 MI->getOperand(0).isExternalSymbol())) &&
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000625 "Illegal raw instruction!");
Brian Gaeked7908f62003-06-27 00:00:48 +0000626 O << TII.getName(MI->getOpcode()) << " ";
Chris Lattnerf9f60882002-11-18 06:56:51 +0000627
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000628 if (MI->getNumOperands() == 1) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000629 printOp(MI->getOperand(0), true); // Don't print "OFFSET"...
Chris Lattnerf9f60882002-11-18 06:56:51 +0000630 }
631 O << "\n";
632 return;
633
Chris Lattner77875d82002-11-21 02:00:20 +0000634 case X86II::AddRegFrm: {
635 // There are currently two forms of acceptable AddRegFrm instructions.
636 // Either the instruction JUST takes a single register (like inc, dec, etc),
637 // or it takes a register and an immediate of the same size as the register
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000638 // (move immediate f.e.). Note that this immediate value might be stored as
639 // an LLVM value, to represent, for example, loading the address of a global
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000640 // into a register. The initial register might be duplicated if this is a
641 // M_2_ADDR_REG instruction
Chris Lattner77875d82002-11-21 02:00:20 +0000642 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000643 assert(MI->getOperand(0).isRegister() &&
Chris Lattner77875d82002-11-21 02:00:20 +0000644 (MI->getNumOperands() == 1 ||
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000645 (MI->getNumOperands() == 2 &&
Chris Lattner6d669442002-12-04 17:28:40 +0000646 (MI->getOperand(1).getVRegValueOrNull() ||
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000647 MI->getOperand(1).isImmediate() ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000648 MI->getOperand(1).isRegister() ||
649 MI->getOperand(1).isGlobalAddress() ||
650 MI->getOperand(1).isExternalSymbol()))) &&
Chris Lattner77875d82002-11-21 02:00:20 +0000651 "Illegal form for AddRegFrm instruction!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000652
Chris Lattner77875d82002-11-21 02:00:20 +0000653 unsigned Reg = MI->getOperand(0).getReg();
Chris Lattner77875d82002-11-21 02:00:20 +0000654
Brian Gaeked7908f62003-06-27 00:00:48 +0000655 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000656 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000657 if (MI->getNumOperands() == 2 &&
658 (!MI->getOperand(1).isRegister() ||
659 MI->getOperand(1).getVRegValueOrNull() ||
660 MI->getOperand(1).isGlobalAddress() ||
661 MI->getOperand(1).isExternalSymbol())) {
Chris Lattner77875d82002-11-21 02:00:20 +0000662 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000663 printOp(MI->getOperand(1));
Chris Lattner77875d82002-11-21 02:00:20 +0000664 }
Brian Gaeke2a098772003-08-11 19:05:46 +0000665 checkImplUses(Desc);
Chris Lattner77875d82002-11-21 02:00:20 +0000666 O << "\n";
667 return;
668 }
Chris Lattner233ad712002-11-21 01:33:44 +0000669 case X86II::MRMDestReg: {
Chris Lattnerb7089442003-01-13 00:35:03 +0000670 // There are two acceptable forms of MRMDestReg instructions, those with 2,
671 // 3 and 4 operands:
672 //
673 // 2 Operands: this is for things like mov that do not read a second input
Chris Lattnerf9f60882002-11-18 06:56:51 +0000674 //
675 // 3 Operands: in this form, the first two registers (the destination, and
676 // the first operand) should be the same, post register allocation. The 3rd
677 // operand is an additional input. This should be for things like add
678 // instructions.
679 //
Chris Lattnerb7089442003-01-13 00:35:03 +0000680 // 4 Operands: This form is for instructions which are 3 operands forms, but
681 // have a constant argument as well.
Chris Lattnerf9f60882002-11-18 06:56:51 +0000682 //
Brian Gaeked7908f62003-06-27 00:00:48 +0000683 bool isTwoAddr = TII.isTwoAddrInstr(Opcode);
Chris Lattnerd9096832002-12-15 08:01:39 +0000684 assert(MI->getOperand(0).isRegister() &&
Chris Lattnerb7089442003-01-13 00:35:03 +0000685 (MI->getNumOperands() == 2 ||
686 (isTwoAddr && MI->getOperand(1).isRegister() &&
687 MI->getOperand(0).getReg() == MI->getOperand(1).getReg() &&
688 (MI->getNumOperands() == 3 ||
689 (MI->getNumOperands() == 4 && MI->getOperand(3).isImmediate()))))
Misha Brukmane1f0d812002-11-20 18:56:41 +0000690 && "Bad format for MRMDestReg!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000691
Brian Gaeked7908f62003-06-27 00:00:48 +0000692 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000693 printOp(MI->getOperand(0));
Chris Lattnerf9f60882002-11-18 06:56:51 +0000694 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000695 printOp(MI->getOperand(1+isTwoAddr));
Chris Lattnerb7089442003-01-13 00:35:03 +0000696 if (MI->getNumOperands() == 4) {
697 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000698 printOp(MI->getOperand(3));
Chris Lattnerb7089442003-01-13 00:35:03 +0000699 }
Chris Lattnerf9f60882002-11-18 06:56:51 +0000700 O << "\n";
701 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000702 }
Chris Lattner18042332002-11-21 21:03:39 +0000703
704 case X86II::MRMDestMem: {
705 // These instructions are the same as MRMDestReg, but instead of having a
706 // register reference for the mod/rm field, it's a memory reference.
707 //
708 assert(isMem(MI, 0) && MI->getNumOperands() == 4+1 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000709 MI->getOperand(4).isRegister() && "Bad format for MRMDestMem!");
Chris Lattner18042332002-11-21 21:03:39 +0000710
Brian Gaeked7908f62003-06-27 00:00:48 +0000711 O << TII.getName(MI->getOpCode()) << " " << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000712 printMemReference(MI, 0);
Chris Lattner18042332002-11-21 21:03:39 +0000713 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000714 printOp(MI->getOperand(4));
Chris Lattner18042332002-11-21 21:03:39 +0000715 O << "\n";
716 return;
717 }
718
Chris Lattner233ad712002-11-21 01:33:44 +0000719 case X86II::MRMSrcReg: {
Chris Lattner644e1ab2002-11-21 00:30:01 +0000720 // There is a two forms that are acceptable for MRMSrcReg instructions,
721 // those with 3 and 2 operands:
722 //
723 // 3 Operands: in this form, the last register (the second input) is the
724 // ModR/M input. The first two operands should be the same, post register
725 // allocation. This is for things like: add r32, r/m32
726 //
727 // 2 Operands: this is for things like mov that do not read a second input
728 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000729 assert(MI->getOperand(0).isRegister() &&
730 MI->getOperand(1).isRegister() &&
Chris Lattner644e1ab2002-11-21 00:30:01 +0000731 (MI->getNumOperands() == 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000732 (MI->getNumOperands() == 3 && MI->getOperand(2).isRegister()))
Chris Lattnerb7089442003-01-13 00:35:03 +0000733 && "Bad format for MRMSrcReg!");
Chris Lattner644e1ab2002-11-21 00:30:01 +0000734 if (MI->getNumOperands() == 3 &&
735 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
736 O << "**";
737
Brian Gaeked7908f62003-06-27 00:00:48 +0000738 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000739 printOp(MI->getOperand(0));
Chris Lattner644e1ab2002-11-21 00:30:01 +0000740 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000741 printOp(MI->getOperand(MI->getNumOperands()-1));
Chris Lattner644e1ab2002-11-21 00:30:01 +0000742 O << "\n";
743 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000744 }
Chris Lattner675dd2c2002-11-21 17:09:01 +0000745
Chris Lattner3d3067b2002-11-21 20:44:15 +0000746 case X86II::MRMSrcMem: {
747 // These instructions are the same as MRMSrcReg, but instead of having a
748 // register reference for the mod/rm field, it's a memory reference.
Chris Lattner18042332002-11-21 21:03:39 +0000749 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000750 assert(MI->getOperand(0).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000751 (MI->getNumOperands() == 1+4 && isMem(MI, 1)) ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000752 (MI->getNumOperands() == 2+4 && MI->getOperand(1).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000753 isMem(MI, 2))
754 && "Bad format for MRMDestReg!");
755 if (MI->getNumOperands() == 2+4 &&
756 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
757 O << "**";
758
Brian Gaeked7908f62003-06-27 00:00:48 +0000759 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000760 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000761 O << ", " << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000762 printMemReference(MI, MI->getNumOperands()-4);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000763 O << "\n";
764 return;
765 }
766
Chris Lattner675dd2c2002-11-21 17:09:01 +0000767 case X86II::MRMS0r: case X86II::MRMS1r:
768 case X86II::MRMS2r: case X86II::MRMS3r:
769 case X86II::MRMS4r: case X86II::MRMS5r:
770 case X86II::MRMS6r: case X86II::MRMS7r: {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000771 // In this form, the following are valid formats:
772 // 1. sete r
Chris Lattner1d53ce42002-11-21 23:30:00 +0000773 // 2. cmp reg, immediate
Chris Lattner675dd2c2002-11-21 17:09:01 +0000774 // 2. shl rdest, rinput <implicit CL or 1>
775 // 3. sbb rdest, rinput, immediate [rdest = rinput]
776 //
777 assert(MI->getNumOperands() > 0 && MI->getNumOperands() < 4 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000778 MI->getOperand(0).isRegister() && "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000779 assert((MI->getNumOperands() != 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000780 MI->getOperand(1).isRegister() || MI->getOperand(1).isImmediate())&&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000781 "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000782 assert((MI->getNumOperands() < 3 ||
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000783 (MI->getOperand(1).isRegister() && MI->getOperand(2).isImmediate())) &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000784 "Bad MRMSxR format!");
785
Chris Lattnerd9096832002-12-15 08:01:39 +0000786 if (MI->getNumOperands() > 1 && MI->getOperand(1).isRegister() &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000787 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
788 O << "**";
789
Brian Gaeked7908f62003-06-27 00:00:48 +0000790 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000791 printOp(MI->getOperand(0));
Chris Lattnerd9096832002-12-15 08:01:39 +0000792 if (MI->getOperand(MI->getNumOperands()-1).isImmediate()) {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000793 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000794 printOp(MI->getOperand(MI->getNumOperands()-1));
Chris Lattner675dd2c2002-11-21 17:09:01 +0000795 }
Brian Gaeke2a098772003-08-11 19:05:46 +0000796 checkImplUses(Desc);
Chris Lattner675dd2c2002-11-21 17:09:01 +0000797 O << "\n";
798
799 return;
800 }
801
Chris Lattnerb7089442003-01-13 00:35:03 +0000802 case X86II::MRMS0m: case X86II::MRMS1m:
803 case X86II::MRMS2m: case X86II::MRMS3m:
804 case X86II::MRMS4m: case X86II::MRMS5m:
805 case X86II::MRMS6m: case X86II::MRMS7m: {
806 // In this form, the following are valid formats:
807 // 1. sete [m]
808 // 2. cmp [m], immediate
809 // 2. shl [m], rinput <implicit CL or 1>
810 // 3. sbb [m], immediate
811 //
812 assert(MI->getNumOperands() >= 4 && MI->getNumOperands() <= 5 &&
813 isMem(MI, 0) && "Bad MRMSxM format!");
814 assert((MI->getNumOperands() != 5 || MI->getOperand(4).isImmediate()) &&
815 "Bad MRMSxM format!");
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000816 // Bug: The 80-bit FP store-pop instruction "fstp XWORD PTR [...]"
817 // is misassembled by gas in intel_syntax mode as its 32-bit
818 // equivalent "fstp DWORD PTR [...]". Workaround: Output the raw
819 // opcode bytes instead of the instruction.
Brian Gaekeb44210d2003-07-07 18:34:20 +0000820 if (MI->getOpCode() == X86::FSTPr80) {
821 if ((MI->getOperand(0).getReg() == X86::ESP)
822 && (MI->getOperand(1).getImmedValue() == 1)) {
823 int DispVal = MI->getOperand(3).getImmedValue();
824 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
825 unsigned int val = (unsigned int) DispVal;
826 O << ".byte 0xdb, 0xbc, 0x24\n\t";
827 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
828 } else { // 1 byte disp.
829 unsigned char val = (unsigned char) DispVal;
830 O << ".byte 0xdb, 0x7c, 0x24, 0x" << std::hex << (unsigned) val
831 << std::dec << "\t# ";
832 }
833 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000834 }
835 // Bug: The 80-bit FP load instruction "fld XWORD PTR [...]" is
836 // misassembled by gas in intel_syntax mode as its 32-bit
837 // equivalent "fld DWORD PTR [...]". Workaround: Output the raw
838 // opcode bytes instead of the instruction.
839 if (MI->getOpCode() == X86::FLDr80) {
Brian Gaekeb44210d2003-07-07 18:34:20 +0000840 if ((MI->getOperand(0).getReg() == X86::ESP)
841 && (MI->getOperand(1).getImmedValue() == 1)) {
842 int DispVal = MI->getOperand(3).getImmedValue();
843 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
844 unsigned int val = (unsigned int) DispVal;
845 O << ".byte 0xdb, 0xac, 0x24\n\t";
846 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
847 } else { // 1 byte disp.
848 unsigned char val = (unsigned char) DispVal;
849 O << ".byte 0xdb, 0x6c, 0x24, 0x" << std::hex << (unsigned) val
850 << std::dec << "\t# ";
851 }
852 }
853 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000854 // Bug: gas intel_syntax mode treats "fild QWORD PTR [...]" as an
855 // invalid opcode, saying "64 bit operations are only supported in
856 // 64 bit modes." libopcodes disassembles it as "fild DWORD PTR
857 // [...]", which is wrong. Workaround: Output the raw opcode bytes
858 // instead of the instruction.
859 if (MI->getOpCode() == X86::FILDr64) {
860 if ((MI->getOperand(0).getReg() == X86::ESP)
861 && (MI->getOperand(1).getImmedValue() == 1)) {
862 int DispVal = MI->getOperand(3).getImmedValue();
863 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
864 unsigned int val = (unsigned int) DispVal;
865 O << ".byte 0xdf, 0xac, 0x24\n\t";
866 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
867 } else { // 1 byte disp.
868 unsigned char val = (unsigned char) DispVal;
869 O << ".byte 0xdf, 0x6c, 0x24, 0x" << std::hex << (unsigned) val
870 << std::dec << "\t# ";
871 }
872 }
873 }
874 // Bug: gas intel_syntax mode treats "fistp QWORD PTR [...]" as
875 // an invalid opcode, saying "64 bit operations are only
876 // supported in 64 bit modes." libopcodes disassembles it as
877 // "fistpll DWORD PTR [...]", which is wrong. Workaround: Output
878 // "fistpll DWORD PTR " instead, which is what libopcodes is
879 // expecting to see.
880 if (MI->getOpCode() == X86::FISTPr64) {
881 O << "fistpll DWORD PTR ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000882 printMemReference(MI, 0);
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000883 if (MI->getNumOperands() == 5) {
884 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000885 printOp(MI->getOperand(4));
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000886 }
887 O << "\t# ";
888 }
889
Brian Gaeked7908f62003-06-27 00:00:48 +0000890 O << TII.getName(MI->getOpCode()) << " ";
Chris Lattnerb7089442003-01-13 00:35:03 +0000891 O << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000892 printMemReference(MI, 0);
Chris Lattnerb7089442003-01-13 00:35:03 +0000893 if (MI->getNumOperands() == 5) {
894 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000895 printOp(MI->getOperand(4));
Chris Lattnerb7089442003-01-13 00:35:03 +0000896 }
897 O << "\n";
898 return;
899 }
900
Chris Lattnerf9f60882002-11-18 06:56:51 +0000901 default:
Chris Lattnerb7089442003-01-13 00:35:03 +0000902 O << "\tUNKNOWN FORM:\t\t-"; MI->print(O, TM); break;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000903 }
Chris Lattner72614082002-10-25 22:55:53 +0000904}
Brian Gaeke9e474c42003-06-19 19:32:32 +0000905
906bool Printer::doInitialization(Module &M)
907{
Brian Gaeke2a098772003-08-11 19:05:46 +0000908 // Tell gas we are outputting Intel syntax (not AT&T syntax)
909 // assembly.
910 //
911 // Bug: gas in `intel_syntax noprefix' mode interprets the symbol
912 // `Sp' in an instruction as a reference to the register named sp,
913 // and if you try to reference a symbol `Sp' (e.g. `mov ECX, OFFSET
914 // Sp') then it gets lowercased before being looked up in the symbol
915 // table. This creates spurious `undefined symbol' errors when
916 // linking. Workaround: Do not use `noprefix' mode, and decorate all
917 // register names with percent signs.
918 O << "\t.intel_syntax\n";
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000919 Mang = new Mangler(M);
Brian Gaeke9e474c42003-06-19 19:32:32 +0000920 return false; // success
921}
922
Chris Lattnerc07736a2003-07-23 15:22:26 +0000923static const Function *isConstantFunctionPointerRef(const Constant *C) {
924 if (const ConstantPointerRef *R = dyn_cast<ConstantPointerRef>(C))
925 if (const Function *F = dyn_cast<Function>(R->getValue()))
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000926 return F;
Chris Lattnerc07736a2003-07-23 15:22:26 +0000927 return 0;
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000928}
929
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000930bool Printer::doFinalization(Module &M)
931{
Brian Gaekede420ae2003-07-23 20:25:08 +0000932 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000933 // Print out module-level global variables here.
934 for (Module::const_giterator I = M.gbegin(), E = M.gend(); I != E; ++I) {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000935 std::string name(Mang->getValueName(I));
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000936 if (I->hasInitializer()) {
937 Constant *C = I->getInitializer();
Chris Lattnere0121322003-08-03 23:37:09 +0000938 if (C->isNullValue()) {
939 O << "\n\n\t.comm " << name << "," << TD.getTypeSize(C->getType())
940 << "," << (unsigned)TD.getTypeAlignment(C->getType());
941 O << "\t\t# ";
942 WriteAsOperand(O, I, true, true, &M);
943 O << "\n";
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000944 } else {
Chris Lattnere0121322003-08-03 23:37:09 +0000945 O << "\n\n\t.data\n";
946 O << "\t.globl " << name << "\n";
947 O << "\t.type " << name << ",@object\n";
948 O << "\t.size " << name << "," << TD.getTypeSize(C->getType()) << "\n";
949 O << "\t.align " << (unsigned)TD.getTypeAlignment(C->getType()) << "\n";
950 O << name << ":\t\t\t\t# ";
951 WriteAsOperand(O, I, true, true, &M);
952 O << " = ";
953 WriteAsOperand(O, C, false, false, &M);
954 O << "\n";
955 printConstantValueOnly(C);
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000956 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000957 } else {
Brian Gaekebc601fe2003-06-25 22:00:39 +0000958 O << "\t.globl " << name << "\n";
959 O << "\t.comm " << name << ", "
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000960 << (unsigned)TD.getTypeSize(I->getType()) << ", "
961 << (unsigned)TD.getTypeAlignment(I->getType()) << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000962 }
963 }
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000964 delete Mang;
Brian Gaeke9e474c42003-06-19 19:32:32 +0000965 return false; // success
966}