blob: 37afb46078fdd49fca3650a37d6cadfd153f7f2d [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 Chengfb8075d2008-02-28 00:43:03 +0000104 EmitAlignment(4, F);
Evan Cheng2338c5c2006-02-07 08:38:37 +0000105 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 Chengfb8075d2008-02-28 00:43:03 +0000110 EmitAlignment(4, F);
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:
Evan Chengfb8075d2008-02-28 00:43:03 +0000115 EmitAlignment(4, F);
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";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000118 O << TAI->getWeakDefDirective() << CurrentFnName << "\n";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000119 } else if (Subtarget->isTargetCygMing()) {
Dan Gohman4e8e8312007-10-05 15:54:58 +0000120 O << "\t.globl\t" << CurrentFnName << "\n";
Anton Korobeynikov66413092007-02-23 01:58:50 +0000121 O << "\t.linkonce discard\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000122 } else {
Dan Gohman825811d2007-07-30 15:08:02 +0000123 O << "\t.weak\t" << CurrentFnName << "\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000124 }
125 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000126 }
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000127 if (F->hasHiddenVisibility()) {
Chris Lattner43bbc5c2007-01-14 06:29:53 +0000128 if (const char *Directive = TAI->getHiddenDirective())
129 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000130 } else if (F->hasProtectedVisibility()) {
131 if (const char *Directive = TAI->getProtectedDirective())
132 O << Directive << CurrentFnName << "\n";
133 }
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000134
135 if (Subtarget->isTargetELF())
Dan Gohman825811d2007-07-30 15:08:02 +0000136 O << "\t.type\t" << CurrentFnName << ",@function\n";
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000137 else if (Subtarget->isTargetCygMing()) {
138 O << "\t.def\t " << CurrentFnName
139 << ";\t.scl\t" <<
140 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
141 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
142 << ";\t.endef\n";
143 }
144
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000145 O << CurrentFnName << ":\n";
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000146 // Add some workaround for linkonce linkage on Cygwin\MinGW
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000147 if (Subtarget->isTargetCygMing() &&
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000148 (F->getLinkage() == Function::LinkOnceLinkage ||
149 F->getLinkage() == Function::WeakLinkage))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000150 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000151
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000152 if (TAI->doesSupportDebugInformation()) {
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
Bill Wendling824a7212008-01-26 09:03:52 +0000157 if (Subtarget->isTargetDarwin()) {
158 // If the function is empty, then we need to emit *something*. Otherwise,
159 // the function's label might be associated with something that it wasn't
160 // meant to be associated with. We emit a noop in this situation.
161 MachineFunction::iterator I = MF.begin();
162
163 if (++I == MF.end() && MF.front().empty())
164 O << "\tnop\n";
165 }
166
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000167 // Print out code for the function.
168 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
169 I != E; ++I) {
170 // Print a label for the basic block.
Dan Gohmancb406c22007-10-03 19:26:29 +0000171 if (!I->pred_empty()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000172 printBasicBlockLabel(I, true, true);
Nate Begemancdf38c42006-05-02 05:37:32 +0000173 O << '\n';
174 }
Bill Wendling824a7212008-01-26 09:03:52 +0000175 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
176 II != IE; ++II) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000177 // Print the assembly for the instruction.
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000178 printMachineInstruction(II);
179 }
180 }
Evan Cheng67afece2006-08-28 22:14:16 +0000181
Jim Laskey563321a2006-09-06 18:34:40 +0000182 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmana9f64342007-08-01 14:42:30 +0000183 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000184
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000185 if (TAI->doesSupportDebugInformation()) {
Evan Chengd5948812006-03-07 02:23:26 +0000186 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000187 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000188 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000189
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000190 // Print out jump tables referenced by the function.
191 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
192
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000193 // We didn't modify anything.
194 return false;
195}
196
Evan Chengae19abc2007-01-18 22:27:12 +0000197static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
198 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
199}
200
201static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
202 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
203}
204
Chris Lattnera3b8c572006-02-06 23:41:19 +0000205void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000206 const char *Modifier, bool NotRIPRel) {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000207 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000208 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000209 case MachineOperand::MO_Register: {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000210 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000211 "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 }
Evan Chengda47e6e2008-03-15 00:03:38 +0000220 for (const char *Name = TRI->getAsmName(Reg); *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 << '$';
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000229 O << MO.getImm();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000230 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000231 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000232 printBasicBlockLabel(MO.getMBB());
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 << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000237 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000238 << MO.getIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000239
240 if (TM.getRelocationModel() == Reloc::PIC_) {
241 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +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 << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000255 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000256 << MO.getIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000257
258 if (TM.getRelocationModel() == Reloc::PIC_) {
259 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +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 Korobeynikov4d86e2a2008-03-11 22:38:53 +0000281 const GlobalValue *GV = MO.getGlobal();
282 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
283 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000284 // If GV is an alias then use the aliasee for determining
285 // thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000286 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
287 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
288 }
289
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000290 bool isThreadLocal = GVar && GVar->isThreadLocal();
291
Evan Cheng25ab6902006-09-08 06:48:29 +0000292 std::string Name = Mang->getValueName(GV);
Chris Lattnere87e1152006-09-26 03:57:53 +0000293 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000294
Dan Gohman2a3250c2007-04-26 21:07:05 +0000295 if (!isMemOp && !isCallOp)
296 O << '$';
297 else if (Name[0] == '$') {
298 // The name begins with a dollar-sign. In order to avoid having it look
299 // like an integer immediate to the assembler, enclose it in parens.
300 O << '(';
301 needCloseParen = true;
302 }
303
Evan Chengae19abc2007-01-18 22:27:12 +0000304 if (printStub(TM, Subtarget)) {
Evan Cheng111354f2007-06-04 18:54:57 +0000305 // Link-once, declaration, or Weakly-linked global variables need
Evan Cheng2338c5c2006-02-07 08:38:37 +0000306 // non-lazily-resolved stubs
Reid Spencer5cbf9852007-01-30 20:08:39 +0000307 if (GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000308 GV->hasWeakLinkage() ||
309 GV->hasLinkOnceLinkage()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000310 // Dynamically-resolved functions need a stub for the function.
Evan Cheng25ab6902006-09-08 06:48:29 +0000311 if (isCallOp && isa<Function>(GV)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000312 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000313 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000314 } else {
315 GVStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000316 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000317 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000318 } else {
Evan Chengae19abc2007-01-18 22:27:12 +0000319 if (GV->hasDLLImportLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000320 O << "__imp_";
Evan Cheng25ab6902006-09-08 06:48:29 +0000321 O << Name;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000322 }
323
Chris Lattner35d86fe2006-07-26 21:12:04 +0000324 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng0475ab52008-01-05 00:41:47 +0000325 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000326 } else {
327 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000328 O << "__imp_";
329 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000330 O << Name;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000331
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000332 if (isCallOp && isa<Function>(GV)) {
Evan Chengae19abc2007-01-18 22:27:12 +0000333 if (printGOT(TM, Subtarget)) {
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000334 // Assemble call via PLT for non-local symbols
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000335 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
336 GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000337 O << "@PLT";
338 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000339 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000340 // Save function name for later type emission
341 FnStubs.insert(Name);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000342 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000343 }
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000344
Evan Cheng6d7d3102006-12-01 07:38:23 +0000345 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000346 ExtWeakSymbols.insert(GV);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000347
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000348 int Offset = MO.getOffset();
349 if (Offset > 0)
350 O << "+" << Offset;
351 else if (Offset < 0)
352 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000353
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000354 if (isThreadLocal) {
355 if (TM.getRelocationModel() == Reloc::PIC_)
356 O << "@TLSGD"; // general dynamic TLS model
357 else
358 if (GV->isDeclaration())
359 O << "@INDNTPOFF"; // initial exec TLS model
360 else
361 O << "@NTPOFF"; // local exec TLS model
362 } else if (isMemOp) {
Evan Chengae19abc2007-01-18 22:27:12 +0000363 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000364 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000365 O << "@GOT";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000366 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000367 O << "@GOTOFF";
Chris Lattnerfe6575c2007-11-04 19:23:28 +0000368 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
369 TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov99e635c2008-01-20 13:59:37 +0000370 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Evan Chengae19abc2007-01-18 22:27:12 +0000371 O << "@GOTPCREL";
Dan Gohman2a3250c2007-04-26 21:07:05 +0000372
373 if (needCloseParen) {
374 needCloseParen = false;
375 O << ')';
376 }
377
Evan Chengae19abc2007-01-18 22:27:12 +0000378 // Use rip when possible to reduce code size, except when
379 // index or base register are also part of the address. e.g.
380 // foo(%rip)(%rcx,%rax,4) is not legal
381 O << "(%rip)";
382 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000383 }
384
Dan Gohman2a3250c2007-04-26 21:07:05 +0000385 if (needCloseParen)
386 O << ')';
387
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000388 return;
389 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000390 case MachineOperand::MO_ExternalSymbol: {
391 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000392 bool needCloseParen = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000393 std::string Name(TAI->getGlobalPrefix());
394 Name += MO.getSymbolName();
Evan Chengae19abc2007-01-18 22:27:12 +0000395 if (isCallOp && printStub(TM, Subtarget)) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000396 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000397 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Nate Begeman72b286b2005-07-08 00:23:26 +0000398 return;
399 }
Dan Gohman2a3250c2007-04-26 21:07:05 +0000400 if (!isCallOp)
401 O << '$';
402 else if (Name[0] == '$') {
403 // The name begins with a dollar-sign. In order to avoid having it look
404 // like an integer immediate to the assembler, enclose it in parens.
405 O << '(';
406 needCloseParen = true;
407 }
408
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000409 O << Name;
410
Evan Chengae19abc2007-01-18 22:27:12 +0000411 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000412 std::string GOTName(TAI->getGlobalPrefix());
413 GOTName+="_GLOBAL_OFFSET_TABLE_";
414 if (Name == GOTName)
Evan Chengae19abc2007-01-18 22:27:12 +0000415 // HACK! Emit extra offset to PC during printing GOT offset to
416 // compensate for the size of popl instruction. The resulting code
417 // should look like:
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000418 // call .piclabel
419 // piclabel:
420 // popl %some_register
421 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
Evan Cheng071b9d52007-01-18 01:49:58 +0000422 O << " + [.-"
Evan Cheng0475ab52008-01-05 00:41:47 +0000423 << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
Evan Chengae19abc2007-01-18 22:27:12 +0000424
425 if (isCallOp)
426 O << "@PLT";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000427 }
428
Dan Gohman2a3250c2007-04-26 21:07:05 +0000429 if (needCloseParen)
430 O << ')';
431
Evan Chengae19abc2007-01-18 22:27:12 +0000432 if (!isCallOp && Subtarget->isPICStyleRIPRel())
Evan Cheng25ab6902006-09-08 06:48:29 +0000433 O << "(%rip)";
434
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000435 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000436 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000437 default:
438 O << "<unknown operand type>"; return;
439 }
440}
441
Nate Begeman391c5d22005-11-30 18:54:35 +0000442void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000443 unsigned char value = MI->getOperand(Op).getImm();
Nate Begeman6c7cb292005-07-14 22:52:25 +0000444 assert(value <= 7 && "Invalid ssecc argument!");
445 switch (value) {
446 case 0: O << "eq"; break;
447 case 1: O << "lt"; break;
448 case 2: O << "le"; break;
449 case 3: O << "unord"; break;
450 case 4: O << "neq"; break;
451 case 5: O << "nlt"; break;
452 case 6: O << "nle"; break;
453 case 7: O << "ord"; break;
454 }
455}
456
Evan Cheng25ab6902006-09-08 06:48:29 +0000457void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
458 const char *Modifier){
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000459 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner32c9a452007-01-14 00:13:07 +0000460 MachineOperand BaseReg = MI->getOperand(Op);
461 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000462 const MachineOperand &DispSpec = MI->getOperand(Op+3);
463
Evan Cheng28b514392006-12-05 19:50:18 +0000464 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Chengc9676de2006-08-29 22:14:48 +0000465 if (DispSpec.isGlobalAddress() ||
466 DispSpec.isConstantPoolIndex() ||
467 DispSpec.isJumpTableIndex()) {
Evan Cheng28b514392006-12-05 19:50:18 +0000468 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000469 } else {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000470 int DispVal = DispSpec.getImm();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000471 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
472 O << DispVal;
473 }
474
475 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000476 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
Chris Lattner32c9a452007-01-14 00:13:07 +0000477 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
478
479 // There are cases where we can end up with ESP/RSP in the indexreg slot.
480 // If this happens, swap the base/index register to support assemblers that
481 // don't work when the index is *SP.
482 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
483 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
484 std::swap(BaseReg, IndexReg);
485 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000486 }
Chris Lattner32c9a452007-01-14 00:13:07 +0000487
488 O << "(";
489 if (BaseReg.getReg())
490 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000491
492 if (IndexReg.getReg()) {
493 O << ",";
Chris Lattner32c9a452007-01-14 00:13:07 +0000494 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000495 if (ScaleVal != 1)
496 O << "," << ScaleVal;
497 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000498 O << ")";
499 }
500}
501
Evan Chengcc415862007-11-09 01:32:10 +0000502void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
503 const MachineBasicBlock *MBB) const {
504 if (!TAI->getSetDirective())
505 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000506
507 // We don't need .set machinery if we have GOT-style relocations
508 if (Subtarget->isPICStyleGOT())
509 return;
510
Evan Chengcc415862007-11-09 01:32:10 +0000511 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
512 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Evan Chengfb8075d2008-02-28 00:43:03 +0000513 printBasicBlockLabel(MBB, false, false, false);
Evan Chenged2fc712007-11-09 19:11:23 +0000514 if (Subtarget->isPICStyleRIPRel())
515 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
516 << '_' << uid << '\n';
517 else
Evan Cheng0475ab52008-01-05 00:41:47 +0000518 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Chengcc415862007-11-09 01:32:10 +0000519}
520
Evan Cheng7ccced62006-02-18 00:15:05 +0000521void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng0475ab52008-01-05 00:41:47 +0000522 std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000523 O << label << "\n" << label << ":";
Evan Cheng7ccced62006-02-18 00:15:05 +0000524}
525
Evan Cheng62f27002006-04-28 23:11:40 +0000526
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000527void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
528 const MachineBasicBlock *MBB,
529 unsigned uid) const
530{
531 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
532 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
533
534 O << JTEntryDirective << ' ';
535
536 if (TM.getRelocationModel() == Reloc::PIC_) {
537 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
538 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
539 << '_' << uid << "_set_" << MBB->getNumber();
540 } else if (Subtarget->isPICStyleGOT()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000541 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000542 O << "@GOTOFF";
543 } else
544 assert(0 && "Don't know how to print MBB label for this PIC mode");
545 } else
Evan Chengfb8075d2008-02-28 00:43:03 +0000546 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000547}
548
Evan Cheng55c25f22006-04-28 23:19:39 +0000549bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000550 const char Mode) {
Evan Cheng62f27002006-04-28 23:11:40 +0000551 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000552 switch (Mode) {
553 default: return true; // Unknown mode.
554 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000555 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000556 break;
557 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000558 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000559 break;
560 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000561 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000562 break;
563 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000564 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000565 break;
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000566 case 'q': // Print DImode register
567 Reg = getX86SubSuperRegister(Reg, MVT::i64);
568 break;
Evan Cheng62f27002006-04-28 23:11:40 +0000569 }
570
Evan Cheng8f7f7122006-05-05 05:40:20 +0000571 O << '%';
Evan Chengda47e6e2008-03-15 00:03:38 +0000572 for (const char *Name = TRI->getAsmName(Reg); *Name; ++Name)
Evan Cheng8f7f7122006-05-05 05:40:20 +0000573 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000574 return false;
575}
576
Evan Cheng3d48a902006-04-28 21:19:05 +0000577/// PrintAsmOperand - Print out an operand for an inline asm expression.
578///
579bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
580 unsigned AsmVariant,
581 const char *ExtraCode) {
582 // Does this asm operand have a single letter operand modifier?
583 if (ExtraCode && ExtraCode[0]) {
584 if (ExtraCode[1] != 0) return true; // Unknown modifier.
585
586 switch (ExtraCode[0]) {
587 default: return true; // Unknown modifier.
Chris Lattnerb4828722007-01-25 02:53:24 +0000588 case 'c': // Don't print "$" before a global var name or constant.
Chris Lattner0d924992006-10-31 20:12:30 +0000589 printOperand(MI, OpNo, "mem");
590 return false;
Evan Cheng62f27002006-04-28 23:11:40 +0000591 case 'b': // Print QImode register
592 case 'h': // Print QImode high register
593 case 'w': // Print HImode register
594 case 'k': // Print SImode register
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000595 case 'q': // Print DImode register
Dan Gohman92dfe202007-09-14 20:33:02 +0000596 if (MI->getOperand(OpNo).isRegister())
Chris Lattner14393522007-03-25 02:01:03 +0000597 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
598 printOperand(MI, OpNo);
599 return false;
Chris Lattner7cd5e072007-03-25 01:44:57 +0000600
601 case 'P': // Don't print @PLT, but do print as memory.
602 printOperand(MI, OpNo, "mem");
603 return false;
Evan Cheng3d48a902006-04-28 21:19:05 +0000604 }
605 }
606
607 printOperand(MI, OpNo);
608 return false;
609}
610
611bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
612 unsigned OpNo,
613 unsigned AsmVariant,
614 const char *ExtraCode) {
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000615 if (ExtraCode && ExtraCode[0]) {
616 if (ExtraCode[1] != 0) return true; // Unknown modifier.
617
618 switch (ExtraCode[0]) {
619 default: return true; // Unknown modifier.
620 case 'b': // Print QImode register
621 case 'h': // Print QImode high register
622 case 'w': // Print HImode register
623 case 'k': // Print SImode register
624 case 'q': // Print SImode register
625 // These only apply to registers, ignore on mem.
626 break;
627 }
628 }
Evan Cheng3d48a902006-04-28 21:19:05 +0000629 printMemReference(MI, OpNo);
630 return false;
631}
632
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000633/// printMachineInstruction -- Print out a single X86 LLVM instruction
Dan Gohman8bc49c22007-06-25 15:11:25 +0000634/// MI in AT&T syntax to the current output stream.
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000635///
636void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
637 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000638
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000639 // Call the autogenerated instruction printer routines.
640 printInstruction(MI);
641}
642
643// Include the auto-generated portion of the assembly writer.
644#include "X86GenAsmWriter.inc"
645