blob: 24e64e492ce471623faa9817b97f5658e67838c6 [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"
Brian Gaeke6559bb92002-11-14 22:32:30 +000012#include "llvm/Function.h"
Chris Lattnerb7089442003-01-13 00:35:03 +000013#include "llvm/Constant.h"
Brian Gaeke6559bb92002-11-14 22:32:30 +000014#include "llvm/Target/TargetMachine.h"
Chris Lattner0285a332002-12-28 20:25:38 +000015#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb7089442003-01-13 00:35:03 +000016#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerdbb61c62002-11-17 22:53:13 +000017#include "llvm/CodeGen/MachineInstr.h"
Brian Gaeke01d79ff2003-06-25 18:01:07 +000018#include "llvm/Type.h"
19#include "llvm/Constants.h"
20#include "llvm/Assembly/Writer.h"
21#include "llvm/DerivedTypes.h"
Brian Gaeke01d79ff2003-06-25 18:01:07 +000022#include "Support/StringExtras.h"
23#include "llvm/Module.h"
Brian Gaeked9fb37a2003-07-24 20:20:44 +000024#include "llvm/Support/Mangler.h"
Chris Lattner72614082002-10-25 22:55:53 +000025
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000026namespace {
Chris Lattner0285a332002-12-28 20:25:38 +000027 struct Printer : public MachineFunctionPass {
Brian Gaekede420ae2003-07-23 20:25:08 +000028 /// Output stream on which we're printing assembly code.
Brian Gaeke92bdfe62003-07-23 18:37:06 +000029 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000030 std::ostream &O;
Brian Gaekede420ae2003-07-23 20:25:08 +000031
32 /// Target machine description which we query for reg. names, data
33 /// layout, etc.
34 ///
35 TargetMachine &TM;
36
Brian Gaeked9fb37a2003-07-24 20:20:44 +000037 /// Name-mangler for global names.
38 ///
39 Mangler *Mang;
40
Brian Gaekede420ae2003-07-23 20:25:08 +000041 Printer(std::ostream &o, TargetMachine &tm) : O(o), TM(tm) { }
Brian Gaeke92bdfe62003-07-23 18:37:06 +000042
43 /// We name each basic block in a Function with a unique number, so
44 /// that we can consistently refer to them later. This is cleared
45 /// at the beginning of each call to runOnMachineFunction().
46 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000047 typedef std::map<const Value *, unsigned> ValueMapTy;
48 ValueMapTy NumberForBB;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000049
50 /// Cache of mangled name for current function. This is
51 /// recalculated at the beginning of each call to
52 /// runOnMachineFunction().
53 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000054 std::string CurrentFnName;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000055
Chris Lattnerf0eb7be2002-12-15 21:13:40 +000056 virtual const char *getPassName() const {
57 return "X86 Assembly Printer";
58 }
59
Brian Gaeked9fb37a2003-07-24 20:20:44 +000060 void printMachineInstruction(const MachineInstr *MI);
Brian Gaeke92bdfe62003-07-23 18:37:06 +000061 void printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +000062 bool elideOffsetKeyword = false);
63 void printMemReference(const MachineInstr *MI, unsigned Op);
64 void printConstantPool(MachineConstantPool *MCP);
Brian Gaeke01d79ff2003-06-25 18:01:07 +000065 bool runOnMachineFunction(MachineFunction &F);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000066 std::string ConstantExprToString(const ConstantExpr* CE);
67 std::string valToExprString(const Value* V);
Brian Gaeke9e474c42003-06-19 19:32:32 +000068 bool doInitialization(Module &M);
69 bool doFinalization(Module &M);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000070 void printConstantValueOnly(const Constant* CV, int numPadBytesAfter = 0);
71 void printSingleConstantValue(const Constant* CV);
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000072 };
Brian Gaeked7908f62003-06-27 00:00:48 +000073} // end of anonymous namespace
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000074
Brian Gaeke92bdfe62003-07-23 18:37:06 +000075/// createX86CodePrinterPass - Returns a pass that prints the X86
Brian Gaekede420ae2003-07-23 20:25:08 +000076/// assembly code for a MachineFunction to the given output stream,
77/// using the given target machine description. This should work
78/// regardless of whether the function is in SSA form.
Chris Lattnerdbb61c62002-11-17 22:53:13 +000079///
Brian Gaekede420ae2003-07-23 20:25:08 +000080Pass *createX86CodePrinterPass(std::ostream &o, TargetMachine &tm) {
81 return new Printer(o, tm);
Chris Lattnerdbb61c62002-11-17 22:53:13 +000082}
83
Brian Gaeke92bdfe62003-07-23 18:37:06 +000084/// valToExprString - Helper function for ConstantExprToString().
85/// Appends result to argument string S.
86///
Brian Gaeked9fb37a2003-07-24 20:20:44 +000087std::string Printer::valToExprString(const Value* V) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +000088 std::string S;
89 bool failed = false;
90 if (const Constant* CV = dyn_cast<Constant>(V)) { // symbolic or known
91 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV))
92 S += std::string(CB == ConstantBool::True ? "1" : "0");
93 else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
94 S += itostr(CI->getValue());
95 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
96 S += utostr(CI->getValue());
97 else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
98 S += ftostr(CFP->getValue());
99 else if (isa<ConstantPointerNull>(CV))
100 S += "0";
101 else if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CV))
102 S += valToExprString(CPR->getValue());
103 else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV))
104 S += ConstantExprToString(CE);
105 else
106 failed = true;
107 } else if (const GlobalValue* GV = dyn_cast<GlobalValue>(V)) {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000108 S += Mang->getValueName(GV);
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000109 }
110 else
111 failed = true;
112
113 if (failed) {
114 assert(0 && "Cannot convert value to string");
115 S += "<illegal-value>";
116 }
117 return S;
118}
119
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000120/// ConstantExprToString - Convert a ConstantExpr to an asm expression
121/// and return this as a string.
122///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000123std::string Printer::ConstantExprToString(const ConstantExpr* CE) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000124 std::string S;
Brian Gaekede420ae2003-07-23 20:25:08 +0000125 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000126 switch(CE->getOpcode()) {
127 case Instruction::GetElementPtr:
128 { // generate a symbolic expression for the byte address
129 const Value* ptrVal = CE->getOperand(0);
130 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
131 S += "(" + valToExprString(ptrVal) + ") + ("
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000132 + utostr(TD.getIndexedOffset(ptrVal->getType(),idxVec)) + ")";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000133 break;
134 }
135
136 case Instruction::Cast:
Brian Gaekeb3011a02003-07-24 17:30:45 +0000137 // Support only non-converting or widening casts for now, that is,
138 // ones that do not involve a change in value. This assertion is
139 // not a complete check.
140 {
141 Constant *Op = CE->getOperand(0);
142 const Type *OpTy = Op->getType(), *Ty = CE->getType();
143 assert(((isa<PointerType>(OpTy)
144 && (Ty == Type::LongTy || Ty == Type::ULongTy))
145 || (isa<PointerType>(Ty)
146 && (OpTy == Type::LongTy || OpTy == Type::ULongTy)))
147 || (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
148 && (OpTy-> isLosslesslyConvertibleTo(Ty))))
149 && "FIXME: Don't yet support this kind of constant cast expr");
150 S += "(" + valToExprString(Op) + ")";
151 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000152 break;
153
154 case Instruction::Add:
155 S += "(" + valToExprString(CE->getOperand(0)) + ") + ("
156 + valToExprString(CE->getOperand(1)) + ")";
157 break;
158
159 default:
160 assert(0 && "Unsupported operator in ConstantExprToString()");
161 break;
162 }
163
164 return S;
165}
166
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000167/// printSingleConstantValue - Print a single constant value.
168///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000169void
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000170Printer::printSingleConstantValue(const Constant* CV)
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000171{
172 assert(CV->getType() != Type::VoidTy &&
173 CV->getType() != Type::TypeTy &&
174 CV->getType() != Type::LabelTy &&
175 "Unexpected type for Constant");
176
177 assert((!isa<ConstantArray>(CV) && ! isa<ConstantStruct>(CV))
178 && "Aggregate types should be handled outside this function");
179
180 const Type *type = CV->getType();
181 O << "\t";
182 switch(type->getPrimitiveID())
183 {
184 case Type::BoolTyID: case Type::UByteTyID: case Type::SByteTyID:
185 O << ".byte";
186 break;
187 case Type::UShortTyID: case Type::ShortTyID:
188 O << ".word";
189 break;
190 case Type::UIntTyID: case Type::IntTyID: case Type::PointerTyID:
191 O << ".long";
192 break;
193 case Type::ULongTyID: case Type::LongTyID:
194 O << ".quad";
195 break;
196 case Type::FloatTyID:
197 O << ".long";
198 break;
199 case Type::DoubleTyID:
200 O << ".quad";
201 break;
202 case Type::ArrayTyID:
203 if ((cast<ArrayType>(type)->getElementType() == Type::UByteTy) ||
204 (cast<ArrayType>(type)->getElementType() == Type::SByteTy))
205 O << ".string";
206 else
207 assert (0 && "Can't handle printing this type of array");
208 break;
209 default:
210 assert (0 && "Can't handle printing this type of thing");
211 break;
212 }
213 O << "\t";
214
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000215 if (const ConstantExpr* CE = dyn_cast<ConstantExpr>(CV))
216 {
217 // Constant expression built from operators, constants, and
218 // symbolic addrs
219 O << ConstantExprToString(CE) << "\n";
220 }
221 else if (type->isPrimitiveType())
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000222 {
223 if (type->isFloatingPoint()) {
224 // FP Constants are printed as integer constants to avoid losing
225 // precision...
226 double Val = cast<ConstantFP>(CV)->getValue();
227 if (type == Type::FloatTy) {
228 float FVal = (float)Val;
229 char *ProxyPtr = (char*)&FVal; // Abide by C TBAA rules
230 O << *(unsigned int*)ProxyPtr;
231 } else if (type == Type::DoubleTy) {
232 char *ProxyPtr = (char*)&Val; // Abide by C TBAA rules
233 O << *(uint64_t*)ProxyPtr;
234 } else {
235 assert(0 && "Unknown floating point type!");
236 }
237
238 O << "\t# " << type->getDescription() << " value: " << Val << "\n";
239 } else {
240 WriteAsOperand(O, CV, false, false) << "\n";
241 }
242 }
243 else if (const ConstantPointerRef* CPR = dyn_cast<ConstantPointerRef>(CV))
244 {
245 // This is a constant address for a global variable or method.
246 // Use the name of the variable or method as the address value.
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000247 O << Mang->getValueName(CPR->getValue()) << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000248 }
249 else if (isa<ConstantPointerNull>(CV))
250 {
251 // Null pointer value
252 O << "0\n";
253 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000254 else
255 {
256 assert(0 && "Unknown elementary type for constant");
257 }
258}
259
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000260/// isStringCompatible - Can we treat the specified array as a string?
261/// Only if it is an array of ubytes or non-negative sbytes.
262///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000263static bool isStringCompatible(const ConstantArray *CVA) {
264 const Type *ETy = cast<ArrayType>(CVA->getType())->getElementType();
265 if (ETy == Type::UByteTy) return true;
266 if (ETy != Type::SByteTy) return false;
267
268 for (unsigned i = 0; i < CVA->getNumOperands(); ++i)
269 if (cast<ConstantSInt>(CVA->getOperand(i))->getValue() < 0)
270 return false;
271
272 return true;
273}
274
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000275/// toOctal - Convert the low order bits of X into an octal digit.
276///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000277static inline char toOctal(int X) {
278 return (X&7)+'0';
279}
280
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000281/// getAsCString - Return the specified array as a C compatible
282/// string, only if the predicate isStringCompatible is true.
283///
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000284static std::string getAsCString(const ConstantArray *CVA) {
285 assert(isStringCompatible(CVA) && "Array is not string compatible!");
286
287 std::string Result;
288 const Type *ETy = cast<ArrayType>(CVA->getType())->getElementType();
289 Result = "\"";
290 for (unsigned i = 0; i < CVA->getNumOperands(); ++i) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000291 unsigned char C = cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000292
293 if (C == '"') {
294 Result += "\\\"";
295 } else if (C == '\\') {
296 Result += "\\\\";
297 } else if (isprint(C)) {
298 Result += C;
299 } else {
300 switch(C) {
301 case '\a': Result += "\\a"; break;
302 case '\b': Result += "\\b"; break;
303 case '\f': Result += "\\f"; break;
304 case '\n': Result += "\\n"; break;
305 case '\r': Result += "\\r"; break;
306 case '\t': Result += "\\t"; break;
307 case '\v': Result += "\\v"; break;
308 default:
309 Result += '\\';
310 Result += toOctal(C >> 6);
311 Result += toOctal(C >> 3);
312 Result += toOctal(C >> 0);
313 break;
314 }
315 }
316 }
317 Result += "\"";
318 return Result;
319}
320
321// Print a constant value or values (it may be an aggregate).
322// Uses printSingleConstantValue() to print each individual value.
323void
324Printer::printConstantValueOnly(const Constant* CV,
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000325 int numPadBytesAfter /* = 0 */)
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000326{
327 const ConstantArray *CVA = dyn_cast<ConstantArray>(CV);
Brian Gaekede420ae2003-07-23 20:25:08 +0000328 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000329
330 if (CVA && isStringCompatible(CVA))
331 { // print the string alone and return
332 O << "\t" << ".string" << "\t" << getAsCString(CVA) << "\n";
333 }
334 else if (CVA)
335 { // Not a string. Print the values in successive locations
336 const std::vector<Use> &constValues = CVA->getValues();
337 for (unsigned i=0; i < constValues.size(); i++)
338 printConstantValueOnly(cast<Constant>(constValues[i].get()));
339 }
340 else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
341 { // Print the fields in successive locations. Pad to align if needed!
342 const StructLayout *cvsLayout =
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000343 TD.getStructLayout(CVS->getType());
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000344 const std::vector<Use>& constValues = CVS->getValues();
345 unsigned sizeSoFar = 0;
346 for (unsigned i=0, N = constValues.size(); i < N; i++)
347 {
348 const Constant* field = cast<Constant>(constValues[i].get());
349
350 // Check if padding is needed and insert one or more 0s.
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000351 unsigned fieldSize = TD.getTypeSize(field->getType());
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000352 int padSize = ((i == N-1? cvsLayout->StructSize
353 : cvsLayout->MemberOffsets[i+1])
354 - cvsLayout->MemberOffsets[i]) - fieldSize;
355 sizeSoFar += (fieldSize + padSize);
356
357 // Now print the actual field value
358 printConstantValueOnly(field, padSize);
359 }
360 assert(sizeSoFar == cvsLayout->StructSize &&
361 "Layout of constant struct may be incorrect!");
362 }
363 else
364 printSingleConstantValue(CV);
365
366 if (numPadBytesAfter) {
367 unsigned numBytes = numPadBytesAfter;
368 for ( ; numBytes >= 8; numBytes -= 8)
369 printSingleConstantValue(Constant::getNullValue(Type::ULongTy));
370 if (numBytes >= 4)
371 {
372 printSingleConstantValue(Constant::getNullValue(Type::UIntTy));
373 numBytes -= 4;
374 }
375 while (numBytes--)
376 printSingleConstantValue(Constant::getNullValue(Type::UByteTy));
377 }
378}
Chris Lattnerdbb61c62002-11-17 22:53:13 +0000379
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000380/// printConstantPool - Print to the current output stream assembly
381/// representations of the constants in the constant pool MCP. This is
382/// used to print out constants which have been "spilled to memory" by
383/// the code generator.
384///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000385void Printer::printConstantPool(MachineConstantPool *MCP) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000386 const std::vector<Constant*> &CP = MCP->getConstants();
Brian Gaekede420ae2003-07-23 20:25:08 +0000387 const TargetData &TD = TM.getTargetData();
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000388
Chris Lattnerb7089442003-01-13 00:35:03 +0000389 if (CP.empty()) return;
390
391 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
392 O << "\t.section .rodata\n";
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000393 O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
Brian Gaeke5e001572003-06-26 18:02:30 +0000394 << "\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000395 O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t#"
396 << *CP[i] << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000397 printConstantValueOnly (CP[i]);
Chris Lattnerb7089442003-01-13 00:35:03 +0000398 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000399}
400
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000401/// runOnMachineFunction - This uses the printMachineInstruction()
402/// method to print assembly for each instruction.
403///
Chris Lattner0285a332002-12-28 20:25:38 +0000404bool Printer::runOnMachineFunction(MachineFunction &MF) {
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000405 // BBNumber is used here so that a given Printer will never give two
406 // BBs the same name. (If you have a better way, please let me know!)
Chris Lattner0285a332002-12-28 20:25:38 +0000407 static unsigned BBNumber = 0;
Brian Gaeke6559bb92002-11-14 22:32:30 +0000408
Brian Gaeked7908f62003-06-27 00:00:48 +0000409 // What's my mangled name?
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000410 CurrentFnName = Mang->getValueName(MF.getFunction());
Brian Gaeked7908f62003-06-27 00:00:48 +0000411
Chris Lattnerb7089442003-01-13 00:35:03 +0000412 // Print out constants referenced by the function
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000413 printConstantPool(MF.getConstantPool());
Chris Lattnerb7089442003-01-13 00:35:03 +0000414
Brian Gaeke6559bb92002-11-14 22:32:30 +0000415 // Print out labels for the function.
Chris Lattnerb7089442003-01-13 00:35:03 +0000416 O << "\t.text\n";
417 O << "\t.align 16\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000418 O << "\t.globl\t" << CurrentFnName << "\n";
419 O << "\t.type\t" << CurrentFnName << ", @function\n";
420 O << CurrentFnName << ":\n";
Brian Gaeke6559bb92002-11-14 22:32:30 +0000421
Brian Gaeked7908f62003-06-27 00:00:48 +0000422 // Number each basic block so that we can consistently refer to them
423 // in PC-relative references.
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000424 NumberForBB.clear();
425 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
426 I != E; ++I) {
427 NumberForBB[I->getBasicBlock()] = BBNumber++;
428 }
429
Brian Gaeke6559bb92002-11-14 22:32:30 +0000430 // Print out code for the function.
Chris Lattner0285a332002-12-28 20:25:38 +0000431 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
432 I != E; ++I) {
433 // Print a label for the basic block.
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000434 O << ".BB" << NumberForBB[I->getBasicBlock()] << ":\t# "
435 << I->getBasicBlock()->getName() << "\n";
Chris Lattner0285a332002-12-28 20:25:38 +0000436 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
437 II != E; ++II) {
438 // Print the assembly for the instruction.
439 O << "\t";
Brian Gaekede420ae2003-07-23 20:25:08 +0000440 printMachineInstruction(*II);
Brian Gaeke6559bb92002-11-14 22:32:30 +0000441 }
Chris Lattner0285a332002-12-28 20:25:38 +0000442 }
Brian Gaeke6559bb92002-11-14 22:32:30 +0000443
444 // We didn't modify anything.
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000445 return false;
446}
447
Chris Lattner3d3067b2002-11-21 20:44:15 +0000448static bool isScale(const MachineOperand &MO) {
Chris Lattnerd9096832002-12-15 08:01:39 +0000449 return MO.isImmediate() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000450 (MO.getImmedValue() == 1 || MO.getImmedValue() == 2 ||
451 MO.getImmedValue() == 4 || MO.getImmedValue() == 8);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000452}
453
454static bool isMem(const MachineInstr *MI, unsigned Op) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000455 if (MI->getOperand(Op).isFrameIndex()) return true;
456 if (MI->getOperand(Op).isConstantPoolIndex()) return true;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000457 return Op+4 <= MI->getNumOperands() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000458 MI->getOperand(Op ).isRegister() &&isScale(MI->getOperand(Op+1)) &&
459 MI->getOperand(Op+2).isRegister() &&MI->getOperand(Op+3).isImmediate();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000460}
461
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000462void Printer::printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000463 bool elideOffsetKeyword /* = false */) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000464 const MRegisterInfo &RI = *TM.getRegisterInfo();
Chris Lattnerf9f60882002-11-18 06:56:51 +0000465 switch (MO.getType()) {
466 case MachineOperand::MO_VirtualRegister:
Chris Lattnerac573f62002-12-04 17:32:52 +0000467 if (Value *V = MO.getVRegValueOrNull()) {
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000468 O << "<" << V->getName() << ">";
469 return;
470 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000471 // FALLTHROUGH
Misha Brukmane1f0d812002-11-20 18:56:41 +0000472 case MachineOperand::MO_MachineRegister:
Chris Lattnerf9f60882002-11-18 06:56:51 +0000473 if (MO.getReg() < MRegisterInfo::FirstVirtualRegister)
474 O << RI.get(MO.getReg()).Name;
475 else
476 O << "%reg" << MO.getReg();
477 return;
Chris Lattner77875d82002-11-21 02:00:20 +0000478
479 case MachineOperand::MO_SignExtendedImmed:
480 case MachineOperand::MO_UnextendedImmed:
481 O << (int)MO.getImmedValue();
482 return;
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000483 case MachineOperand::MO_PCRelativeDisp:
Brian Gaeked7908f62003-06-27 00:00:48 +0000484 {
485 ValueMapTy::const_iterator i = NumberForBB.find(MO.getVRegValue());
486 assert (i != NumberForBB.end()
487 && "Could not find a BB I previously put in the NumberForBB map!");
488 O << ".BB" << i->second << " # PC rel: " << MO.getVRegValue()->getName();
489 }
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000490 return;
Chris Lattnerb7089442003-01-13 00:35:03 +0000491 case MachineOperand::MO_GlobalAddress:
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000492 if (!elideOffsetKeyword) O << "OFFSET "; O << Mang->getValueName(MO.getGlobal());
Chris Lattnerb7089442003-01-13 00:35:03 +0000493 return;
494 case MachineOperand::MO_ExternalSymbol:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000495 O << MO.getSymbolName();
Chris Lattnerb7089442003-01-13 00:35:03 +0000496 return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000497 default:
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000498 O << "<unknown operand type>"; return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000499 }
500}
501
Chris Lattner3501fea2003-01-14 22:00:31 +0000502static const std::string sizePtr(const TargetInstrDescriptor &Desc) {
Chris Lattnera0f38c82002-12-13 03:51:55 +0000503 switch (Desc.TSFlags & X86II::ArgMask) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000504 default: assert(0 && "Unknown arg size!");
505 case X86II::Arg8: return "BYTE PTR";
506 case X86II::Arg16: return "WORD PTR";
507 case X86II::Arg32: return "DWORD PTR";
508 case X86II::Arg64: return "QWORD PTR";
509 case X86II::ArgF32: return "DWORD PTR";
510 case X86II::ArgF64: return "QWORD PTR";
511 case X86II::ArgF80: return "XWORD PTR";
Brian Gaeke86764d72002-12-05 08:30:40 +0000512 }
513}
514
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000515void Printer::printMemReference(const MachineInstr *MI, unsigned Op) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000516 const MRegisterInfo &RI = *TM.getRegisterInfo();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000517 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattnerb7089442003-01-13 00:35:03 +0000518
519 if (MI->getOperand(Op).isFrameIndex()) {
520 O << "[frame slot #" << MI->getOperand(Op).getFrameIndex();
521 if (MI->getOperand(Op+3).getImmedValue())
522 O << " + " << MI->getOperand(Op+3).getImmedValue();
523 O << "]";
524 return;
525 } else if (MI->getOperand(Op).isConstantPoolIndex()) {
Brian Gaeked7908f62003-06-27 00:00:48 +0000526 O << "[.CPI" << CurrentFnName << "_"
Brian Gaeke5e001572003-06-26 18:02:30 +0000527 << MI->getOperand(Op).getConstantPoolIndex();
Chris Lattnerb7089442003-01-13 00:35:03 +0000528 if (MI->getOperand(Op+3).getImmedValue())
529 O << " + " << MI->getOperand(Op+3).getImmedValue();
530 O << "]";
531 return;
532 }
533
Chris Lattner3d3067b2002-11-21 20:44:15 +0000534 const MachineOperand &BaseReg = MI->getOperand(Op);
Chris Lattner0285a332002-12-28 20:25:38 +0000535 int ScaleVal = MI->getOperand(Op+1).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000536 const MachineOperand &IndexReg = MI->getOperand(Op+2);
Chris Lattner0285a332002-12-28 20:25:38 +0000537 int DispVal = MI->getOperand(Op+3).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000538
539 O << "[";
540 bool NeedPlus = false;
541 if (BaseReg.getReg()) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000542 printOp(BaseReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000543 NeedPlus = true;
544 }
545
546 if (IndexReg.getReg()) {
547 if (NeedPlus) O << " + ";
Chris Lattner0285a332002-12-28 20:25:38 +0000548 if (ScaleVal != 1)
549 O << ScaleVal << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000550 printOp(IndexReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000551 NeedPlus = true;
552 }
553
Chris Lattner0285a332002-12-28 20:25:38 +0000554 if (DispVal) {
555 if (NeedPlus)
556 if (DispVal > 0)
557 O << " + ";
558 else {
559 O << " - ";
560 DispVal = -DispVal;
561 }
562 O << DispVal;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000563 }
564 O << "]";
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);
574 const MRegisterInfo &RI = *TM.getRegisterInfo();
Chris Lattnerf9f60882002-11-18 06:56:51 +0000575
Chris Lattnereca1f632002-12-25 05:09:01 +0000576 switch (Desc.TSFlags & X86II::FormMask) {
577 case X86II::Pseudo:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000578 // Print pseudo-instructions as comments; either they should have been
579 // turned into real instructions by now, or they don't need to be
580 // seen by the assembler (e.g., IMPLICIT_USEs.)
581 O << "# ";
Chris Lattnereca1f632002-12-25 05:09:01 +0000582 if (Opcode == X86::PHI) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000583 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000584 O << " = phi ";
585 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i+=2) {
586 if (i != 1) O << ", ";
587 O << "[";
Brian Gaekede420ae2003-07-23 20:25:08 +0000588 printOp(MI->getOperand(i));
Chris Lattnereca1f632002-12-25 05:09:01 +0000589 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000590 printOp(MI->getOperand(i+1));
Chris Lattnereca1f632002-12-25 05:09:01 +0000591 O << "]";
592 }
593 } else {
594 unsigned i = 0;
Vikram S. Adve49cab032003-05-27 00:03:17 +0000595 if (MI->getNumOperands() && (MI->getOperand(0).opIsDefOnly() ||
596 MI->getOperand(0).opIsDefAndUse())) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000597 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000598 O << " = ";
599 ++i;
600 }
Brian Gaeked7908f62003-06-27 00:00:48 +0000601 O << TII.getName(MI->getOpcode());
Chris Lattnereca1f632002-12-25 05:09:01 +0000602
603 for (unsigned e = MI->getNumOperands(); i != e; ++i) {
604 O << " ";
Vikram S. Adve49cab032003-05-27 00:03:17 +0000605 if (MI->getOperand(i).opIsDefOnly() ||
606 MI->getOperand(i).opIsDefAndUse()) O << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000607 printOp(MI->getOperand(i));
Vikram S. Adve49cab032003-05-27 00:03:17 +0000608 if (MI->getOperand(i).opIsDefOnly() ||
609 MI->getOperand(i).opIsDefAndUse()) O << "*";
Chris Lattnereca1f632002-12-25 05:09:01 +0000610 }
Chris Lattner3faae2d2002-12-13 09:59:26 +0000611 }
612 O << "\n";
613 return;
Chris Lattner3faae2d2002-12-13 09:59:26 +0000614
Chris Lattnerf9f60882002-11-18 06:56:51 +0000615 case X86II::RawFrm:
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000616 // The accepted forms of Raw instructions are:
617 // 1. nop - No operand required
618 // 2. jmp foo - PC relative displacement operand
Chris Lattnerb7089442003-01-13 00:35:03 +0000619 // 3. call bar - GlobalAddress Operand or External Symbol Operand
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000620 //
621 assert(MI->getNumOperands() == 0 ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000622 (MI->getNumOperands() == 1 &&
623 (MI->getOperand(0).isPCRelativeDisp() ||
624 MI->getOperand(0).isGlobalAddress() ||
625 MI->getOperand(0).isExternalSymbol())) &&
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000626 "Illegal raw instruction!");
Brian Gaeked7908f62003-06-27 00:00:48 +0000627 O << TII.getName(MI->getOpcode()) << " ";
Chris Lattnerf9f60882002-11-18 06:56:51 +0000628
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000629 if (MI->getNumOperands() == 1) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000630 printOp(MI->getOperand(0), true); // Don't print "OFFSET"...
Chris Lattnerf9f60882002-11-18 06:56:51 +0000631 }
632 O << "\n";
633 return;
634
Chris Lattner77875d82002-11-21 02:00:20 +0000635 case X86II::AddRegFrm: {
636 // There are currently two forms of acceptable AddRegFrm instructions.
637 // Either the instruction JUST takes a single register (like inc, dec, etc),
638 // or it takes a register and an immediate of the same size as the register
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000639 // (move immediate f.e.). Note that this immediate value might be stored as
640 // an LLVM value, to represent, for example, loading the address of a global
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000641 // into a register. The initial register might be duplicated if this is a
642 // M_2_ADDR_REG instruction
Chris Lattner77875d82002-11-21 02:00:20 +0000643 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000644 assert(MI->getOperand(0).isRegister() &&
Chris Lattner77875d82002-11-21 02:00:20 +0000645 (MI->getNumOperands() == 1 ||
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000646 (MI->getNumOperands() == 2 &&
Chris Lattner6d669442002-12-04 17:28:40 +0000647 (MI->getOperand(1).getVRegValueOrNull() ||
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000648 MI->getOperand(1).isImmediate() ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000649 MI->getOperand(1).isRegister() ||
650 MI->getOperand(1).isGlobalAddress() ||
651 MI->getOperand(1).isExternalSymbol()))) &&
Chris Lattner77875d82002-11-21 02:00:20 +0000652 "Illegal form for AddRegFrm instruction!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000653
Chris Lattner77875d82002-11-21 02:00:20 +0000654 unsigned Reg = MI->getOperand(0).getReg();
Chris Lattner77875d82002-11-21 02:00:20 +0000655
Brian Gaeked7908f62003-06-27 00:00:48 +0000656 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000657 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000658 if (MI->getNumOperands() == 2 &&
659 (!MI->getOperand(1).isRegister() ||
660 MI->getOperand(1).getVRegValueOrNull() ||
661 MI->getOperand(1).isGlobalAddress() ||
662 MI->getOperand(1).isExternalSymbol())) {
Chris Lattner77875d82002-11-21 02:00:20 +0000663 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000664 printOp(MI->getOperand(1));
Chris Lattner77875d82002-11-21 02:00:20 +0000665 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000666 if (Desc.TSFlags & X86II::PrintImplUses) {
667 for (const unsigned *p = Desc.ImplicitUses; *p; ++p) {
668 O << ", " << RI.get(*p).Name;
669 }
670 }
Chris Lattner77875d82002-11-21 02:00:20 +0000671 O << "\n";
672 return;
673 }
Chris Lattner233ad712002-11-21 01:33:44 +0000674 case X86II::MRMDestReg: {
Chris Lattnerb7089442003-01-13 00:35:03 +0000675 // There are two acceptable forms of MRMDestReg instructions, those with 2,
676 // 3 and 4 operands:
677 //
678 // 2 Operands: this is for things like mov that do not read a second input
Chris Lattnerf9f60882002-11-18 06:56:51 +0000679 //
680 // 3 Operands: in this form, the first two registers (the destination, and
681 // the first operand) should be the same, post register allocation. The 3rd
682 // operand is an additional input. This should be for things like add
683 // instructions.
684 //
Chris Lattnerb7089442003-01-13 00:35:03 +0000685 // 4 Operands: This form is for instructions which are 3 operands forms, but
686 // have a constant argument as well.
Chris Lattnerf9f60882002-11-18 06:56:51 +0000687 //
Brian Gaeked7908f62003-06-27 00:00:48 +0000688 bool isTwoAddr = TII.isTwoAddrInstr(Opcode);
Chris Lattnerd9096832002-12-15 08:01:39 +0000689 assert(MI->getOperand(0).isRegister() &&
Chris Lattnerb7089442003-01-13 00:35:03 +0000690 (MI->getNumOperands() == 2 ||
691 (isTwoAddr && MI->getOperand(1).isRegister() &&
692 MI->getOperand(0).getReg() == MI->getOperand(1).getReg() &&
693 (MI->getNumOperands() == 3 ||
694 (MI->getNumOperands() == 4 && MI->getOperand(3).isImmediate()))))
Misha Brukmane1f0d812002-11-20 18:56:41 +0000695 && "Bad format for MRMDestReg!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000696
Brian Gaeked7908f62003-06-27 00:00:48 +0000697 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000698 printOp(MI->getOperand(0));
Chris Lattnerf9f60882002-11-18 06:56:51 +0000699 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000700 printOp(MI->getOperand(1+isTwoAddr));
Chris Lattnerb7089442003-01-13 00:35:03 +0000701 if (MI->getNumOperands() == 4) {
702 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000703 printOp(MI->getOperand(3));
Chris Lattnerb7089442003-01-13 00:35:03 +0000704 }
Chris Lattnerf9f60882002-11-18 06:56:51 +0000705 O << "\n";
706 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000707 }
Chris Lattner18042332002-11-21 21:03:39 +0000708
709 case X86II::MRMDestMem: {
710 // These instructions are the same as MRMDestReg, but instead of having a
711 // register reference for the mod/rm field, it's a memory reference.
712 //
713 assert(isMem(MI, 0) && MI->getNumOperands() == 4+1 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000714 MI->getOperand(4).isRegister() && "Bad format for MRMDestMem!");
Chris Lattner18042332002-11-21 21:03:39 +0000715
Brian Gaeked7908f62003-06-27 00:00:48 +0000716 O << TII.getName(MI->getOpCode()) << " " << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000717 printMemReference(MI, 0);
Chris Lattner18042332002-11-21 21:03:39 +0000718 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000719 printOp(MI->getOperand(4));
Chris Lattner18042332002-11-21 21:03:39 +0000720 O << "\n";
721 return;
722 }
723
Chris Lattner233ad712002-11-21 01:33:44 +0000724 case X86II::MRMSrcReg: {
Chris Lattner644e1ab2002-11-21 00:30:01 +0000725 // There is a two forms that are acceptable for MRMSrcReg instructions,
726 // those with 3 and 2 operands:
727 //
728 // 3 Operands: in this form, the last register (the second input) is the
729 // ModR/M input. The first two operands should be the same, post register
730 // allocation. This is for things like: add r32, r/m32
731 //
732 // 2 Operands: this is for things like mov that do not read a second input
733 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000734 assert(MI->getOperand(0).isRegister() &&
735 MI->getOperand(1).isRegister() &&
Chris Lattner644e1ab2002-11-21 00:30:01 +0000736 (MI->getNumOperands() == 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000737 (MI->getNumOperands() == 3 && MI->getOperand(2).isRegister()))
Chris Lattnerb7089442003-01-13 00:35:03 +0000738 && "Bad format for MRMSrcReg!");
Chris Lattner644e1ab2002-11-21 00:30:01 +0000739 if (MI->getNumOperands() == 3 &&
740 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
741 O << "**";
742
Brian Gaeked7908f62003-06-27 00:00:48 +0000743 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000744 printOp(MI->getOperand(0));
Chris Lattner644e1ab2002-11-21 00:30:01 +0000745 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000746 printOp(MI->getOperand(MI->getNumOperands()-1));
Chris Lattner644e1ab2002-11-21 00:30:01 +0000747 O << "\n";
748 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000749 }
Chris Lattner675dd2c2002-11-21 17:09:01 +0000750
Chris Lattner3d3067b2002-11-21 20:44:15 +0000751 case X86II::MRMSrcMem: {
752 // These instructions are the same as MRMSrcReg, but instead of having a
753 // register reference for the mod/rm field, it's a memory reference.
Chris Lattner18042332002-11-21 21:03:39 +0000754 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000755 assert(MI->getOperand(0).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000756 (MI->getNumOperands() == 1+4 && isMem(MI, 1)) ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000757 (MI->getNumOperands() == 2+4 && MI->getOperand(1).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000758 isMem(MI, 2))
759 && "Bad format for MRMDestReg!");
760 if (MI->getNumOperands() == 2+4 &&
761 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
762 O << "**";
763
Brian Gaeked7908f62003-06-27 00:00:48 +0000764 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000765 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000766 O << ", " << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000767 printMemReference(MI, MI->getNumOperands()-4);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000768 O << "\n";
769 return;
770 }
771
Chris Lattner675dd2c2002-11-21 17:09:01 +0000772 case X86II::MRMS0r: case X86II::MRMS1r:
773 case X86II::MRMS2r: case X86II::MRMS3r:
774 case X86II::MRMS4r: case X86II::MRMS5r:
775 case X86II::MRMS6r: case X86II::MRMS7r: {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000776 // In this form, the following are valid formats:
777 // 1. sete r
Chris Lattner1d53ce42002-11-21 23:30:00 +0000778 // 2. cmp reg, immediate
Chris Lattner675dd2c2002-11-21 17:09:01 +0000779 // 2. shl rdest, rinput <implicit CL or 1>
780 // 3. sbb rdest, rinput, immediate [rdest = rinput]
781 //
782 assert(MI->getNumOperands() > 0 && MI->getNumOperands() < 4 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000783 MI->getOperand(0).isRegister() && "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000784 assert((MI->getNumOperands() != 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000785 MI->getOperand(1).isRegister() || MI->getOperand(1).isImmediate())&&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000786 "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000787 assert((MI->getNumOperands() < 3 ||
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000788 (MI->getOperand(1).isRegister() && MI->getOperand(2).isImmediate())) &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000789 "Bad MRMSxR format!");
790
Chris Lattnerd9096832002-12-15 08:01:39 +0000791 if (MI->getNumOperands() > 1 && MI->getOperand(1).isRegister() &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000792 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
793 O << "**";
794
Brian Gaeked7908f62003-06-27 00:00:48 +0000795 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000796 printOp(MI->getOperand(0));
Chris Lattnerd9096832002-12-15 08:01:39 +0000797 if (MI->getOperand(MI->getNumOperands()-1).isImmediate()) {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000798 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000799 printOp(MI->getOperand(MI->getNumOperands()-1));
Chris Lattner675dd2c2002-11-21 17:09:01 +0000800 }
Brian Gaeked7908f62003-06-27 00:00:48 +0000801 if (Desc.TSFlags & X86II::PrintImplUses) {
802 for (const unsigned *p = Desc.ImplicitUses; *p; ++p) {
803 O << ", " << RI.get(*p).Name;
804 }
805 }
Chris Lattner675dd2c2002-11-21 17:09:01 +0000806 O << "\n";
807
808 return;
809 }
810
Chris Lattnerb7089442003-01-13 00:35:03 +0000811 case X86II::MRMS0m: case X86II::MRMS1m:
812 case X86II::MRMS2m: case X86II::MRMS3m:
813 case X86II::MRMS4m: case X86II::MRMS5m:
814 case X86II::MRMS6m: case X86II::MRMS7m: {
815 // In this form, the following are valid formats:
816 // 1. sete [m]
817 // 2. cmp [m], immediate
818 // 2. shl [m], rinput <implicit CL or 1>
819 // 3. sbb [m], immediate
820 //
821 assert(MI->getNumOperands() >= 4 && MI->getNumOperands() <= 5 &&
822 isMem(MI, 0) && "Bad MRMSxM format!");
823 assert((MI->getNumOperands() != 5 || MI->getOperand(4).isImmediate()) &&
824 "Bad MRMSxM format!");
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000825 // Bug: The 80-bit FP store-pop instruction "fstp XWORD PTR [...]"
826 // is misassembled by gas in intel_syntax mode as its 32-bit
827 // equivalent "fstp DWORD PTR [...]". Workaround: Output the raw
828 // opcode bytes instead of the instruction.
Brian Gaekeb44210d2003-07-07 18:34:20 +0000829 if (MI->getOpCode() == X86::FSTPr80) {
830 if ((MI->getOperand(0).getReg() == X86::ESP)
831 && (MI->getOperand(1).getImmedValue() == 1)) {
832 int DispVal = MI->getOperand(3).getImmedValue();
833 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
834 unsigned int val = (unsigned int) DispVal;
835 O << ".byte 0xdb, 0xbc, 0x24\n\t";
836 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
837 } else { // 1 byte disp.
838 unsigned char val = (unsigned char) DispVal;
839 O << ".byte 0xdb, 0x7c, 0x24, 0x" << std::hex << (unsigned) val
840 << std::dec << "\t# ";
841 }
842 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000843 }
844 // Bug: The 80-bit FP load instruction "fld XWORD PTR [...]" is
845 // misassembled by gas in intel_syntax mode as its 32-bit
846 // equivalent "fld DWORD PTR [...]". Workaround: Output the raw
847 // opcode bytes instead of the instruction.
848 if (MI->getOpCode() == X86::FLDr80) {
Brian Gaekeb44210d2003-07-07 18:34:20 +0000849 if ((MI->getOperand(0).getReg() == X86::ESP)
850 && (MI->getOperand(1).getImmedValue() == 1)) {
851 int DispVal = MI->getOperand(3).getImmedValue();
852 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
853 unsigned int val = (unsigned int) DispVal;
854 O << ".byte 0xdb, 0xac, 0x24\n\t";
855 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
856 } else { // 1 byte disp.
857 unsigned char val = (unsigned char) DispVal;
858 O << ".byte 0xdb, 0x6c, 0x24, 0x" << std::hex << (unsigned) val
859 << std::dec << "\t# ";
860 }
861 }
862 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000863 // Bug: gas intel_syntax mode treats "fild QWORD PTR [...]" as an
864 // invalid opcode, saying "64 bit operations are only supported in
865 // 64 bit modes." libopcodes disassembles it as "fild DWORD PTR
866 // [...]", which is wrong. Workaround: Output the raw opcode bytes
867 // instead of the instruction.
868 if (MI->getOpCode() == X86::FILDr64) {
869 if ((MI->getOperand(0).getReg() == X86::ESP)
870 && (MI->getOperand(1).getImmedValue() == 1)) {
871 int DispVal = MI->getOperand(3).getImmedValue();
872 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
873 unsigned int val = (unsigned int) DispVal;
874 O << ".byte 0xdf, 0xac, 0x24\n\t";
875 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
876 } else { // 1 byte disp.
877 unsigned char val = (unsigned char) DispVal;
878 O << ".byte 0xdf, 0x6c, 0x24, 0x" << std::hex << (unsigned) val
879 << std::dec << "\t# ";
880 }
881 }
882 }
883 // Bug: gas intel_syntax mode treats "fistp QWORD PTR [...]" as
884 // an invalid opcode, saying "64 bit operations are only
885 // supported in 64 bit modes." libopcodes disassembles it as
886 // "fistpll DWORD PTR [...]", which is wrong. Workaround: Output
887 // "fistpll DWORD PTR " instead, which is what libopcodes is
888 // expecting to see.
889 if (MI->getOpCode() == X86::FISTPr64) {
890 O << "fistpll DWORD PTR ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000891 printMemReference(MI, 0);
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000892 if (MI->getNumOperands() == 5) {
893 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000894 printOp(MI->getOperand(4));
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000895 }
896 O << "\t# ";
897 }
898
Brian Gaeked7908f62003-06-27 00:00:48 +0000899 O << TII.getName(MI->getOpCode()) << " ";
Chris Lattnerb7089442003-01-13 00:35:03 +0000900 O << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000901 printMemReference(MI, 0);
Chris Lattnerb7089442003-01-13 00:35:03 +0000902 if (MI->getNumOperands() == 5) {
903 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000904 printOp(MI->getOperand(4));
Chris Lattnerb7089442003-01-13 00:35:03 +0000905 }
906 O << "\n";
907 return;
908 }
909
Chris Lattnerf9f60882002-11-18 06:56:51 +0000910 default:
Chris Lattnerb7089442003-01-13 00:35:03 +0000911 O << "\tUNKNOWN FORM:\t\t-"; MI->print(O, TM); break;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000912 }
Chris Lattner72614082002-10-25 22:55:53 +0000913}
Brian Gaeke9e474c42003-06-19 19:32:32 +0000914
915bool Printer::doInitialization(Module &M)
916{
917 // Tell gas we are outputting Intel syntax (not AT&T syntax) assembly,
918 // with no % decorations on register names.
919 O << "\t.intel_syntax noprefix\n";
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000920 Mang = new Mangler(M);
Brian Gaeke9e474c42003-06-19 19:32:32 +0000921 return false; // success
922}
923
Chris Lattnerc07736a2003-07-23 15:22:26 +0000924static const Function *isConstantFunctionPointerRef(const Constant *C) {
925 if (const ConstantPointerRef *R = dyn_cast<ConstantPointerRef>(C))
926 if (const Function *F = dyn_cast<Function>(R->getValue()))
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000927 return F;
Chris Lattnerc07736a2003-07-23 15:22:26 +0000928 return 0;
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000929}
930
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000931bool Printer::doFinalization(Module &M)
932{
Brian Gaekede420ae2003-07-23 20:25:08 +0000933 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000934 // Print out module-level global variables here.
935 for (Module::const_giterator I = M.gbegin(), E = M.gend(); I != E; ++I) {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000936 std::string name(Mang->getValueName(I));
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000937 if (I->hasInitializer()) {
938 Constant *C = I->getInitializer();
939 O << "\t.data\n";
Brian Gaekebc601fe2003-06-25 22:00:39 +0000940 O << "\t.globl " << name << "\n";
941 O << "\t.type " << name << ",@object\n";
942 O << "\t.size " << name << ","
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000943 << (unsigned)TD.getTypeSize(I->getType()) << "\n";
944 O << "\t.align " << (unsigned)TD.getTypeAlignment(C->getType()) << "\n";
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000945 O << name << ":\t\t\t\t\t#";
946 // If this is a constant function pointer, we only print out the
947 // name of the function in the comment (because printing the
948 // function means calling AsmWriter to print the whole LLVM
949 // assembly, which would corrupt the X86 assembly output.)
950 // Otherwise we print out the whole llvm value as a comment.
951 if (const Function *F = isConstantFunctionPointerRef (C)) {
952 O << " %" << F->getName() << "()\n";
953 } else {
954 O << *C << "\n";
955 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000956 printConstantValueOnly (C);
957 } 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}