blob: 634f41b9200abfe51e6b1252d322a1e03dd69ffb [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
Evan Cheng071b9d52007-01-18 01:49:58 +000034static std::string computePICLabel(unsigned FnNum,
35 const TargetAsmInfo *TAI,
36 const X86Subtarget* Subtarget) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +000037 std::string label;
Evan Cheng071b9d52007-01-18 01:49:58 +000038 if (Subtarget->isTargetDarwin())
39 label = "\"L" + utostr_32(FnNum) + "$pb\"";
40 else if (Subtarget->isTargetELF())
41 label = ".Lllvm$" + utostr_32(FnNum) + "$piclabel";
42 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +000043 assert(0 && "Don't know how to print PIC label!\n");
44
45 return label;
46}
47
Chris Lattnerafbfded2006-10-05 02:43:52 +000048/// getSectionForFunction - Return the section that we should emit the
49/// specified function body into.
50std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
51 switch (F.getLinkage()) {
52 default: assert(0 && "Unknown linkage type!");
53 case Function::InternalLinkage:
54 case Function::DLLExportLinkage:
55 case Function::ExternalLinkage:
56 return TAI->getTextSection();
57 case Function::WeakLinkage:
58 case Function::LinkOnceLinkage:
59 if (Subtarget->isTargetDarwin()) {
60 return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Anton Korobeynikov317848f2007-01-03 11:43:14 +000061 } else if (Subtarget->isTargetCygMing()) {
Anton Korobeynikovb1c88022006-10-18 09:12:29 +000062 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"\n";
Chris Lattnerafbfded2006-10-05 02:43:52 +000063 } else {
64 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
65 ",\"ax\",@progbits\n";
66 }
67 }
68}
69
Chris Lattnerb36cbd02005-07-01 22:44:09 +000070/// runOnMachineFunction - This uses the printMachineInstruction()
71/// method to print assembly for each instruction.
72///
73bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Anton Korobeynikovab4022f2006-10-31 08:31:24 +000074 if (Subtarget->isTargetDarwin() ||
75 Subtarget->isTargetELF() ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +000076 Subtarget->isTargetCygMing()) {
Jim Laskeye29c2f52006-07-19 11:54:50 +000077 // Let PassManager know we need debug information and relay
Jim Laskey44c3b9f2007-01-26 21:22:28 +000078 // the MachineModuleInfo address on to DwarfWriter.
79 DW.SetModuleInfo(&getAnalysis<MachineModuleInfo>());
Jim Laskeye29c2f52006-07-19 11:54:50 +000080 }
Evan Cheng3c992d22006-03-07 02:02:57 +000081
Chris Lattner8b8b9512005-11-21 07:51:23 +000082 SetupMachineFunction(MF);
Chris Lattnerb36cbd02005-07-01 22:44:09 +000083 O << "\n\n";
84
85 // Print out constants referenced by the function
Chris Lattnerd939f6c2005-11-21 08:32:23 +000086 EmitConstantPool(MF.getConstantPool());
Chris Lattnerb36cbd02005-07-01 22:44:09 +000087
88 // Print out labels for the function.
Evan Cheng2338c5c2006-02-07 08:38:37 +000089 const Function *F = MF.getFunction();
Anton Korobeynikovf8248682006-09-20 22:03:51 +000090 unsigned CC = F->getCallingConv();
91
92 // Populate function information map. Actually, We don't want to populate
93 // non-stdcall or non-fastcall functions' information right now.
Chris Lattnere87e1152006-09-26 03:57:53 +000094 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
Chris Lattnerd15dff22007-04-17 17:21:52 +000095 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
Anton Korobeynikovf8248682006-09-20 22:03:51 +000096
97 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
98
Anton Korobeynikovd5f317d2007-01-07 00:41:20 +000099 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikovcea9d1d2007-01-06 18:24:26 +0000100
Evan Cheng2338c5c2006-02-07 08:38:37 +0000101 switch (F->getLinkage()) {
102 default: assert(0 && "Unknown linkage type!");
103 case Function::InternalLinkage: // Symbols default to internal.
Evan Cheng2338c5c2006-02-07 08:38:37 +0000104 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
105 break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000106 case Function::DLLExportLinkage:
107 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
108 //FALLS THROUGH
Evan Cheng2338c5c2006-02-07 08:38:37 +0000109 case Function::ExternalLinkage:
Evan Cheng2338c5c2006-02-07 08:38:37 +0000110 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000111 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000112 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000113 case Function::LinkOnceLinkage:
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000114 case Function::WeakLinkage:
Jim Laskeyea348582006-07-27 02:05:13 +0000115 if (Subtarget->isTargetDarwin()) {
Evan Chengf1616da2006-02-22 23:59:57 +0000116 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000117 O << "\t.weak_definition\t" << CurrentFnName << "\n";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000118 } else if (Subtarget->isTargetCygMing()) {
Evan Cheng932ad512006-05-25 21:59:08 +0000119 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000120 O << "\t.globl " << CurrentFnName << "\n";
Anton Korobeynikov66413092007-02-23 01:58:50 +0000121 O << "\t.linkonce discard\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000122 } else {
123 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
124 O << "\t.weak " << CurrentFnName << "\n";
125 }
126 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000127 }
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000128 if (F->hasHiddenVisibility()) {
Chris Lattner43bbc5c2007-01-14 06:29:53 +0000129 if (const char *Directive = TAI->getHiddenDirective())
130 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000131 } else if (F->hasProtectedVisibility()) {
132 if (const char *Directive = TAI->getProtectedDirective())
133 O << Directive << CurrentFnName << "\n";
134 }
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000135
136 if (Subtarget->isTargetELF())
137 O << "\t.type " << CurrentFnName << ",@function\n";
138 else if (Subtarget->isTargetCygMing()) {
139 O << "\t.def\t " << CurrentFnName
140 << ";\t.scl\t" <<
141 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
142 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
143 << ";\t.endef\n";
144 }
145
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000146 O << CurrentFnName << ":\n";
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000147 // Add some workaround for linkonce linkage on Cygwin\MinGW
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000148 if (Subtarget->isTargetCygMing() &&
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000149 (F->getLinkage() == Function::LinkOnceLinkage ||
150 F->getLinkage() == Function::WeakLinkage))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000151 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000152
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000153 if (Subtarget->isTargetDarwin() ||
154 Subtarget->isTargetELF() ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000155 Subtarget->isTargetCygMing()) {
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000156 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000157 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000158 }
159
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000160 // Print out code for the function.
161 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
162 I != E; ++I) {
163 // Print a label for the basic block.
Nate Begemancdf38c42006-05-02 05:37:32 +0000164 if (I->pred_begin() != I->pred_end()) {
165 printBasicBlockLabel(I, true);
166 O << '\n';
167 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000168 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
169 II != E; ++II) {
170 // Print the assembly for the instruction.
171 O << "\t";
172 printMachineInstruction(II);
173 }
174 }
Evan Cheng67afece2006-08-28 22:14:16 +0000175
Chris Lattner1da31ee2006-10-05 03:01:21 +0000176 // Print out jump tables referenced by the function.
177
178 // Mac OS X requires that the jump table follow the function, so that the jump
179 // table is part of the same atom that the function is in.
180 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Evan Cheng67afece2006-08-28 22:14:16 +0000181
Jim Laskey563321a2006-09-06 18:34:40 +0000182 if (TAI->hasDotTypeDotSizeDirective())
Nate Begeman73213f62005-07-12 01:37:28 +0000183 O << "\t.size " << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000184
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000185 if (Subtarget->isTargetDarwin() ||
186 Subtarget->isTargetELF() ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000187 Subtarget->isTargetCygMing()) {
Evan Chengd5948812006-03-07 02:23:26 +0000188 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000189 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000190 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000191
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000192 // We didn't modify anything.
193 return false;
194}
195
Evan Chengae19abc2007-01-18 22:27:12 +0000196static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
197 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
198}
199
200static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
201 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
202}
203
Chris Lattnera3b8c572006-02-06 23:41:19 +0000204void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000205 const char *Modifier, bool NotRIPRel) {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000206 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000207 const MRegisterInfo &RI = *TM.getRegisterInfo();
208 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000209 case MachineOperand::MO_Register: {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000210 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
211 "Virtual registers should not make it this far!");
212 O << '%';
Evan Cheng8f7f7122006-05-05 05:40:20 +0000213 unsigned Reg = MO.getReg();
Evan Chengcbe70e12006-05-31 22:34:26 +0000214 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000215 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
216 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
217 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
Evan Cheng8f7f7122006-05-05 05:40:20 +0000218 Reg = getX86SubSuperRegister(Reg, VT);
219 }
220 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000221 O << (char)tolower(*Name);
222 return;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000223 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000224
Chris Lattner63b3d712006-05-04 17:21:20 +0000225 case MachineOperand::MO_Immediate:
Chris Lattnerb4828722007-01-25 02:53:24 +0000226 if (!Modifier ||
227 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
Evan Cheng3c992d22006-03-07 02:02:57 +0000228 O << '$';
Evan Cheng138a24e2006-05-26 08:04:31 +0000229 O << MO.getImmedValue();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000230 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000231 case MachineOperand::MO_MachineBasicBlock:
232 printBasicBlockLabel(MO.getMachineBasicBlock());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000233 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000234 case MachineOperand::MO_JumpTableIndex: {
235 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
236 if (!isMemOp) O << '$';
Jim Laskey563321a2006-09-06 18:34:40 +0000237 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Nate Begeman37efe672006-04-22 18:53:45 +0000238 << MO.getJumpTableIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000239
240 if (TM.getRelocationModel() == Reloc::PIC_) {
241 if (Subtarget->isPICStyleStub())
Evan Cheng071b9d52007-01-18 01:49:58 +0000242 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
243 << "$pb\"";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000244 else if (Subtarget->isPICStyleGOT())
245 O << "@GOTOFF";
246 }
247
Evan Chengae19abc2007-01-18 22:27:12 +0000248 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000249 O << "(%rip)";
Nate Begeman37efe672006-04-22 18:53:45 +0000250 return;
251 }
Evan Chenga09bd812006-02-26 08:28:12 +0000252 case MachineOperand::MO_ConstantPoolIndex: {
253 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
254 if (!isMemOp) O << '$';
Jim Laskey563321a2006-09-06 18:34:40 +0000255 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Evan Chenga09bd812006-02-26 08:28:12 +0000256 << MO.getConstantPoolIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000257
258 if (TM.getRelocationModel() == Reloc::PIC_) {
259 if (Subtarget->isPICStyleStub())
Evan Cheng071b9d52007-01-18 01:49:58 +0000260 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
261 << "$pb\"";
Evan Chengae19abc2007-01-18 22:27:12 +0000262 else if (Subtarget->isPICStyleGOT())
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000263 O << "@GOTOFF";
264 }
265
Evan Chenga09bd812006-02-26 08:28:12 +0000266 int Offset = MO.getOffset();
267 if (Offset > 0)
268 O << "+" << Offset;
269 else if (Offset < 0)
270 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000271
Evan Chengae19abc2007-01-18 22:27:12 +0000272 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000273 O << "(%rip)";
Evan Chenga09bd812006-02-26 08:28:12 +0000274 return;
275 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000276 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000277 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000278 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000279 bool needCloseParen = false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000280
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000281 GlobalValue *GV = MO.getGlobal();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000282 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
283 bool isThreadLocal = GVar && GVar->isThreadLocal();
284
Evan Cheng25ab6902006-09-08 06:48:29 +0000285 std::string Name = Mang->getValueName(GV);
Chris Lattnere87e1152006-09-26 03:57:53 +0000286 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000287
Dan Gohman2a3250c2007-04-26 21:07:05 +0000288 if (!isMemOp && !isCallOp)
289 O << '$';
290 else if (Name[0] == '$') {
291 // The name begins with a dollar-sign. In order to avoid having it look
292 // like an integer immediate to the assembler, enclose it in parens.
293 O << '(';
294 needCloseParen = true;
295 }
296
Evan Chengae19abc2007-01-18 22:27:12 +0000297 if (printStub(TM, Subtarget)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000298 // Link-once, External, or Weakly-linked global variables need
299 // non-lazily-resolved stubs
Reid Spencer5cbf9852007-01-30 20:08:39 +0000300 if (GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000301 GV->hasWeakLinkage() ||
302 GV->hasLinkOnceLinkage()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000303 // Dynamically-resolved functions need a stub for the function.
Evan Cheng25ab6902006-09-08 06:48:29 +0000304 if (isCallOp && isa<Function>(GV)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000305 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000306 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000307 } else {
308 GVStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000309 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000310 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000311 } else {
Evan Chengae19abc2007-01-18 22:27:12 +0000312 if (GV->hasDLLImportLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000313 O << "__imp_";
Evan Cheng25ab6902006-09-08 06:48:29 +0000314 O << Name;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000315 }
316
Chris Lattner35d86fe2006-07-26 21:12:04 +0000317 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng071b9d52007-01-18 01:49:58 +0000318 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
319 << "$pb\"";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000320 } else {
321 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000322 O << "__imp_";
323 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 O << Name;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000325
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000326 if (isCallOp && isa<Function>(GV)) {
Evan Chengae19abc2007-01-18 22:27:12 +0000327 if (printGOT(TM, Subtarget)) {
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000328 // Assemble call via PLT for non-local symbols
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000329 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
330 GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000331 O << "@PLT";
332 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000333 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000334 // Save function name for later type emission
335 FnStubs.insert(Name);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000336 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000337 }
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000338
Evan Cheng6d7d3102006-12-01 07:38:23 +0000339 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000340 ExtWeakSymbols.insert(GV);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000341
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000342 int Offset = MO.getOffset();
343 if (Offset > 0)
344 O << "+" << Offset;
345 else if (Offset < 0)
346 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000347
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000348 if (isThreadLocal) {
349 if (TM.getRelocationModel() == Reloc::PIC_)
350 O << "@TLSGD"; // general dynamic TLS model
351 else
352 if (GV->isDeclaration())
353 O << "@INDNTPOFF"; // initial exec TLS model
354 else
355 O << "@NTPOFF"; // local exec TLS model
356 } else if (isMemOp) {
Evan Chengae19abc2007-01-18 22:27:12 +0000357 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000358 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000359 O << "@GOT";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000360 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000361 O << "@GOTOFF";
Evan Chengae19abc2007-01-18 22:27:12 +0000362 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel) {
363 if ((GV->hasExternalLinkage() ||
364 GV->hasWeakLinkage() ||
365 GV->hasLinkOnceLinkage()) &&
366 TM.getRelocationModel() != Reloc::Static)
367 O << "@GOTPCREL";
Dan Gohman2a3250c2007-04-26 21:07:05 +0000368
369 if (needCloseParen) {
370 needCloseParen = false;
371 O << ')';
372 }
373
Evan Chengae19abc2007-01-18 22:27:12 +0000374 // Use rip when possible to reduce code size, except when
375 // index or base register are also part of the address. e.g.
376 // foo(%rip)(%rcx,%rax,4) is not legal
377 O << "(%rip)";
378 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000379 }
380
Dan Gohman2a3250c2007-04-26 21:07:05 +0000381 if (needCloseParen)
382 O << ')';
383
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000384 return;
385 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000386 case MachineOperand::MO_ExternalSymbol: {
387 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000388 bool needCloseParen = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000389 std::string Name(TAI->getGlobalPrefix());
390 Name += MO.getSymbolName();
Evan Chengae19abc2007-01-18 22:27:12 +0000391 if (isCallOp && printStub(TM, Subtarget)) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000392 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000393 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Nate Begeman72b286b2005-07-08 00:23:26 +0000394 return;
395 }
Dan Gohman2a3250c2007-04-26 21:07:05 +0000396 if (!isCallOp)
397 O << '$';
398 else if (Name[0] == '$') {
399 // The name begins with a dollar-sign. In order to avoid having it look
400 // like an integer immediate to the assembler, enclose it in parens.
401 O << '(';
402 needCloseParen = true;
403 }
404
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000405 O << Name;
406
Evan Chengae19abc2007-01-18 22:27:12 +0000407 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000408 std::string GOTName(TAI->getGlobalPrefix());
409 GOTName+="_GLOBAL_OFFSET_TABLE_";
410 if (Name == GOTName)
Evan Chengae19abc2007-01-18 22:27:12 +0000411 // HACK! Emit extra offset to PC during printing GOT offset to
412 // compensate for the size of popl instruction. The resulting code
413 // should look like:
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000414 // call .piclabel
415 // piclabel:
416 // popl %some_register
417 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
Evan Cheng071b9d52007-01-18 01:49:58 +0000418 O << " + [.-"
419 << computePICLabel(getFunctionNumber(), TAI, Subtarget) << "]";
Evan Chengae19abc2007-01-18 22:27:12 +0000420
421 if (isCallOp)
422 O << "@PLT";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000423 }
424
Dan Gohman2a3250c2007-04-26 21:07:05 +0000425 if (needCloseParen)
426 O << ')';
427
Evan Chengae19abc2007-01-18 22:27:12 +0000428 if (!isCallOp && Subtarget->isPICStyleRIPRel())
Evan Cheng25ab6902006-09-08 06:48:29 +0000429 O << "(%rip)";
430
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000431 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000432 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000433 default:
434 O << "<unknown operand type>"; return;
435 }
436}
437
Nate Begeman391c5d22005-11-30 18:54:35 +0000438void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Nate Begeman6c7cb292005-07-14 22:52:25 +0000439 unsigned char value = MI->getOperand(Op).getImmedValue();
440 assert(value <= 7 && "Invalid ssecc argument!");
441 switch (value) {
442 case 0: O << "eq"; break;
443 case 1: O << "lt"; break;
444 case 2: O << "le"; break;
445 case 3: O << "unord"; break;
446 case 4: O << "neq"; break;
447 case 5: O << "nlt"; break;
448 case 6: O << "nle"; break;
449 case 7: O << "ord"; break;
450 }
451}
452
Evan Cheng25ab6902006-09-08 06:48:29 +0000453void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
454 const char *Modifier){
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000455 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner32c9a452007-01-14 00:13:07 +0000456 MachineOperand BaseReg = MI->getOperand(Op);
457 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000458 const MachineOperand &DispSpec = MI->getOperand(Op+3);
459
Evan Cheng28b514392006-12-05 19:50:18 +0000460 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Chengc9676de2006-08-29 22:14:48 +0000461 if (DispSpec.isGlobalAddress() ||
462 DispSpec.isConstantPoolIndex() ||
463 DispSpec.isJumpTableIndex()) {
Evan Cheng28b514392006-12-05 19:50:18 +0000464 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000465 } else {
466 int DispVal = DispSpec.getImmedValue();
467 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
468 O << DispVal;
469 }
470
471 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner32c9a452007-01-14 00:13:07 +0000472 unsigned ScaleVal = MI->getOperand(Op+1).getImmedValue();
473 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
474
475 // There are cases where we can end up with ESP/RSP in the indexreg slot.
476 // If this happens, swap the base/index register to support assemblers that
477 // don't work when the index is *SP.
478 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
479 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
480 std::swap(BaseReg, IndexReg);
481 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000482 }
Chris Lattner32c9a452007-01-14 00:13:07 +0000483
484 O << "(";
485 if (BaseReg.getReg())
486 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000487
488 if (IndexReg.getReg()) {
489 O << ",";
Chris Lattner32c9a452007-01-14 00:13:07 +0000490 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000491 if (ScaleVal != 1)
492 O << "," << ScaleVal;
493 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000494 O << ")";
495 }
496}
497
Evan Cheng7ccced62006-02-18 00:15:05 +0000498void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng071b9d52007-01-18 01:49:58 +0000499 std::string label = computePICLabel(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000500 O << label << "\n" << label << ":";
Evan Cheng7ccced62006-02-18 00:15:05 +0000501}
502
Evan Cheng62f27002006-04-28 23:11:40 +0000503
Evan Cheng55c25f22006-04-28 23:19:39 +0000504bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000505 const char Mode) {
506 const MRegisterInfo &RI = *TM.getRegisterInfo();
507 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000508 switch (Mode) {
509 default: return true; // Unknown mode.
510 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000511 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000512 break;
513 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000514 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000515 break;
516 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000517 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000518 break;
519 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000520 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000521 break;
522 }
523
Evan Cheng8f7f7122006-05-05 05:40:20 +0000524 O << '%';
525 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
526 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000527 return false;
528}
529
Evan Cheng3d48a902006-04-28 21:19:05 +0000530/// PrintAsmOperand - Print out an operand for an inline asm expression.
531///
532bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
533 unsigned AsmVariant,
534 const char *ExtraCode) {
535 // Does this asm operand have a single letter operand modifier?
536 if (ExtraCode && ExtraCode[0]) {
537 if (ExtraCode[1] != 0) return true; // Unknown modifier.
538
539 switch (ExtraCode[0]) {
540 default: return true; // Unknown modifier.
Chris Lattnerb4828722007-01-25 02:53:24 +0000541 case 'c': // Don't print "$" before a global var name or constant.
Chris Lattner0d924992006-10-31 20:12:30 +0000542 printOperand(MI, OpNo, "mem");
543 return false;
Evan Cheng62f27002006-04-28 23:11:40 +0000544 case 'b': // Print QImode register
545 case 'h': // Print QImode high register
546 case 'w': // Print HImode register
547 case 'k': // Print SImode register
Chris Lattner14393522007-03-25 02:01:03 +0000548 if (MI->getOperand(OpNo).isReg())
549 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
550 printOperand(MI, OpNo);
551 return false;
Chris Lattner7cd5e072007-03-25 01:44:57 +0000552
553 case 'P': // Don't print @PLT, but do print as memory.
554 printOperand(MI, OpNo, "mem");
555 return false;
Evan Cheng3d48a902006-04-28 21:19:05 +0000556 }
557 }
558
559 printOperand(MI, OpNo);
560 return false;
561}
562
563bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
564 unsigned OpNo,
565 unsigned AsmVariant,
566 const char *ExtraCode) {
567 if (ExtraCode && ExtraCode[0])
568 return true; // Unknown modifier.
569 printMemReference(MI, OpNo);
570 return false;
571}
572
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000573/// printMachineInstruction -- Print out a single X86 LLVM instruction
574/// MI in Intel syntax to the current output stream.
575///
576void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
577 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000578
Evan Cheng8f7f7122006-05-05 05:40:20 +0000579 // See if a truncate instruction can be turned into a nop.
580 switch (MI->getOpcode()) {
581 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000582 case X86::TRUNC_64to32:
583 case X86::TRUNC_64to16:
584 case X86::TRUNC_32to16:
585 case X86::TRUNC_32to8:
586 case X86::TRUNC_16to8:
587 case X86::TRUNC_32_to8:
588 case X86::TRUNC_16_to8: {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000589 const MachineOperand &MO0 = MI->getOperand(0);
590 const MachineOperand &MO1 = MI->getOperand(1);
591 unsigned Reg0 = MO0.getReg();
592 unsigned Reg1 = MO1.getReg();
Evan Cheng25ab6902006-09-08 06:48:29 +0000593 unsigned Opc = MI->getOpcode();
594 if (Opc == X86::TRUNC_64to32)
595 Reg1 = getX86SubSuperRegister(Reg1, MVT::i32);
596 else if (Opc == X86::TRUNC_32to16 || Opc == X86::TRUNC_64to16)
Evan Cheng403be7e2006-05-08 08:01:26 +0000597 Reg1 = getX86SubSuperRegister(Reg1, MVT::i16);
Evan Cheng8f7f7122006-05-05 05:40:20 +0000598 else
Evan Cheng403be7e2006-05-08 08:01:26 +0000599 Reg1 = getX86SubSuperRegister(Reg1, MVT::i8);
Jim Laskey563321a2006-09-06 18:34:40 +0000600 O << TAI->getCommentString() << " TRUNCATE ";
Evan Cheng403be7e2006-05-08 08:01:26 +0000601 if (Reg0 != Reg1)
602 O << "\n\t";
Evan Cheng8f7f7122006-05-05 05:40:20 +0000603 break;
604 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000605 case X86::PsMOVZX64rr32:
606 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
607 break;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000608 }
609
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000610 // Call the autogenerated instruction printer routines.
611 printInstruction(MI);
612}
613
614// Include the auto-generated portion of the assembly writer.
615#include "X86GenAsmWriter.inc"
616