blob: 51406c392792a6c8f36de9cde90211a356028d84 [file] [log] [blame]
Nate Begeman3bcfcd92005-08-04 07:12:09 +00001//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
Nate Begemanf26625e2005-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 Chengff1beda2006-10-06 09:17:41 +000015#include "X86GenSubtarget.inc"
Nate Begemanf26625e2005-07-12 01:41:54 +000016#include "llvm/Module.h"
Jim Laskeyc7abe472006-09-07 12:23:47 +000017#include "llvm/Support/CommandLine.h"
Anton Korobeynikov430e68a12006-12-22 22:29:05 +000018#include "llvm/Target/TargetMachine.h"
Nate Begemanf26625e2005-07-12 01:41:54 +000019using namespace llvm;
20
Jim Laskeyc7abe472006-09-07 12:23:47 +000021cl::opt<X86Subtarget::AsmWriterFlavorTy>
Anton Korobeynikova0554d92007-01-12 19:20:47 +000022AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset),
Jim Laskeyc7abe472006-09-07 12:23:47 +000023 cl::desc("Choose style of code to emit from X86 backend:"),
24 cl::values(
Anton Korobeynikova0554d92007-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 Lattnerb9e0a9e2006-09-07 22:29:41 +000027 clEnumValEnd));
Jim Laskeyc7abe472006-09-07 12:23:47 +000028
Evan Chenga8b4aea2006-10-16 21:00:37 +000029
Anton Korobeynikov6dbdfe22006-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 Korobeynikovb3d704c2006-12-20 20:40:30 +000034bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV,
Anton Korobeynikov430e68a12006-12-22 22:29:05 +000035 const TargetMachine& TM,
Anton Korobeynikovb3d704c2006-12-20 20:40:30 +000036 bool isDirectCall) const
Anton Korobeynikov6dbdfe22006-11-30 22:42:55 +000037{
Anton Korobeynikov037c8672007-01-28 13:31:35 +000038 // FIXME: PIC
Anton Korobeynikov430e68a12006-12-22 22:29:05 +000039 if (TM.getRelocationModel() != Reloc::Static)
Anton Korobeynikov3f6d5282007-01-17 10:33:08 +000040 if (isTargetDarwin()) {
Anton Korobeynikov93acb492006-12-20 01:03:20 +000041 return (!isDirectCall &&
42 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Gabor Greife16561c2007-07-05 17:07:56 +000043 (GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode())));
Evan Cheng1281dc32007-01-22 21:34:25 +000044 } else if (TM.getRelocationModel() == Reloc::PIC_ && isPICStyleGOT()) {
Anton Korobeynikov3f6d5282007-01-17 10:33:08 +000045 // Extra load is needed for all non-statics.
46 return (!isDirectCall &&
Reid Spencer5301e7c2007-01-30 20:08:39 +000047 (GV->isDeclaration() || !GV->hasInternalLinkage()));
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +000048 } else if (isTargetCygMing() || isTargetWindows()) {
Anton Korobeynikov93acb492006-12-20 01:03:20 +000049 return (GV->hasDLLImportLinkage());
50 }
Anton Korobeynikov6dbdfe22006-11-30 22:42:55 +000051
52 return false;
53}
54
Chris Lattnerdc8bbb62006-01-28 06:05:41 +000055/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
56/// specified arguments. If we can't run cpuid on the host, return true.
Evan Chenga8b4aea2006-10-16 21:00:37 +000057bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
58 unsigned *rECX, unsigned *rEDX) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +000059#if defined(__x86_64__)
Evan Chenga3e1ad72006-10-17 00:24:49 +000060 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
61 asm ("movq\t%%rbx, %%rsi\n\t"
62 "cpuid\n\t"
63 "xchgq\t%%rbx, %%rsi\n\t"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000064 : "=a" (*rEAX),
65 "=S" (*rEBX),
66 "=c" (*rECX),
67 "=d" (*rEDX)
68 : "a" (value));
69 return false;
70#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Evan Chengcde9e302006-01-27 08:10:46 +000071#if defined(__GNUC__)
Evan Cheng3b3b7862006-11-08 20:35:37 +000072 asm ("movl\t%%ebx, %%esi\n\t"
Evan Chengcde9e302006-01-27 08:10:46 +000073 "cpuid\n\t"
Evan Cheng3b3b7862006-11-08 20:35:37 +000074 "xchgl\t%%ebx, %%esi\n\t"
Jeff Cohene128d5f2006-01-28 18:09:06 +000075 : "=a" (*rEAX),
76 "=S" (*rEBX),
77 "=c" (*rECX),
78 "=d" (*rEDX)
Evan Chengcde9e302006-01-27 08:10:46 +000079 : "a" (value));
Chris Lattnerdc8bbb62006-01-28 06:05:41 +000080 return false;
Jeff Cohene128d5f2006-01-28 18:09:06 +000081#elif defined(_MSC_VER)
82 __asm {
83 mov eax,value
84 cpuid
85 mov esi,rEAX
86 mov dword ptr [esi],eax
87 mov esi,rEBX
88 mov dword ptr [esi],ebx
89 mov esi,rECX
90 mov dword ptr [esi],ecx
91 mov esi,rEDX
92 mov dword ptr [esi],edx
93 }
94 return false;
Evan Chengcde9e302006-01-27 08:10:46 +000095#endif
96#endif
Chris Lattnerdc8bbb62006-01-28 06:05:41 +000097 return true;
Evan Chengcde9e302006-01-27 08:10:46 +000098}
99
Evan Chengff1beda2006-10-06 09:17:41 +0000100void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengafab7aa2006-01-27 19:30:30 +0000101 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohen71287082006-01-28 18:47:32 +0000102 union {
Jeff Cohen58ca0be92006-01-28 19:48:34 +0000103 unsigned u[3];
104 char c[12];
Jeff Cohen71287082006-01-28 18:47:32 +0000105 } text;
Chris Lattner3e962112006-11-20 18:16:05 +0000106
Evan Chenga8b4aea2006-10-16 21:00:37 +0000107 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Cheng9274f722006-10-06 08:21:07 +0000108 return;
Anton Korobeynikov8aae2d72007-03-23 23:46:48 +0000109
110 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Chris Lattner3e962112006-11-20 18:16:05 +0000111
Anton Korobeynikov8aae2d72007-03-23 23:46:48 +0000112 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
113 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
114 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
115 if (ECX & 0x1) X86SSELevel = SSE3;
Bill Wendlingf0998412007-04-10 22:10:25 +0000116 if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3;
Anton Korobeynikov8aae2d72007-03-23 23:46:48 +0000117
Jeff Cohen6f3a5482007-04-16 21:59:44 +0000118 if (memcmp(text.c, "GenuineIntel", 12) == 0 ||
119 memcmp(text.c, "AuthenticAMD", 12) == 0) {
120 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
121 HasX86_64 = (EDX >> 29) & 0x1;
122 }
Evan Chengcde9e302006-01-27 08:10:46 +0000123}
Evan Cheng54c13da2006-01-26 09:53:06 +0000124
Evan Chengff1beda2006-10-06 09:17:41 +0000125static const char *GetCurrentX86CPU() {
126 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Chenga8b4aea2006-10-16 21:00:37 +0000127 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chengff1beda2006-10-06 09:17:41 +0000128 return "generic";
129 unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11
130 unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7
Evan Chenga8b4aea2006-10-16 21:00:37 +0000131 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng5fe96802006-10-06 18:57:51 +0000132 bool Em64T = (EDX >> 29) & 0x1;
Evan Chengff1beda2006-10-06 09:17:41 +0000133
134 union {
135 unsigned u[3];
136 char c[12];
137 } text;
138
Evan Chenga8b4aea2006-10-16 21:00:37 +0000139 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chengff1beda2006-10-06 09:17:41 +0000140 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
141 switch (Family) {
142 case 3:
143 return "i386";
144 case 4:
145 return "i486";
146 case 5:
147 switch (Model) {
148 case 4: return "pentium-mmx";
149 default: return "pentium";
150 }
151 case 6:
152 switch (Model) {
153 case 1: return "pentiumpro";
154 case 3:
155 case 5:
156 case 6: return "pentium2";
157 case 7:
158 case 8:
159 case 10:
160 case 11: return "pentium3";
161 case 9:
162 case 13: return "pentium-m";
163 case 14: return "yonah";
164 case 15: return "core2";
165 default: return "i686";
166 }
167 case 15: {
168 switch (Model) {
169 case 3:
170 case 4:
171 return (Em64T) ? "nocona" : "prescott";
172 default:
173 return (Em64T) ? "x86-64" : "pentium4";
174 }
175 }
176
177 default:
178 return "generic";
179 }
180 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
181 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
182 // appears to be no way to generate the wide variety of AMD-specific targets
183 // from the information returned from CPUID.
184 switch (Family) {
185 case 4:
186 return "i486";
187 case 5:
188 switch (Model) {
189 case 6:
190 case 7: return "k6";
191 case 8: return "k6-2";
192 case 9:
193 case 13: return "k6-3";
194 default: return "pentium";
195 }
196 case 6:
197 switch (Model) {
198 case 4: return "athlon-tbird";
199 case 6:
200 case 7:
201 case 8: return "athlon-mp";
202 case 10: return "athlon-xp";
203 default: return "athlon";
204 }
205 case 15:
206 switch (Model) {
Anton Korobeynikov8aae2d72007-03-23 23:46:48 +0000207 case 1: return "opteron";
Evan Chengff1beda2006-10-06 09:17:41 +0000208 case 5: return "athlon-fx"; // also opteron
209 default: return "athlon64";
210 }
Evan Chengff1beda2006-10-06 09:17:41 +0000211 default:
212 return "generic";
213 }
214 } else {
215 return "generic";
216 }
217}
218
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000219X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng412aaab2006-10-04 18:33:00 +0000220 : AsmFlavor(AsmWriterFlavor)
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000221 , PICStyle(PICStyle::None)
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000222 , X86SSELevel(NoMMXSSE)
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000223 , HasX86_64(false)
224 , stackAlignment(8)
225 // FIXME: this is a known good value for Yonah. How about others?
226 , MinRepStrSizeThreshold(128)
227 , Is64Bit(is64Bit)
Evan Cheng763cdfd2007-08-01 23:45:51 +0000228 , HasLow4GUserAddress(true)
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000229 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Chris Lattnerdbfc2992006-01-27 22:37:09 +0000230
Evan Cheng54c13da2006-01-26 09:53:06 +0000231 // Determine default and user specified characteristics
Evan Chengff1beda2006-10-06 09:17:41 +0000232 if (!FS.empty()) {
233 // If feature string is not empty, parse features string.
234 std::string CPU = GetCurrentX86CPU();
235 ParseSubtargetFeatures(FS, CPU);
Chris Lattner3e962112006-11-20 18:16:05 +0000236
237 if (Is64Bit && !HasX86_64)
Bill Wendling9bfb1e12006-12-07 22:21:48 +0000238 cerr << "Warning: Generation of 64-bit code for a 32-bit processor "
239 << "requested.\n";
Chris Lattner3e962112006-11-20 18:16:05 +0000240 if (Is64Bit && X86SSELevel < SSE2)
Bill Wendling9bfb1e12006-12-07 22:21:48 +0000241 cerr << "Warning: 64-bit processors all have at least SSE2.\n";
Chris Lattner3e962112006-11-20 18:16:05 +0000242 } else {
243 // Otherwise, use CPUID to auto-detect feature set.
244 AutoDetectSubtargetFeatures();
245 }
246
247 // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features
248 // are enabled. These are available on all x86-64 CPUs.
249 if (Is64Bit) {
250 HasX86_64 = true;
251 if (X86SSELevel < SSE2)
252 X86SSELevel = SSE2;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000253 }
254
Nate Begemanf26625e2005-07-12 01:41:54 +0000255 // Set the boolean corresponding to the current target triple, or the default
256 // if one cannot be determined, to true.
257 const std::string& TT = M.getTargetTriple();
258 if (TT.length() > 5) {
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000259 if (TT.find("cygwin") != std::string::npos)
Chris Lattner3eb87612005-11-21 22:31:58 +0000260 TargetType = isCygwin;
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000261 else if (TT.find("mingw") != std::string::npos)
262 TargetType = isMingw;
Chris Lattner3eb87612005-11-21 22:31:58 +0000263 else if (TT.find("darwin") != std::string::npos)
264 TargetType = isDarwin;
265 else if (TT.find("win32") != std::string::npos)
266 TargetType = isWindows;
Nate Begemanf26625e2005-07-12 01:41:54 +0000267 } else if (TT.empty()) {
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000268#if defined(__CYGWIN__)
Chris Lattner3eb87612005-11-21 22:31:58 +0000269 TargetType = isCygwin;
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000270#elif defined(__MINGW32__)
271 TargetType = isMingw;
Nate Begemanf26625e2005-07-12 01:41:54 +0000272#elif defined(__APPLE__)
Chris Lattner3eb87612005-11-21 22:31:58 +0000273 TargetType = isDarwin;
Nate Begemanf26625e2005-07-12 01:41:54 +0000274#elif defined(_WIN32)
Chris Lattner3eb87612005-11-21 22:31:58 +0000275 TargetType = isWindows;
Nate Begemanf26625e2005-07-12 01:41:54 +0000276#endif
277 }
278
Chris Lattnerb9e0a9e2006-09-07 22:29:41 +0000279 // If the asm syntax hasn't been overridden on the command line, use whatever
280 // the target wants.
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000281 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattnerb9e0a9e2006-09-07 22:29:41 +0000282 if (TargetType == isWindows) {
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000283 AsmFlavor = X86Subtarget::Intel;
Chris Lattnerb9e0a9e2006-09-07 22:29:41 +0000284 } else {
Anton Korobeynikova0554d92007-01-12 19:20:47 +0000285 AsmFlavor = X86Subtarget::ATT;
Chris Lattnerb9e0a9e2006-09-07 22:29:41 +0000286 }
287 }
288
Evan Cheng763cdfd2007-08-01 23:45:51 +0000289 if (TargetType == isDarwin && Is64Bit)
290 HasLow4GUserAddress = false;
291
Evan Cheng8facb432006-11-29 02:00:40 +0000292 if (TargetType == isDarwin ||
293 TargetType == isCygwin ||
Anton Korobeynikov4efbbc92007-01-03 11:43:14 +0000294 TargetType == isMingw ||
Evan Cheng8facb432006-11-29 02:00:40 +0000295 (TargetType == isELF && Is64Bit))
Nate Begemanf26625e2005-07-12 01:41:54 +0000296 stackAlignment = 16;
Nate Begemanf26625e2005-07-12 01:41:54 +0000297}