blob: 304e0f7c3463aa9b2912d590f3fc56c5cf20b0b8 [file] [log] [blame]
Dan Gohman8bc49c22007-06-25 15:11:25 +00001//===-- X86ATTAsmPrinter.cpp - Convert X86 LLVM code to AT&T assembly -----===//
Chris Lattnerb36cbd02005-07-01 22:44:09 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb36cbd02005-07-01 22:44:09 +00007//
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"
Anton Korobeynikov9de19342007-11-14 09:18:41 +000025#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000026#include "llvm/Module.h"
27#include "llvm/Support/Mangler.h"
Jim Laskeya0f3d172006-09-07 22:06:40 +000028#include "llvm/Target/TargetAsmInfo.h"
Evan Cheng7ccced62006-02-18 00:15:05 +000029#include "llvm/Target/TargetOptions.h"
Chris Lattner95b2c7d2006-12-19 22:59:26 +000030#include "llvm/ADT/Statistic.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000031using namespace llvm;
Chris Lattnerb36cbd02005-07-01 22:44:09 +000032
Chris Lattner95b2c7d2006-12-19 22:59:26 +000033STATISTIC(EmittedInsts, "Number of machine instrs printed");
34
Evan Cheng0475ab52008-01-05 00:41:47 +000035static std::string getPICLabelString(unsigned FnNum,
36 const TargetAsmInfo *TAI,
37 const X86Subtarget* Subtarget) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +000038 std::string label;
Evan Cheng071b9d52007-01-18 01:49:58 +000039 if (Subtarget->isTargetDarwin())
Evan Cheng347d39f2007-10-14 05:57:21 +000040 label = "\"L" + utostr_32(FnNum) + "$pb\"";
Evan Cheng071b9d52007-01-18 01:49:58 +000041 else if (Subtarget->isTargetELF())
Evan Cheng0475ab52008-01-05 00:41:47 +000042 label = ".Lllvm$" + utostr_32(FnNum) + "." + "$piclabel";
Evan Cheng071b9d52007-01-18 01:49:58 +000043 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +000044 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()) {
Dan Gohmanaf67ea72007-06-14 15:00:27 +000063 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"";
Chris Lattnerafbfded2006-10-05 02:43:52 +000064 } else {
65 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
Dan Gohmanaf67ea72007-06-14 15:00:27 +000066 ",\"ax\",@progbits";
Chris Lattnerafbfded2006-10-05 02:43:52 +000067 }
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 Korobeynikov2a07e2f2007-05-05 09:04:50 +000075 if (TAI->doesSupportDebugInformation()) {
Jim Laskeye29c2f52006-07-19 11:54:50 +000076 // Let PassManager know we need debug information and relay
Jim Laskey44c3b9f2007-01-26 21:22:28 +000077 // the MachineModuleInfo address on to DwarfWriter.
Bill Wendlingd60da492007-09-11 08:27:17 +000078 MMI = &getAnalysis<MachineModuleInfo>();
79 DW.SetModuleInfo(MMI);
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 Chengad5e9ca2007-07-25 23:36:05 +0000104 if (Subtarget->isTargetDarwin())
105 // FIXME: This should be parameterized somewhere.
106 EmitAlignment(4, F, 0, true, 0x90);
107 else
Evan Cheng422cba62008-02-19 02:05:16 +0000108 EmitAlignment(4, F);
Evan Cheng2338c5c2006-02-07 08:38:37 +0000109 break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000110 case Function::DLLExportLinkage:
111 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
112 //FALLS THROUGH
Evan Cheng2338c5c2006-02-07 08:38:37 +0000113 case Function::ExternalLinkage:
Evan Chengad5e9ca2007-07-25 23:36:05 +0000114 if (Subtarget->isTargetDarwin())
115 // FIXME: This should be parameterized somewhere.
116 EmitAlignment(4, F, 0, true, 0x90);
117 else
Evan Cheng422cba62008-02-19 02:05:16 +0000118 EmitAlignment(4, F);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000119 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000120 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000121 case Function::LinkOnceLinkage:
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000122 case Function::WeakLinkage:
Jim Laskeyea348582006-07-27 02:05:13 +0000123 if (Subtarget->isTargetDarwin()) {
Evan Chengad5e9ca2007-07-25 23:36:05 +0000124 // FIXME: This should be parameterized somewhere.
125 EmitAlignment(4, F, 0, true, 0x90);
Evan Chengf1616da2006-02-22 23:59:57 +0000126 O << "\t.globl\t" << CurrentFnName << "\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000127 O << TAI->getWeakDefDirective() << CurrentFnName << "\n";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000128 } else if (Subtarget->isTargetCygMing()) {
Evan Cheng422cba62008-02-19 02:05:16 +0000129 EmitAlignment(4, F);
Dan Gohman4e8e8312007-10-05 15:54:58 +0000130 O << "\t.globl\t" << CurrentFnName << "\n";
Anton Korobeynikov66413092007-02-23 01:58:50 +0000131 O << "\t.linkonce discard\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000132 } else {
Evan Cheng422cba62008-02-19 02:05:16 +0000133 EmitAlignment(4, F);
Dan Gohman825811d2007-07-30 15:08:02 +0000134 O << "\t.weak\t" << CurrentFnName << "\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000135 }
136 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000137 }
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000138 if (F->hasHiddenVisibility()) {
Chris Lattner43bbc5c2007-01-14 06:29:53 +0000139 if (const char *Directive = TAI->getHiddenDirective())
140 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000141 } else if (F->hasProtectedVisibility()) {
142 if (const char *Directive = TAI->getProtectedDirective())
143 O << Directive << CurrentFnName << "\n";
144 }
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000145
146 if (Subtarget->isTargetELF())
Dan Gohman825811d2007-07-30 15:08:02 +0000147 O << "\t.type\t" << CurrentFnName << ",@function\n";
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000148 else if (Subtarget->isTargetCygMing()) {
149 O << "\t.def\t " << CurrentFnName
150 << ";\t.scl\t" <<
151 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
152 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
153 << ";\t.endef\n";
154 }
155
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000156 O << CurrentFnName << ":\n";
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000157 // Add some workaround for linkonce linkage on Cygwin\MinGW
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000158 if (Subtarget->isTargetCygMing() &&
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000159 (F->getLinkage() == Function::LinkOnceLinkage ||
160 F->getLinkage() == Function::WeakLinkage))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000161 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000162
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000163 if (TAI->doesSupportDebugInformation()) {
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000164 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000165 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000166 }
167
Bill Wendling824a7212008-01-26 09:03:52 +0000168 if (Subtarget->isTargetDarwin()) {
169 // If the function is empty, then we need to emit *something*. Otherwise,
170 // the function's label might be associated with something that it wasn't
171 // meant to be associated with. We emit a noop in this situation.
172 MachineFunction::iterator I = MF.begin();
173
174 if (++I == MF.end() && MF.front().empty())
175 O << "\tnop\n";
176 }
177
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000178 // Print out code for the function.
179 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
180 I != E; ++I) {
181 // Print a label for the basic block.
Dan Gohmancb406c22007-10-03 19:26:29 +0000182 if (!I->pred_empty()) {
Nate Begemancdf38c42006-05-02 05:37:32 +0000183 printBasicBlockLabel(I, true);
184 O << '\n';
185 }
Bill Wendling824a7212008-01-26 09:03:52 +0000186 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
187 II != IE; ++II) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000188 // Print the assembly for the instruction.
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000189 printMachineInstruction(II);
190 }
191 }
Evan Cheng67afece2006-08-28 22:14:16 +0000192
Jim Laskey563321a2006-09-06 18:34:40 +0000193 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmana9f64342007-08-01 14:42:30 +0000194 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000195
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000196 if (TAI->doesSupportDebugInformation()) {
Evan Chengd5948812006-03-07 02:23:26 +0000197 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000198 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000199 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000200
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000201 // Print out jump tables referenced by the function.
202 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
203
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000204 // We didn't modify anything.
205 return false;
206}
207
Evan Chengae19abc2007-01-18 22:27:12 +0000208static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
209 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
210}
211
212static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
213 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
214}
215
Chris Lattnera3b8c572006-02-06 23:41:19 +0000216void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000217 const char *Modifier, bool NotRIPRel) {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000218 const MachineOperand &MO = MI->getOperand(OpNo);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000219 const TargetRegisterInfo &RI = *TM.getRegisterInfo();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000220 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000221 case MachineOperand::MO_Register: {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000222 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000223 "Virtual registers should not make it this far!");
224 O << '%';
Evan Cheng8f7f7122006-05-05 05:40:20 +0000225 unsigned Reg = MO.getReg();
Evan Chengcbe70e12006-05-31 22:34:26 +0000226 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000227 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
228 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
229 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
Evan Cheng8f7f7122006-05-05 05:40:20 +0000230 Reg = getX86SubSuperRegister(Reg, VT);
231 }
Bill Wendling74ab84c2008-02-26 21:11:01 +0000232 for (const char *Name = RI.get(Reg).AsmName; *Name; ++Name)
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000233 O << (char)tolower(*Name);
234 return;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000235 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000236
Chris Lattner63b3d712006-05-04 17:21:20 +0000237 case MachineOperand::MO_Immediate:
Chris Lattnerb4828722007-01-25 02:53:24 +0000238 if (!Modifier ||
239 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
Evan Cheng3c992d22006-03-07 02:02:57 +0000240 O << '$';
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000241 O << MO.getImm();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000242 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000243 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000244 printBasicBlockLabel(MO.getMBB());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000245 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000246 case MachineOperand::MO_JumpTableIndex: {
247 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
248 if (!isMemOp) O << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000249 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000250 << MO.getIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000251
252 if (TM.getRelocationModel() == Reloc::PIC_) {
253 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +0000254 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
255 << "$pb\"";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000256 else if (Subtarget->isPICStyleGOT())
257 O << "@GOTOFF";
258 }
259
Evan Chengae19abc2007-01-18 22:27:12 +0000260 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000261 O << "(%rip)";
Nate Begeman37efe672006-04-22 18:53:45 +0000262 return;
263 }
Evan Chenga09bd812006-02-26 08:28:12 +0000264 case MachineOperand::MO_ConstantPoolIndex: {
265 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
266 if (!isMemOp) O << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000267 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000268 << MO.getIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000269
270 if (TM.getRelocationModel() == Reloc::PIC_) {
271 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +0000272 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
273 << "$pb\"";
Evan Chengae19abc2007-01-18 22:27:12 +0000274 else if (Subtarget->isPICStyleGOT())
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000275 O << "@GOTOFF";
276 }
277
Evan Chenga09bd812006-02-26 08:28:12 +0000278 int Offset = MO.getOffset();
279 if (Offset > 0)
280 O << "+" << Offset;
281 else if (Offset < 0)
282 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000283
Evan Chengae19abc2007-01-18 22:27:12 +0000284 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000285 O << "(%rip)";
Evan Chenga09bd812006-02-26 08:28:12 +0000286 return;
287 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000288 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000289 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000290 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000291 bool needCloseParen = false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000292
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000293 GlobalValue *GV = MO.getGlobal();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000294 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
295 bool isThreadLocal = GVar && GVar->isThreadLocal();
296
Evan Cheng25ab6902006-09-08 06:48:29 +0000297 std::string Name = Mang->getValueName(GV);
Chris Lattnere87e1152006-09-26 03:57:53 +0000298 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000299
Dan Gohman2a3250c2007-04-26 21:07:05 +0000300 if (!isMemOp && !isCallOp)
301 O << '$';
302 else if (Name[0] == '$') {
303 // The name begins with a dollar-sign. In order to avoid having it look
304 // like an integer immediate to the assembler, enclose it in parens.
305 O << '(';
306 needCloseParen = true;
307 }
308
Evan Chengae19abc2007-01-18 22:27:12 +0000309 if (printStub(TM, Subtarget)) {
Evan Cheng111354f2007-06-04 18:54:57 +0000310 // Link-once, declaration, or Weakly-linked global variables need
Evan Cheng2338c5c2006-02-07 08:38:37 +0000311 // non-lazily-resolved stubs
Reid Spencer5cbf9852007-01-30 20:08:39 +0000312 if (GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000313 GV->hasWeakLinkage() ||
314 GV->hasLinkOnceLinkage()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000315 // Dynamically-resolved functions need a stub for the function.
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 if (isCallOp && isa<Function>(GV)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000317 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000318 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000319 } else {
320 GVStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000321 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000322 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000323 } else {
Evan Chengae19abc2007-01-18 22:27:12 +0000324 if (GV->hasDLLImportLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000325 O << "__imp_";
Evan Cheng25ab6902006-09-08 06:48:29 +0000326 O << Name;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000327 }
328
Chris Lattner35d86fe2006-07-26 21:12:04 +0000329 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng0475ab52008-01-05 00:41:47 +0000330 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000331 } else {
332 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000333 O << "__imp_";
334 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000335 O << Name;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000336
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000337 if (isCallOp && isa<Function>(GV)) {
Evan Chengae19abc2007-01-18 22:27:12 +0000338 if (printGOT(TM, Subtarget)) {
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000339 // Assemble call via PLT for non-local symbols
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000340 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
341 GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000342 O << "@PLT";
343 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000344 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000345 // Save function name for later type emission
346 FnStubs.insert(Name);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000347 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000348 }
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000349
Evan Cheng6d7d3102006-12-01 07:38:23 +0000350 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000351 ExtWeakSymbols.insert(GV);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000352
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000353 int Offset = MO.getOffset();
354 if (Offset > 0)
355 O << "+" << Offset;
356 else if (Offset < 0)
357 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000358
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000359 if (isThreadLocal) {
360 if (TM.getRelocationModel() == Reloc::PIC_)
361 O << "@TLSGD"; // general dynamic TLS model
362 else
363 if (GV->isDeclaration())
364 O << "@INDNTPOFF"; // initial exec TLS model
365 else
366 O << "@NTPOFF"; // local exec TLS model
367 } else if (isMemOp) {
Evan Chengae19abc2007-01-18 22:27:12 +0000368 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000369 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000370 O << "@GOT";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000371 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000372 O << "@GOTOFF";
Chris Lattnerfe6575c2007-11-04 19:23:28 +0000373 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
374 TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov99e635c2008-01-20 13:59:37 +0000375 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Evan Chengae19abc2007-01-18 22:27:12 +0000376 O << "@GOTPCREL";
Dan Gohman2a3250c2007-04-26 21:07:05 +0000377
378 if (needCloseParen) {
379 needCloseParen = false;
380 O << ')';
381 }
382
Evan Chengae19abc2007-01-18 22:27:12 +0000383 // Use rip when possible to reduce code size, except when
384 // index or base register are also part of the address. e.g.
385 // foo(%rip)(%rcx,%rax,4) is not legal
386 O << "(%rip)";
387 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000388 }
389
Dan Gohman2a3250c2007-04-26 21:07:05 +0000390 if (needCloseParen)
391 O << ')';
392
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000393 return;
394 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000395 case MachineOperand::MO_ExternalSymbol: {
396 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000397 bool needCloseParen = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000398 std::string Name(TAI->getGlobalPrefix());
399 Name += MO.getSymbolName();
Evan Chengae19abc2007-01-18 22:27:12 +0000400 if (isCallOp && printStub(TM, Subtarget)) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000401 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000402 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Nate Begeman72b286b2005-07-08 00:23:26 +0000403 return;
404 }
Dan Gohman2a3250c2007-04-26 21:07:05 +0000405 if (!isCallOp)
406 O << '$';
407 else if (Name[0] == '$') {
408 // The name begins with a dollar-sign. In order to avoid having it look
409 // like an integer immediate to the assembler, enclose it in parens.
410 O << '(';
411 needCloseParen = true;
412 }
413
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000414 O << Name;
415
Evan Chengae19abc2007-01-18 22:27:12 +0000416 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000417 std::string GOTName(TAI->getGlobalPrefix());
418 GOTName+="_GLOBAL_OFFSET_TABLE_";
419 if (Name == GOTName)
Evan Chengae19abc2007-01-18 22:27:12 +0000420 // HACK! Emit extra offset to PC during printing GOT offset to
421 // compensate for the size of popl instruction. The resulting code
422 // should look like:
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000423 // call .piclabel
424 // piclabel:
425 // popl %some_register
426 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
Evan Cheng071b9d52007-01-18 01:49:58 +0000427 O << " + [.-"
Evan Cheng0475ab52008-01-05 00:41:47 +0000428 << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
Evan Chengae19abc2007-01-18 22:27:12 +0000429
430 if (isCallOp)
431 O << "@PLT";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000432 }
433
Dan Gohman2a3250c2007-04-26 21:07:05 +0000434 if (needCloseParen)
435 O << ')';
436
Evan Chengae19abc2007-01-18 22:27:12 +0000437 if (!isCallOp && Subtarget->isPICStyleRIPRel())
Evan Cheng25ab6902006-09-08 06:48:29 +0000438 O << "(%rip)";
439
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000440 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000441 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000442 default:
443 O << "<unknown operand type>"; return;
444 }
445}
446
Nate Begeman391c5d22005-11-30 18:54:35 +0000447void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000448 unsigned char value = MI->getOperand(Op).getImm();
Nate Begeman6c7cb292005-07-14 22:52:25 +0000449 assert(value <= 7 && "Invalid ssecc argument!");
450 switch (value) {
451 case 0: O << "eq"; break;
452 case 1: O << "lt"; break;
453 case 2: O << "le"; break;
454 case 3: O << "unord"; break;
455 case 4: O << "neq"; break;
456 case 5: O << "nlt"; break;
457 case 6: O << "nle"; break;
458 case 7: O << "ord"; break;
459 }
460}
461
Evan Cheng25ab6902006-09-08 06:48:29 +0000462void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
463 const char *Modifier){
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000464 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner32c9a452007-01-14 00:13:07 +0000465 MachineOperand BaseReg = MI->getOperand(Op);
466 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000467 const MachineOperand &DispSpec = MI->getOperand(Op+3);
468
Evan Cheng28b514392006-12-05 19:50:18 +0000469 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Chengc9676de2006-08-29 22:14:48 +0000470 if (DispSpec.isGlobalAddress() ||
471 DispSpec.isConstantPoolIndex() ||
472 DispSpec.isJumpTableIndex()) {
Evan Cheng28b514392006-12-05 19:50:18 +0000473 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000474 } else {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000475 int DispVal = DispSpec.getImm();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000476 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
477 O << DispVal;
478 }
479
480 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000481 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
Chris Lattner32c9a452007-01-14 00:13:07 +0000482 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
483
484 // There are cases where we can end up with ESP/RSP in the indexreg slot.
485 // If this happens, swap the base/index register to support assemblers that
486 // don't work when the index is *SP.
487 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
488 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
489 std::swap(BaseReg, IndexReg);
490 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000491 }
Chris Lattner32c9a452007-01-14 00:13:07 +0000492
493 O << "(";
494 if (BaseReg.getReg())
495 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000496
497 if (IndexReg.getReg()) {
498 O << ",";
Chris Lattner32c9a452007-01-14 00:13:07 +0000499 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000500 if (ScaleVal != 1)
501 O << "," << ScaleVal;
502 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000503 O << ")";
504 }
505}
506
Evan Chengcc415862007-11-09 01:32:10 +0000507void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
508 const MachineBasicBlock *MBB) const {
509 if (!TAI->getSetDirective())
510 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000511
512 // We don't need .set machinery if we have GOT-style relocations
513 if (Subtarget->isPICStyleGOT())
514 return;
515
Evan Chengcc415862007-11-09 01:32:10 +0000516 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
517 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
518 printBasicBlockLabel(MBB, false, false);
Evan Chenged2fc712007-11-09 19:11:23 +0000519 if (Subtarget->isPICStyleRIPRel())
520 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
521 << '_' << uid << '\n';
522 else
Evan Cheng0475ab52008-01-05 00:41:47 +0000523 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Chengcc415862007-11-09 01:32:10 +0000524}
525
Evan Cheng7ccced62006-02-18 00:15:05 +0000526void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng0475ab52008-01-05 00:41:47 +0000527 std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000528 O << label << "\n" << label << ":";
Evan Cheng7ccced62006-02-18 00:15:05 +0000529}
530
Evan Cheng62f27002006-04-28 23:11:40 +0000531
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000532void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
533 const MachineBasicBlock *MBB,
534 unsigned uid) const
535{
536 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
537 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
538
539 O << JTEntryDirective << ' ';
540
541 if (TM.getRelocationModel() == Reloc::PIC_) {
542 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
543 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
544 << '_' << uid << "_set_" << MBB->getNumber();
545 } else if (Subtarget->isPICStyleGOT()) {
546 printBasicBlockLabel(MBB, false, false);
547 O << "@GOTOFF";
548 } else
549 assert(0 && "Don't know how to print MBB label for this PIC mode");
550 } else
551 printBasicBlockLabel(MBB, false, false);
552}
553
Evan Cheng55c25f22006-04-28 23:19:39 +0000554bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000555 const char Mode) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000556 const TargetRegisterInfo &RI = *TM.getRegisterInfo();
Evan Cheng62f27002006-04-28 23:11:40 +0000557 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000558 switch (Mode) {
559 default: return true; // Unknown mode.
560 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000561 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000562 break;
563 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000564 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000565 break;
566 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000567 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000568 break;
569 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000570 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000571 break;
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000572 case 'q': // Print DImode register
573 Reg = getX86SubSuperRegister(Reg, MVT::i64);
574 break;
Evan Cheng62f27002006-04-28 23:11:40 +0000575 }
576
Evan Cheng8f7f7122006-05-05 05:40:20 +0000577 O << '%';
Bill Wendling74ab84c2008-02-26 21:11:01 +0000578 for (const char *Name = RI.get(Reg).AsmName; *Name; ++Name)
Evan Cheng8f7f7122006-05-05 05:40:20 +0000579 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000580 return false;
581}
582
Evan Cheng3d48a902006-04-28 21:19:05 +0000583/// PrintAsmOperand - Print out an operand for an inline asm expression.
584///
585bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
586 unsigned AsmVariant,
587 const char *ExtraCode) {
588 // Does this asm operand have a single letter operand modifier?
589 if (ExtraCode && ExtraCode[0]) {
590 if (ExtraCode[1] != 0) return true; // Unknown modifier.
591
592 switch (ExtraCode[0]) {
593 default: return true; // Unknown modifier.
Chris Lattnerb4828722007-01-25 02:53:24 +0000594 case 'c': // Don't print "$" before a global var name or constant.
Chris Lattner0d924992006-10-31 20:12:30 +0000595 printOperand(MI, OpNo, "mem");
596 return false;
Evan Cheng62f27002006-04-28 23:11:40 +0000597 case 'b': // Print QImode register
598 case 'h': // Print QImode high register
599 case 'w': // Print HImode register
600 case 'k': // Print SImode register
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000601 case 'q': // Print DImode register
Dan Gohman92dfe202007-09-14 20:33:02 +0000602 if (MI->getOperand(OpNo).isRegister())
Chris Lattner14393522007-03-25 02:01:03 +0000603 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
604 printOperand(MI, OpNo);
605 return false;
Chris Lattner7cd5e072007-03-25 01:44:57 +0000606
607 case 'P': // Don't print @PLT, but do print as memory.
608 printOperand(MI, OpNo, "mem");
609 return false;
Evan Cheng3d48a902006-04-28 21:19:05 +0000610 }
611 }
612
613 printOperand(MI, OpNo);
614 return false;
615}
616
617bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
618 unsigned OpNo,
619 unsigned AsmVariant,
620 const char *ExtraCode) {
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000621 if (ExtraCode && ExtraCode[0]) {
622 if (ExtraCode[1] != 0) return true; // Unknown modifier.
623
624 switch (ExtraCode[0]) {
625 default: return true; // Unknown modifier.
626 case 'b': // Print QImode register
627 case 'h': // Print QImode high register
628 case 'w': // Print HImode register
629 case 'k': // Print SImode register
630 case 'q': // Print SImode register
631 // These only apply to registers, ignore on mem.
632 break;
633 }
634 }
Evan Cheng3d48a902006-04-28 21:19:05 +0000635 printMemReference(MI, OpNo);
636 return false;
637}
638
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000639/// printMachineInstruction -- Print out a single X86 LLVM instruction
Dan Gohman8bc49c22007-06-25 15:11:25 +0000640/// MI in AT&T syntax to the current output stream.
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000641///
642void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
643 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000644
Evan Cheng8f7f7122006-05-05 05:40:20 +0000645 // See if a truncate instruction can be turned into a nop.
646 switch (MI->getOpcode()) {
647 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000648 case X86::PsMOVZX64rr32:
649 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
650 break;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000651 }
652
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000653 // Call the autogenerated instruction printer routines.
654 printInstruction(MI);
655}
656
657// Include the auto-generated portion of the assembly writer.
658#include "X86GenAsmWriter.inc"
659