blob: 3e80a6b7573e08c9f82991bc74f48b60a38fbe61 [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!");
Anton Korobeynikov91364382008-06-28 11:08:09 +000054 case Function::InternalLinkage:
Chris Lattnerafbfded2006-10-05 02:43:52 +000055 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 Korobeynikov91364382008-06-28 11:08:09 +0000100
Evan Chenge22e62b2008-03-25 22:29:46 +0000101 unsigned FnAlign = OptimizeForSize ? 1 : 4;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000102 switch (F->getLinkage()) {
103 default: assert(0 && "Unknown linkage type!");
104 case Function::InternalLinkage: // Symbols default to internal.
Evan Chenge22e62b2008-03-25 22:29:46 +0000105 EmitAlignment(FnAlign, F);
Evan Cheng2338c5c2006-02-07 08:38:37 +0000106 break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000107 case Function::DLLExportLinkage:
108 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
109 //FALLS THROUGH
Evan Cheng2338c5c2006-02-07 08:38:37 +0000110 case Function::ExternalLinkage:
Evan Chenge22e62b2008-03-25 22:29:46 +0000111 EmitAlignment(FnAlign, F);
Anton Korobeynikov91364382008-06-28 11:08:09 +0000112 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000113 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000114 case Function::LinkOnceLinkage:
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000115 case Function::WeakLinkage:
Evan Chenge22e62b2008-03-25 22:29:46 +0000116 EmitAlignment(FnAlign, F);
Jim Laskeyea348582006-07-27 02:05:13 +0000117 if (Subtarget->isTargetDarwin()) {
Evan Chengf1616da2006-02-22 23:59:57 +0000118 O << "\t.globl\t" << CurrentFnName << "\n";
Dale Johannesen1d4ce2a2007-11-20 23:24:42 +0000119 O << TAI->getWeakDefDirective() << CurrentFnName << "\n";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000120 } else if (Subtarget->isTargetCygMing()) {
Dan Gohman4e8e8312007-10-05 15:54:58 +0000121 O << "\t.globl\t" << CurrentFnName << "\n";
Anton Korobeynikov66413092007-02-23 01:58:50 +0000122 O << "\t.linkonce discard\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000123 } else {
Dan Gohman825811d2007-07-30 15:08:02 +0000124 O << "\t.weak\t" << CurrentFnName << "\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000125 }
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())
Dan Gohman825811d2007-07-30 15:08:02 +0000137 O << "\t.type\t" << CurrentFnName << ",@function\n";
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000138 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
Dale Johannesen1532f3d2008-04-02 00:25:04 +0000153 if (TAI->doesSupportDebugInformation() ||
154 TAI->doesSupportExceptionHandling()) {
155 // Emit pre-function debug and/or EH information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000156 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000157 }
158
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000159 // Print out code for the function.
Dale Johannesenf2247cf2008-04-08 00:37:56 +0000160 bool hasAnyRealCode = false;
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000161 for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
162 I != E; ++I) {
163 // Print a label for the basic block.
Dan Gohmancb406c22007-10-03 19:26:29 +0000164 if (!I->pred_empty()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000165 printBasicBlockLabel(I, true, true);
Nate Begemancdf38c42006-05-02 05:37:32 +0000166 O << '\n';
167 }
Bill Wendling824a7212008-01-26 09:03:52 +0000168 for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end();
169 II != IE; ++II) {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000170 // Print the assembly for the instruction.
Dale Johannesenf2247cf2008-04-08 00:37:56 +0000171 if (II->getOpcode() != X86::LABEL)
172 hasAnyRealCode = true;
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000173 printMachineInstruction(II);
174 }
175 }
Evan Cheng67afece2006-08-28 22:14:16 +0000176
Dale Johannesenf2247cf2008-04-08 00:37:56 +0000177 if (Subtarget->isTargetDarwin() && !hasAnyRealCode) {
178 // If the function is empty, then we need to emit *something*. Otherwise,
179 // the function's label might be associated with something that it wasn't
180 // meant to be associated with. We emit a noop in this situation.
181 // We are assuming inline asms are code.
182 O << "\tnop\n";
183 }
184
Jim Laskey563321a2006-09-06 18:34:40 +0000185 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmana9f64342007-08-01 14:42:30 +0000186 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000187
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000188 if (TAI->doesSupportDebugInformation()) {
Evan Chengd5948812006-03-07 02:23:26 +0000189 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000190 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000191 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000192
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000193 // Print out jump tables referenced by the function.
194 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
Anton Korobeynikov91364382008-06-28 11:08:09 +0000195
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000196 // We didn't modify anything.
197 return false;
198}
199
Rafael Espindolad674b4e2008-06-09 09:52:31 +0000200static inline bool shouldPrintGOT(TargetMachine &TM, const X86Subtarget* ST) {
Evan Chengae19abc2007-01-18 22:27:12 +0000201 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
202}
203
Rafael Espindolad674b4e2008-06-09 09:52:31 +0000204static inline bool shouldPrintPLT(TargetMachine &TM, const X86Subtarget* ST) {
205 return ST->isTargetELF() && TM.getRelocationModel() == Reloc::PIC_ &&
206 (ST->isPICStyleRIPRel() || ST->isPICStyleGOT());
207}
208
209static inline bool shouldPrintStub(TargetMachine &TM, const X86Subtarget* ST) {
Evan Chengae19abc2007-01-18 22:27:12 +0000210 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
211}
212
Chris Lattnera3b8c572006-02-06 23:41:19 +0000213void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000214 const char *Modifier, bool NotRIPRel) {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000215 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000216 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000217 case MachineOperand::MO_Register: {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000218 assert(TargetRegisterInfo::isPhysicalRegister(MO.getReg()) &&
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000219 "Virtual registers should not make it this far!");
220 O << '%';
Evan Cheng8f7f7122006-05-05 05:40:20 +0000221 unsigned Reg = MO.getReg();
Evan Chengcbe70e12006-05-31 22:34:26 +0000222 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000223 MVT VT = (strcmp(Modifier+6,"64") == 0) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000224 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
225 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
Evan Cheng8f7f7122006-05-05 05:40:20 +0000226 Reg = getX86SubSuperRegister(Reg, VT);
227 }
Evan Chengda47e6e2008-03-15 00:03:38 +0000228 for (const char *Name = TRI->getAsmName(Reg); *Name; ++Name)
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000229 O << (char)tolower(*Name);
230 return;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000231 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000232
Chris Lattner63b3d712006-05-04 17:21:20 +0000233 case MachineOperand::MO_Immediate:
Chris Lattnerb4828722007-01-25 02:53:24 +0000234 if (!Modifier ||
235 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
Evan Cheng3c992d22006-03-07 02:02:57 +0000236 O << '$';
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000237 O << MO.getImm();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000238 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000239 case MachineOperand::MO_MachineBasicBlock:
Chris Lattner8aa797a2007-12-30 23:10:15 +0000240 printBasicBlockLabel(MO.getMBB());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000241 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000242 case MachineOperand::MO_JumpTableIndex: {
243 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
244 if (!isMemOp) O << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000245 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000246 << MO.getIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000247
248 if (TM.getRelocationModel() == Reloc::PIC_) {
249 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +0000250 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
251 << "$pb\"";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000252 else if (Subtarget->isPICStyleGOT())
253 O << "@GOTOFF";
254 }
Anton Korobeynikov91364382008-06-28 11:08:09 +0000255
Evan Chengae19abc2007-01-18 22:27:12 +0000256 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000257 O << "(%rip)";
Nate Begeman37efe672006-04-22 18:53:45 +0000258 return;
259 }
Evan Chenga09bd812006-02-26 08:28:12 +0000260 case MachineOperand::MO_ConstantPoolIndex: {
261 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
262 if (!isMemOp) O << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000263 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
Chris Lattner8aa797a2007-12-30 23:10:15 +0000264 << MO.getIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000265
266 if (TM.getRelocationModel() == Reloc::PIC_) {
267 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +0000268 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
269 << "$pb\"";
Evan Chengae19abc2007-01-18 22:27:12 +0000270 else if (Subtarget->isPICStyleGOT())
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000271 O << "@GOTOFF";
272 }
Anton Korobeynikov91364382008-06-28 11:08:09 +0000273
Evan Chenga09bd812006-02-26 08:28:12 +0000274 int Offset = MO.getOffset();
275 if (Offset > 0)
276 O << "+" << Offset;
277 else if (Offset < 0)
278 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000279
Evan Chengae19abc2007-01-18 22:27:12 +0000280 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000281 O << "(%rip)";
Evan Chenga09bd812006-02-26 08:28:12 +0000282 return;
283 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000284 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000285 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000286 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000287 bool needCloseParen = false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000288
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000289 const GlobalValue *GV = MO.getGlobal();
290 const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
291 if (!GVar) {
Anton Korobeynikovc73ede02008-03-22 07:53:40 +0000292 // If GV is an alias then use the aliasee for determining
293 // thread-localness.
Anton Korobeynikov4d86e2a2008-03-11 22:38:53 +0000294 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
295 GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal());
296 }
297
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000298 bool isThreadLocal = GVar && GVar->isThreadLocal();
299
Evan Cheng25ab6902006-09-08 06:48:29 +0000300 std::string Name = Mang->getValueName(GV);
Chris Lattnere87e1152006-09-26 03:57:53 +0000301 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikov91364382008-06-28 11:08:09 +0000302
Dan Gohman2a3250c2007-04-26 21:07:05 +0000303 if (!isMemOp && !isCallOp)
304 O << '$';
305 else if (Name[0] == '$') {
306 // The name begins with a dollar-sign. In order to avoid having it look
307 // like an integer immediate to the assembler, enclose it in parens.
308 O << '(';
309 needCloseParen = true;
310 }
311
Rafael Espindolad674b4e2008-06-09 09:52:31 +0000312 if (shouldPrintStub(TM, Subtarget)) {
Evan Cheng111354f2007-06-04 18:54:57 +0000313 // Link-once, declaration, or Weakly-linked global variables need
Evan Cheng2338c5c2006-02-07 08:38:37 +0000314 // non-lazily-resolved stubs
Reid Spencer5cbf9852007-01-30 20:08:39 +0000315 if (GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000316 GV->hasWeakLinkage() ||
Dale Johannesenaafce772008-05-14 20:12:51 +0000317 GV->hasLinkOnceLinkage() ||
318 GV->hasCommonLinkage()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000319 // Dynamically-resolved functions need a stub for the function.
Evan Cheng25ab6902006-09-08 06:48:29 +0000320 if (isCallOp && isa<Function>(GV)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000321 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000322 printSuffixedName(Name, "$stub");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000323 } else {
324 GVStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000325 printSuffixedName(Name, "$non_lazy_ptr");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000326 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000327 } else {
Evan Chengae19abc2007-01-18 22:27:12 +0000328 if (GV->hasDLLImportLinkage())
Anton Korobeynikov91364382008-06-28 11:08:09 +0000329 O << "__imp_";
Evan Cheng25ab6902006-09-08 06:48:29 +0000330 O << Name;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000331 }
Anton Korobeynikov91364382008-06-28 11:08:09 +0000332
Chris Lattner35d86fe2006-07-26 21:12:04 +0000333 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng0475ab52008-01-05 00:41:47 +0000334 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000335 } else {
336 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikov91364382008-06-28 11:08:09 +0000337 O << "__imp_";
338 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000339 O << Name;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000340
Rafael Espindolad674b4e2008-06-09 09:52:31 +0000341 if (isCallOp) {
342 if (shouldPrintPLT(TM, Subtarget)) {
343 // Assemble call via PLT for externally visible symbols
344 if (!GV->hasHiddenVisibility() && !GV->hasProtectedVisibility() &&
345 !GV->hasInternalLinkage())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000346 O << "@PLT";
347 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000348 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000349 // Save function name for later type emission
350 FnStubs.insert(Name);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000351 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000352 }
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000353
Evan Cheng6d7d3102006-12-01 07:38:23 +0000354 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000355 ExtWeakSymbols.insert(GV);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000356
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000357 int Offset = MO.getOffset();
358 if (Offset > 0)
359 O << "+" << Offset;
360 else if (Offset < 0)
361 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000362
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000363 if (isThreadLocal) {
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000364 if (TM.getRelocationModel() == Reloc::PIC_ || Subtarget->is64Bit())
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000365 O << "@TLSGD"; // general dynamic TLS model
366 else
367 if (GV->isDeclaration())
368 O << "@INDNTPOFF"; // initial exec TLS model
369 else
370 O << "@NTPOFF"; // local exec TLS model
371 } else if (isMemOp) {
Rafael Espindolad674b4e2008-06-09 09:52:31 +0000372 if (shouldPrintGOT(TM, Subtarget)) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000373 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000374 O << "@GOT";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000375 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000376 O << "@GOTOFF";
Chris Lattnerfe6575c2007-11-04 19:23:28 +0000377 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel &&
378 TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov99e635c2008-01-20 13:59:37 +0000379 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Evan Chengae19abc2007-01-18 22:27:12 +0000380 O << "@GOTPCREL";
Dan Gohman2a3250c2007-04-26 21:07:05 +0000381
382 if (needCloseParen) {
383 needCloseParen = false;
384 O << ')';
385 }
386
Evan Chengae19abc2007-01-18 22:27:12 +0000387 // Use rip when possible to reduce code size, except when
388 // index or base register are also part of the address. e.g.
389 // foo(%rip)(%rcx,%rax,4) is not legal
390 O << "(%rip)";
391 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000392 }
393
Dan Gohman2a3250c2007-04-26 21:07:05 +0000394 if (needCloseParen)
395 O << ')';
396
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000397 return;
398 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000399 case MachineOperand::MO_ExternalSymbol: {
400 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000401 bool needCloseParen = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000402 std::string Name(TAI->getGlobalPrefix());
403 Name += MO.getSymbolName();
Rafael Espindolad674b4e2008-06-09 09:52:31 +0000404 if (isCallOp && shouldPrintStub(TM, Subtarget)) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000405 FnStubs.insert(Name);
Dale Johannesenc215b3e2008-05-19 21:38:18 +0000406 printSuffixedName(Name, "$stub");
Nate Begeman72b286b2005-07-08 00:23:26 +0000407 return;
408 }
Dan Gohman2a3250c2007-04-26 21:07:05 +0000409 if (!isCallOp)
410 O << '$';
411 else if (Name[0] == '$') {
412 // The name begins with a dollar-sign. In order to avoid having it look
413 // like an integer immediate to the assembler, enclose it in parens.
414 O << '(';
415 needCloseParen = true;
416 }
417
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000418 O << Name;
419
Rafael Espindolad674b4e2008-06-09 09:52:31 +0000420 if (shouldPrintPLT(TM, Subtarget)) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000421 std::string GOTName(TAI->getGlobalPrefix());
422 GOTName+="_GLOBAL_OFFSET_TABLE_";
423 if (Name == GOTName)
Evan Chengae19abc2007-01-18 22:27:12 +0000424 // HACK! Emit extra offset to PC during printing GOT offset to
425 // compensate for the size of popl instruction. The resulting code
426 // should look like:
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000427 // call .piclabel
428 // piclabel:
429 // popl %some_register
430 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
Evan Cheng071b9d52007-01-18 01:49:58 +0000431 O << " + [.-"
Evan Cheng0475ab52008-01-05 00:41:47 +0000432 << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << "]";
Evan Chengae19abc2007-01-18 22:27:12 +0000433
434 if (isCallOp)
435 O << "@PLT";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000436 }
437
Dan Gohman2a3250c2007-04-26 21:07:05 +0000438 if (needCloseParen)
439 O << ')';
440
Evan Chengae19abc2007-01-18 22:27:12 +0000441 if (!isCallOp && Subtarget->isPICStyleRIPRel())
Evan Cheng25ab6902006-09-08 06:48:29 +0000442 O << "(%rip)";
443
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000444 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000445 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000446 default:
447 O << "<unknown operand type>"; return;
448 }
449}
450
Nate Begeman391c5d22005-11-30 18:54:35 +0000451void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000452 unsigned char value = MI->getOperand(Op).getImm();
Nate Begeman6c7cb292005-07-14 22:52:25 +0000453 assert(value <= 7 && "Invalid ssecc argument!");
454 switch (value) {
455 case 0: O << "eq"; break;
456 case 1: O << "lt"; break;
457 case 2: O << "le"; break;
458 case 3: O << "unord"; break;
459 case 4: O << "neq"; break;
460 case 5: O << "nlt"; break;
461 case 6: O << "nle"; break;
462 case 7: O << "ord"; break;
463 }
464}
465
Evan Cheng25ab6902006-09-08 06:48:29 +0000466void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
467 const char *Modifier){
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000468 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner32c9a452007-01-14 00:13:07 +0000469 MachineOperand BaseReg = MI->getOperand(Op);
470 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000471 const MachineOperand &DispSpec = MI->getOperand(Op+3);
472
Evan Cheng28b514392006-12-05 19:50:18 +0000473 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Chengc9676de2006-08-29 22:14:48 +0000474 if (DispSpec.isGlobalAddress() ||
475 DispSpec.isConstantPoolIndex() ||
476 DispSpec.isJumpTableIndex()) {
Evan Cheng28b514392006-12-05 19:50:18 +0000477 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000478 } else {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000479 int DispVal = DispSpec.getImm();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000480 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
481 O << DispVal;
482 }
483
484 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner9a1ceae2007-12-30 20:49:49 +0000485 unsigned ScaleVal = MI->getOperand(Op+1).getImm();
Chris Lattner32c9a452007-01-14 00:13:07 +0000486 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
Anton Korobeynikov91364382008-06-28 11:08:09 +0000487
Chris Lattner32c9a452007-01-14 00:13:07 +0000488 // There are cases where we can end up with ESP/RSP in the indexreg slot.
489 // If this happens, swap the base/index register to support assemblers that
490 // don't work when the index is *SP.
491 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
492 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
493 std::swap(BaseReg, IndexReg);
494 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000495 }
Anton Korobeynikov91364382008-06-28 11:08:09 +0000496
Chris Lattner32c9a452007-01-14 00:13:07 +0000497 O << "(";
498 if (BaseReg.getReg())
499 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000500
501 if (IndexReg.getReg()) {
502 O << ",";
Chris Lattner32c9a452007-01-14 00:13:07 +0000503 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000504 if (ScaleVal != 1)
505 O << "," << ScaleVal;
506 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000507 O << ")";
508 }
509}
510
Anton Korobeynikov91364382008-06-28 11:08:09 +0000511void X86ATTAsmPrinter::printPICJumpTableSetLabel(unsigned uid,
Evan Chengcc415862007-11-09 01:32:10 +0000512 const MachineBasicBlock *MBB) const {
513 if (!TAI->getSetDirective())
514 return;
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000515
516 // We don't need .set machinery if we have GOT-style relocations
517 if (Subtarget->isPICStyleGOT())
518 return;
Anton Korobeynikov91364382008-06-28 11:08:09 +0000519
Evan Chengcc415862007-11-09 01:32:10 +0000520 O << TAI->getSetDirective() << ' ' << TAI->getPrivateGlobalPrefix()
521 << getFunctionNumber() << '_' << uid << "_set_" << MBB->getNumber() << ',';
Evan Chengfb8075d2008-02-28 00:43:03 +0000522 printBasicBlockLabel(MBB, false, false, false);
Evan Chenged2fc712007-11-09 19:11:23 +0000523 if (Subtarget->isPICStyleRIPRel())
Anton Korobeynikov91364382008-06-28 11:08:09 +0000524 O << '-' << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
Evan Chenged2fc712007-11-09 19:11:23 +0000525 << '_' << uid << '\n';
526 else
Evan Cheng0475ab52008-01-05 00:41:47 +0000527 O << '-' << getPICLabelString(getFunctionNumber(), TAI, Subtarget) << '\n';
Evan Chengcc415862007-11-09 01:32:10 +0000528}
529
Evan Cheng7ccced62006-02-18 00:15:05 +0000530void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng0475ab52008-01-05 00:41:47 +0000531 std::string label = getPICLabelString(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000532 O << label << "\n" << label << ":";
Evan Cheng7ccced62006-02-18 00:15:05 +0000533}
534
Evan Cheng62f27002006-04-28 23:11:40 +0000535
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000536void X86ATTAsmPrinter::printPICJumpTableEntry(const MachineJumpTableInfo *MJTI,
537 const MachineBasicBlock *MBB,
Anton Korobeynikov91364382008-06-28 11:08:09 +0000538 unsigned uid) const
539{
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000540 const char *JTEntryDirective = MJTI->getEntrySize() == 4 ?
541 TAI->getData32bitsDirective() : TAI->getData64bitsDirective();
542
543 O << JTEntryDirective << ' ';
544
545 if (TM.getRelocationModel() == Reloc::PIC_) {
546 if (Subtarget->isPICStyleRIPRel() || Subtarget->isPICStyleStub()) {
547 O << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
548 << '_' << uid << "_set_" << MBB->getNumber();
549 } else if (Subtarget->isPICStyleGOT()) {
Evan Chengfb8075d2008-02-28 00:43:03 +0000550 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000551 O << "@GOTOFF";
552 } else
553 assert(0 && "Don't know how to print MBB label for this PIC mode");
554 } else
Evan Chengfb8075d2008-02-28 00:43:03 +0000555 printBasicBlockLabel(MBB, false, false, false);
Anton Korobeynikov9de19342007-11-14 09:18:41 +0000556}
557
Evan Cheng55c25f22006-04-28 23:19:39 +0000558bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000559 const char Mode) {
Evan Cheng62f27002006-04-28 23:11:40 +0000560 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000561 switch (Mode) {
562 default: return true; // Unknown mode.
563 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000564 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000565 break;
566 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000567 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000568 break;
569 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000570 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000571 break;
572 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000573 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000574 break;
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000575 case 'q': // Print DImode register
576 Reg = getX86SubSuperRegister(Reg, MVT::i64);
577 break;
Evan Cheng62f27002006-04-28 23:11:40 +0000578 }
579
Evan Cheng8f7f7122006-05-05 05:40:20 +0000580 O << '%';
Evan Chengda47e6e2008-03-15 00:03:38 +0000581 for (const char *Name = TRI->getAsmName(Reg); *Name; ++Name)
Evan Cheng8f7f7122006-05-05 05:40:20 +0000582 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000583 return false;
584}
585
Evan Cheng3d48a902006-04-28 21:19:05 +0000586/// PrintAsmOperand - Print out an operand for an inline asm expression.
587///
588bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Anton Korobeynikov91364382008-06-28 11:08:09 +0000589 unsigned AsmVariant,
Evan Cheng3d48a902006-04-28 21:19:05 +0000590 const char *ExtraCode) {
591 // Does this asm operand have a single letter operand modifier?
592 if (ExtraCode && ExtraCode[0]) {
593 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov91364382008-06-28 11:08:09 +0000594
Evan Cheng3d48a902006-04-28 21:19:05 +0000595 switch (ExtraCode[0]) {
596 default: return true; // Unknown modifier.
Chris Lattnerb4828722007-01-25 02:53:24 +0000597 case 'c': // Don't print "$" before a global var name or constant.
Chris Lattner0d924992006-10-31 20:12:30 +0000598 printOperand(MI, OpNo, "mem");
599 return false;
Evan Cheng62f27002006-04-28 23:11:40 +0000600 case 'b': // Print QImode register
601 case 'h': // Print QImode high register
602 case 'w': // Print HImode register
603 case 'k': // Print SImode register
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000604 case 'q': // Print DImode register
Dan Gohman92dfe202007-09-14 20:33:02 +0000605 if (MI->getOperand(OpNo).isRegister())
Chris Lattner14393522007-03-25 02:01:03 +0000606 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
607 printOperand(MI, OpNo);
608 return false;
Anton Korobeynikov91364382008-06-28 11:08:09 +0000609
Chris Lattner7cd5e072007-03-25 01:44:57 +0000610 case 'P': // Don't print @PLT, but do print as memory.
611 printOperand(MI, OpNo, "mem");
612 return false;
Evan Cheng3d48a902006-04-28 21:19:05 +0000613 }
614 }
Anton Korobeynikov91364382008-06-28 11:08:09 +0000615
Evan Cheng3d48a902006-04-28 21:19:05 +0000616 printOperand(MI, OpNo);
617 return false;
618}
619
620bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
621 unsigned OpNo,
Anton Korobeynikov91364382008-06-28 11:08:09 +0000622 unsigned AsmVariant,
Evan Cheng3d48a902006-04-28 21:19:05 +0000623 const char *ExtraCode) {
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000624 if (ExtraCode && ExtraCode[0]) {
625 if (ExtraCode[1] != 0) return true; // Unknown modifier.
Anton Korobeynikov91364382008-06-28 11:08:09 +0000626
Chris Lattnerfb7f3432007-10-29 03:09:07 +0000627 switch (ExtraCode[0]) {
628 default: return true; // Unknown modifier.
629 case 'b': // Print QImode register
630 case 'h': // Print QImode high register
631 case 'w': // Print HImode register
632 case 'k': // Print SImode register
633 case 'q': // Print SImode register
634 // These only apply to registers, ignore on mem.
635 break;
636 }
637 }
Evan Cheng3d48a902006-04-28 21:19:05 +0000638 printMemReference(MI, OpNo);
639 return false;
640}
641
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000642/// printMachineInstruction -- Print out a single X86 LLVM instruction
Dan Gohman8bc49c22007-06-25 15:11:25 +0000643/// MI in AT&T syntax to the current output stream.
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000644///
645void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
646 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000647
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000648 // Call the autogenerated instruction printer routines.
649 printInstruction(MI);
650}
651
652// Include the auto-generated portion of the assembly writer.
653#include "X86GenAsmWriter.inc"