blob: 09fae4e4acaf0676acd301f1b5a7d10b897fd02f [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
Chris Lattner93c1afa2003-08-11 19:35:26 +00006// by `llc' and `lli -print-machineinstrs' 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/Constants.h"
13#include "llvm/DerivedTypes.h"
Chris Lattnerd59414f2003-08-11 20:06:16 +000014#include "llvm/Module.h"
15#include "llvm/Assembly/Writer.h"
Chris Lattner0285a332002-12-28 20:25:38 +000016#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb7089442003-01-13 00:35:03 +000017#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerdbb61c62002-11-17 22:53:13 +000018#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnerd59414f2003-08-11 20:06:16 +000019#include "llvm/Target/TargetMachine.h"
Brian Gaeked9fb37a2003-07-24 20:20:44 +000020#include "llvm/Support/Mangler.h"
Chris Lattnere0121322003-08-03 23:37:09 +000021#include "Support/StringExtras.h"
Chris Lattner93c1afa2003-08-11 19:35:26 +000022#include "Support/CommandLine.h"
Chris Lattner72614082002-10-25 22:55:53 +000023
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000024namespace {
Chris Lattner93c1afa2003-08-11 19:35:26 +000025 // FIXME: This should be automatically picked up by autoconf from the C
26 // frontend
27 cl::opt<bool> EmitCygwin("enable-cygwin-compatible-output", cl::Hidden,
28 cl::desc("Emit X86 assembly code suitable for consumption by cygwin"));
29
Chris Lattner0285a332002-12-28 20:25:38 +000030 struct Printer : public MachineFunctionPass {
Brian Gaekede420ae2003-07-23 20:25:08 +000031 /// Output stream on which we're printing assembly code.
Brian Gaeke92bdfe62003-07-23 18:37:06 +000032 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000033 std::ostream &O;
Brian Gaekede420ae2003-07-23 20:25:08 +000034
35 /// Target machine description which we query for reg. names, data
36 /// layout, etc.
37 ///
38 TargetMachine &TM;
39
Brian Gaeked9fb37a2003-07-24 20:20:44 +000040 /// Name-mangler for global names.
41 ///
42 Mangler *Mang;
43
Brian Gaekede420ae2003-07-23 20:25:08 +000044 Printer(std::ostream &o, TargetMachine &tm) : O(o), TM(tm) { }
Brian Gaeke92bdfe62003-07-23 18:37:06 +000045
46 /// We name each basic block in a Function with a unique number, so
47 /// that we can consistently refer to them later. This is cleared
48 /// at the beginning of each call to runOnMachineFunction().
49 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000050 typedef std::map<const Value *, unsigned> ValueMapTy;
51 ValueMapTy NumberForBB;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000052
53 /// Cache of mangled name for current function. This is
54 /// recalculated at the beginning of each call to
55 /// runOnMachineFunction().
56 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000057 std::string CurrentFnName;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000058
Chris Lattnerf0eb7be2002-12-15 21:13:40 +000059 virtual const char *getPassName() const {
60 return "X86 Assembly Printer";
61 }
62
Brian Gaeke2a098772003-08-11 19:05:46 +000063 void checkImplUses (const TargetInstrDescriptor &Desc);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000064 void printMachineInstruction(const MachineInstr *MI);
Brian Gaeke92bdfe62003-07-23 18:37:06 +000065 void printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +000066 bool elideOffsetKeyword = false);
67 void printMemReference(const MachineInstr *MI, unsigned Op);
68 void printConstantPool(MachineConstantPool *MCP);
Brian Gaeke01d79ff2003-06-25 18:01:07 +000069 bool runOnMachineFunction(MachineFunction &F);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000070 std::string ConstantExprToString(const ConstantExpr* CE);
71 std::string valToExprString(const Value* V);
Brian Gaeke9e474c42003-06-19 19:32:32 +000072 bool doInitialization(Module &M);
73 bool doFinalization(Module &M);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000074 void printConstantValueOnly(const Constant* CV, int numPadBytesAfter = 0);
75 void printSingleConstantValue(const Constant* CV);
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000076 };
Brian Gaeked7908f62003-06-27 00:00:48 +000077} // end of anonymous namespace
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000078
Brian Gaeke92bdfe62003-07-23 18:37:06 +000079/// createX86CodePrinterPass - Returns a pass that prints the X86
Brian Gaekede420ae2003-07-23 20:25:08 +000080/// assembly code for a MachineFunction to the given output stream,
81/// using the given target machine description. This should work
82/// regardless of whether the function is in SSA form.
Chris Lattnerdbb61c62002-11-17 22:53:13 +000083///
Brian Gaekede420ae2003-07-23 20:25:08 +000084Pass *createX86CodePrinterPass(std::ostream &o, TargetMachine &tm) {
85 return new Printer(o, tm);
Chris Lattnerdbb61c62002-11-17 22:53:13 +000086}
87
Brian Gaeke92bdfe62003-07-23 18:37:06 +000088/// valToExprString - Helper function for ConstantExprToString().
89/// Appends result to argument string S.
90///
Brian Gaeked9fb37a2003-07-24 20:20:44 +000091std::string Printer::valToExprString(const Value* V) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +000092 std::string S;
93 bool failed = false;
94 if (const Constant* CV = dyn_cast<Constant>(V)) { // symbolic or known
95 if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV))
96 S += std::string(CB == ConstantBool::True ? "1" : "0");
97 else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
98 S += itostr(CI->getValue());
99 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
100 S += utostr(CI->getValue());
101 else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV))
102 S += ftostr(CFP->getValue());
103 else if (isa<ConstantPointerNull>(CV))
104 S += "0";
105 else if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CV))
106 S += valToExprString(CPR->getValue());
107 else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV))
108 S += ConstantExprToString(CE);
109 else
110 failed = true;
111 } else if (const GlobalValue* GV = dyn_cast<GlobalValue>(V)) {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000112 S += Mang->getValueName(GV);
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000113 }
114 else
115 failed = true;
116
117 if (failed) {
118 assert(0 && "Cannot convert value to string");
119 S += "<illegal-value>";
120 }
121 return S;
122}
123
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000124/// ConstantExprToString - Convert a ConstantExpr to an asm expression
125/// and return this as a string.
126///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000127std::string Printer::ConstantExprToString(const ConstantExpr* CE) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000128 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000129 switch(CE->getOpcode()) {
130 case Instruction::GetElementPtr:
131 { // generate a symbolic expression for the byte address
132 const Value* ptrVal = CE->getOperand(0);
133 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
Chris Lattner72feb152003-08-04 01:04:59 +0000134 if (unsigned Offset = TD.getIndexedOffset(ptrVal->getType(), idxVec))
135 return "(" + valToExprString(ptrVal) + ") + " + utostr(Offset);
136 else
137 return valToExprString(ptrVal);
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000138 }
139
140 case Instruction::Cast:
Brian Gaekeb3011a02003-07-24 17:30:45 +0000141 // Support only non-converting or widening casts for now, that is,
142 // ones that do not involve a change in value. This assertion is
143 // not a complete check.
144 {
145 Constant *Op = CE->getOperand(0);
146 const Type *OpTy = Op->getType(), *Ty = CE->getType();
147 assert(((isa<PointerType>(OpTy)
148 && (Ty == Type::LongTy || Ty == Type::ULongTy))
149 || (isa<PointerType>(Ty)
150 && (OpTy == Type::LongTy || OpTy == Type::ULongTy)))
151 || (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
Chris Lattner72feb152003-08-04 01:04:59 +0000152 && (OpTy->isLosslesslyConvertibleTo(Ty))))
Brian Gaekeb3011a02003-07-24 17:30:45 +0000153 && "FIXME: Don't yet support this kind of constant cast expr");
Chris Lattner72feb152003-08-04 01:04:59 +0000154 return "(" + valToExprString(Op) + ")";
Brian Gaekeb3011a02003-07-24 17:30:45 +0000155 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000156
157 case Instruction::Add:
Chris Lattner72feb152003-08-04 01:04:59 +0000158 return "(" + valToExprString(CE->getOperand(0)) + ") + ("
159 + valToExprString(CE->getOperand(1)) + ")";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000160
161 default:
162 assert(0 && "Unsupported operator in ConstantExprToString()");
Chris Lattner72feb152003-08-04 01:04:59 +0000163 return "";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000164 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000165}
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) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000301 case '\b': Result += "\\b"; break;
302 case '\f': Result += "\\f"; break;
303 case '\n': Result += "\\n"; break;
304 case '\r': Result += "\\r"; break;
305 case '\t': Result += "\\t"; break;
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000306 default:
307 Result += '\\';
308 Result += toOctal(C >> 6);
309 Result += toOctal(C >> 3);
310 Result += toOctal(C >> 0);
311 break;
312 }
313 }
314 }
315 Result += "\"";
316 return Result;
317}
318
319// Print a constant value or values (it may be an aggregate).
320// Uses printSingleConstantValue() to print each individual value.
321void
322Printer::printConstantValueOnly(const Constant* CV,
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000323 int numPadBytesAfter /* = 0 */)
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000324{
325 const ConstantArray *CVA = dyn_cast<ConstantArray>(CV);
Brian Gaekede420ae2003-07-23 20:25:08 +0000326 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000327
328 if (CVA && isStringCompatible(CVA))
329 { // print the string alone and return
Chris Lattnere0121322003-08-03 23:37:09 +0000330 O << "\t.string\t" << getAsCString(CVA) << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000331 }
332 else if (CVA)
333 { // Not a string. Print the values in successive locations
334 const std::vector<Use> &constValues = CVA->getValues();
335 for (unsigned i=0; i < constValues.size(); i++)
336 printConstantValueOnly(cast<Constant>(constValues[i].get()));
337 }
338 else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV))
339 { // Print the fields in successive locations. Pad to align if needed!
340 const StructLayout *cvsLayout =
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000341 TD.getStructLayout(CVS->getType());
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000342 const std::vector<Use>& constValues = CVS->getValues();
343 unsigned sizeSoFar = 0;
344 for (unsigned i=0, N = constValues.size(); i < N; i++)
345 {
346 const Constant* field = cast<Constant>(constValues[i].get());
347
348 // Check if padding is needed and insert one or more 0s.
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000349 unsigned fieldSize = TD.getTypeSize(field->getType());
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000350 int padSize = ((i == N-1? cvsLayout->StructSize
351 : cvsLayout->MemberOffsets[i+1])
352 - cvsLayout->MemberOffsets[i]) - fieldSize;
353 sizeSoFar += (fieldSize + padSize);
354
355 // Now print the actual field value
356 printConstantValueOnly(field, padSize);
357 }
358 assert(sizeSoFar == cvsLayout->StructSize &&
359 "Layout of constant struct may be incorrect!");
360 }
361 else
362 printSingleConstantValue(CV);
363
Chris Lattnere0121322003-08-03 23:37:09 +0000364 if (numPadBytesAfter) O << "\t.zero\t " << numPadBytesAfter << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000365}
Chris Lattnerdbb61c62002-11-17 22:53:13 +0000366
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000367/// printConstantPool - Print to the current output stream assembly
368/// representations of the constants in the constant pool MCP. This is
369/// used to print out constants which have been "spilled to memory" by
370/// the code generator.
371///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000372void Printer::printConstantPool(MachineConstantPool *MCP) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000373 const std::vector<Constant*> &CP = MCP->getConstants();
Brian Gaekede420ae2003-07-23 20:25:08 +0000374 const TargetData &TD = TM.getTargetData();
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000375
Chris Lattnerb7089442003-01-13 00:35:03 +0000376 if (CP.empty()) return;
377
378 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
379 O << "\t.section .rodata\n";
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000380 O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
Brian Gaeke5e001572003-06-26 18:02:30 +0000381 << "\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000382 O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t#"
383 << *CP[i] << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000384 printConstantValueOnly (CP[i]);
Chris Lattnerb7089442003-01-13 00:35:03 +0000385 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000386}
387
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000388/// runOnMachineFunction - This uses the printMachineInstruction()
389/// method to print assembly for each instruction.
390///
Chris Lattner0285a332002-12-28 20:25:38 +0000391bool Printer::runOnMachineFunction(MachineFunction &MF) {
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000392 // BBNumber is used here so that a given Printer will never give two
393 // BBs the same name. (If you have a better way, please let me know!)
Chris Lattner0285a332002-12-28 20:25:38 +0000394 static unsigned BBNumber = 0;
Brian Gaeke6559bb92002-11-14 22:32:30 +0000395
Chris Lattnere0121322003-08-03 23:37:09 +0000396 O << "\n\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000397 // What's my mangled name?
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000398 CurrentFnName = Mang->getValueName(MF.getFunction());
Brian Gaeked7908f62003-06-27 00:00:48 +0000399
Chris Lattnerb7089442003-01-13 00:35:03 +0000400 // Print out constants referenced by the function
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000401 printConstantPool(MF.getConstantPool());
Chris Lattnerb7089442003-01-13 00:35:03 +0000402
Brian Gaeke6559bb92002-11-14 22:32:30 +0000403 // Print out labels for the function.
Chris Lattnerb7089442003-01-13 00:35:03 +0000404 O << "\t.text\n";
405 O << "\t.align 16\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000406 O << "\t.globl\t" << CurrentFnName << "\n";
Chris Lattner93c1afa2003-08-11 19:35:26 +0000407 if (!EmitCygwin)
408 O << "\t.type\t" << CurrentFnName << ", @function\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000409 O << CurrentFnName << ":\n";
Brian Gaeke6559bb92002-11-14 22:32:30 +0000410
Brian Gaeked7908f62003-06-27 00:00:48 +0000411 // Number each basic block so that we can consistently refer to them
412 // in PC-relative references.
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000413 NumberForBB.clear();
414 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
415 I != E; ++I) {
416 NumberForBB[I->getBasicBlock()] = BBNumber++;
417 }
418
Brian Gaeke6559bb92002-11-14 22:32:30 +0000419 // Print out code for the function.
Chris Lattner0285a332002-12-28 20:25:38 +0000420 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
421 I != E; ++I) {
422 // Print a label for the basic block.
Brian Gaeke002a50a2003-07-31 17:38:52 +0000423 O << ".LBB" << NumberForBB[I->getBasicBlock()] << ":\t# "
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000424 << I->getBasicBlock()->getName() << "\n";
Chris Lattner0285a332002-12-28 20:25:38 +0000425 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
426 II != E; ++II) {
427 // Print the assembly for the instruction.
428 O << "\t";
Brian Gaekede420ae2003-07-23 20:25:08 +0000429 printMachineInstruction(*II);
Brian Gaeke6559bb92002-11-14 22:32:30 +0000430 }
Chris Lattner0285a332002-12-28 20:25:38 +0000431 }
Brian Gaeke6559bb92002-11-14 22:32:30 +0000432
433 // We didn't modify anything.
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000434 return false;
435}
436
Chris Lattner3d3067b2002-11-21 20:44:15 +0000437static bool isScale(const MachineOperand &MO) {
Chris Lattnerd9096832002-12-15 08:01:39 +0000438 return MO.isImmediate() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000439 (MO.getImmedValue() == 1 || MO.getImmedValue() == 2 ||
440 MO.getImmedValue() == 4 || MO.getImmedValue() == 8);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000441}
442
443static bool isMem(const MachineInstr *MI, unsigned Op) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000444 if (MI->getOperand(Op).isFrameIndex()) return true;
445 if (MI->getOperand(Op).isConstantPoolIndex()) return true;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000446 return Op+4 <= MI->getNumOperands() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000447 MI->getOperand(Op ).isRegister() &&isScale(MI->getOperand(Op+1)) &&
448 MI->getOperand(Op+2).isRegister() &&MI->getOperand(Op+3).isImmediate();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000449}
450
Brian Gaeke2a098772003-08-11 19:05:46 +0000451
452
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000453void Printer::printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000454 bool elideOffsetKeyword /* = false */) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000455 const MRegisterInfo &RI = *TM.getRegisterInfo();
Chris Lattnerf9f60882002-11-18 06:56:51 +0000456 switch (MO.getType()) {
457 case MachineOperand::MO_VirtualRegister:
Chris Lattnerac573f62002-12-04 17:32:52 +0000458 if (Value *V = MO.getVRegValueOrNull()) {
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000459 O << "<" << V->getName() << ">";
460 return;
461 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000462 // FALLTHROUGH
Misha Brukmane1f0d812002-11-20 18:56:41 +0000463 case MachineOperand::MO_MachineRegister:
Chris Lattner93c1afa2003-08-11 19:35:26 +0000464 if (MO.getReg() < MRegisterInfo::FirstVirtualRegister) {
Brian Gaeke2a098772003-08-11 19:05:46 +0000465 // Bug Workaround: See note in Printer::doInitialization about %.
Chris Lattner93c1afa2003-08-11 19:35:26 +0000466 O << RI.get(MO.getReg()).Name;
467 } else
Chris Lattnerf9f60882002-11-18 06:56:51 +0000468 O << "%reg" << MO.getReg();
469 return;
Chris Lattner77875d82002-11-21 02:00:20 +0000470
471 case MachineOperand::MO_SignExtendedImmed:
472 case MachineOperand::MO_UnextendedImmed:
473 O << (int)MO.getImmedValue();
474 return;
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000475 case MachineOperand::MO_PCRelativeDisp:
Brian Gaeked7908f62003-06-27 00:00:48 +0000476 {
477 ValueMapTy::const_iterator i = NumberForBB.find(MO.getVRegValue());
478 assert (i != NumberForBB.end()
479 && "Could not find a BB I previously put in the NumberForBB map!");
Brian Gaeke002a50a2003-07-31 17:38:52 +0000480 O << ".LBB" << i->second << " # PC rel: " << MO.getVRegValue()->getName();
Brian Gaeked7908f62003-06-27 00:00:48 +0000481 }
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000482 return;
Chris Lattnerb7089442003-01-13 00:35:03 +0000483 case MachineOperand::MO_GlobalAddress:
Brian Gaeke002a50a2003-07-31 17:38:52 +0000484 if (!elideOffsetKeyword)
485 O << "OFFSET ";
486 O << Mang->getValueName(MO.getGlobal());
Chris Lattnerb7089442003-01-13 00:35:03 +0000487 return;
488 case MachineOperand::MO_ExternalSymbol:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000489 O << MO.getSymbolName();
Chris Lattnerb7089442003-01-13 00:35:03 +0000490 return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000491 default:
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000492 O << "<unknown operand type>"; return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000493 }
494}
495
Chris Lattner3501fea2003-01-14 22:00:31 +0000496static const std::string sizePtr(const TargetInstrDescriptor &Desc) {
Chris Lattnera0f38c82002-12-13 03:51:55 +0000497 switch (Desc.TSFlags & X86II::ArgMask) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000498 default: assert(0 && "Unknown arg size!");
499 case X86II::Arg8: return "BYTE PTR";
500 case X86II::Arg16: return "WORD PTR";
501 case X86II::Arg32: return "DWORD PTR";
502 case X86II::Arg64: return "QWORD PTR";
503 case X86II::ArgF32: return "DWORD PTR";
504 case X86II::ArgF64: return "QWORD PTR";
505 case X86II::ArgF80: return "XWORD PTR";
Brian Gaeke86764d72002-12-05 08:30:40 +0000506 }
507}
508
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000509void Printer::printMemReference(const MachineInstr *MI, unsigned Op) {
Chris Lattner3d3067b2002-11-21 20:44:15 +0000510 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattnerb7089442003-01-13 00:35:03 +0000511
512 if (MI->getOperand(Op).isFrameIndex()) {
513 O << "[frame slot #" << MI->getOperand(Op).getFrameIndex();
514 if (MI->getOperand(Op+3).getImmedValue())
515 O << " + " << MI->getOperand(Op+3).getImmedValue();
516 O << "]";
517 return;
518 } else if (MI->getOperand(Op).isConstantPoolIndex()) {
Brian Gaeked7908f62003-06-27 00:00:48 +0000519 O << "[.CPI" << CurrentFnName << "_"
Brian Gaeke5e001572003-06-26 18:02:30 +0000520 << MI->getOperand(Op).getConstantPoolIndex();
Chris Lattnerb7089442003-01-13 00:35:03 +0000521 if (MI->getOperand(Op+3).getImmedValue())
522 O << " + " << MI->getOperand(Op+3).getImmedValue();
523 O << "]";
524 return;
525 }
526
Chris Lattner3d3067b2002-11-21 20:44:15 +0000527 const MachineOperand &BaseReg = MI->getOperand(Op);
Chris Lattner0285a332002-12-28 20:25:38 +0000528 int ScaleVal = MI->getOperand(Op+1).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000529 const MachineOperand &IndexReg = MI->getOperand(Op+2);
Chris Lattner0285a332002-12-28 20:25:38 +0000530 int DispVal = MI->getOperand(Op+3).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000531
532 O << "[";
533 bool NeedPlus = false;
534 if (BaseReg.getReg()) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000535 printOp(BaseReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000536 NeedPlus = true;
537 }
538
539 if (IndexReg.getReg()) {
540 if (NeedPlus) O << " + ";
Chris Lattner0285a332002-12-28 20:25:38 +0000541 if (ScaleVal != 1)
542 O << ScaleVal << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000543 printOp(IndexReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000544 NeedPlus = true;
545 }
546
Chris Lattner0285a332002-12-28 20:25:38 +0000547 if (DispVal) {
548 if (NeedPlus)
549 if (DispVal > 0)
550 O << " + ";
551 else {
552 O << " - ";
553 DispVal = -DispVal;
554 }
555 O << DispVal;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000556 }
557 O << "]";
558}
559
Brian Gaeke2a098772003-08-11 19:05:46 +0000560/// checkImplUses - Emit the implicit-use registers for the
561/// instruction described by DESC, if its PrintImplUses flag is set.
562///
563void Printer::checkImplUses (const TargetInstrDescriptor &Desc) {
564 const MRegisterInfo &RI = *TM.getRegisterInfo();
565 if (Desc.TSFlags & X86II::PrintImplUses) {
566 for (const unsigned *p = Desc.ImplicitUses; *p; ++p) {
567 // Bug Workaround: See note in Printer::doInitialization about %.
Chris Lattner67488a92003-08-11 20:04:57 +0000568 O << ", %" << RI.get(*p).Name;
Brian Gaeke2a098772003-08-11 19:05:46 +0000569 }
570 }
571}
572
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000573/// printMachineInstruction -- Print out a single X86 LLVM instruction
Brian Gaekede420ae2003-07-23 20:25:08 +0000574/// MI in Intel syntax to the current output stream.
Brian Gaeked7908f62003-06-27 00:00:48 +0000575///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000576void Printer::printMachineInstruction(const MachineInstr *MI) {
Chris Lattnerf9f60882002-11-18 06:56:51 +0000577 unsigned Opcode = MI->getOpcode();
Brian Gaeked7908f62003-06-27 00:00:48 +0000578 const TargetInstrInfo &TII = TM.getInstrInfo();
579 const TargetInstrDescriptor &Desc = TII.get(Opcode);
Chris Lattnerf9f60882002-11-18 06:56:51 +0000580
Chris Lattnereca1f632002-12-25 05:09:01 +0000581 switch (Desc.TSFlags & X86II::FormMask) {
582 case X86II::Pseudo:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000583 // Print pseudo-instructions as comments; either they should have been
584 // turned into real instructions by now, or they don't need to be
585 // seen by the assembler (e.g., IMPLICIT_USEs.)
586 O << "# ";
Chris Lattnereca1f632002-12-25 05:09:01 +0000587 if (Opcode == X86::PHI) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000588 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000589 O << " = phi ";
590 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i+=2) {
591 if (i != 1) O << ", ";
592 O << "[";
Brian Gaekede420ae2003-07-23 20:25:08 +0000593 printOp(MI->getOperand(i));
Chris Lattnereca1f632002-12-25 05:09:01 +0000594 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000595 printOp(MI->getOperand(i+1));
Chris Lattnereca1f632002-12-25 05:09:01 +0000596 O << "]";
597 }
598 } else {
599 unsigned i = 0;
Vikram S. Adve49cab032003-05-27 00:03:17 +0000600 if (MI->getNumOperands() && (MI->getOperand(0).opIsDefOnly() ||
601 MI->getOperand(0).opIsDefAndUse())) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000602 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000603 O << " = ";
604 ++i;
605 }
Brian Gaeked7908f62003-06-27 00:00:48 +0000606 O << TII.getName(MI->getOpcode());
Chris Lattnereca1f632002-12-25 05:09:01 +0000607
608 for (unsigned e = MI->getNumOperands(); i != e; ++i) {
609 O << " ";
Vikram S. Adve49cab032003-05-27 00:03:17 +0000610 if (MI->getOperand(i).opIsDefOnly() ||
611 MI->getOperand(i).opIsDefAndUse()) O << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000612 printOp(MI->getOperand(i));
Vikram S. Adve49cab032003-05-27 00:03:17 +0000613 if (MI->getOperand(i).opIsDefOnly() ||
614 MI->getOperand(i).opIsDefAndUse()) O << "*";
Chris Lattnereca1f632002-12-25 05:09:01 +0000615 }
Chris Lattner3faae2d2002-12-13 09:59:26 +0000616 }
617 O << "\n";
618 return;
Chris Lattner3faae2d2002-12-13 09:59:26 +0000619
Chris Lattnerf9f60882002-11-18 06:56:51 +0000620 case X86II::RawFrm:
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000621 // The accepted forms of Raw instructions are:
622 // 1. nop - No operand required
623 // 2. jmp foo - PC relative displacement operand
Chris Lattnerb7089442003-01-13 00:35:03 +0000624 // 3. call bar - GlobalAddress Operand or External Symbol Operand
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000625 //
626 assert(MI->getNumOperands() == 0 ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000627 (MI->getNumOperands() == 1 &&
628 (MI->getOperand(0).isPCRelativeDisp() ||
629 MI->getOperand(0).isGlobalAddress() ||
630 MI->getOperand(0).isExternalSymbol())) &&
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000631 "Illegal raw instruction!");
Brian Gaeked7908f62003-06-27 00:00:48 +0000632 O << TII.getName(MI->getOpcode()) << " ";
Chris Lattnerf9f60882002-11-18 06:56:51 +0000633
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000634 if (MI->getNumOperands() == 1) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000635 printOp(MI->getOperand(0), true); // Don't print "OFFSET"...
Chris Lattnerf9f60882002-11-18 06:56:51 +0000636 }
637 O << "\n";
638 return;
639
Chris Lattner77875d82002-11-21 02:00:20 +0000640 case X86II::AddRegFrm: {
641 // There are currently two forms of acceptable AddRegFrm instructions.
642 // Either the instruction JUST takes a single register (like inc, dec, etc),
643 // or it takes a register and an immediate of the same size as the register
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000644 // (move immediate f.e.). Note that this immediate value might be stored as
645 // an LLVM value, to represent, for example, loading the address of a global
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000646 // into a register. The initial register might be duplicated if this is a
647 // M_2_ADDR_REG instruction
Chris Lattner77875d82002-11-21 02:00:20 +0000648 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000649 assert(MI->getOperand(0).isRegister() &&
Chris Lattner77875d82002-11-21 02:00:20 +0000650 (MI->getNumOperands() == 1 ||
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000651 (MI->getNumOperands() == 2 &&
Chris Lattner6d669442002-12-04 17:28:40 +0000652 (MI->getOperand(1).getVRegValueOrNull() ||
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000653 MI->getOperand(1).isImmediate() ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000654 MI->getOperand(1).isRegister() ||
655 MI->getOperand(1).isGlobalAddress() ||
656 MI->getOperand(1).isExternalSymbol()))) &&
Chris Lattner77875d82002-11-21 02:00:20 +0000657 "Illegal form for AddRegFrm instruction!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000658
Chris Lattner77875d82002-11-21 02:00:20 +0000659 unsigned Reg = MI->getOperand(0).getReg();
Chris Lattner77875d82002-11-21 02:00:20 +0000660
Brian Gaeked7908f62003-06-27 00:00:48 +0000661 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000662 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000663 if (MI->getNumOperands() == 2 &&
664 (!MI->getOperand(1).isRegister() ||
665 MI->getOperand(1).getVRegValueOrNull() ||
666 MI->getOperand(1).isGlobalAddress() ||
667 MI->getOperand(1).isExternalSymbol())) {
Chris Lattner77875d82002-11-21 02:00:20 +0000668 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000669 printOp(MI->getOperand(1));
Chris Lattner77875d82002-11-21 02:00:20 +0000670 }
Brian Gaeke2a098772003-08-11 19:05:46 +0000671 checkImplUses(Desc);
Chris Lattner77875d82002-11-21 02:00:20 +0000672 O << "\n";
673 return;
674 }
Chris Lattner233ad712002-11-21 01:33:44 +0000675 case X86II::MRMDestReg: {
Chris Lattnerb7089442003-01-13 00:35:03 +0000676 // There are two acceptable forms of MRMDestReg instructions, those with 2,
677 // 3 and 4 operands:
678 //
679 // 2 Operands: this is for things like mov that do not read a second input
Chris Lattnerf9f60882002-11-18 06:56:51 +0000680 //
681 // 3 Operands: in this form, the first two registers (the destination, and
682 // the first operand) should be the same, post register allocation. The 3rd
683 // operand is an additional input. This should be for things like add
684 // instructions.
685 //
Chris Lattnerb7089442003-01-13 00:35:03 +0000686 // 4 Operands: This form is for instructions which are 3 operands forms, but
687 // have a constant argument as well.
Chris Lattnerf9f60882002-11-18 06:56:51 +0000688 //
Brian Gaeked7908f62003-06-27 00:00:48 +0000689 bool isTwoAddr = TII.isTwoAddrInstr(Opcode);
Chris Lattnerd9096832002-12-15 08:01:39 +0000690 assert(MI->getOperand(0).isRegister() &&
Chris Lattnerb7089442003-01-13 00:35:03 +0000691 (MI->getNumOperands() == 2 ||
692 (isTwoAddr && MI->getOperand(1).isRegister() &&
693 MI->getOperand(0).getReg() == MI->getOperand(1).getReg() &&
694 (MI->getNumOperands() == 3 ||
695 (MI->getNumOperands() == 4 && MI->getOperand(3).isImmediate()))))
Misha Brukmane1f0d812002-11-20 18:56:41 +0000696 && "Bad format for MRMDestReg!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000697
Brian Gaeked7908f62003-06-27 00:00:48 +0000698 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000699 printOp(MI->getOperand(0));
Chris Lattnerf9f60882002-11-18 06:56:51 +0000700 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000701 printOp(MI->getOperand(1+isTwoAddr));
Chris Lattnerb7089442003-01-13 00:35:03 +0000702 if (MI->getNumOperands() == 4) {
703 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000704 printOp(MI->getOperand(3));
Chris Lattnerb7089442003-01-13 00:35:03 +0000705 }
Chris Lattnerf9f60882002-11-18 06:56:51 +0000706 O << "\n";
707 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000708 }
Chris Lattner18042332002-11-21 21:03:39 +0000709
710 case X86II::MRMDestMem: {
711 // These instructions are the same as MRMDestReg, but instead of having a
712 // register reference for the mod/rm field, it's a memory reference.
713 //
714 assert(isMem(MI, 0) && MI->getNumOperands() == 4+1 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000715 MI->getOperand(4).isRegister() && "Bad format for MRMDestMem!");
Chris Lattner18042332002-11-21 21:03:39 +0000716
Brian Gaeked7908f62003-06-27 00:00:48 +0000717 O << TII.getName(MI->getOpCode()) << " " << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000718 printMemReference(MI, 0);
Chris Lattner18042332002-11-21 21:03:39 +0000719 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000720 printOp(MI->getOperand(4));
Chris Lattner18042332002-11-21 21:03:39 +0000721 O << "\n";
722 return;
723 }
724
Chris Lattner233ad712002-11-21 01:33:44 +0000725 case X86II::MRMSrcReg: {
Chris Lattner644e1ab2002-11-21 00:30:01 +0000726 // There is a two forms that are acceptable for MRMSrcReg instructions,
727 // those with 3 and 2 operands:
728 //
729 // 3 Operands: in this form, the last register (the second input) is the
730 // ModR/M input. The first two operands should be the same, post register
731 // allocation. This is for things like: add r32, r/m32
732 //
733 // 2 Operands: this is for things like mov that do not read a second input
734 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000735 assert(MI->getOperand(0).isRegister() &&
736 MI->getOperand(1).isRegister() &&
Chris Lattner644e1ab2002-11-21 00:30:01 +0000737 (MI->getNumOperands() == 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000738 (MI->getNumOperands() == 3 && MI->getOperand(2).isRegister()))
Chris Lattnerb7089442003-01-13 00:35:03 +0000739 && "Bad format for MRMSrcReg!");
Chris Lattner644e1ab2002-11-21 00:30:01 +0000740 if (MI->getNumOperands() == 3 &&
741 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
742 O << "**";
743
Brian Gaeked7908f62003-06-27 00:00:48 +0000744 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000745 printOp(MI->getOperand(0));
Chris Lattner644e1ab2002-11-21 00:30:01 +0000746 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000747 printOp(MI->getOperand(MI->getNumOperands()-1));
Chris Lattner644e1ab2002-11-21 00:30:01 +0000748 O << "\n";
749 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000750 }
Chris Lattner675dd2c2002-11-21 17:09:01 +0000751
Chris Lattner3d3067b2002-11-21 20:44:15 +0000752 case X86II::MRMSrcMem: {
753 // These instructions are the same as MRMSrcReg, but instead of having a
754 // register reference for the mod/rm field, it's a memory reference.
Chris Lattner18042332002-11-21 21:03:39 +0000755 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000756 assert(MI->getOperand(0).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000757 (MI->getNumOperands() == 1+4 && isMem(MI, 1)) ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000758 (MI->getNumOperands() == 2+4 && MI->getOperand(1).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000759 isMem(MI, 2))
760 && "Bad format for MRMDestReg!");
761 if (MI->getNumOperands() == 2+4 &&
762 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
763 O << "**";
764
Brian Gaeked7908f62003-06-27 00:00:48 +0000765 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000766 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000767 O << ", " << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000768 printMemReference(MI, MI->getNumOperands()-4);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000769 O << "\n";
770 return;
771 }
772
Chris Lattner675dd2c2002-11-21 17:09:01 +0000773 case X86II::MRMS0r: case X86II::MRMS1r:
774 case X86II::MRMS2r: case X86II::MRMS3r:
775 case X86II::MRMS4r: case X86II::MRMS5r:
776 case X86II::MRMS6r: case X86II::MRMS7r: {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000777 // In this form, the following are valid formats:
778 // 1. sete r
Chris Lattner1d53ce42002-11-21 23:30:00 +0000779 // 2. cmp reg, immediate
Chris Lattner675dd2c2002-11-21 17:09:01 +0000780 // 2. shl rdest, rinput <implicit CL or 1>
781 // 3. sbb rdest, rinput, immediate [rdest = rinput]
782 //
783 assert(MI->getNumOperands() > 0 && MI->getNumOperands() < 4 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000784 MI->getOperand(0).isRegister() && "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000785 assert((MI->getNumOperands() != 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000786 MI->getOperand(1).isRegister() || MI->getOperand(1).isImmediate())&&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000787 "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000788 assert((MI->getNumOperands() < 3 ||
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000789 (MI->getOperand(1).isRegister() && MI->getOperand(2).isImmediate())) &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000790 "Bad MRMSxR format!");
791
Chris Lattnerd9096832002-12-15 08:01:39 +0000792 if (MI->getNumOperands() > 1 && MI->getOperand(1).isRegister() &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000793 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
794 O << "**";
795
Brian Gaeked7908f62003-06-27 00:00:48 +0000796 O << TII.getName(MI->getOpCode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000797 printOp(MI->getOperand(0));
Chris Lattnerd9096832002-12-15 08:01:39 +0000798 if (MI->getOperand(MI->getNumOperands()-1).isImmediate()) {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000799 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000800 printOp(MI->getOperand(MI->getNumOperands()-1));
Chris Lattner675dd2c2002-11-21 17:09:01 +0000801 }
Brian Gaeke2a098772003-08-11 19:05:46 +0000802 checkImplUses(Desc);
Chris Lattner675dd2c2002-11-21 17:09:01 +0000803 O << "\n";
804
805 return;
806 }
807
Chris Lattnerb7089442003-01-13 00:35:03 +0000808 case X86II::MRMS0m: case X86II::MRMS1m:
809 case X86II::MRMS2m: case X86II::MRMS3m:
810 case X86II::MRMS4m: case X86II::MRMS5m:
811 case X86II::MRMS6m: case X86II::MRMS7m: {
812 // In this form, the following are valid formats:
813 // 1. sete [m]
814 // 2. cmp [m], immediate
815 // 2. shl [m], rinput <implicit CL or 1>
816 // 3. sbb [m], immediate
817 //
818 assert(MI->getNumOperands() >= 4 && MI->getNumOperands() <= 5 &&
819 isMem(MI, 0) && "Bad MRMSxM format!");
820 assert((MI->getNumOperands() != 5 || MI->getOperand(4).isImmediate()) &&
821 "Bad MRMSxM format!");
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000822 // Bug: The 80-bit FP store-pop instruction "fstp XWORD PTR [...]"
823 // is misassembled by gas in intel_syntax mode as its 32-bit
824 // equivalent "fstp DWORD PTR [...]". Workaround: Output the raw
825 // opcode bytes instead of the instruction.
Brian Gaekeb44210d2003-07-07 18:34:20 +0000826 if (MI->getOpCode() == X86::FSTPr80) {
827 if ((MI->getOperand(0).getReg() == X86::ESP)
828 && (MI->getOperand(1).getImmedValue() == 1)) {
829 int DispVal = MI->getOperand(3).getImmedValue();
830 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
831 unsigned int val = (unsigned int) DispVal;
832 O << ".byte 0xdb, 0xbc, 0x24\n\t";
833 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
834 } else { // 1 byte disp.
835 unsigned char val = (unsigned char) DispVal;
836 O << ".byte 0xdb, 0x7c, 0x24, 0x" << std::hex << (unsigned) val
837 << std::dec << "\t# ";
838 }
839 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000840 }
841 // Bug: The 80-bit FP load instruction "fld XWORD PTR [...]" is
842 // misassembled by gas in intel_syntax mode as its 32-bit
843 // equivalent "fld DWORD PTR [...]". Workaround: Output the raw
844 // opcode bytes instead of the instruction.
845 if (MI->getOpCode() == X86::FLDr80) {
Brian Gaekeb44210d2003-07-07 18:34:20 +0000846 if ((MI->getOperand(0).getReg() == X86::ESP)
847 && (MI->getOperand(1).getImmedValue() == 1)) {
848 int DispVal = MI->getOperand(3).getImmedValue();
849 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
850 unsigned int val = (unsigned int) DispVal;
851 O << ".byte 0xdb, 0xac, 0x24\n\t";
852 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
853 } else { // 1 byte disp.
854 unsigned char val = (unsigned char) DispVal;
855 O << ".byte 0xdb, 0x6c, 0x24, 0x" << std::hex << (unsigned) val
856 << std::dec << "\t# ";
857 }
858 }
859 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000860 // Bug: gas intel_syntax mode treats "fild QWORD PTR [...]" as an
861 // invalid opcode, saying "64 bit operations are only supported in
862 // 64 bit modes." libopcodes disassembles it as "fild DWORD PTR
863 // [...]", which is wrong. Workaround: Output the raw opcode bytes
864 // instead of the instruction.
865 if (MI->getOpCode() == X86::FILDr64) {
866 if ((MI->getOperand(0).getReg() == X86::ESP)
867 && (MI->getOperand(1).getImmedValue() == 1)) {
868 int DispVal = MI->getOperand(3).getImmedValue();
869 if ((DispVal < -128) || (DispVal > 127)) { // 4 byte disp.
870 unsigned int val = (unsigned int) DispVal;
871 O << ".byte 0xdf, 0xac, 0x24\n\t";
872 O << ".long 0x" << std::hex << (unsigned) val << std::dec << "\t# ";
873 } else { // 1 byte disp.
874 unsigned char val = (unsigned char) DispVal;
875 O << ".byte 0xdf, 0x6c, 0x24, 0x" << std::hex << (unsigned) val
876 << std::dec << "\t# ";
877 }
878 }
879 }
880 // Bug: gas intel_syntax mode treats "fistp QWORD PTR [...]" as
881 // an invalid opcode, saying "64 bit operations are only
882 // supported in 64 bit modes." libopcodes disassembles it as
883 // "fistpll DWORD PTR [...]", which is wrong. Workaround: Output
884 // "fistpll DWORD PTR " instead, which is what libopcodes is
885 // expecting to see.
886 if (MI->getOpCode() == X86::FISTPr64) {
887 O << "fistpll DWORD PTR ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000888 printMemReference(MI, 0);
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000889 if (MI->getNumOperands() == 5) {
890 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000891 printOp(MI->getOperand(4));
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000892 }
893 O << "\t# ";
894 }
895
Brian Gaeked7908f62003-06-27 00:00:48 +0000896 O << TII.getName(MI->getOpCode()) << " ";
Chris Lattnerb7089442003-01-13 00:35:03 +0000897 O << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000898 printMemReference(MI, 0);
Chris Lattnerb7089442003-01-13 00:35:03 +0000899 if (MI->getNumOperands() == 5) {
900 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000901 printOp(MI->getOperand(4));
Chris Lattnerb7089442003-01-13 00:35:03 +0000902 }
903 O << "\n";
904 return;
905 }
906
Chris Lattnerf9f60882002-11-18 06:56:51 +0000907 default:
Chris Lattnerb7089442003-01-13 00:35:03 +0000908 O << "\tUNKNOWN FORM:\t\t-"; MI->print(O, TM); break;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000909 }
Chris Lattner72614082002-10-25 22:55:53 +0000910}
Brian Gaeke9e474c42003-06-19 19:32:32 +0000911
Chris Lattner93c1afa2003-08-11 19:35:26 +0000912bool Printer::doInitialization(Module &M) {
913 // Tell gas we are outputting Intel syntax (not AT&T syntax) assembly.
Brian Gaeke2a098772003-08-11 19:05:46 +0000914 //
Chris Lattner93c1afa2003-08-11 19:35:26 +0000915 // Bug: gas in `intel_syntax noprefix' mode interprets the symbol `Sp' in an
916 // instruction as a reference to the register named sp, and if you try to
917 // reference a symbol `Sp' (e.g. `mov ECX, OFFSET Sp') then it gets lowercased
918 // before being looked up in the symbol table. This creates spurious
919 // `undefined symbol' errors when linking. Workaround: Do not use `noprefix'
920 // mode, and decorate all register names with percent signs.
921 //
922 // Cygwin presumably doesn't have this problem, so drop the %'s.
923 //
Chris Lattner67488a92003-08-11 20:04:57 +0000924 O << "\t.intel_syntax\n";
Chris Lattner93c1afa2003-08-11 19:35:26 +0000925 Mang = new Mangler(M, EmitCygwin);
Brian Gaeke9e474c42003-06-19 19:32:32 +0000926 return false; // success
927}
928
Chris Lattnerc07736a2003-07-23 15:22:26 +0000929static const Function *isConstantFunctionPointerRef(const Constant *C) {
930 if (const ConstantPointerRef *R = dyn_cast<ConstantPointerRef>(C))
931 if (const Function *F = dyn_cast<Function>(R->getValue()))
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000932 return F;
Chris Lattnerc07736a2003-07-23 15:22:26 +0000933 return 0;
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000934}
935
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000936bool Printer::doFinalization(Module &M)
937{
Brian Gaekede420ae2003-07-23 20:25:08 +0000938 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000939 // Print out module-level global variables here.
940 for (Module::const_giterator I = M.gbegin(), E = M.gend(); I != E; ++I) {
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000941 std::string name(Mang->getValueName(I));
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000942 if (I->hasInitializer()) {
943 Constant *C = I->getInitializer();
Chris Lattnere0121322003-08-03 23:37:09 +0000944 if (C->isNullValue()) {
945 O << "\n\n\t.comm " << name << "," << TD.getTypeSize(C->getType())
946 << "," << (unsigned)TD.getTypeAlignment(C->getType());
947 O << "\t\t# ";
948 WriteAsOperand(O, I, true, true, &M);
949 O << "\n";
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000950 } else {
Chris Lattnere0121322003-08-03 23:37:09 +0000951 O << "\n\n\t.data\n";
952 O << "\t.globl " << name << "\n";
953 O << "\t.type " << name << ",@object\n";
954 O << "\t.size " << name << "," << TD.getTypeSize(C->getType()) << "\n";
955 O << "\t.align " << (unsigned)TD.getTypeAlignment(C->getType()) << "\n";
956 O << name << ":\t\t\t\t# ";
957 WriteAsOperand(O, I, true, true, &M);
958 O << " = ";
959 WriteAsOperand(O, C, false, false, &M);
960 O << "\n";
961 printConstantValueOnly(C);
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000962 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000963 } else {
Brian Gaekebc601fe2003-06-25 22:00:39 +0000964 O << "\t.globl " << name << "\n";
965 O << "\t.comm " << name << ", "
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000966 << (unsigned)TD.getTypeSize(I->getType()) << ", "
967 << (unsigned)TD.getTypeAlignment(I->getType()) << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000968 }
969 }
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000970 delete Mang;
Brian Gaeke9e474c42003-06-19 19:32:32 +0000971 return false; // success
972}