blob: 06558771240512f2bdf01b5e07a83276de7293f3 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to AT&T format assembly
12// language. This printer is the output mechanism used by `llc'.
13//
14//===----------------------------------------------------------------------===//
15
Chris Lattner95b2c7d2006-12-19 22:59:26 +000016#define DEBUG_TYPE "asm-printer"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000017#include "X86ATTAsmPrinter.h"
18#include "X86.h"
Anton Korobeynikovd05ca652007-01-16 16:41:57 +000019#include "X86COFF.h"
Anton Korobeynikovf8248682006-09-20 22:03:51 +000020#include "X86MachineFunctionInfo.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000021#include "X86TargetMachine.h"
Jim Laskeya0f3d172006-09-07 22:06:40 +000022#include "X86TargetAsmInfo.h"
Anton Korobeynikov7f705592007-01-12 19:20:47 +000023#include "llvm/ADT/StringExtras.h"
Anton Korobeynikovf8248682006-09-20 22:03:51 +000024#include "llvm/CallingConv.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000025#include "llvm/Module.h"
26#include "llvm/Support/Mangler.h"
Jim Laskeya0f3d172006-09-07 22:06:40 +000027#include "llvm/Target/TargetAsmInfo.h"
Evan Cheng7ccced62006-02-18 00:15:05 +000028#include "llvm/Target/TargetOptions.h"
Chris Lattner95b2c7d2006-12-19 22:59:26 +000029#include "llvm/ADT/Statistic.h"
Chris Lattnerb36cbd02005-07-01 22:44:09 +000030using namespace llvm;
Chris Lattnerb36cbd02005-07-01 22:44:09 +000031
Chris Lattner95b2c7d2006-12-19 22:59:26 +000032STATISTIC(EmittedInsts, "Number of machine instrs printed");
33
Evan Cheng347d39f2007-10-14 05:57:21 +000034static std::string computePICLabel(unsigned FnNum,
Evan Cheng071b9d52007-01-18 01:49:58 +000035 const TargetAsmInfo *TAI,
36 const X86Subtarget* Subtarget) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +000037 std::string label;
Evan Cheng071b9d52007-01-18 01:49:58 +000038 if (Subtarget->isTargetDarwin())
Evan Cheng347d39f2007-10-14 05:57:21 +000039 label = "\"L" + utostr_32(FnNum) + "$pb\"";
Evan Cheng071b9d52007-01-18 01:49:58 +000040 else if (Subtarget->isTargetELF())
Evan Cheng347d39f2007-10-14 05:57:21 +000041 label = ".Lllvm$" + utostr_32(FnNum) + "$piclabel";
Evan Cheng071b9d52007-01-18 01:49:58 +000042 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +000043 assert(0 && "Don't know how to print PIC label!\n");
44
45 return label;
46}
47
Chris Lattnerafbfded2006-10-05 02:43:52 +000048/// getSectionForFunction - Return the section that we should emit the
49/// specified function body into.
50std::string X86ATTAsmPrinter::getSectionForFunction(const Function &F) const {
51 switch (F.getLinkage()) {
52 default: assert(0 && "Unknown linkage type!");
53 case Function::InternalLinkage:
54 case Function::DLLExportLinkage:
55 case Function::ExternalLinkage:
56 return TAI->getTextSection();
57 case Function::WeakLinkage:
58 case Function::LinkOnceLinkage:
59 if (Subtarget->isTargetDarwin()) {
60 return ".section __TEXT,__textcoal_nt,coalesced,pure_instructions";
Anton Korobeynikov317848f2007-01-03 11:43:14 +000061 } else if (Subtarget->isTargetCygMing()) {
Dan Gohmanaf67ea72007-06-14 15:00:27 +000062 return "\t.section\t.text$linkonce." + CurrentFnName + ",\"ax\"";
Chris Lattnerafbfded2006-10-05 02:43:52 +000063 } else {
64 return "\t.section\t.llvm.linkonce.t." + CurrentFnName +
Dan Gohmanaf67ea72007-06-14 15:00:27 +000065 ",\"ax\",@progbits";
Chris Lattnerafbfded2006-10-05 02:43:52 +000066 }
67 }
68}
69
Chris Lattnerb36cbd02005-07-01 22:44:09 +000070/// runOnMachineFunction - This uses the printMachineInstruction()
71/// method to print assembly for each instruction.
72///
73bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +000074 if (TAI->doesSupportDebugInformation()) {
Jim Laskeye29c2f52006-07-19 11:54:50 +000075 // Let PassManager know we need debug information and relay
Jim Laskey44c3b9f2007-01-26 21:22:28 +000076 // the MachineModuleInfo address on to DwarfWriter.
Bill Wendlingd60da492007-09-11 08:27:17 +000077 MMI = &getAnalysis<MachineModuleInfo>();
78 DW.SetModuleInfo(MMI);
Jim Laskeye29c2f52006-07-19 11:54:50 +000079 }
Evan Cheng3c992d22006-03-07 02:02:57 +000080
Chris Lattner8b8b9512005-11-21 07:51:23 +000081 SetupMachineFunction(MF);
Chris Lattnerb36cbd02005-07-01 22:44:09 +000082 O << "\n\n";
83
84 // Print out constants referenced by the function
Chris Lattnerd939f6c2005-11-21 08:32:23 +000085 EmitConstantPool(MF.getConstantPool());
Chris Lattnerb36cbd02005-07-01 22:44:09 +000086
87 // Print out labels for the function.
Evan Cheng2338c5c2006-02-07 08:38:37 +000088 const Function *F = MF.getFunction();
Anton Korobeynikovf8248682006-09-20 22:03:51 +000089 unsigned CC = F->getCallingConv();
90
91 // Populate function information map. Actually, We don't want to populate
92 // non-stdcall or non-fastcall functions' information right now.
Chris Lattnere87e1152006-09-26 03:57:53 +000093 if (CC == CallingConv::X86_StdCall || CC == CallingConv::X86_FastCall)
Chris Lattnerd15dff22007-04-17 17:21:52 +000094 FunctionInfoMap[F] = *MF.getInfo<X86MachineFunctionInfo>();
Anton Korobeynikovf8248682006-09-20 22:03:51 +000095
96 X86SharedAsmPrinter::decorateName(CurrentFnName, F);
97
Anton Korobeynikovd5f317d2007-01-07 00:41:20 +000098 SwitchToTextSection(getSectionForFunction(*F).c_str(), F);
Anton Korobeynikovcea9d1d2007-01-06 18:24:26 +000099
Evan Cheng2338c5c2006-02-07 08:38:37 +0000100 switch (F->getLinkage()) {
101 default: assert(0 && "Unknown linkage type!");
102 case Function::InternalLinkage: // Symbols default to internal.
Evan Chengad5e9ca2007-07-25 23:36:05 +0000103 if (Subtarget->isTargetDarwin())
104 // FIXME: This should be parameterized somewhere.
105 EmitAlignment(4, F, 0, true, 0x90);
106 else
107 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Evan Cheng2338c5c2006-02-07 08:38:37 +0000108 break;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000109 case Function::DLLExportLinkage:
110 DLLExportedFns.insert(Mang->makeNameProper(F->getName(), ""));
111 //FALLS THROUGH
Evan Cheng2338c5c2006-02-07 08:38:37 +0000112 case Function::ExternalLinkage:
Evan Chengad5e9ca2007-07-25 23:36:05 +0000113 if (Subtarget->isTargetDarwin())
114 // FIXME: This should be parameterized somewhere.
115 EmitAlignment(4, F, 0, true, 0x90);
116 else
117 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000118 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000119 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000120 case Function::LinkOnceLinkage:
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000121 case Function::WeakLinkage:
Jim Laskeyea348582006-07-27 02:05:13 +0000122 if (Subtarget->isTargetDarwin()) {
Evan Chengad5e9ca2007-07-25 23:36:05 +0000123 // FIXME: This should be parameterized somewhere.
124 EmitAlignment(4, F, 0, true, 0x90);
Evan Chengf1616da2006-02-22 23:59:57 +0000125 O << "\t.globl\t" << CurrentFnName << "\n";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000126 O << "\t.weak_definition\t" << CurrentFnName << "\n";
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000127 } else if (Subtarget->isTargetCygMing()) {
Evan Cheng932ad512006-05-25 21:59:08 +0000128 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohman4e8e8312007-10-05 15:54:58 +0000129 O << "\t.globl\t" << CurrentFnName << "\n";
Anton Korobeynikov66413092007-02-23 01:58:50 +0000130 O << "\t.linkonce discard\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000131 } else {
132 EmitAlignment(4, F); // FIXME: This should be parameterized somewhere.
Dan Gohman825811d2007-07-30 15:08:02 +0000133 O << "\t.weak\t" << CurrentFnName << "\n";
Anton Korobeynikovb7188b12006-10-17 20:29:49 +0000134 }
135 break;
Evan Cheng2338c5c2006-02-07 08:38:37 +0000136 }
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000137 if (F->hasHiddenVisibility()) {
Chris Lattner43bbc5c2007-01-14 06:29:53 +0000138 if (const char *Directive = TAI->getHiddenDirective())
139 O << Directive << CurrentFnName << "\n";
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000140 } else if (F->hasProtectedVisibility()) {
141 if (const char *Directive = TAI->getProtectedDirective())
142 O << Directive << CurrentFnName << "\n";
143 }
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000144
145 if (Subtarget->isTargetELF())
Dan Gohman825811d2007-07-30 15:08:02 +0000146 O << "\t.type\t" << CurrentFnName << ",@function\n";
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000147 else if (Subtarget->isTargetCygMing()) {
148 O << "\t.def\t " << CurrentFnName
149 << ";\t.scl\t" <<
150 (F->getLinkage() == Function::InternalLinkage ? COFF::C_STAT : COFF::C_EXT)
151 << ";\t.type\t" << (COFF::DT_FCN << COFF::N_BTSHFT)
152 << ";\t.endef\n";
153 }
154
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000155 O << CurrentFnName << ":\n";
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000156 // Add some workaround for linkonce linkage on Cygwin\MinGW
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000157 if (Subtarget->isTargetCygMing() &&
Anton Korobeynikovb1c88022006-10-18 09:12:29 +0000158 (F->getLinkage() == Function::LinkOnceLinkage ||
159 F->getLinkage() == Function::WeakLinkage))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000160 O << "Lllvm$workaround$fake$stub$" << CurrentFnName << ":\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000161
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000162 if (TAI->doesSupportDebugInformation()) {
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000163 // Emit pre-function debug information.
Jim Laskey89d67fa2006-06-23 12:51:53 +0000164 DW.BeginFunction(&MF);
Jim Laskey6b92b8e2006-04-07 20:44:42 +0000165 }
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()) {
Nate Begemancdf38c42006-05-02 05:37:32 +0000172 printBasicBlockLabel(I, true);
173 O << '\n';
174 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000175 for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
176 II != E; ++II) {
177 // Print the assembly for the instruction.
178 O << "\t";
179 printMachineInstruction(II);
180 }
181 }
Evan Cheng67afece2006-08-28 22:14:16 +0000182
Jim Laskey563321a2006-09-06 18:34:40 +0000183 if (TAI->hasDotTypeDotSizeDirective())
Dan Gohmana9f64342007-08-01 14:42:30 +0000184 O << "\t.size\t" << CurrentFnName << ", .-" << CurrentFnName << "\n";
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000185
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000186 if (TAI->doesSupportDebugInformation()) {
Evan Chengd5948812006-03-07 02:23:26 +0000187 // Emit post-function debug information.
Jim Laskey99db0442006-03-23 18:09:44 +0000188 DW.EndFunction();
Evan Chengd5948812006-03-07 02:23:26 +0000189 }
Evan Cheng3c992d22006-03-07 02:02:57 +0000190
Anton Korobeynikov2a07e2f2007-05-05 09:04:50 +0000191 // Print out jump tables referenced by the function.
192 EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
193
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000194 // We didn't modify anything.
195 return false;
196}
197
Evan Chengae19abc2007-01-18 22:27:12 +0000198static inline bool printGOT(TargetMachine &TM, const X86Subtarget* ST) {
199 return ST->isPICStyleGOT() && TM.getRelocationModel() == Reloc::PIC_;
200}
201
202static inline bool printStub(TargetMachine &TM, const X86Subtarget* ST) {
203 return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
204}
205
Chris Lattnera3b8c572006-02-06 23:41:19 +0000206void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Evan Cheng28b514392006-12-05 19:50:18 +0000207 const char *Modifier, bool NotRIPRel) {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000208 const MachineOperand &MO = MI->getOperand(OpNo);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000209 const MRegisterInfo &RI = *TM.getRegisterInfo();
210 switch (MO.getType()) {
Evan Cheng8f7f7122006-05-05 05:40:20 +0000211 case MachineOperand::MO_Register: {
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000212 assert(MRegisterInfo::isPhysicalRegister(MO.getReg()) &&
213 "Virtual registers should not make it this far!");
214 O << '%';
Evan Cheng8f7f7122006-05-05 05:40:20 +0000215 unsigned Reg = MO.getReg();
Evan Chengcbe70e12006-05-31 22:34:26 +0000216 if (Modifier && strncmp(Modifier, "subreg", strlen("subreg")) == 0) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000217 MVT::ValueType VT = (strcmp(Modifier+6,"64") == 0) ?
218 MVT::i64 : ((strcmp(Modifier+6, "32") == 0) ? MVT::i32 :
219 ((strcmp(Modifier+6,"16") == 0) ? MVT::i16 : MVT::i8));
Evan Cheng8f7f7122006-05-05 05:40:20 +0000220 Reg = getX86SubSuperRegister(Reg, VT);
221 }
222 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000223 O << (char)tolower(*Name);
224 return;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000225 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000226
Chris Lattner63b3d712006-05-04 17:21:20 +0000227 case MachineOperand::MO_Immediate:
Chris Lattnerb4828722007-01-25 02:53:24 +0000228 if (!Modifier ||
229 (strcmp(Modifier, "debug") && strcmp(Modifier, "mem")))
Evan Cheng3c992d22006-03-07 02:02:57 +0000230 O << '$';
Evan Cheng138a24e2006-05-26 08:04:31 +0000231 O << MO.getImmedValue();
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000232 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000233 case MachineOperand::MO_MachineBasicBlock:
234 printBasicBlockLabel(MO.getMachineBasicBlock());
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000235 return;
Nate Begeman37efe672006-04-22 18:53:45 +0000236 case MachineOperand::MO_JumpTableIndex: {
237 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
238 if (!isMemOp) O << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000239 O << TAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() << "_"
240 << MO.getJumpTableIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000241
242 if (TM.getRelocationModel() == Reloc::PIC_) {
243 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +0000244 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
245 << "$pb\"";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000246 else if (Subtarget->isPICStyleGOT())
247 O << "@GOTOFF";
248 }
249
Evan Chengae19abc2007-01-18 22:27:12 +0000250 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000251 O << "(%rip)";
Nate Begeman37efe672006-04-22 18:53:45 +0000252 return;
253 }
Evan Chenga09bd812006-02-26 08:28:12 +0000254 case MachineOperand::MO_ConstantPoolIndex: {
255 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
256 if (!isMemOp) O << '$';
Evan Cheng347d39f2007-10-14 05:57:21 +0000257 O << TAI->getPrivateGlobalPrefix() << "CPI" << getFunctionNumber() << "_"
258 << MO.getConstantPoolIndex();
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000259
260 if (TM.getRelocationModel() == Reloc::PIC_) {
261 if (Subtarget->isPICStyleStub())
Evan Cheng347d39f2007-10-14 05:57:21 +0000262 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
263 << "$pb\"";
Evan Chengae19abc2007-01-18 22:27:12 +0000264 else if (Subtarget->isPICStyleGOT())
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000265 O << "@GOTOFF";
266 }
267
Evan Chenga09bd812006-02-26 08:28:12 +0000268 int Offset = MO.getOffset();
269 if (Offset > 0)
270 O << "+" << Offset;
271 else if (Offset < 0)
272 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000273
Evan Chengae19abc2007-01-18 22:27:12 +0000274 if (isMemOp && Subtarget->isPICStyleRIPRel() && !NotRIPRel)
Evan Cheng25ab6902006-09-08 06:48:29 +0000275 O << "(%rip)";
Evan Chenga09bd812006-02-26 08:28:12 +0000276 return;
277 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000278 case MachineOperand::MO_GlobalAddress: {
Chris Lattnera3b8c572006-02-06 23:41:19 +0000279 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Evan Cheng2338c5c2006-02-07 08:38:37 +0000280 bool isMemOp = Modifier && !strcmp(Modifier, "mem");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000281 bool needCloseParen = false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000282
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000283 GlobalValue *GV = MO.getGlobal();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000284 GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
285 bool isThreadLocal = GVar && GVar->isThreadLocal();
286
Evan Cheng25ab6902006-09-08 06:48:29 +0000287 std::string Name = Mang->getValueName(GV);
Chris Lattnere87e1152006-09-26 03:57:53 +0000288 X86SharedAsmPrinter::decorateName(Name, GV);
Anton Korobeynikovf8248682006-09-20 22:03:51 +0000289
Dan Gohman2a3250c2007-04-26 21:07:05 +0000290 if (!isMemOp && !isCallOp)
291 O << '$';
292 else if (Name[0] == '$') {
293 // The name begins with a dollar-sign. In order to avoid having it look
294 // like an integer immediate to the assembler, enclose it in parens.
295 O << '(';
296 needCloseParen = true;
297 }
298
Evan Chengae19abc2007-01-18 22:27:12 +0000299 if (printStub(TM, Subtarget)) {
Evan Cheng111354f2007-06-04 18:54:57 +0000300 // Link-once, declaration, or Weakly-linked global variables need
Evan Cheng2338c5c2006-02-07 08:38:37 +0000301 // non-lazily-resolved stubs
Reid Spencer5cbf9852007-01-30 20:08:39 +0000302 if (GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000303 GV->hasWeakLinkage() ||
304 GV->hasLinkOnceLinkage()) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000305 // Dynamically-resolved functions need a stub for the function.
Evan Cheng25ab6902006-09-08 06:48:29 +0000306 if (isCallOp && isa<Function>(GV)) {
Evan Cheng2338c5c2006-02-07 08:38:37 +0000307 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000308 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000309 } else {
310 GVStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000311 O << TAI->getPrivateGlobalPrefix() << Name << "$non_lazy_ptr";
Evan Cheng2338c5c2006-02-07 08:38:37 +0000312 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000313 } else {
Evan Chengae19abc2007-01-18 22:27:12 +0000314 if (GV->hasDLLImportLinkage())
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000315 O << "__imp_";
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 O << Name;
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000317 }
318
Chris Lattner35d86fe2006-07-26 21:12:04 +0000319 if (!isCallOp && TM.getRelocationModel() == Reloc::PIC_)
Evan Cheng347d39f2007-10-14 05:57:21 +0000320 O << "-\"" << TAI->getPrivateGlobalPrefix() << getFunctionNumber()
321 << "$pb\"";
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000322 } else {
323 if (GV->hasDLLImportLinkage()) {
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000324 O << "__imp_";
325 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000326 O << Name;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000327
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000328 if (isCallOp && isa<Function>(GV)) {
Evan Chengae19abc2007-01-18 22:27:12 +0000329 if (printGOT(TM, Subtarget)) {
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000330 // Assemble call via PLT for non-local symbols
Anton Korobeynikov6f9896f2007-04-29 18:35:00 +0000331 if (!(GV->hasHiddenVisibility() || GV->hasProtectedVisibility()) ||
332 GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000333 O << "@PLT";
334 }
Reid Spencer5cbf9852007-01-30 20:08:39 +0000335 if (Subtarget->isTargetCygMing() && GV->isDeclaration())
Anton Korobeynikovd05ca652007-01-16 16:41:57 +0000336 // Save function name for later type emission
337 FnStubs.insert(Name);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000338 }
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000339 }
Anton Korobeynikov78ee7b72006-12-01 00:25:12 +0000340
Evan Cheng6d7d3102006-12-01 07:38:23 +0000341 if (GV->hasExternalWeakLinkage())
Rafael Espindola15404d02006-12-18 03:37:18 +0000342 ExtWeakSymbols.insert(GV);
Anton Korobeynikovb74ed072006-09-14 18:23:27 +0000343
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000344 int Offset = MO.getOffset();
345 if (Offset > 0)
346 O << "+" << Offset;
347 else if (Offset < 0)
348 O << Offset;
Evan Cheng25ab6902006-09-08 06:48:29 +0000349
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000350 if (isThreadLocal) {
351 if (TM.getRelocationModel() == Reloc::PIC_)
352 O << "@TLSGD"; // general dynamic TLS model
353 else
354 if (GV->isDeclaration())
355 O << "@INDNTPOFF"; // initial exec TLS model
356 else
357 O << "@NTPOFF"; // local exec TLS model
358 } else if (isMemOp) {
Evan Chengae19abc2007-01-18 22:27:12 +0000359 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000360 if (Subtarget->GVRequiresExtraLoad(GV, TM, false))
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000361 O << "@GOT";
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +0000362 else
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000363 O << "@GOTOFF";
Evan Chengae19abc2007-01-18 22:27:12 +0000364 } else if (Subtarget->isPICStyleRIPRel() && !NotRIPRel) {
Evan Cheng111354f2007-06-04 18:54:57 +0000365 if ((GV->isDeclaration() ||
Evan Chengae19abc2007-01-18 22:27:12 +0000366 GV->hasWeakLinkage() ||
367 GV->hasLinkOnceLinkage()) &&
368 TM.getRelocationModel() != Reloc::Static)
369 O << "@GOTPCREL";
Dan Gohman2a3250c2007-04-26 21:07:05 +0000370
371 if (needCloseParen) {
372 needCloseParen = false;
373 O << ')';
374 }
375
Evan Chengae19abc2007-01-18 22:27:12 +0000376 // Use rip when possible to reduce code size, except when
377 // index or base register are also part of the address. e.g.
378 // foo(%rip)(%rcx,%rax,4) is not legal
379 O << "(%rip)";
380 }
Evan Cheng25ab6902006-09-08 06:48:29 +0000381 }
382
Dan Gohman2a3250c2007-04-26 21:07:05 +0000383 if (needCloseParen)
384 O << ')';
385
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000386 return;
387 }
Chris Lattnera3b8c572006-02-06 23:41:19 +0000388 case MachineOperand::MO_ExternalSymbol: {
389 bool isCallOp = Modifier && !strcmp(Modifier, "call");
Dan Gohman2a3250c2007-04-26 21:07:05 +0000390 bool needCloseParen = false;
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000391 std::string Name(TAI->getGlobalPrefix());
392 Name += MO.getSymbolName();
Evan Chengae19abc2007-01-18 22:27:12 +0000393 if (isCallOp && printStub(TM, Subtarget)) {
Nate Begeman72b286b2005-07-08 00:23:26 +0000394 FnStubs.insert(Name);
Evan Cheng071b9d52007-01-18 01:49:58 +0000395 O << TAI->getPrivateGlobalPrefix() << Name << "$stub";
Nate Begeman72b286b2005-07-08 00:23:26 +0000396 return;
397 }
Dan Gohman2a3250c2007-04-26 21:07:05 +0000398 if (!isCallOp)
399 O << '$';
400 else if (Name[0] == '$') {
401 // The name begins with a dollar-sign. In order to avoid having it look
402 // like an integer immediate to the assembler, enclose it in parens.
403 O << '(';
404 needCloseParen = true;
405 }
406
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000407 O << Name;
408
Evan Chengae19abc2007-01-18 22:27:12 +0000409 if (printGOT(TM, Subtarget)) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000410 std::string GOTName(TAI->getGlobalPrefix());
411 GOTName+="_GLOBAL_OFFSET_TABLE_";
412 if (Name == GOTName)
Evan Chengae19abc2007-01-18 22:27:12 +0000413 // HACK! Emit extra offset to PC during printing GOT offset to
414 // compensate for the size of popl instruction. The resulting code
415 // should look like:
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000416 // call .piclabel
417 // piclabel:
418 // popl %some_register
419 // addl $_GLOBAL_ADDRESS_TABLE_ + [.-piclabel], %some_register
Evan Cheng071b9d52007-01-18 01:49:58 +0000420 O << " + [.-"
Evan Cheng347d39f2007-10-14 05:57:21 +0000421 << computePICLabel(getFunctionNumber(), TAI, Subtarget) << "]";
Evan Chengae19abc2007-01-18 22:27:12 +0000422
423 if (isCallOp)
424 O << "@PLT";
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000425 }
426
Dan Gohman2a3250c2007-04-26 21:07:05 +0000427 if (needCloseParen)
428 O << ')';
429
Evan Chengae19abc2007-01-18 22:27:12 +0000430 if (!isCallOp && Subtarget->isPICStyleRIPRel())
Evan Cheng25ab6902006-09-08 06:48:29 +0000431 O << "(%rip)";
432
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000433 return;
Chris Lattnera3b8c572006-02-06 23:41:19 +0000434 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000435 default:
436 O << "<unknown operand type>"; return;
437 }
438}
439
Nate Begeman391c5d22005-11-30 18:54:35 +0000440void X86ATTAsmPrinter::printSSECC(const MachineInstr *MI, unsigned Op) {
Nate Begeman6c7cb292005-07-14 22:52:25 +0000441 unsigned char value = MI->getOperand(Op).getImmedValue();
442 assert(value <= 7 && "Invalid ssecc argument!");
443 switch (value) {
444 case 0: O << "eq"; break;
445 case 1: O << "lt"; break;
446 case 2: O << "le"; break;
447 case 3: O << "unord"; break;
448 case 4: O << "neq"; break;
449 case 5: O << "nlt"; break;
450 case 6: O << "nle"; break;
451 case 7: O << "ord"; break;
452 }
453}
454
Evan Cheng25ab6902006-09-08 06:48:29 +0000455void X86ATTAsmPrinter::printMemReference(const MachineInstr *MI, unsigned Op,
456 const char *Modifier){
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000457 assert(isMem(MI, Op) && "Invalid memory reference!");
Chris Lattner32c9a452007-01-14 00:13:07 +0000458 MachineOperand BaseReg = MI->getOperand(Op);
459 MachineOperand IndexReg = MI->getOperand(Op+2);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000460 const MachineOperand &DispSpec = MI->getOperand(Op+3);
461
Evan Cheng28b514392006-12-05 19:50:18 +0000462 bool NotRIPRel = IndexReg.getReg() || BaseReg.getReg();
Evan Chengc9676de2006-08-29 22:14:48 +0000463 if (DispSpec.isGlobalAddress() ||
464 DispSpec.isConstantPoolIndex() ||
465 DispSpec.isJumpTableIndex()) {
Evan Cheng28b514392006-12-05 19:50:18 +0000466 printOperand(MI, Op+3, "mem", NotRIPRel);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000467 } else {
468 int DispVal = DispSpec.getImmedValue();
469 if (DispVal || (!IndexReg.getReg() && !BaseReg.getReg()))
470 O << DispVal;
471 }
472
473 if (IndexReg.getReg() || BaseReg.getReg()) {
Chris Lattner32c9a452007-01-14 00:13:07 +0000474 unsigned ScaleVal = MI->getOperand(Op+1).getImmedValue();
475 unsigned BaseRegOperand = 0, IndexRegOperand = 2;
476
477 // There are cases where we can end up with ESP/RSP in the indexreg slot.
478 // If this happens, swap the base/index register to support assemblers that
479 // don't work when the index is *SP.
480 if (IndexReg.getReg() == X86::ESP || IndexReg.getReg() == X86::RSP) {
481 assert(ScaleVal == 1 && "Scale not supported for stack pointer!");
482 std::swap(BaseReg, IndexReg);
483 std::swap(BaseRegOperand, IndexRegOperand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000484 }
Chris Lattner32c9a452007-01-14 00:13:07 +0000485
486 O << "(";
487 if (BaseReg.getReg())
488 printOperand(MI, Op+BaseRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000489
490 if (IndexReg.getReg()) {
491 O << ",";
Chris Lattner32c9a452007-01-14 00:13:07 +0000492 printOperand(MI, Op+IndexRegOperand, Modifier);
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000493 if (ScaleVal != 1)
494 O << "," << ScaleVal;
495 }
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000496 O << ")";
497 }
498}
499
Evan Cheng7ccced62006-02-18 00:15:05 +0000500void X86ATTAsmPrinter::printPICLabel(const MachineInstr *MI, unsigned Op) {
Evan Cheng347d39f2007-10-14 05:57:21 +0000501 std::string label = computePICLabel(getFunctionNumber(), TAI, Subtarget);
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000502 O << label << "\n" << label << ":";
Evan Cheng7ccced62006-02-18 00:15:05 +0000503}
504
Evan Cheng62f27002006-04-28 23:11:40 +0000505
Evan Cheng55c25f22006-04-28 23:19:39 +0000506bool X86ATTAsmPrinter::printAsmMRegister(const MachineOperand &MO,
Evan Cheng62f27002006-04-28 23:11:40 +0000507 const char Mode) {
508 const MRegisterInfo &RI = *TM.getRegisterInfo();
509 unsigned Reg = MO.getReg();
Evan Cheng62f27002006-04-28 23:11:40 +0000510 switch (Mode) {
511 default: return true; // Unknown mode.
512 case 'b': // Print QImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000513 Reg = getX86SubSuperRegister(Reg, MVT::i8);
Evan Cheng62f27002006-04-28 23:11:40 +0000514 break;
515 case 'h': // Print QImode high register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000516 Reg = getX86SubSuperRegister(Reg, MVT::i8, true);
Evan Cheng62f27002006-04-28 23:11:40 +0000517 break;
518 case 'w': // Print HImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000519 Reg = getX86SubSuperRegister(Reg, MVT::i16);
Evan Cheng62f27002006-04-28 23:11:40 +0000520 break;
521 case 'k': // Print SImode register
Evan Cheng8f7f7122006-05-05 05:40:20 +0000522 Reg = getX86SubSuperRegister(Reg, MVT::i32);
Evan Cheng62f27002006-04-28 23:11:40 +0000523 break;
524 }
525
Evan Cheng8f7f7122006-05-05 05:40:20 +0000526 O << '%';
527 for (const char *Name = RI.get(Reg).Name; *Name; ++Name)
528 O << (char)tolower(*Name);
Evan Cheng62f27002006-04-28 23:11:40 +0000529 return false;
530}
531
Evan Cheng3d48a902006-04-28 21:19:05 +0000532/// PrintAsmOperand - Print out an operand for an inline asm expression.
533///
534bool X86ATTAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
535 unsigned AsmVariant,
536 const char *ExtraCode) {
537 // Does this asm operand have a single letter operand modifier?
538 if (ExtraCode && ExtraCode[0]) {
539 if (ExtraCode[1] != 0) return true; // Unknown modifier.
540
541 switch (ExtraCode[0]) {
542 default: return true; // Unknown modifier.
Chris Lattnerb4828722007-01-25 02:53:24 +0000543 case 'c': // Don't print "$" before a global var name or constant.
Chris Lattner0d924992006-10-31 20:12:30 +0000544 printOperand(MI, OpNo, "mem");
545 return false;
Evan Cheng62f27002006-04-28 23:11:40 +0000546 case 'b': // Print QImode register
547 case 'h': // Print QImode high register
548 case 'w': // Print HImode register
549 case 'k': // Print SImode register
Dan Gohman92dfe202007-09-14 20:33:02 +0000550 if (MI->getOperand(OpNo).isRegister())
Chris Lattner14393522007-03-25 02:01:03 +0000551 return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
552 printOperand(MI, OpNo);
553 return false;
Chris Lattner7cd5e072007-03-25 01:44:57 +0000554
555 case 'P': // Don't print @PLT, but do print as memory.
556 printOperand(MI, OpNo, "mem");
557 return false;
Evan Cheng3d48a902006-04-28 21:19:05 +0000558 }
559 }
560
561 printOperand(MI, OpNo);
562 return false;
563}
564
565bool X86ATTAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
566 unsigned OpNo,
567 unsigned AsmVariant,
568 const char *ExtraCode) {
569 if (ExtraCode && ExtraCode[0])
570 return true; // Unknown modifier.
571 printMemReference(MI, OpNo);
572 return false;
573}
574
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000575/// printMachineInstruction -- Print out a single X86 LLVM instruction
Dan Gohman8bc49c22007-06-25 15:11:25 +0000576/// MI in AT&T syntax to the current output stream.
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000577///
578void X86ATTAsmPrinter::printMachineInstruction(const MachineInstr *MI) {
579 ++EmittedInsts;
Evan Cheng67caa392006-01-26 02:27:43 +0000580
Evan Cheng8f7f7122006-05-05 05:40:20 +0000581 // See if a truncate instruction can be turned into a nop.
582 switch (MI->getOpcode()) {
583 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000584 case X86::PsMOVZX64rr32:
585 O << TAI->getCommentString() << " ZERO-EXTEND " << "\n\t";
586 break;
Evan Cheng8f7f7122006-05-05 05:40:20 +0000587 }
588
Chris Lattnerb36cbd02005-07-01 22:44:09 +0000589 // Call the autogenerated instruction printer routines.
590 printInstruction(MI);
591}
592
593// Include the auto-generated portion of the assembly writer.
594#include "X86GenAsmWriter.inc"
595