blob: 1dd53c7a02a1d282f38fe6a24782e6739a75dd36 [file] [log] [blame]
Chris Lattnerb36cbd02005-07-01 22:44:09 +00001//===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to Intel assembly ----===//
2//
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//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to AT&T format assembly
12// language. This printer is the output mechanism used by `llc'.
13//
14//===----------------------------------------------------------------------===//
15
Chris Lattner95b2c7d2006-12-19 22:59:26 +000016#define DEBUG_TYPE "asm-printer"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000017#include "X86ATTAsmPrinter.h"
18#include "X86.h"
Anton Korobeynikovd05ca652007-01-16 16:41:57 +000019#include "X86COFF.h"
Anton Korobeynikovf8248682006-09-20 22:03:51 +000020#include "X86MachineFunctionInfo.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000021#include "X86TargetMachine.h"
Jim Laskeya0f3d172006-09-07 22:06:40 +000022#include "X86TargetAsmInfo.h"
Anton Korobeynikov7f705592007-01-12 19:20:47 +000023#include "llvm/ADT/StringExtras.h"
Anton Korobeynikovf8248682006-09-20 22:03:51 +000024#include "llvm/CallingConv.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000025#include "llvm/Module.h"
26#include "llvm/Support/Mangler.h"
Jim Laskeya0f3d172006-09-07 22:06:40 +000027#include "llvm/Target/TargetAsmInfo.h"
Evan Cheng7ccced62006-02-18 00:15:05 +000028#include "llvm/Target/TargetOptions.h"
Chris Lattner95b2c7d2006-12-19 22:59:26 +000029#include "llvm/ADT/Statistic.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000030using namespace llvm;
Chris Lattnerb36cbd02005-07-01 22:44:09 +000031
Chris Lattner95b2c7d2006-12-19 22:59:26 +000032STATISTIC(EmittedInsts, "Number of machine instrs printed");
33
Anton Korobeynikov7f705592007-01-12 19:20:47 +000034static std::string computePICLabel(unsigned fnNumber,
35 const X86Subtarget* Subtarget)
36{
37 std::string label;
38
39 if (Subtarget->isTargetDarwin()) {
40 label = "\"L" + utostr_32(fnNumber) + "$pb\"";
41 } else if (Subtarget->isTargetELF()) {
42 label = ".Lllvm$" + utostr_32(fnNumber) + "$piclabel";
43 } else
44 assert(0 && "Don't know how to print PIC label!\n");
45
46 return label;
47}
48
Chris Lattnerafbfded2006-10-05 02:43:52 +000049/// getSectionForFunction - Return the section that we should emit the
50/// specified function body into.
51std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
52 switch (F.getLinkage()) {
53 default: assert(0 && "Unknown linkage type!");
54 case Function::InternalLinkage:
55 case Function::DLLExportLinkage:
56 case Function::ExternalLinkage:
57 return TAI->getTextSection();
58 case Function::WeakLinkage:
59 case Function::LinkOnceLinkage:
60 if (Subtarget->isTargetDarwin()) {
61 return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Anton Korobeynikov317848f2007-01-03 11:43:14 +000062 } else if (Subtarget->isTargetCygMing()) {
Anton Korobeynikovb1c88022006-10-18 09:12:29 +000063 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"\n";
Chris Lattnerafbfded2006-10-05 02:43:52 +000064 } else {
65 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
66 ",\"ax\",@progbits\n";
67 }
68 }
69}
70
Chris Lattnerb36cbd02005-07-01 22:44:09 +000071/// runOnMachineFunction - This uses the printMachineInstruction()
72/// method to print assembly for each instruction.
73///
74bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +000075 if (Subtarget->isTargetDarwin() ||
76 Subtarget->isTargetELF() ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +000077 Subtarget->isTargetCygMing()) {
Jim Laskeye29c2f52006-07-19 11:54:50 +000078 // Let PassManager know we need debug information and relay
79 // the MachineDebugInfo address on to DwarfWriter.
80 DW.SetDebugInfo(&getAnalysis<MachineDebugInfo>());
81 }
Evan Cheng3c992d22006-03-07 02:02:57 +000082
Chris Lattner8b8b9512005-11-21 07:51:23 +000083 SetupMachineFunction(MF);
Chris Lattnerb36cbd02005-07-01 22:44:09 +000084 O << "\n\n";
85
86 // Print out constants referenced by the function
Chris Lattnerd939f6c2005-11-21 08:32:23 +000087 EmitConstantPool(MF.getConstantPool());
Chris Lattnerb36cbd02005-07-01 22:44:09 +000088
89 // Print out labels for the function.
Evan Cheng2338c5c2006-02-07 08:38:37 +000090 const Function *F = MF.getFunction();
Anton Korobeynikovf8248682006-09-20 22:03:51 +000091 unsigned CC = F->getCallingConv();
92
93 // Populate function information map. Actually, We don't want to populate
94 // non-stdcall or non-fastcall functions' information right now.
Chris Lattnere87e1152006-09-26 03:57:53 +000095 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
96 FunctionInfoMap[F] = *MF.getInfo<X86FunctionInfo>();
Anton Korobeynikovf8248682006-09-20 22:03:51 +000097
98 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
99
Anton Korobeynikovd5f317d2007-01-07 00:41:20 +0000100 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikovcea9d1d2007-01-06 18:24:26 +0000101
Evan Cheng2338c5c2006-02-07 08:38:37 +0000102 switch (F->getLinkage()) {
103 default: assert(0 && "Unknown linkage type!");
104 case Function::InternalLinkage: // Symbols default to internal.
Evan Cheng2338c5c2006-02-07 08:38:37 +0000105 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
106 break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000107 case Function::DLLExportLinkage:
108 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
109 //FALLS THROUGH
Evan Cheng2338c5c2006-02-07 08:38:37 +0000110 case Function::ExternalLinkage:
Evan Cheng2338c5c2006-02-07 08:38:37 +0000111 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000112 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000113 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000114 case Function::LinkOnceLinkage:
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000115 case Function::WeakLinkage:
Jim Laskeyea348582006-07-27 02:05:13 +0000116 if (Subtarget->isTargetDarwin()) {
Evan Chengf1616da2006-02-22 23:59:57 +0000117 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000118 O << "\t.weak_definition\t" << CurrentFnName << "\n";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000119 } else if (Subtarget->isTargetCygMing()) {
Evan Cheng932ad512006-05-25 21:59:08 +0000120 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000121 O << "\t.linkonce discard\n";
122 O << "\t.globl " << CurrentFnName << "\n";
123 } else {
124 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
125 O << "\t.weak " << CurrentFnName << "\n";
126 }
127 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000128 }
Chris Lattner43bbc5c2007-01-14 06:29:53 +0000129 if (F->hasHiddenVisibility())
130 if (const char *Directive = TAI->getHiddenDirective())
131 O << Directive << CurrentFnName << "\n";
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000132
133 if (Subtarget->isTargetELF())
134 O << "\t.type " << CurrentFnName << ",@function\n";
135 else if (Subtarget->isTargetCygMing()) {
136 O << "\t.def\t " << CurrentFnName
137 << ";\t.scl\t" <<
138 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
139 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
140 << ";\t.endef\n";
141 }
142
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000143 O << CurrentFnName << ":\n";
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000144 // Add some workaround for linkonce linkage on Cygwin\MinGW
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000145 if (Subtarget->isTargetCygMing() &&
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000146 (F->getLinkage() == Function::LinkOnceLinkage ||
147 F->getLinkage() == Function::WeakLinkage))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000148 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000149
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000150 if (Subtarget->isTargetDarwin() ||
151 Subtarget->isTargetELF() ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000152 Subtarget->isTargetCygMing()) {
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000153 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000154 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000155 }
156
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000157 // Print out code for the function.
158 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
159 I != E; ++I) {
160 // Print a label for the basic block.
Nate Begemancdf38c42006-05-02 05:37:32 +0000161 if (I->pred_begin() != I->pred_end()) {
162 printBasicBlockLabel(I, true);
163 O << '\n';
164 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000165 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
166 II != E; ++II) {
167 // Print the assembly for the instruction.
168 O << "\t";
169 printMachineInstruction(II);
170 }
171 }
Evan Cheng67afece2006-08-28 22:14:16 +0000172
Chris Lattner1da31ee2006-10-05 03:01:21 +0000173 // Print out jump tables referenced by the function.
174
175 // Mac OS X requires that the jump table follow the function, so that the jump
176 // table is part of the same atom that the function is in.
177 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Evan Cheng67afece2006-08-28 22:14:16 +0000178
Jim Laskey563321a2006-09-06 18:34:40 +0000179 if (TAI->hasDotTypeDotSizeDirective())
Nate Begeman73213f62005-07-12 01:37:28 +0000180 O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000181
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000182 if (Subtarget->isTargetDarwin() ||
183 Subtarget->isTargetELF() ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000184 Subtarget->isTargetCygMing()) {
Evan Chengd5948812006-03-07 02:23:26 +0000185 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000186 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000187 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000188
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000189 // We didn't modify anything.
190 return false;
191}
192
Chris Lattnera3b8c572006-02-06 23:41:19 +0000193void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000194 const char *Modifier, bool NotRIPRel) {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000195 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000196 const MRegisterInfo &RI = *TM.getRegisterInfo();
197 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000198 case MachineOperand::MO_Register: {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000199 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
200 "Virtual registers should not make it this far!");
201 O << '%';
Evan Cheng8f7f7122006-05-05 05:40:20 +0000202 unsigned Reg = MO.getReg();
Evan Chengcbe70e12006-05-31 22:34:26 +0000203 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000204 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
205 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
206 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
Evan Cheng8f7f7122006-05-05 05:40:20 +0000207 Reg = getX86SubSuperRegister(Reg, VT);
208 }
209 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000210 O << (char)tolower(*Name);
211 return;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000212 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000213
Chris Lattner63b3d712006-05-04 17:21:20 +0000214 case MachineOperand::MO_Immediate:
Evan Cheng3c992d22006-03-07 02:02:57 +0000215 if (!Modifier || strcmp(Modifier, "debug") != 0)
216 O << '$';
Evan Cheng138a24e2006-05-26 08:04:31 +0000217 O << MO.getImmedValue();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000218 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000219 case MachineOperand::MO_MachineBasicBlock:
220 printBasicBlockLabel(MO.getMachineBasicBlock());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000221 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000222 case MachineOperand::MO_JumpTableIndex: {
223 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
224 if (!isMemOp) O << '$';
Jim Laskey563321a2006-09-06 18:34:40 +0000225 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Nate Begeman37efe672006-04-22 18:53:45 +0000226 << MO.getJumpTableIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000227
228 if (TM.getRelocationModel() == Reloc::PIC_) {
229 if (Subtarget->isPICStyleStub())
230 O << "-\"L" << getFunctionNumber() << "$pb\"";
231 else if (Subtarget->isPICStyleGOT())
232 O << "@GOTOFF";
233 }
234
Evan Cheng28b514392006-12-05 19:50:18 +0000235 if (isMemOp && Subtarget->is64Bit() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000236 O << "(%rip)";
Nate Begeman37efe672006-04-22 18:53:45 +0000237 return;
238 }
Evan Chenga09bd812006-02-26 08:28:12 +0000239 case MachineOperand::MO_ConstantPoolIndex: {
240 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
241 if (!isMemOp) O << '$';
Jim Laskey563321a2006-09-06 18:34:40 +0000242 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Evan Chenga09bd812006-02-26 08:28:12 +0000243 << MO.getConstantPoolIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000244
245 if (TM.getRelocationModel() == Reloc::PIC_) {
246 if (Subtarget->isPICStyleStub())
247 O << "-\"L" << getFunctionNumber() << "$pb\"";
248 if (Subtarget->isPICStyleGOT())
249 O << "@GOTOFF";
250 }
251
Evan Chenga09bd812006-02-26 08:28:12 +0000252 int Offset = MO.getOffset();
253 if (Offset > 0)
254 O << "+" << Offset;
255 else if (Offset < 0)
256 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000257
Evan Cheng28b514392006-12-05 19:50:18 +0000258 if (isMemOp && Subtarget->is64Bit() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000259 O << "(%rip)";
Evan Chenga09bd812006-02-26 08:28:12 +0000260 return;
261 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000262 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000263 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000264 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Evan Cheng7ccced62006-02-18 00:15:05 +0000265 if (!isMemOp && !isCallOp) O << '$';
Evan Cheng25ab6902006-09-08 06:48:29 +0000266
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000267 GlobalValue *GV = MO.getGlobal();
Evan Cheng25ab6902006-09-08 06:48:29 +0000268 std::string Name = Mang->getValueName(GV);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000269
Evan Cheng25ab6902006-09-08 06:48:29 +0000270 bool isExt = (GV->isExternal() || GV->hasWeakLinkage() ||
271 GV->hasLinkOnceLinkage());
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000272 bool isHidden = GV->hasHiddenVisibility();
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000273
Chris Lattnere87e1152006-09-26 03:57:53 +0000274 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000275
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000276 if (Subtarget->isPICStyleStub()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000277 // Link-once, External, or Weakly-linked global variables need
278 // non-lazily-resolved stubs
Evan Cheng25ab6902006-09-08 06:48:29 +0000279 if (isExt) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000280 // Dynamically-resolved functions need a stub for the function.
Evan Cheng25ab6902006-09-08 06:48:29 +0000281 if (isCallOp && isa<Function>(GV)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000282 FnStubs.insert(Name);
283 O << "L" << Name << "$stub";
284 } else {
285 GVStubs.insert(Name);
286 O << "L" << Name << "$non_lazy_ptr";
287 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000288 } else {
289 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000290 O << "__imp_";
291 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000292 O << Name;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000293 }
294
Chris Lattner35d86fe2006-07-26 21:12:04 +0000295 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Chenga0ea0532006-02-23 02:43:52 +0000296 O << "-\"L" << getFunctionNumber() << "$pb\"";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000297 } else {
298 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000299 O << "__imp_";
300 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000301 O << Name;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000302
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000303 if (isCallOp && isa<Function>(GV)) {
304 if (Subtarget->isPICStyleGOT()) {
305 // Assemble call via PLT for non-local symbols
306 if (!isHidden || GV->isExternal())
307 O << "@PLT";
308 }
309 if (Subtarget->isTargetCygMing() && GV->isExternal()) {
310 // Save function name for later type emission
311 FnStubs.insert(Name);
312 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000313 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000314 }
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000315
Evan Cheng6d7d3102006-12-01 07:38:23 +0000316 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000317 ExtWeakSymbols.insert(GV);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000318
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000319 int Offset = MO.getOffset();
320 if (Offset > 0)
321 O << "+" << Offset;
322 else if (Offset < 0)
323 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000324
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000325 if (isMemOp) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000326 if (Subtarget->isPICStyleGOT()) {
327 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000328 O << "@GOT";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000329 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000330 O << "@GOTOFF";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000331 } else
332 if (isExt && Subtarget->isPICStyleRIPRel())
333 O << "@GOTPCREL(%rip)";
334 else if (Subtarget->is64Bit() && !NotRIPRel)
335 // Use rip when possible to reduce code size, except when
336 // index or base register are also part of the address. e.g.
337 // foo(%rip)(%rcx,%rax,4) is not legal
338 O << "(%rip)";
Evan Cheng25ab6902006-09-08 06:48:29 +0000339 }
340
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000341 return;
342 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000343 case MachineOperand::MO_ExternalSymbol: {
344 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000345 std::string Name(TAI->getGlobalPrefix());
346 Name += MO.getSymbolName();
347 if (isCallOp && Subtarget->isPICStyleStub()) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000348 FnStubs.insert(Name);
349 O << "L" << Name << "$stub";
350 return;
351 }
Evan Cheng4c1aa862006-02-22 20:19:42 +0000352 if (!isCallOp) O << '$';
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000353 O << Name;
354
355 if (Subtarget->isPICStyleGOT()) {
356 std::string GOTName(TAI->getGlobalPrefix());
357 GOTName+="_GLOBAL_OFFSET_TABLE_";
358 if (Name == GOTName)
359 // Really hack! Emit extra offset to PC during printing GOT offset to
360 // compensate size of popl instruction. The resulting code should look
361 // like:
362 // call .piclabel
363 // piclabel:
364 // popl %some_register
365 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
366 O << " + [.-" << computePICLabel(getFunctionNumber(), Subtarget) << "]";
367 }
368
369 if (isCallOp && Subtarget->isPICStyleGOT())
370 O << "@PLT";
Evan Cheng25ab6902006-09-08 06:48:29 +0000371
Evan Cheng35c1c042006-12-05 06:43:58 +0000372 if (!isCallOp && Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +0000373 O << "(%rip)";
374
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000375 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000376 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000377 default:
378 O << "<unknown operand type>"; return;
379 }
380}
381
Nate Begeman391c5d22005-11-30 18:54:35 +0000382void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Nate Begeman6c7cb292005-07-14 22:52:25 +0000383 unsigned char value = MI->getOperand(Op).getImmedValue();
384 assert(value <= 7 && "Invalid ssecc argument!");
385 switch (value) {
386 case 0: O << "eq"; break;
387 case 1: O << "lt"; break;
388 case 2: O << "le"; break;
389 case 3: O << "unord"; break;
390 case 4: O << "neq"; break;
391 case 5: O << "nlt"; break;
392 case 6: O << "nle"; break;
393 case 7: O << "ord"; break;
394 }
395}
396
Evan Cheng25ab6902006-09-08 06:48:29 +0000397void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
398 const char *Modifier){
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000399 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner32c9a452007-01-14 00:13:07 +0000400 MachineOperand BaseReg = MI->getOperand(Op);
401 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000402 const MachineOperand &DispSpec = MI->getOperand(Op+3);
403
Evan Cheng28b514392006-12-05 19:50:18 +0000404 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Chengc9676de2006-08-29 22:14:48 +0000405 if (DispSpec.isGlobalAddress() ||
406 DispSpec.isConstantPoolIndex() ||
407 DispSpec.isJumpTableIndex()) {
Evan Cheng28b514392006-12-05 19:50:18 +0000408 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000409 } else {
410 int DispVal = DispSpec.getImmedValue();
411 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
412 O << DispVal;
413 }
414
415 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner32c9a452007-01-14 00:13:07 +0000416 unsigned ScaleVal = MI->getOperand(Op+1).getImmedValue();
417 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
418
419 // There are cases where we can end up with ESP/RSP in the indexreg slot.
420 // If this happens, swap the base/index register to support assemblers that
421 // don't work when the index is *SP.
422 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
423 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
424 std::swap(BaseReg, IndexReg);
425 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000426 }
Chris Lattner32c9a452007-01-14 00:13:07 +0000427
428 O << "(";
429 if (BaseReg.getReg())
430 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000431
432 if (IndexReg.getReg()) {
433 O << ",";
Chris Lattner32c9a452007-01-14 00:13:07 +0000434 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000435 if (ScaleVal != 1)
436 O << "," << ScaleVal;
437 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000438 O << ")";
439 }
440}
441
Evan Cheng7ccced62006-02-18 00:15:05 +0000442void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000443 std::string label = computePICLabel(getFunctionNumber(), Subtarget);
444 O << label << "\n" << label << ":";
Evan Cheng7ccced62006-02-18 00:15:05 +0000445}
446
Evan Cheng62f27002006-04-28 23:11:40 +0000447
Evan Cheng55c25f22006-04-28 23:19:39 +0000448bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000449 const char Mode) {
450 const MRegisterInfo &RI = *TM.getRegisterInfo();
451 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000452 switch (Mode) {
453 default: return true; // Unknown mode.
454 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000455 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000456 break;
457 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000458 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000459 break;
460 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000461 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000462 break;
463 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000464 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000465 break;
466 }
467
Evan Cheng8f7f7122006-05-05 05:40:20 +0000468 O << '%';
469 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
470 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000471 return false;
472}
473
Evan Cheng3d48a902006-04-28 21:19:05 +0000474/// PrintAsmOperand - Print out an operand for an inline asm expression.
475///
476bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
477 unsigned AsmVariant,
478 const char *ExtraCode) {
479 // Does this asm operand have a single letter operand modifier?
480 if (ExtraCode && ExtraCode[0]) {
481 if (ExtraCode[1] != 0) return true; // Unknown modifier.
482
483 switch (ExtraCode[0]) {
484 default: return true; // Unknown modifier.
Chris Lattner0d924992006-10-31 20:12:30 +0000485 case 'c': // Don't print "$" before a global var name.
486 printOperand(MI, OpNo, "mem");
487 return false;
Evan Cheng62f27002006-04-28 23:11:40 +0000488 case 'b': // Print QImode register
489 case 'h': // Print QImode high register
490 case 'w': // Print HImode register
491 case 'k': // Print SImode register
Evan Cheng55c25f22006-04-28 23:19:39 +0000492 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
Evan Cheng3d48a902006-04-28 21:19:05 +0000493 }
494 }
495
496 printOperand(MI, OpNo);
497 return false;
498}
499
500bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
501 unsigned OpNo,
502 unsigned AsmVariant,
503 const char *ExtraCode) {
504 if (ExtraCode && ExtraCode[0])
505 return true; // Unknown modifier.
506 printMemReference(MI, OpNo);
507 return false;
508}
509
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000510/// printMachineInstruction -- Print out a single X86 LLVM instruction
511/// MI in Intel syntax to the current output stream.
512///
513void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
514 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000515
Evan Cheng8f7f7122006-05-05 05:40:20 +0000516 // See if a truncate instruction can be turned into a nop.
517 switch (MI->getOpcode()) {
518 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000519 case X86::TRUNC_64to32:
520 case X86::TRUNC_64to16:
521 case X86::TRUNC_32to16:
522 case X86::TRUNC_32to8:
523 case X86::TRUNC_16to8:
524 case X86::TRUNC_32_to8:
525 case X86::TRUNC_16_to8: {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000526 const MachineOperand &MO0 = MI->getOperand(0);
527 const MachineOperand &MO1 = MI->getOperand(1);
528 unsigned Reg0 = MO0.getReg();
529 unsigned Reg1 = MO1.getReg();
Evan Cheng25ab6902006-09-08 06:48:29 +0000530 unsigned Opc = MI->getOpcode();
531 if (Opc == X86::TRUNC_64to32)
532 Reg1 = getX86SubSuperRegister(Reg1, MVT::i32);
533 else if (Opc == X86::TRUNC_32to16 || Opc == X86::TRUNC_64to16)
Evan Cheng403be7e2006-05-08 08:01:26 +0000534 Reg1 = getX86SubSuperRegister(Reg1, MVT::i16);
Evan Cheng8f7f7122006-05-05 05:40:20 +0000535 else
Evan Cheng403be7e2006-05-08 08:01:26 +0000536 Reg1 = getX86SubSuperRegister(Reg1, MVT::i8);
Jim Laskey563321a2006-09-06 18:34:40 +0000537 O << TAI->getCommentString() << " TRUNCATE ";
Evan Cheng403be7e2006-05-08 08:01:26 +0000538 if (Reg0 != Reg1)
539 O << "\n\t";
Evan Cheng8f7f7122006-05-05 05:40:20 +0000540 break;
541 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000542 case X86::PsMOVZX64rr32:
543 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
544 break;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000545 }
546
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000547 // Call the autogenerated instruction printer routines.
548 printInstruction(MI);
549}
550
551// Include the auto-generated portion of the assembly writer.
552#include "X86GenAsmWriter.inc"
553