blob: 62dcb70e39f63eacc5ac4b523966731524fdcaff [file] [log] [blame]
Brian Gaeke92bdfe62003-07-23 18:37:06 +00001//===-- X86/Printer.cpp - Convert X86 LLVM code to Intel assembly ---------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner72614082002-10-25 22:55:53 +00009//
Misha Brukman538607f2004-03-01 23:53:11 +000010// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to Intel-format assembly language. This
12// printer is the output mechanism used by `llc' and `lli -print-machineinstrs'
13// on X86.
Chris Lattner72614082002-10-25 22:55:53 +000014//
15//===----------------------------------------------------------------------===//
16
17#include "X86.h"
Brian Gaeke6559bb92002-11-14 22:32:30 +000018#include "X86InstrInfo.h"
Chris Lattnere0121322003-08-03 23:37:09 +000019#include "llvm/Constants.h"
20#include "llvm/DerivedTypes.h"
Chris Lattnerd59414f2003-08-11 20:06:16 +000021#include "llvm/Module.h"
22#include "llvm/Assembly/Writer.h"
Chris Lattner0285a332002-12-28 20:25:38 +000023#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb7089442003-01-13 00:35:03 +000024#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerdbb61c62002-11-17 22:53:13 +000025#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnerd59414f2003-08-11 20:06:16 +000026#include "llvm/Target/TargetMachine.h"
Brian Gaeked9fb37a2003-07-24 20:20:44 +000027#include "llvm/Support/Mangler.h"
Brian Gaeke2c9b9132003-10-06 15:41:21 +000028#include "Support/Statistic.h"
Chris Lattnere0121322003-08-03 23:37:09 +000029#include "Support/StringExtras.h"
Chris Lattner93c1afa2003-08-11 19:35:26 +000030#include "Support/CommandLine.h"
Chris Lattner300d0ed2004-02-14 06:00:36 +000031using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000032
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000033namespace {
Brian Gaeke2c9b9132003-10-06 15:41:21 +000034 Statistic<> EmittedInsts("asm-printer", "Number of machine instrs printed");
35
Chris Lattner93c1afa2003-08-11 19:35:26 +000036 // FIXME: This should be automatically picked up by autoconf from the C
37 // frontend
38 cl::opt<bool> EmitCygwin("enable-cygwin-compatible-output", cl::Hidden,
39 cl::desc("Emit X86 assembly code suitable for consumption by cygwin"));
40
Chris Lattner0285a332002-12-28 20:25:38 +000041 struct Printer : public MachineFunctionPass {
Brian Gaekede420ae2003-07-23 20:25:08 +000042 /// Output stream on which we're printing assembly code.
Brian Gaeke92bdfe62003-07-23 18:37:06 +000043 ///
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000044 std::ostream &O;
Brian Gaekede420ae2003-07-23 20:25:08 +000045
46 /// Target machine description which we query for reg. names, data
47 /// layout, etc.
48 ///
49 TargetMachine &TM;
50
Brian Gaeked9fb37a2003-07-24 20:20:44 +000051 /// Name-mangler for global names.
52 ///
53 Mangler *Mang;
54
Brian Gaekede420ae2003-07-23 20:25:08 +000055 Printer(std::ostream &o, TargetMachine &tm) : O(o), TM(tm) { }
Brian Gaeke92bdfe62003-07-23 18:37:06 +000056
57 /// We name each basic block in a Function with a unique number, so
58 /// that we can consistently refer to them later. This is cleared
59 /// at the beginning of each call to runOnMachineFunction().
60 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000061 typedef std::map<const Value *, unsigned> ValueMapTy;
62 ValueMapTy NumberForBB;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000063
64 /// Cache of mangled name for current function. This is
65 /// recalculated at the beginning of each call to
66 /// runOnMachineFunction().
67 ///
Brian Gaeked7908f62003-06-27 00:00:48 +000068 std::string CurrentFnName;
Brian Gaeke92bdfe62003-07-23 18:37:06 +000069
Chris Lattnerf0eb7be2002-12-15 21:13:40 +000070 virtual const char *getPassName() const {
71 return "X86 Assembly Printer";
72 }
73
Brian Gaeke2a098772003-08-11 19:05:46 +000074 void checkImplUses (const TargetInstrDescriptor &Desc);
Brian Gaeked9fb37a2003-07-24 20:20:44 +000075 void printMachineInstruction(const MachineInstr *MI);
Brian Gaeke92bdfe62003-07-23 18:37:06 +000076 void printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +000077 bool elideOffsetKeyword = false);
78 void printMemReference(const MachineInstr *MI, unsigned Op);
79 void printConstantPool(MachineConstantPool *MCP);
Brian Gaeke01d79ff2003-06-25 18:01:07 +000080 bool runOnMachineFunction(MachineFunction &F);
Brian Gaeke9e474c42003-06-19 19:32:32 +000081 bool doInitialization(Module &M);
82 bool doFinalization(Module &M);
Chris Lattnerac662d12003-11-03 20:19:49 +000083 void emitGlobalConstant(const Constant* CV);
84 void emitConstantValueOnly(const Constant *CV);
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000085 };
Brian Gaeked7908f62003-06-27 00:00:48 +000086} // end of anonymous namespace
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000087
Brian Gaeke92bdfe62003-07-23 18:37:06 +000088/// createX86CodePrinterPass - Returns a pass that prints the X86
Brian Gaekede420ae2003-07-23 20:25:08 +000089/// assembly code for a MachineFunction to the given output stream,
90/// using the given target machine description. This should work
91/// regardless of whether the function is in SSA form.
Chris Lattnerdbb61c62002-11-17 22:53:13 +000092///
Chris Lattner300d0ed2004-02-14 06:00:36 +000093FunctionPass *llvm::createX86CodePrinterPass(std::ostream &o,TargetMachine &tm){
Brian Gaekede420ae2003-07-23 20:25:08 +000094 return new Printer(o, tm);
Chris Lattnerdbb61c62002-11-17 22:53:13 +000095}
96
Brian Gaeke92bdfe62003-07-23 18:37:06 +000097/// toOctal - Convert the low order bits of X into an octal digit.
98///
Brian Gaeke01d79ff2003-06-25 18:01:07 +000099static inline char toOctal(int X) {
100 return (X&7)+'0';
101}
102
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000103/// getAsCString - Return the specified array as a C compatible
104/// string, only if the predicate isStringCompatible is true.
105///
Chris Lattnerac662d12003-11-03 20:19:49 +0000106static void printAsCString(std::ostream &O, const ConstantArray *CVA) {
Chris Lattneraa06d042004-01-14 17:14:42 +0000107 assert(CVA->isString() && "Array is not string compatible!");
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000108
Chris Lattnerac662d12003-11-03 20:19:49 +0000109 O << "\"";
Chris Lattneraa06d042004-01-14 17:14:42 +0000110 for (unsigned i = 0; i != CVA->getNumOperands(); ++i) {
Chris Lattnerc07736a2003-07-23 15:22:26 +0000111 unsigned char C = cast<ConstantInt>(CVA->getOperand(i))->getRawValue();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000112
113 if (C == '"') {
Chris Lattnerac662d12003-11-03 20:19:49 +0000114 O << "\\\"";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000115 } else if (C == '\\') {
Chris Lattnerac662d12003-11-03 20:19:49 +0000116 O << "\\\\";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000117 } else if (isprint(C)) {
Chris Lattnerac662d12003-11-03 20:19:49 +0000118 O << C;
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000119 } else {
120 switch(C) {
Chris Lattnerac662d12003-11-03 20:19:49 +0000121 case '\b': O << "\\b"; break;
122 case '\f': O << "\\f"; break;
123 case '\n': O << "\\n"; break;
124 case '\r': O << "\\r"; break;
125 case '\t': O << "\\t"; break;
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000126 default:
Chris Lattnerac662d12003-11-03 20:19:49 +0000127 O << '\\';
128 O << toOctal(C >> 6);
129 O << toOctal(C >> 3);
130 O << toOctal(C >> 0);
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000131 break;
132 }
133 }
134 }
Chris Lattnerac662d12003-11-03 20:19:49 +0000135 O << "\"";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000136}
137
Chris Lattnerac662d12003-11-03 20:19:49 +0000138// Print out the specified constant, without a storage class. Only the
139// constants valid in constant expressions can occur here.
140void Printer::emitConstantValueOnly(const Constant *CV) {
141 if (CV->isNullValue())
142 O << "0";
143 else if (const ConstantBool *CB = dyn_cast<ConstantBool>(CV)) {
144 assert(CB == ConstantBool::True);
145 O << "1";
146 } else if (const ConstantSInt *CI = dyn_cast<ConstantSInt>(CV))
Chris Lattnerf7b42252004-02-23 03:27:05 +0000147 if (((CI->getValue() << 32) >> 32) == CI->getValue())
148 O << CI->getValue();
149 else
150 O << (unsigned long long)CI->getValue();
Chris Lattnerac662d12003-11-03 20:19:49 +0000151 else if (const ConstantUInt *CI = dyn_cast<ConstantUInt>(CV))
152 O << CI->getValue();
153 else if (const ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(CV))
154 // This is a constant address for a global variable or function. Use the
155 // name of the variable or function as the address value.
Chris Lattner90533562003-11-04 16:04:32 +0000156 O << Mang->getValueName(CPR->getValue());
Chris Lattnerac662d12003-11-03 20:19:49 +0000157 else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV)) {
158 const TargetData &TD = TM.getTargetData();
159 switch(CE->getOpcode()) {
160 case Instruction::GetElementPtr: {
161 // generate a symbolic expression for the byte address
162 const Constant *ptrVal = CE->getOperand(0);
163 std::vector<Value*> idxVec(CE->op_begin()+1, CE->op_end());
164 if (unsigned Offset = TD.getIndexedOffset(ptrVal->getType(), idxVec)) {
165 O << "(";
166 emitConstantValueOnly(ptrVal);
Chris Lattner90533562003-11-04 16:04:32 +0000167 O << ") + " << Offset;
Chris Lattnerac662d12003-11-03 20:19:49 +0000168 } else {
169 emitConstantValueOnly(ptrVal);
170 }
171 break;
172 }
173 case Instruction::Cast: {
174 // Support only non-converting or widening casts for now, that is, ones
Brian Gaekef9c86cf2003-11-22 07:18:25 +0000175 // that do not involve a change in value. This assertion is really gross,
176 // and may not even be a complete check.
Chris Lattnerac662d12003-11-03 20:19:49 +0000177 Constant *Op = CE->getOperand(0);
178 const Type *OpTy = Op->getType(), *Ty = CE->getType();
Chris Lattner90533562003-11-04 16:04:32 +0000179
Brian Gaekef9c86cf2003-11-22 07:18:25 +0000180 // Remember, kids, pointers on x86 can be losslessly converted back and
181 // forth into 32-bit or wider integers, regardless of signedness. :-P
Chris Lattnerac662d12003-11-03 20:19:49 +0000182 assert(((isa<PointerType>(OpTy)
Brian Gaekef9c86cf2003-11-22 07:18:25 +0000183 && (Ty == Type::LongTy || Ty == Type::ULongTy
184 || Ty == Type::IntTy || Ty == Type::UIntTy))
Chris Lattnerac662d12003-11-03 20:19:49 +0000185 || (isa<PointerType>(Ty)
Brian Gaekef9c86cf2003-11-22 07:18:25 +0000186 && (OpTy == Type::LongTy || OpTy == Type::ULongTy
187 || OpTy == Type::IntTy || OpTy == Type::UIntTy))
Chris Lattner90533562003-11-04 16:04:32 +0000188 || (((TD.getTypeSize(Ty) >= TD.getTypeSize(OpTy))
189 && OpTy->isLosslesslyConvertibleTo(Ty))))
Chris Lattnerac662d12003-11-03 20:19:49 +0000190 && "FIXME: Don't yet support this kind of constant cast expr");
191 O << "(";
192 emitConstantValueOnly(Op);
193 O << ")";
194 break;
195 }
196 case Instruction::Add:
197 O << "(";
198 emitConstantValueOnly(CE->getOperand(0));
199 O << ") + (";
200 emitConstantValueOnly(CE->getOperand(1));
201 O << ")";
202 break;
203 default:
204 assert(0 && "Unsupported operator!");
205 }
206 } else {
207 assert(0 && "Unknown constant value!");
208 }
209}
210
211// Print a constant value or values, with the appropriate storage class as a
212// prefix.
213void Printer::emitGlobalConstant(const Constant *CV) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000214 const TargetData &TD = TM.getTargetData();
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000215
Chris Lattnerad200712003-09-09 16:23:36 +0000216 if (CV->isNullValue()) {
217 O << "\t.zero\t " << TD.getTypeSize(CV->getType()) << "\n";
Chris Lattner3e119c62003-11-03 19:44:05 +0000218 return;
Chris Lattnerad200712003-09-09 16:23:36 +0000219 } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) {
Chris Lattneraa06d042004-01-14 17:14:42 +0000220 if (CVA->isString()) {
Chris Lattnerac662d12003-11-03 20:19:49 +0000221 O << "\t.ascii\t";
222 printAsCString(O, CVA);
223 O << "\n";
Chris Lattnerad200712003-09-09 16:23:36 +0000224 } else { // Not a string. Print the values in successive locations
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000225 const std::vector<Use> &constValues = CVA->getValues();
226 for (unsigned i=0; i < constValues.size(); i++)
Chris Lattnerac662d12003-11-03 20:19:49 +0000227 emitGlobalConstant(cast<Constant>(constValues[i].get()));
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000228 }
Chris Lattner3e119c62003-11-03 19:44:05 +0000229 return;
Chris Lattnerad200712003-09-09 16:23:36 +0000230 } else if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) {
231 // Print the fields in successive locations. Pad to align if needed!
232 const StructLayout *cvsLayout = TD.getStructLayout(CVS->getType());
233 const std::vector<Use>& constValues = CVS->getValues();
234 unsigned sizeSoFar = 0;
235 for (unsigned i=0, N = constValues.size(); i < N; i++) {
236 const Constant* field = cast<Constant>(constValues[i].get());
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000237
Chris Lattnerad200712003-09-09 16:23:36 +0000238 // Check if padding is needed and insert one or more 0s.
239 unsigned fieldSize = TD.getTypeSize(field->getType());
240 unsigned padSize = ((i == N-1? cvsLayout->StructSize
241 : cvsLayout->MemberOffsets[i+1])
242 - cvsLayout->MemberOffsets[i]) - fieldSize;
243 sizeSoFar += fieldSize + padSize;
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000244
Chris Lattnerad200712003-09-09 16:23:36 +0000245 // Now print the actual field value
Chris Lattnerac662d12003-11-03 20:19:49 +0000246 emitGlobalConstant(field);
Chris Lattnerad200712003-09-09 16:23:36 +0000247
248 // Insert the field padding unless it's zero bytes...
Chris Lattnerb3aad5d2003-09-10 19:52:24 +0000249 if (padSize)
250 O << "\t.zero\t " << padSize << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000251 }
Chris Lattnerad200712003-09-09 16:23:36 +0000252 assert(sizeSoFar == cvsLayout->StructSize &&
253 "Layout of constant struct may be incorrect!");
Chris Lattner3e119c62003-11-03 19:44:05 +0000254 return;
Chris Lattnerac662d12003-11-03 20:19:49 +0000255 } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) {
256 // FP Constants are printed as integer constants to avoid losing
257 // precision...
258 double Val = CFP->getValue();
259 switch (CFP->getType()->getPrimitiveID()) {
260 default: assert(0 && "Unknown floating point type!");
261 case Type::FloatTyID: {
262 union FU { // Abide by C TBAA rules
263 float FVal;
264 unsigned UVal;
265 } U;
266 U.FVal = Val;
267 O << ".long\t" << U.UVal << "\t# float " << Val << "\n";
268 return;
269 }
270 case Type::DoubleTyID: {
271 union DU { // Abide by C TBAA rules
272 double FVal;
273 uint64_t UVal;
274 } U;
275 U.FVal = Val;
276 O << ".quad\t" << U.UVal << "\t# double " << Val << "\n";
277 return;
278 }
279 }
Chris Lattner3e119c62003-11-03 19:44:05 +0000280 }
281
282 const Type *type = CV->getType();
283 O << "\t";
284 switch (type->getPrimitiveID()) {
285 case Type::BoolTyID: case Type::UByteTyID: case Type::SByteTyID:
286 O << ".byte";
287 break;
288 case Type::UShortTyID: case Type::ShortTyID:
289 O << ".word";
290 break;
291 case Type::FloatTyID: case Type::PointerTyID:
292 case Type::UIntTyID: case Type::IntTyID:
293 O << ".long";
294 break;
295 case Type::DoubleTyID:
296 case Type::ULongTyID: case Type::LongTyID:
297 O << ".quad";
298 break;
299 default:
300 assert (0 && "Can't handle printing this type of thing");
301 break;
302 }
303 O << "\t";
Chris Lattnerac662d12003-11-03 20:19:49 +0000304 emitConstantValueOnly(CV);
305 O << "\n";
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000306}
Chris Lattnerdbb61c62002-11-17 22:53:13 +0000307
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000308/// printConstantPool - Print to the current output stream assembly
309/// representations of the constants in the constant pool MCP. This is
310/// used to print out constants which have been "spilled to memory" by
311/// the code generator.
312///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000313void Printer::printConstantPool(MachineConstantPool *MCP) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000314 const std::vector<Constant*> &CP = MCP->getConstants();
Brian Gaekede420ae2003-07-23 20:25:08 +0000315 const TargetData &TD = TM.getTargetData();
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000316
Chris Lattnerb7089442003-01-13 00:35:03 +0000317 if (CP.empty()) return;
318
319 for (unsigned i = 0, e = CP.size(); i != e; ++i) {
320 O << "\t.section .rodata\n";
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000321 O << "\t.align " << (unsigned)TD.getTypeAlignment(CP[i]->getType())
Brian Gaeke5e001572003-06-26 18:02:30 +0000322 << "\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000323 O << ".CPI" << CurrentFnName << "_" << i << ":\t\t\t\t\t#"
324 << *CP[i] << "\n";
Chris Lattnerac662d12003-11-03 20:19:49 +0000325 emitGlobalConstant(CP[i]);
Chris Lattnerb7089442003-01-13 00:35:03 +0000326 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000327}
328
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000329/// runOnMachineFunction - This uses the printMachineInstruction()
330/// method to print assembly for each instruction.
331///
Chris Lattner0285a332002-12-28 20:25:38 +0000332bool Printer::runOnMachineFunction(MachineFunction &MF) {
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000333 // BBNumber is used here so that a given Printer will never give two
334 // BBs the same name. (If you have a better way, please let me know!)
Chris Lattner0285a332002-12-28 20:25:38 +0000335 static unsigned BBNumber = 0;
Brian Gaeke6559bb92002-11-14 22:32:30 +0000336
Chris Lattnere0121322003-08-03 23:37:09 +0000337 O << "\n\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000338 // What's my mangled name?
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000339 CurrentFnName = Mang->getValueName(MF.getFunction());
Brian Gaeked7908f62003-06-27 00:00:48 +0000340
Chris Lattnerb7089442003-01-13 00:35:03 +0000341 // Print out constants referenced by the function
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000342 printConstantPool(MF.getConstantPool());
Chris Lattnerb7089442003-01-13 00:35:03 +0000343
Brian Gaeke6559bb92002-11-14 22:32:30 +0000344 // Print out labels for the function.
Chris Lattnerb7089442003-01-13 00:35:03 +0000345 O << "\t.text\n";
346 O << "\t.align 16\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000347 O << "\t.globl\t" << CurrentFnName << "\n";
Chris Lattner93c1afa2003-08-11 19:35:26 +0000348 if (!EmitCygwin)
349 O << "\t.type\t" << CurrentFnName << ", @function\n";
Brian Gaeked7908f62003-06-27 00:00:48 +0000350 O << CurrentFnName << ":\n";
Brian Gaeke6559bb92002-11-14 22:32:30 +0000351
Brian Gaeked7908f62003-06-27 00:00:48 +0000352 // Number each basic block so that we can consistently refer to them
353 // in PC-relative references.
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000354 NumberForBB.clear();
355 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
356 I != E; ++I) {
357 NumberForBB[I->getBasicBlock()] = BBNumber++;
358 }
359
Brian Gaeke6559bb92002-11-14 22:32:30 +0000360 // Print out code for the function.
Chris Lattner0285a332002-12-28 20:25:38 +0000361 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
362 I != E; ++I) {
363 // Print a label for the basic block.
Brian Gaeke002a50a2003-07-31 17:38:52 +0000364 O << ".LBB" << NumberForBB[I->getBasicBlock()] << ":\t# "
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000365 << I->getBasicBlock()->getName() << "\n";
Chris Lattner0285a332002-12-28 20:25:38 +0000366 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
367 II != E; ++II) {
368 // Print the assembly for the instruction.
369 O << "\t";
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000370 printMachineInstruction(II);
Brian Gaeke6559bb92002-11-14 22:32:30 +0000371 }
Chris Lattner0285a332002-12-28 20:25:38 +0000372 }
Brian Gaeke6559bb92002-11-14 22:32:30 +0000373
374 // We didn't modify anything.
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000375 return false;
376}
377
Chris Lattner3d3067b2002-11-21 20:44:15 +0000378static bool isScale(const MachineOperand &MO) {
Chris Lattnerd9096832002-12-15 08:01:39 +0000379 return MO.isImmediate() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000380 (MO.getImmedValue() == 1 || MO.getImmedValue() == 2 ||
381 MO.getImmedValue() == 4 || MO.getImmedValue() == 8);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000382}
383
384static bool isMem(const MachineInstr *MI, unsigned Op) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000385 if (MI->getOperand(Op).isFrameIndex()) return true;
386 if (MI->getOperand(Op).isConstantPoolIndex()) return true;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000387 return Op+4 <= MI->getNumOperands() &&
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000388 MI->getOperand(Op ).isRegister() &&isScale(MI->getOperand(Op+1)) &&
389 MI->getOperand(Op+2).isRegister() &&MI->getOperand(Op+3).isImmediate();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000390}
391
Brian Gaeke2a098772003-08-11 19:05:46 +0000392
393
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000394void Printer::printOp(const MachineOperand &MO,
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000395 bool elideOffsetKeyword /* = false */) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000396 const MRegisterInfo &RI = *TM.getRegisterInfo();
Chris Lattnerf9f60882002-11-18 06:56:51 +0000397 switch (MO.getType()) {
398 case MachineOperand::MO_VirtualRegister:
Chris Lattnerac573f62002-12-04 17:32:52 +0000399 if (Value *V = MO.getVRegValueOrNull()) {
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000400 O << "<" << V->getName() << ">";
401 return;
402 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000403 // FALLTHROUGH
Misha Brukmane1f0d812002-11-20 18:56:41 +0000404 case MachineOperand::MO_MachineRegister:
Alkis Evlogimenos859a18b2004-02-15 21:37:17 +0000405 if (MRegisterInfo::isPhysicalRegister(MO.getReg()))
Brian Gaeke2a098772003-08-11 19:05:46 +0000406 // Bug Workaround: See note in Printer::doInitialization about %.
Brian Gaeke9d99b432003-08-13 18:15:15 +0000407 O << "%" << RI.get(MO.getReg()).Name;
408 else
Chris Lattnerf9f60882002-11-18 06:56:51 +0000409 O << "%reg" << MO.getReg();
410 return;
Chris Lattner77875d82002-11-21 02:00:20 +0000411
412 case MachineOperand::MO_SignExtendedImmed:
413 case MachineOperand::MO_UnextendedImmed:
414 O << (int)MO.getImmedValue();
415 return;
Chris Lattnerad200712003-09-09 16:23:36 +0000416 case MachineOperand::MO_PCRelativeDisp: {
417 ValueMapTy::const_iterator i = NumberForBB.find(MO.getVRegValue());
418 assert (i != NumberForBB.end()
419 && "Could not find a BB in the NumberForBB map!");
420 O << ".LBB" << i->second << " # PC rel: " << MO.getVRegValue()->getName();
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000421 return;
Chris Lattnerad200712003-09-09 16:23:36 +0000422 }
Chris Lattnerb7089442003-01-13 00:35:03 +0000423 case MachineOperand::MO_GlobalAddress:
Brian Gaeke002a50a2003-07-31 17:38:52 +0000424 if (!elideOffsetKeyword)
425 O << "OFFSET ";
426 O << Mang->getValueName(MO.getGlobal());
Chris Lattnerb7089442003-01-13 00:35:03 +0000427 return;
428 case MachineOperand::MO_ExternalSymbol:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000429 O << MO.getSymbolName();
Chris Lattnerb7089442003-01-13 00:35:03 +0000430 return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000431 default:
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000432 O << "<unknown operand type>"; return;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000433 }
434}
435
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000436static const char* const sizePtr(const TargetInstrDescriptor &Desc) {
437 switch (Desc.TSFlags & X86II::MemMask) {
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000438 default: assert(0 && "Unknown arg size!");
Alkis Evlogimenos5ab29b52004-02-28 22:02:05 +0000439 case X86II::Mem8: return "BYTE PTR";
440 case X86II::Mem16: return "WORD PTR";
441 case X86II::Mem32: return "DWORD PTR";
442 case X86II::Mem64: return "QWORD PTR";
443 case X86II::Mem80: return "XWORD PTR";
Brian Gaeke86764d72002-12-05 08:30:40 +0000444 }
445}
446
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000447void Printer::printMemReference(const MachineInstr *MI, unsigned Op) {
Chris Lattner3d3067b2002-11-21 20:44:15 +0000448 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattnerb7089442003-01-13 00:35:03 +0000449
450 if (MI->getOperand(Op).isFrameIndex()) {
451 O << "[frame slot #" << MI->getOperand(Op).getFrameIndex();
452 if (MI->getOperand(Op+3).getImmedValue())
453 O << " + " << MI->getOperand(Op+3).getImmedValue();
454 O << "]";
455 return;
456 } else if (MI->getOperand(Op).isConstantPoolIndex()) {
Brian Gaeked7908f62003-06-27 00:00:48 +0000457 O << "[.CPI" << CurrentFnName << "_"
Brian Gaeke5e001572003-06-26 18:02:30 +0000458 << MI->getOperand(Op).getConstantPoolIndex();
Chris Lattnerb7089442003-01-13 00:35:03 +0000459 if (MI->getOperand(Op+3).getImmedValue())
460 O << " + " << MI->getOperand(Op+3).getImmedValue();
461 O << "]";
462 return;
463 }
464
Chris Lattner3d3067b2002-11-21 20:44:15 +0000465 const MachineOperand &BaseReg = MI->getOperand(Op);
Chris Lattner0285a332002-12-28 20:25:38 +0000466 int ScaleVal = MI->getOperand(Op+1).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000467 const MachineOperand &IndexReg = MI->getOperand(Op+2);
Chris Lattner0285a332002-12-28 20:25:38 +0000468 int DispVal = MI->getOperand(Op+3).getImmedValue();
Chris Lattner3d3067b2002-11-21 20:44:15 +0000469
470 O << "[";
471 bool NeedPlus = false;
472 if (BaseReg.getReg()) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000473 printOp(BaseReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000474 NeedPlus = true;
475 }
476
477 if (IndexReg.getReg()) {
478 if (NeedPlus) O << " + ";
Chris Lattner0285a332002-12-28 20:25:38 +0000479 if (ScaleVal != 1)
480 O << ScaleVal << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000481 printOp(IndexReg);
Chris Lattner3d3067b2002-11-21 20:44:15 +0000482 NeedPlus = true;
483 }
484
Chris Lattner0285a332002-12-28 20:25:38 +0000485 if (DispVal) {
486 if (NeedPlus)
487 if (DispVal > 0)
488 O << " + ";
489 else {
490 O << " - ";
491 DispVal = -DispVal;
492 }
493 O << DispVal;
Chris Lattner3d3067b2002-11-21 20:44:15 +0000494 }
495 O << "]";
496}
497
Brian Gaeke2a098772003-08-11 19:05:46 +0000498/// checkImplUses - Emit the implicit-use registers for the
499/// instruction described by DESC, if its PrintImplUses flag is set.
500///
501void Printer::checkImplUses (const TargetInstrDescriptor &Desc) {
502 const MRegisterInfo &RI = *TM.getRegisterInfo();
503 if (Desc.TSFlags & X86II::PrintImplUses) {
504 for (const unsigned *p = Desc.ImplicitUses; *p; ++p) {
505 // Bug Workaround: See note in Printer::doInitialization about %.
Chris Lattner67488a92003-08-11 20:04:57 +0000506 O << ", %" << RI.get(*p).Name;
Brian Gaeke2a098772003-08-11 19:05:46 +0000507 }
508 }
509}
510
Brian Gaeke92bdfe62003-07-23 18:37:06 +0000511/// printMachineInstruction -- Print out a single X86 LLVM instruction
Brian Gaekede420ae2003-07-23 20:25:08 +0000512/// MI in Intel syntax to the current output stream.
Brian Gaeked7908f62003-06-27 00:00:48 +0000513///
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000514void Printer::printMachineInstruction(const MachineInstr *MI) {
Chris Lattnerf9f60882002-11-18 06:56:51 +0000515 unsigned Opcode = MI->getOpcode();
Brian Gaeked7908f62003-06-27 00:00:48 +0000516 const TargetInstrInfo &TII = TM.getInstrInfo();
517 const TargetInstrDescriptor &Desc = TII.get(Opcode);
Chris Lattnerf9f60882002-11-18 06:56:51 +0000518
Brian Gaeke2c9b9132003-10-06 15:41:21 +0000519 ++EmittedInsts;
Chris Lattnereca1f632002-12-25 05:09:01 +0000520 switch (Desc.TSFlags & X86II::FormMask) {
521 case X86II::Pseudo:
Brian Gaeke9e474c42003-06-19 19:32:32 +0000522 // Print pseudo-instructions as comments; either they should have been
523 // turned into real instructions by now, or they don't need to be
524 // seen by the assembler (e.g., IMPLICIT_USEs.)
525 O << "# ";
Chris Lattnereca1f632002-12-25 05:09:01 +0000526 if (Opcode == X86::PHI) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000527 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000528 O << " = phi ";
529 for (unsigned i = 1, e = MI->getNumOperands(); i != e; i+=2) {
530 if (i != 1) O << ", ";
531 O << "[";
Brian Gaekede420ae2003-07-23 20:25:08 +0000532 printOp(MI->getOperand(i));
Chris Lattnereca1f632002-12-25 05:09:01 +0000533 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000534 printOp(MI->getOperand(i+1));
Chris Lattnereca1f632002-12-25 05:09:01 +0000535 O << "]";
536 }
537 } else {
538 unsigned i = 0;
Alkis Evlogimenos4d7af652003-12-14 13:24:17 +0000539 if (MI->getNumOperands() && MI->getOperand(0).isDef()) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000540 printOp(MI->getOperand(0));
Chris Lattnereca1f632002-12-25 05:09:01 +0000541 O << " = ";
542 ++i;
543 }
Brian Gaeked7908f62003-06-27 00:00:48 +0000544 O << TII.getName(MI->getOpcode());
Chris Lattnereca1f632002-12-25 05:09:01 +0000545
546 for (unsigned e = MI->getNumOperands(); i != e; ++i) {
547 O << " ";
Alkis Evlogimenos4d7af652003-12-14 13:24:17 +0000548 if (MI->getOperand(i).isDef()) O << "*";
Brian Gaekede420ae2003-07-23 20:25:08 +0000549 printOp(MI->getOperand(i));
Alkis Evlogimenos4d7af652003-12-14 13:24:17 +0000550 if (MI->getOperand(i).isDef()) O << "*";
Chris Lattnereca1f632002-12-25 05:09:01 +0000551 }
Chris Lattner3faae2d2002-12-13 09:59:26 +0000552 }
553 O << "\n";
554 return;
Chris Lattner3faae2d2002-12-13 09:59:26 +0000555
Chris Lattnerf9f60882002-11-18 06:56:51 +0000556 case X86II::RawFrm:
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000557 // The accepted forms of Raw instructions are:
558 // 1. nop - No operand required
559 // 2. jmp foo - PC relative displacement operand
Chris Lattnerb7089442003-01-13 00:35:03 +0000560 // 3. call bar - GlobalAddress Operand or External Symbol Operand
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000561 //
562 assert(MI->getNumOperands() == 0 ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000563 (MI->getNumOperands() == 1 &&
564 (MI->getOperand(0).isPCRelativeDisp() ||
565 MI->getOperand(0).isGlobalAddress() ||
566 MI->getOperand(0).isExternalSymbol())) &&
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000567 "Illegal raw instruction!");
Brian Gaeked7908f62003-06-27 00:00:48 +0000568 O << TII.getName(MI->getOpcode()) << " ";
Chris Lattnerf9f60882002-11-18 06:56:51 +0000569
Chris Lattnerf8bafe82002-12-01 23:25:59 +0000570 if (MI->getNumOperands() == 1) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000571 printOp(MI->getOperand(0), true); // Don't print "OFFSET"...
Chris Lattnerf9f60882002-11-18 06:56:51 +0000572 }
573 O << "\n";
574 return;
575
Chris Lattner77875d82002-11-21 02:00:20 +0000576 case X86II::AddRegFrm: {
577 // There are currently two forms of acceptable AddRegFrm instructions.
578 // Either the instruction JUST takes a single register (like inc, dec, etc),
579 // or it takes a register and an immediate of the same size as the register
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000580 // (move immediate f.e.). Note that this immediate value might be stored as
581 // an LLVM value, to represent, for example, loading the address of a global
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000582 // into a register. The initial register might be duplicated if this is a
583 // M_2_ADDR_REG instruction
Chris Lattner77875d82002-11-21 02:00:20 +0000584 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000585 assert(MI->getOperand(0).isRegister() &&
Chris Lattner77875d82002-11-21 02:00:20 +0000586 (MI->getNumOperands() == 1 ||
Chris Lattnerdbf30f72002-12-04 06:45:19 +0000587 (MI->getNumOperands() == 2 &&
Chris Lattner6d669442002-12-04 17:28:40 +0000588 (MI->getOperand(1).getVRegValueOrNull() ||
Chris Lattnerfacc9fb2002-12-23 23:46:00 +0000589 MI->getOperand(1).isImmediate() ||
Chris Lattnerb7089442003-01-13 00:35:03 +0000590 MI->getOperand(1).isRegister() ||
591 MI->getOperand(1).isGlobalAddress() ||
592 MI->getOperand(1).isExternalSymbol()))) &&
Chris Lattner77875d82002-11-21 02:00:20 +0000593 "Illegal form for AddRegFrm instruction!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000594
Chris Lattner77875d82002-11-21 02:00:20 +0000595 unsigned Reg = MI->getOperand(0).getReg();
Chris Lattner77875d82002-11-21 02:00:20 +0000596
Chris Lattnerb009c002004-02-11 19:26:28 +0000597 O << TII.getName(MI->getOpcode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000598 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000599 if (MI->getNumOperands() == 2 &&
600 (!MI->getOperand(1).isRegister() ||
601 MI->getOperand(1).getVRegValueOrNull() ||
602 MI->getOperand(1).isGlobalAddress() ||
603 MI->getOperand(1).isExternalSymbol())) {
Chris Lattner77875d82002-11-21 02:00:20 +0000604 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000605 printOp(MI->getOperand(1));
Chris Lattner77875d82002-11-21 02:00:20 +0000606 }
Brian Gaeke2a098772003-08-11 19:05:46 +0000607 checkImplUses(Desc);
Chris Lattner77875d82002-11-21 02:00:20 +0000608 O << "\n";
609 return;
610 }
Chris Lattner233ad712002-11-21 01:33:44 +0000611 case X86II::MRMDestReg: {
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000612 // There are three forms of MRMDestReg instructions, those with 2
613 // or 3 operands:
Chris Lattnerb7089442003-01-13 00:35:03 +0000614 //
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000615 // 2 Operands: this is for things like mov that do not read a
616 // second input.
Chris Lattnerf9f60882002-11-18 06:56:51 +0000617 //
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000618 // 2 Operands: two address instructions which def&use the first
619 // argument and use the second as input.
Chris Lattnerf9f60882002-11-18 06:56:51 +0000620 //
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000621 // 3 Operands: in this form, two address instructions are the same
622 // as in 2 but have a constant argument as well.
Chris Lattnerf9f60882002-11-18 06:56:51 +0000623 //
Brian Gaeked7908f62003-06-27 00:00:48 +0000624 bool isTwoAddr = TII.isTwoAddrInstr(Opcode);
Chris Lattnerd9096832002-12-15 08:01:39 +0000625 assert(MI->getOperand(0).isRegister() &&
Chris Lattnerb7089442003-01-13 00:35:03 +0000626 (MI->getNumOperands() == 2 ||
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000627 (MI->getNumOperands() == 3 && MI->getOperand(2).isImmediate()))
Misha Brukmane1f0d812002-11-20 18:56:41 +0000628 && "Bad format for MRMDestReg!");
Chris Lattnerf9f60882002-11-18 06:56:51 +0000629
Chris Lattnerb009c002004-02-11 19:26:28 +0000630 O << TII.getName(MI->getOpcode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000631 printOp(MI->getOperand(0));
Chris Lattnerf9f60882002-11-18 06:56:51 +0000632 O << ", ";
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000633 printOp(MI->getOperand(1));
634 if (MI->getNumOperands() == 3) {
Chris Lattnerb7089442003-01-13 00:35:03 +0000635 O << ", ";
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000636 printOp(MI->getOperand(2));
Chris Lattnerb7089442003-01-13 00:35:03 +0000637 }
Chris Lattnerf9f60882002-11-18 06:56:51 +0000638 O << "\n";
639 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000640 }
Chris Lattner18042332002-11-21 21:03:39 +0000641
642 case X86II::MRMDestMem: {
643 // These instructions are the same as MRMDestReg, but instead of having a
644 // register reference for the mod/rm field, it's a memory reference.
645 //
Chris Lattner6e173a02004-02-17 06:16:44 +0000646 assert(isMem(MI, 0) &&
647 (MI->getNumOperands() == 4+1 ||
648 (MI->getNumOperands() == 4+2 && MI->getOperand(5).isImmediate()))
649 && "Bad format for MRMDestMem!");
Chris Lattner18042332002-11-21 21:03:39 +0000650
Chris Lattnerb009c002004-02-11 19:26:28 +0000651 O << TII.getName(MI->getOpcode()) << " " << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000652 printMemReference(MI, 0);
Chris Lattner18042332002-11-21 21:03:39 +0000653 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000654 printOp(MI->getOperand(4));
Chris Lattner6e173a02004-02-17 06:16:44 +0000655 if (MI->getNumOperands() == 4+2) {
656 O << ", ";
657 printOp(MI->getOperand(5));
658 }
Chris Lattner18042332002-11-21 21:03:39 +0000659 O << "\n";
660 return;
661 }
662
Chris Lattner233ad712002-11-21 01:33:44 +0000663 case X86II::MRMSrcReg: {
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000664 // There are three forms that are acceptable for MRMSrcReg
665 // instructions, those with 2 or 3 operands:
Chris Lattner644e1ab2002-11-21 00:30:01 +0000666 //
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000667 // 2 Operands: this is for things like mov that do not read a
668 // second input.
669 //
670 // 2 Operands: in this form, the last register is the ModR/M
671 // input. The first operand is a def&use. This is for things
672 // like: add r32, r/m32
Chris Lattner644e1ab2002-11-21 00:30:01 +0000673 //
Alkis Evlogimenosf0339392004-02-04 17:21:04 +0000674 // 3 Operands: in this form, we can have 'INST R1, R2, imm', which is used
Chris Lattner55b54812004-02-17 04:26:43 +0000675 // for instructions like the IMULrri instructions.
Chris Lattnerc01d1232003-10-20 03:42:58 +0000676 //
Chris Lattner644e1ab2002-11-21 00:30:01 +0000677 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000678 assert(MI->getOperand(0).isRegister() &&
679 MI->getOperand(1).isRegister() &&
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000680 (MI->getNumOperands() == 2 ||
681 (MI->getNumOperands() == 3 &&
682 (MI->getOperand(2).isImmediate())))
Chris Lattnerb7089442003-01-13 00:35:03 +0000683 && "Bad format for MRMSrcReg!");
Chris Lattner644e1ab2002-11-21 00:30:01 +0000684
Chris Lattnerb009c002004-02-11 19:26:28 +0000685 O << TII.getName(MI->getOpcode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000686 printOp(MI->getOperand(0));
Chris Lattner644e1ab2002-11-21 00:30:01 +0000687 O << ", ";
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000688 printOp(MI->getOperand(1));
689 if (MI->getNumOperands() == 3) {
690 O << ", ";
691 printOp(MI->getOperand(2));
692 }
Chris Lattner644e1ab2002-11-21 00:30:01 +0000693 O << "\n";
694 return;
Chris Lattner233ad712002-11-21 01:33:44 +0000695 }
Chris Lattner675dd2c2002-11-21 17:09:01 +0000696
Chris Lattner3d3067b2002-11-21 20:44:15 +0000697 case X86II::MRMSrcMem: {
698 // These instructions are the same as MRMSrcReg, but instead of having a
699 // register reference for the mod/rm field, it's a memory reference.
Chris Lattner18042332002-11-21 21:03:39 +0000700 //
Chris Lattnerd9096832002-12-15 08:01:39 +0000701 assert(MI->getOperand(0).isRegister() &&
Chris Lattner3d3067b2002-11-21 20:44:15 +0000702 (MI->getNumOperands() == 1+4 && isMem(MI, 1)) ||
Chris Lattner5b672522004-02-17 07:40:44 +0000703(MI->getNumOperands() == 2+4 && MI->getOperand(5).isImmediate() && isMem(MI, 1))
Alkis Evlogimenos14be6402004-02-04 22:17:40 +0000704 && "Bad format for MRMSrcMem!");
Chris Lattnerb009c002004-02-11 19:26:28 +0000705 O << TII.getName(MI->getOpcode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000706 printOp(MI->getOperand(0));
Chris Lattnerb7089442003-01-13 00:35:03 +0000707 O << ", " << sizePtr(Desc) << " ";
Chris Lattner5b672522004-02-17 07:40:44 +0000708 printMemReference(MI, 1);
709 if (MI->getNumOperands() == 2+4) {
710 O << ", ";
711 printOp(MI->getOperand(5));
712 }
Chris Lattner3d3067b2002-11-21 20:44:15 +0000713 O << "\n";
714 return;
715 }
716
Alkis Evlogimenos169584e2004-02-27 18:55:12 +0000717 case X86II::MRM0r: case X86II::MRM1r:
718 case X86II::MRM2r: case X86II::MRM3r:
719 case X86II::MRM4r: case X86II::MRM5r:
720 case X86II::MRM6r: case X86II::MRM7r: {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000721 // In this form, the following are valid formats:
722 // 1. sete r
Chris Lattner1d53ce42002-11-21 23:30:00 +0000723 // 2. cmp reg, immediate
Chris Lattner675dd2c2002-11-21 17:09:01 +0000724 // 2. shl rdest, rinput <implicit CL or 1>
725 // 3. sbb rdest, rinput, immediate [rdest = rinput]
726 //
727 assert(MI->getNumOperands() > 0 && MI->getNumOperands() < 4 &&
Chris Lattnerd9096832002-12-15 08:01:39 +0000728 MI->getOperand(0).isRegister() && "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000729 assert((MI->getNumOperands() != 2 ||
Chris Lattnerd9096832002-12-15 08:01:39 +0000730 MI->getOperand(1).isRegister() || MI->getOperand(1).isImmediate())&&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000731 "Bad MRMSxR format!");
Chris Lattner1d53ce42002-11-21 23:30:00 +0000732 assert((MI->getNumOperands() < 3 ||
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000733 (MI->getOperand(1).isRegister() && MI->getOperand(2).isImmediate())) &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000734 "Bad MRMSxR format!");
735
Chris Lattnerd9096832002-12-15 08:01:39 +0000736 if (MI->getNumOperands() > 1 && MI->getOperand(1).isRegister() &&
Chris Lattner675dd2c2002-11-21 17:09:01 +0000737 MI->getOperand(0).getReg() != MI->getOperand(1).getReg())
738 O << "**";
739
Chris Lattnerb009c002004-02-11 19:26:28 +0000740 O << TII.getName(MI->getOpcode()) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000741 printOp(MI->getOperand(0));
Chris Lattnerd9096832002-12-15 08:01:39 +0000742 if (MI->getOperand(MI->getNumOperands()-1).isImmediate()) {
Chris Lattner675dd2c2002-11-21 17:09:01 +0000743 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000744 printOp(MI->getOperand(MI->getNumOperands()-1));
Chris Lattner675dd2c2002-11-21 17:09:01 +0000745 }
Brian Gaeke2a098772003-08-11 19:05:46 +0000746 checkImplUses(Desc);
Chris Lattner675dd2c2002-11-21 17:09:01 +0000747 O << "\n";
748
749 return;
750 }
751
Alkis Evlogimenos169584e2004-02-27 18:55:12 +0000752 case X86II::MRM0m: case X86II::MRM1m:
753 case X86II::MRM2m: case X86II::MRM3m:
754 case X86II::MRM4m: case X86II::MRM5m:
755 case X86II::MRM6m: case X86II::MRM7m: {
Chris Lattnerb7089442003-01-13 00:35:03 +0000756 // In this form, the following are valid formats:
757 // 1. sete [m]
758 // 2. cmp [m], immediate
759 // 2. shl [m], rinput <implicit CL or 1>
760 // 3. sbb [m], immediate
761 //
762 assert(MI->getNumOperands() >= 4 && MI->getNumOperands() <= 5 &&
763 isMem(MI, 0) && "Bad MRMSxM format!");
Chris Lattnerf2d29252003-12-01 05:13:56 +0000764 assert((MI->getNumOperands() != 5 ||
765 (MI->getOperand(4).isImmediate() ||
766 MI->getOperand(4).isGlobalAddress())) &&
Chris Lattnerb7089442003-01-13 00:35:03 +0000767 "Bad MRMSxM format!");
Chris Lattnerf2d29252003-12-01 05:13:56 +0000768
769 const MachineOperand &Op3 = MI->getOperand(3);
770
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000771 // Bug: The 80-bit FP store-pop instruction "fstp XWORD PTR [...]"
772 // is misassembled by gas in intel_syntax mode as its 32-bit
773 // equivalent "fstp DWORD PTR [...]". Workaround: Output the raw
774 // opcode bytes instead of the instruction.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000775 if (MI->getOpcode() == X86::FSTP80m) {
Brian Gaekeb44210d2003-07-07 18:34:20 +0000776 if ((MI->getOperand(0).getReg() == X86::ESP)
777 && (MI->getOperand(1).getImmedValue() == 1)) {
Chris Lattnerf2d29252003-12-01 05:13:56 +0000778 if (Op3.isImmediate() &&
779 Op3.getImmedValue() >= -128 && Op3.getImmedValue() <= 127) {
780 // 1 byte disp.
781 O << ".byte 0xdb, 0x7c, 0x24, 0x" << std::hex
782 << ((unsigned)Op3.getImmedValue() & 255) << std::dec << "\t# ";
783 } else {
Brian Gaekeb44210d2003-07-07 18:34:20 +0000784 O << ".byte 0xdb, 0xbc, 0x24\n\t";
Chris Lattnerf2d29252003-12-01 05:13:56 +0000785 O << ".long ";
786 printOp(Op3);
787 O << "\t# ";
Brian Gaekeb44210d2003-07-07 18:34:20 +0000788 }
789 }
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000790 }
Chris Lattnerf2d29252003-12-01 05:13:56 +0000791
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000792 // Bug: The 80-bit FP load instruction "fld XWORD PTR [...]" is
793 // misassembled by gas in intel_syntax mode as its 32-bit
794 // equivalent "fld DWORD PTR [...]". Workaround: Output the raw
795 // opcode bytes instead of the instruction.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000796 if (MI->getOpcode() == X86::FLD80m &&
Chris Lattnerf2d29252003-12-01 05:13:56 +0000797 MI->getOperand(0).getReg() == X86::ESP &&
798 MI->getOperand(1).getImmedValue() == 1) {
799 if (Op3.isImmediate() && Op3.getImmedValue() >= -128 &&
800 Op3.getImmedValue() <= 127) { // 1 byte displacement
801 O << ".byte 0xdb, 0x6c, 0x24, 0x" << std::hex
802 << ((unsigned)Op3.getImmedValue() & 255) << std::dec << "\t# ";
803 } else {
804 O << ".byte 0xdb, 0xac, 0x24\n\t";
805 O << ".long ";
806 printOp(Op3);
807 O << "\t# ";
Brian Gaekeb44210d2003-07-07 18:34:20 +0000808 }
809 }
Chris Lattnerf2d29252003-12-01 05:13:56 +0000810
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000811 // Bug: gas intel_syntax mode treats "fild QWORD PTR [...]" as an
812 // invalid opcode, saying "64 bit operations are only supported in
813 // 64 bit modes." libopcodes disassembles it as "fild DWORD PTR
814 // [...]", which is wrong. Workaround: Output the raw opcode bytes
815 // instead of the instruction.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000816 if (MI->getOpcode() == X86::FILD64m &&
Chris Lattnerf2d29252003-12-01 05:13:56 +0000817 MI->getOperand(0).getReg() == X86::ESP &&
818 MI->getOperand(1).getImmedValue() == 1) {
819 if (Op3.isImmediate() && Op3.getImmedValue() >= -128 &&
820 Op3.getImmedValue() <= 127) { // 1 byte displacement
821 O << ".byte 0xdf, 0x6c, 0x24, 0x" << std::hex
822 << ((unsigned)Op3.getImmedValue() & 255) << std::dec << "\t# ";
823 } else {
824 O << ".byte 0xdf, 0xac, 0x24\n\t";
825 O << ".long ";
826 printOp(Op3);
827 O << std::dec << "\t# ";
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000828 }
829 }
Chris Lattnerf2d29252003-12-01 05:13:56 +0000830
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000831 // Bug: gas intel_syntax mode treats "fistp QWORD PTR [...]" as
832 // an invalid opcode, saying "64 bit operations are only
833 // supported in 64 bit modes." libopcodes disassembles it as
834 // "fistpll DWORD PTR [...]", which is wrong. Workaround: Output
835 // "fistpll DWORD PTR " instead, which is what libopcodes is
836 // expecting to see.
Alkis Evlogimenos8295f202004-02-29 08:50:03 +0000837 if (MI->getOpcode() == X86::FISTP64m) {
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000838 O << "fistpll DWORD PTR ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000839 printMemReference(MI, 0);
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000840 if (MI->getNumOperands() == 5) {
841 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000842 printOp(MI->getOperand(4));
Brian Gaeke1aa476e2003-07-11 18:18:35 +0000843 }
844 O << "\t# ";
845 }
846
Chris Lattnerb009c002004-02-11 19:26:28 +0000847 O << TII.getName(MI->getOpcode()) << " ";
Chris Lattnerb7089442003-01-13 00:35:03 +0000848 O << sizePtr(Desc) << " ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000849 printMemReference(MI, 0);
Chris Lattnerb7089442003-01-13 00:35:03 +0000850 if (MI->getNumOperands() == 5) {
851 O << ", ";
Brian Gaekede420ae2003-07-23 20:25:08 +0000852 printOp(MI->getOperand(4));
Chris Lattnerb7089442003-01-13 00:35:03 +0000853 }
854 O << "\n";
855 return;
856 }
857
Chris Lattnerf9f60882002-11-18 06:56:51 +0000858 default:
Chris Lattnerb7089442003-01-13 00:35:03 +0000859 O << "\tUNKNOWN FORM:\t\t-"; MI->print(O, TM); break;
Chris Lattnerf9f60882002-11-18 06:56:51 +0000860 }
Chris Lattner72614082002-10-25 22:55:53 +0000861}
Brian Gaeke9e474c42003-06-19 19:32:32 +0000862
Chris Lattner93c1afa2003-08-11 19:35:26 +0000863bool Printer::doInitialization(Module &M) {
864 // Tell gas we are outputting Intel syntax (not AT&T syntax) assembly.
Brian Gaeke2a098772003-08-11 19:05:46 +0000865 //
Chris Lattner93c1afa2003-08-11 19:35:26 +0000866 // Bug: gas in `intel_syntax noprefix' mode interprets the symbol `Sp' in an
867 // instruction as a reference to the register named sp, and if you try to
868 // reference a symbol `Sp' (e.g. `mov ECX, OFFSET Sp') then it gets lowercased
869 // before being looked up in the symbol table. This creates spurious
870 // `undefined symbol' errors when linking. Workaround: Do not use `noprefix'
871 // mode, and decorate all register names with percent signs.
Chris Lattner67488a92003-08-11 20:04:57 +0000872 O << "\t.intel_syntax\n";
Chris Lattner93c1afa2003-08-11 19:35:26 +0000873 Mang = new Mangler(M, EmitCygwin);
Brian Gaeke9e474c42003-06-19 19:32:32 +0000874 return false; // success
875}
876
Chris Lattnerad200712003-09-09 16:23:36 +0000877// SwitchSection - Switch to the specified section of the executable if we are
878// not already in it!
879//
880static void SwitchSection(std::ostream &OS, std::string &CurSection,
881 const char *NewSection) {
882 if (CurSection != NewSection) {
883 CurSection = NewSection;
884 if (!CurSection.empty())
885 OS << "\t" << NewSection << "\n";
886 }
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000887}
888
Chris Lattnerad200712003-09-09 16:23:36 +0000889bool Printer::doFinalization(Module &M) {
Brian Gaekede420ae2003-07-23 20:25:08 +0000890 const TargetData &TD = TM.getTargetData();
Chris Lattnerad200712003-09-09 16:23:36 +0000891 std::string CurSection;
892
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000893 // Print out module-level global variables here.
Chris Lattnerad200712003-09-09 16:23:36 +0000894 for (Module::const_giterator I = M.gbegin(), E = M.gend(); I != E; ++I)
895 if (I->hasInitializer()) { // External global require no code
896 O << "\n\n";
897 std::string name = Mang->getValueName(I);
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000898 Constant *C = I->getInitializer();
Chris Lattnerad200712003-09-09 16:23:36 +0000899 unsigned Size = TD.getTypeSize(C->getType());
900 unsigned Align = TD.getTypeAlignment(C->getType());
901
902 if (C->isNullValue() &&
Chris Lattner72ac148d2003-10-16 18:29:00 +0000903 (I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
904 I->hasWeakLinkage() /* FIXME: Verify correct */)) {
Chris Lattnerad200712003-09-09 16:23:36 +0000905 SwitchSection(O, CurSection, ".data");
906 if (I->hasInternalLinkage())
907 O << "\t.local " << name << "\n";
908
909 O << "\t.comm " << name << "," << TD.getTypeSize(C->getType())
Chris Lattnere0121322003-08-03 23:37:09 +0000910 << "," << (unsigned)TD.getTypeAlignment(C->getType());
911 O << "\t\t# ";
912 WriteAsOperand(O, I, true, true, &M);
913 O << "\n";
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000914 } else {
Chris Lattnerad200712003-09-09 16:23:36 +0000915 switch (I->getLinkage()) {
916 case GlobalValue::LinkOnceLinkage:
Chris Lattner72ac148d2003-10-16 18:29:00 +0000917 case GlobalValue::WeakLinkage: // FIXME: Verify correct for weak.
Chris Lattnerad200712003-09-09 16:23:36 +0000918 // Nonnull linkonce -> weak
919 O << "\t.weak " << name << "\n";
920 SwitchSection(O, CurSection, "");
921 O << "\t.section\t.llvm.linkonce.d." << name << ",\"aw\",@progbits\n";
922 break;
923
924 case GlobalValue::AppendingLinkage:
925 // FIXME: appending linkage variables should go into a section of
926 // their name or something. For now, just emit them as external.
927 case GlobalValue::ExternalLinkage:
928 // If external or appending, declare as a global symbol
929 O << "\t.globl " << name << "\n";
930 // FALL THROUGH
931 case GlobalValue::InternalLinkage:
932 if (C->isNullValue())
933 SwitchSection(O, CurSection, ".bss");
934 else
935 SwitchSection(O, CurSection, ".data");
936 break;
937 }
938
939 O << "\t.align " << Align << "\n";
Chris Lattnere0121322003-08-03 23:37:09 +0000940 O << "\t.type " << name << ",@object\n";
Chris Lattnerad200712003-09-09 16:23:36 +0000941 O << "\t.size " << name << "," << Size << "\n";
Chris Lattnere0121322003-08-03 23:37:09 +0000942 O << name << ":\t\t\t\t# ";
943 WriteAsOperand(O, I, true, true, &M);
944 O << " = ";
945 WriteAsOperand(O, C, false, false, &M);
946 O << "\n";
Chris Lattnerac662d12003-11-03 20:19:49 +0000947 emitGlobalConstant(C);
Brian Gaeke0517c5a2003-07-11 21:57:01 +0000948 }
Brian Gaeke01d79ff2003-06-25 18:01:07 +0000949 }
Chris Lattnerad200712003-09-09 16:23:36 +0000950
Brian Gaeked9fb37a2003-07-24 20:20:44 +0000951 delete Mang;
Brian Gaeke9e474c42003-06-19 19:32:32 +0000952 return false; // success
953}