blob: 4af00859e30f42af87dc8b7accc30f40efee1d24 [file] [log] [blame]
Nate Begeman8c00f8c2005-08-04 07:12:09 +00001//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
Nate Begemanfb5792f2005-07-12 01:41:54 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Nate Begeman and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the X86 specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86Subtarget.h"
Evan Chenga26eb5e2006-10-06 09:17:41 +000015#include "X86GenSubtarget.inc"
Nate Begemanfb5792f2005-07-12 01:41:54 +000016#include "llvm/Module.h"
Jim Laskey05a059d2006-09-07 12:23:47 +000017#include "llvm/Support/CommandLine.h"
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000018#include "llvm/Target/TargetMachine.h"
Nate Begemanfb5792f2005-07-12 01:41:54 +000019using namespace llvm;
20
Jim Laskey05a059d2006-09-07 12:23:47 +000021cl::opt<X86Subtarget::AsmWriterFlavorTy>
Anton Korobeynikov7f705592007-01-12 19:20:47 +000022AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset),
Jim Laskey05a059d2006-09-07 12:23:47 +000023 cl::desc("Choose style of code to emit from X86 backend:"),
24 cl::values(
Anton Korobeynikov7f705592007-01-12 19:20:47 +000025 clEnumValN(X86Subtarget::ATT, "att", " Emit AT&T-style assembly"),
26 clEnumValN(X86Subtarget::Intel, "intel", " Emit Intel-style assembly"),
Chris Lattnercdb341d2006-09-07 22:29:41 +000027 clEnumValEnd));
Jim Laskey05a059d2006-09-07 12:23:47 +000028
Evan Cheng751c0e12006-10-16 21:00:37 +000029
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000030/// True if accessing the GV requires an extra load. For Windows, dllimported
31/// symbols are indirect, loading the value at address GV rather then the
32/// value of GV itself. This means that the GlobalAddress must be in the base
33/// or index register of the address, not the GV offset field.
Anton Korobeynikov48c8e3d2006-12-20 20:40:30 +000034bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV,
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000035 const TargetMachine& TM,
Anton Korobeynikov48c8e3d2006-12-20 20:40:30 +000036 bool isDirectCall) const
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000037{
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +000038 if (TM.getRelocationModel() != Reloc::Static)
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +000039 if (isTargetDarwin()) {
Anton Korobeynikov15fccf12006-12-20 01:03:20 +000040 return (!isDirectCall &&
41 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
42 (GV->isExternal() && !GV->hasNotBeenReadFromBytecode())));
Evan Cheng706535d2007-01-22 21:34:25 +000043 } else if (TM.getRelocationModel() == Reloc::PIC_ && isPICStyleGOT()) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +000044 // Extra load is needed for all non-statics.
45 return (!isDirectCall &&
46 (GV->isExternal() || !GV->hasInternalLinkage()));
Anton Korobeynikov317848f2007-01-03 11:43:14 +000047 } else if (isTargetCygMing() || isTargetWindows()) {
Anton Korobeynikov15fccf12006-12-20 01:03:20 +000048 return (GV->hasDLLImportLinkage());
49 }
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000050
51 return false;
52}
53
Chris Lattner1e39a152006-01-28 06:05:41 +000054/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
55/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +000056bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
57 unsigned *rECX, unsigned *rEDX) {
Evan Cheng25ab6902006-09-08 06:48:29 +000058#if defined(__x86_64__)
Evan Chengf896d1e2006-10-17 00:24:49 +000059 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
60 asm ("movq\t%%rbx, %%rsi\n\t"
61 "cpuid\n\t"
62 "xchgq\t%%rbx, %%rsi\n\t"
Evan Cheng25ab6902006-09-08 06:48:29 +000063 : "=a" (*rEAX),
64 "=S" (*rEBX),
65 "=c" (*rECX),
66 "=d" (*rEDX)
67 : "a" (value));
68 return false;
69#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Evan Cheng559806f2006-01-27 08:10:46 +000070#if defined(__GNUC__)
Evan Chengaacf9992006-11-08 20:35:37 +000071 asm ("movl\t%%ebx, %%esi\n\t"
Evan Cheng559806f2006-01-27 08:10:46 +000072 "cpuid\n\t"
Evan Chengaacf9992006-11-08 20:35:37 +000073 "xchgl\t%%ebx, %%esi\n\t"
Jeff Cohen41adb0d2006-01-28 18:09:06 +000074 : "=a" (*rEAX),
75 "=S" (*rEBX),
76 "=c" (*rECX),
77 "=d" (*rEDX)
Evan Cheng559806f2006-01-27 08:10:46 +000078 : "a" (value));
Chris Lattner1e39a152006-01-28 06:05:41 +000079 return false;
Jeff Cohen41adb0d2006-01-28 18:09:06 +000080#elif defined(_MSC_VER)
81 __asm {
82 mov eax,value
83 cpuid
84 mov esi,rEAX
85 mov dword ptr [esi],eax
86 mov esi,rEBX
87 mov dword ptr [esi],ebx
88 mov esi,rECX
89 mov dword ptr [esi],ecx
90 mov esi,rEDX
91 mov dword ptr [esi],edx
92 }
93 return false;
Evan Cheng559806f2006-01-27 08:10:46 +000094#endif
95#endif
Chris Lattner1e39a152006-01-28 06:05:41 +000096 return true;
Evan Cheng559806f2006-01-27 08:10:46 +000097}
98
Evan Chenga26eb5e2006-10-06 09:17:41 +000099void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +0000100 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +0000101 union {
Jeff Cohen216d2812006-01-28 19:48:34 +0000102 unsigned u[3];
103 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +0000104 } text;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000105
Evan Cheng751c0e12006-10-16 21:00:37 +0000106 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +0000107 return;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000108
Evan Chengabc346c2006-10-06 08:21:07 +0000109 // FIXME: support for AMD family of processors.
110 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
Evan Cheng751c0e12006-10-16 21:00:37 +0000111 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Evan Chengabc346c2006-10-06 08:21:07 +0000112
113 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
114 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
115 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
116 if (ECX & 0x1) X86SSELevel = SSE3;
117
Evan Cheng751c0e12006-10-16 21:00:37 +0000118 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Chengabc346c2006-10-06 08:21:07 +0000119 HasX86_64 = (EDX >> 29) & 0x1;
Evan Cheng559806f2006-01-27 08:10:46 +0000120 }
121}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000122
Evan Chenga26eb5e2006-10-06 09:17:41 +0000123static const char *GetCurrentX86CPU() {
124 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000125 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000126 return "generic";
127 unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11
128 unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7
Evan Cheng751c0e12006-10-16 21:00:37 +0000129 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000130 bool Em64T = (EDX >> 29) & 0x1;
Evan Chenga26eb5e2006-10-06 09:17:41 +0000131
132 union {
133 unsigned u[3];
134 char c[12];
135 } text;
136
Evan Cheng751c0e12006-10-16 21:00:37 +0000137 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000138 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
139 switch (Family) {
140 case 3:
141 return "i386";
142 case 4:
143 return "i486";
144 case 5:
145 switch (Model) {
146 case 4: return "pentium-mmx";
147 default: return "pentium";
148 }
149 case 6:
150 switch (Model) {
151 case 1: return "pentiumpro";
152 case 3:
153 case 5:
154 case 6: return "pentium2";
155 case 7:
156 case 8:
157 case 10:
158 case 11: return "pentium3";
159 case 9:
160 case 13: return "pentium-m";
161 case 14: return "yonah";
162 case 15: return "core2";
163 default: return "i686";
164 }
165 case 15: {
166 switch (Model) {
167 case 3:
168 case 4:
169 return (Em64T) ? "nocona" : "prescott";
170 default:
171 return (Em64T) ? "x86-64" : "pentium4";
172 }
173 }
174
175 default:
176 return "generic";
177 }
178 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
179 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
180 // appears to be no way to generate the wide variety of AMD-specific targets
181 // from the information returned from CPUID.
182 switch (Family) {
183 case 4:
184 return "i486";
185 case 5:
186 switch (Model) {
187 case 6:
188 case 7: return "k6";
189 case 8: return "k6-2";
190 case 9:
191 case 13: return "k6-3";
192 default: return "pentium";
193 }
194 case 6:
195 switch (Model) {
196 case 4: return "athlon-tbird";
197 case 6:
198 case 7:
199 case 8: return "athlon-mp";
200 case 10: return "athlon-xp";
201 default: return "athlon";
202 }
203 case 15:
204 switch (Model) {
205 case 5: return "athlon-fx"; // also opteron
206 default: return "athlon64";
207 }
208
209 default:
210 return "generic";
211 }
212 } else {
213 return "generic";
214 }
215}
216
Evan Cheng25ab6902006-09-08 06:48:29 +0000217X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng8e0055d2006-10-04 18:33:00 +0000218 : AsmFlavor(AsmWriterFlavor)
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000219 , PICStyle(PICStyle::None)
Evan Cheng25ab6902006-09-08 06:48:29 +0000220 , X86SSELevel(NoMMXSSE)
Evan Cheng25ab6902006-09-08 06:48:29 +0000221 , HasX86_64(false)
222 , stackAlignment(8)
223 // FIXME: this is a known good value for Yonah. How about others?
224 , MinRepStrSizeThreshold(128)
225 , Is64Bit(is64Bit)
226 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Chris Lattner104988a2006-01-27 22:37:09 +0000227
Evan Cheng97c7fc32006-01-26 09:53:06 +0000228 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000229 if (!FS.empty()) {
230 // If feature string is not empty, parse features string.
231 std::string CPU = GetCurrentX86CPU();
232 ParseSubtargetFeatures(FS, CPU);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000233
234 if (Is64Bit && !HasX86_64)
Bill Wendlingf5da1332006-12-07 22:21:48 +0000235 cerr << "Warning: Generation of 64-bit code for a 32-bit processor "
236 << "requested.\n";
Chris Lattner3b6f4972006-11-20 18:16:05 +0000237 if (Is64Bit && X86SSELevel < SSE2)
Bill Wendlingf5da1332006-12-07 22:21:48 +0000238 cerr << "Warning: 64-bit processors all have at least SSE2.\n";
Chris Lattner3b6f4972006-11-20 18:16:05 +0000239 } else {
240 // Otherwise, use CPUID to auto-detect feature set.
241 AutoDetectSubtargetFeatures();
242 }
243
244 // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features
245 // are enabled. These are available on all x86-64 CPUs.
246 if (Is64Bit) {
247 HasX86_64 = true;
248 if (X86SSELevel < SSE2)
249 X86SSELevel = SSE2;
Evan Cheng25ab6902006-09-08 06:48:29 +0000250 }
251
Nate Begemanfb5792f2005-07-12 01:41:54 +0000252 // Set the boolean corresponding to the current target triple, or the default
253 // if one cannot be determined, to true.
254 const std::string& TT = M.getTargetTriple();
255 if (TT.length() > 5) {
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000256 if (TT.find("cygwin") != std::string::npos)
Chris Lattnere5600e52005-11-21 22:31:58 +0000257 TargetType = isCygwin;
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000258 else if (TT.find("mingw") != std::string::npos)
259 TargetType = isMingw;
Chris Lattnere5600e52005-11-21 22:31:58 +0000260 else if (TT.find("darwin") != std::string::npos)
261 TargetType = isDarwin;
262 else if (TT.find("win32") != std::string::npos)
263 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000264 } else if (TT.empty()) {
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000265#if defined(__CYGWIN__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000266 TargetType = isCygwin;
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000267#elif defined(__MINGW32__)
268 TargetType = isMingw;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000269#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000270 TargetType = isDarwin;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000271#elif defined(_WIN32)
Chris Lattnere5600e52005-11-21 22:31:58 +0000272 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000273#endif
274 }
275
Chris Lattnercdb341d2006-09-07 22:29:41 +0000276 // If the asm syntax hasn't been overridden on the command line, use whatever
277 // the target wants.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000278 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattnercdb341d2006-09-07 22:29:41 +0000279 if (TargetType == isWindows) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000280 AsmFlavor = X86Subtarget::Intel;
Chris Lattnercdb341d2006-09-07 22:29:41 +0000281 } else {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000282 AsmFlavor = X86Subtarget::ATT;
Chris Lattnercdb341d2006-09-07 22:29:41 +0000283 }
284 }
285
Evan Chengb4809b22006-11-29 02:00:40 +0000286 if (TargetType == isDarwin ||
287 TargetType == isCygwin ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000288 TargetType == isMingw ||
Evan Chengb4809b22006-11-29 02:00:40 +0000289 (TargetType == isELF && Is64Bit))
Nate Begemanfb5792f2005-07-12 01:41:54 +0000290 stackAlignment = 16;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000291}