blob: 019b65c6deb2d70acfd1ccb96b4ff5dc79434410 [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//
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.
Nate Begemanfb5792f2005-07-12 01:41:54 +00007//
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 Korobeynikovb10308e2007-01-28 13:31:35 +000038 // FIXME: PIC
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +000039 if (TM.getRelocationModel() != Reloc::Static) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +000040 if (isTargetDarwin()) {
Anton Korobeynikov15fccf12006-12-20 01:03:20 +000041 return (!isDirectCall &&
42 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Gabor Greifa99be512007-07-05 17:07:56 +000043 (GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode())));
Anton Korobeynikov49964d62008-01-20 13:58:16 +000044 } else if (isTargetELF()) {
Anton Korobeynikov5032e5a2007-01-17 10:33:08 +000045 // Extra load is needed for all non-statics.
46 return (!isDirectCall &&
Reid Spencer5cbf9852007-01-30 20:08:39 +000047 (GV->isDeclaration() || !GV->hasInternalLinkage()));
Anton Korobeynikov317848f2007-01-03 11:43:14 +000048 } else if (isTargetCygMing() || isTargetWindows()) {
Anton Korobeynikov15fccf12006-12-20 01:03:20 +000049 return (GV->hasDLLImportLinkage());
50 }
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +000051 }
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000052
53 return false;
54}
55
Chris Lattner1e39a152006-01-28 06:05:41 +000056/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
57/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +000058bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
59 unsigned *rECX, unsigned *rEDX) {
Evan Cheng25ab6902006-09-08 06:48:29 +000060#if defined(__x86_64__)
Evan Chengf896d1e2006-10-17 00:24:49 +000061 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
62 asm ("movq\t%%rbx, %%rsi\n\t"
63 "cpuid\n\t"
64 "xchgq\t%%rbx, %%rsi\n\t"
Evan Cheng25ab6902006-09-08 06:48:29 +000065 : "=a" (*rEAX),
66 "=S" (*rEBX),
67 "=c" (*rECX),
68 "=d" (*rEDX)
69 : "a" (value));
70 return false;
71#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Evan Cheng559806f2006-01-27 08:10:46 +000072#if defined(__GNUC__)
Evan Chengaacf9992006-11-08 20:35:37 +000073 asm ("movl\t%%ebx, %%esi\n\t"
Evan Cheng559806f2006-01-27 08:10:46 +000074 "cpuid\n\t"
Evan Chengaacf9992006-11-08 20:35:37 +000075 "xchgl\t%%ebx, %%esi\n\t"
Jeff Cohen41adb0d2006-01-28 18:09:06 +000076 : "=a" (*rEAX),
77 "=S" (*rEBX),
78 "=c" (*rECX),
79 "=d" (*rEDX)
Evan Cheng559806f2006-01-27 08:10:46 +000080 : "a" (value));
Chris Lattner1e39a152006-01-28 06:05:41 +000081 return false;
Jeff Cohen41adb0d2006-01-28 18:09:06 +000082#elif defined(_MSC_VER)
83 __asm {
84 mov eax,value
85 cpuid
86 mov esi,rEAX
87 mov dword ptr [esi],eax
88 mov esi,rEBX
89 mov dword ptr [esi],ebx
90 mov esi,rECX
91 mov dword ptr [esi],ecx
92 mov esi,rEDX
93 mov dword ptr [esi],edx
94 }
95 return false;
Evan Cheng559806f2006-01-27 08:10:46 +000096#endif
97#endif
Chris Lattner1e39a152006-01-28 06:05:41 +000098 return true;
Evan Cheng559806f2006-01-27 08:10:46 +000099}
100
Evan Chenga26eb5e2006-10-06 09:17:41 +0000101void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +0000102 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +0000103 union {
Jeff Cohen216d2812006-01-28 19:48:34 +0000104 unsigned u[3];
105 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +0000106 } text;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000107
Evan Cheng751c0e12006-10-16 21:00:37 +0000108 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +0000109 return;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000110
111 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000112
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000113 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;
Bill Wendlingbb1ee052007-04-10 22:10:25 +0000117 if ((ECX >> 9) & 0x1) X86SSELevel = SSSE3;
Nate Begeman63ec90a2008-02-03 07:18:54 +0000118 if ((ECX >> 19) & 0x1) X86SSELevel = SSE41;
119 if ((ECX >> 20) & 0x1) X86SSELevel = SSE42;
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000120
Jeff Cohenc3987092007-04-16 21:59:44 +0000121 if (memcmp(text.c, "GenuineIntel", 12) == 0 ||
122 memcmp(text.c, "AuthenticAMD", 12) == 0) {
123 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
124 HasX86_64 = (EDX >> 29) & 0x1;
125 }
Evan Cheng559806f2006-01-27 08:10:46 +0000126}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000127
Evan Chenga26eb5e2006-10-06 09:17:41 +0000128static const char *GetCurrentX86CPU() {
129 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000130 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000131 return "generic";
132 unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11
133 unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7
Evan Cheng751c0e12006-10-16 21:00:37 +0000134 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000135 bool Em64T = (EDX >> 29) & 0x1;
Evan Chenga26eb5e2006-10-06 09:17:41 +0000136
137 union {
138 unsigned u[3];
139 char c[12];
140 } text;
141
Evan Cheng751c0e12006-10-16 21:00:37 +0000142 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000143 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
144 switch (Family) {
145 case 3:
146 return "i386";
147 case 4:
148 return "i486";
149 case 5:
150 switch (Model) {
151 case 4: return "pentium-mmx";
152 default: return "pentium";
153 }
154 case 6:
155 switch (Model) {
156 case 1: return "pentiumpro";
157 case 3:
158 case 5:
159 case 6: return "pentium2";
160 case 7:
161 case 8:
162 case 10:
163 case 11: return "pentium3";
164 case 9:
165 case 13: return "pentium-m";
166 case 14: return "yonah";
167 case 15: return "core2";
168 default: return "i686";
169 }
170 case 15: {
171 switch (Model) {
172 case 3:
173 case 4:
174 return (Em64T) ? "nocona" : "prescott";
175 default:
176 return (Em64T) ? "x86-64" : "pentium4";
177 }
178 }
179
180 default:
181 return "generic";
182 }
183 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
184 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
185 // appears to be no way to generate the wide variety of AMD-specific targets
186 // from the information returned from CPUID.
187 switch (Family) {
188 case 4:
189 return "i486";
190 case 5:
191 switch (Model) {
192 case 6:
193 case 7: return "k6";
194 case 8: return "k6-2";
195 case 9:
196 case 13: return "k6-3";
197 default: return "pentium";
198 }
199 case 6:
200 switch (Model) {
201 case 4: return "athlon-tbird";
202 case 6:
203 case 7:
204 case 8: return "athlon-mp";
205 case 10: return "athlon-xp";
206 default: return "athlon";
207 }
208 case 15:
209 switch (Model) {
Anton Korobeynikov3b5ee732007-03-23 23:46:48 +0000210 case 1: return "opteron";
Evan Chenga26eb5e2006-10-06 09:17:41 +0000211 case 5: return "athlon-fx"; // also opteron
212 default: return "athlon64";
213 }
Evan Chenga26eb5e2006-10-06 09:17:41 +0000214 default:
215 return "generic";
216 }
217 } else {
218 return "generic";
219 }
220}
221
Evan Cheng25ab6902006-09-08 06:48:29 +0000222X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng8e0055d2006-10-04 18:33:00 +0000223 : AsmFlavor(AsmWriterFlavor)
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000224 , PICStyle(PICStyle::None)
Evan Cheng25ab6902006-09-08 06:48:29 +0000225 , X86SSELevel(NoMMXSSE)
Evan Cheng25ab6902006-09-08 06:48:29 +0000226 , HasX86_64(false)
Chris Lattner7ad92d82008-01-02 19:44:55 +0000227 , DarwinVers(0)
Evan Cheng25ab6902006-09-08 06:48:29 +0000228 , stackAlignment(8)
229 // FIXME: this is a known good value for Yonah. How about others?
Rafael Espindolafc05f402007-10-31 11:52:06 +0000230 , MaxInlineSizeThreshold(128)
Evan Cheng25ab6902006-09-08 06:48:29 +0000231 , Is64Bit(is64Bit)
232 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Chris Lattner104988a2006-01-27 22:37:09 +0000233
Evan Cheng97c7fc32006-01-26 09:53:06 +0000234 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000235 if (!FS.empty()) {
236 // If feature string is not empty, parse features string.
237 std::string CPU = GetCurrentX86CPU();
238 ParseSubtargetFeatures(FS, CPU);
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) {
Duncan Sandse51775d2008-01-08 10:06:15 +0000256 size_t Pos;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000257 if ((Pos = TT.find("-darwin")) != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000258 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000259
260 // Compute the darwin version number.
261 if (isdigit(TT[Pos+7]))
262 DarwinVers = atoi(&TT[Pos+7]);
263 else
264 DarwinVers = 8; // Minimum supported darwin is Tiger.
265 } else if (TT.find("cygwin") != std::string::npos) {
266 TargetType = isCygwin;
267 } else if (TT.find("mingw") != std::string::npos) {
268 TargetType = isMingw;
269 } else if (TT.find("win32") != std::string::npos) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000270 TargetType = isWindows;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000271 }
Nate Begemanfb5792f2005-07-12 01:41:54 +0000272 } else if (TT.empty()) {
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000273#if defined(__CYGWIN__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000274 TargetType = isCygwin;
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000275#elif defined(__MINGW32__)
276 TargetType = isMingw;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000277#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000278 TargetType = isDarwin;
Chris Lattner7ad92d82008-01-02 19:44:55 +0000279#if __APPLE_CC__ > 5400
280 DarwinVers = 9; // GCC 5400+ is Leopard.
281#else
282 DarwinVers = 8; // Minimum supported darwin is Tiger.
283#endif
284
Nate Begemanfb5792f2005-07-12 01:41:54 +0000285#elif defined(_WIN32)
Chris Lattnere5600e52005-11-21 22:31:58 +0000286 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000287#endif
288 }
289
Chris Lattnercdb341d2006-09-07 22:29:41 +0000290 // If the asm syntax hasn't been overridden on the command line, use whatever
291 // the target wants.
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000292 if (AsmFlavor == X86Subtarget::Unset) {
Chris Lattner7ad92d82008-01-02 19:44:55 +0000293 AsmFlavor = (TargetType == isWindows)
294 ? X86Subtarget::Intel : X86Subtarget::ATT;
Chris Lattnercdb341d2006-09-07 22:29:41 +0000295 }
296
Evan Chengb4809b22006-11-29 02:00:40 +0000297 if (TargetType == isDarwin ||
298 TargetType == isCygwin ||
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000299 TargetType == isMingw ||
Evan Chengb4809b22006-11-29 02:00:40 +0000300 (TargetType == isELF && Is64Bit))
Nate Begemanfb5792f2005-07-12 01:41:54 +0000301 stackAlignment = 16;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000302}