blob: 5281dcda7aab466e6c6e4cd1cccd7c5b414f3bdc [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"
Nate Begemanfb5792f2005-07-12 01:41:54 +000018using namespace llvm;
19
Jim Laskey05a059d2006-09-07 12:23:47 +000020cl::opt<X86Subtarget::AsmWriterFlavorTy>
Chris Lattnercdb341d2006-09-07 22:29:41 +000021AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::unset),
Jim Laskey05a059d2006-09-07 12:23:47 +000022 cl::desc("Choose style of code to emit from X86 backend:"),
23 cl::values(
24 clEnumValN(X86Subtarget::att, "att", " Emit AT&T-style assembly"),
25 clEnumValN(X86Subtarget::intel, "intel", " Emit Intel-style assembly"),
Chris Lattnercdb341d2006-09-07 22:29:41 +000026 clEnumValEnd));
Jim Laskey05a059d2006-09-07 12:23:47 +000027
Evan Cheng751c0e12006-10-16 21:00:37 +000028
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000029/// True if accessing the GV requires an extra load. For Windows, dllimported
30/// symbols are indirect, loading the value at address GV rather then the
31/// value of GV itself. This means that the GlobalAddress must be in the base
32/// or index register of the address, not the GV offset field.
33bool X86Subtarget::GVRequiresExtraLoad(const GlobalValue* GV, bool isDirectCall) const
34{
Anton Korobeynikov15fccf12006-12-20 01:03:20 +000035 if (GenerateExtraLoadsForGVs)
36 if (isTargetDarwin()) {
37 return (!isDirectCall &&
38 (GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
39 (GV->isExternal() && !GV->hasNotBeenReadFromBytecode())));
40 } else if (isTargetCygwin() || isTargetWindows()) {
41 return (GV->hasDLLImportLinkage());
42 }
Anton Korobeynikov7784ebc2006-11-30 22:42:55 +000043
44 return false;
45}
46
Chris Lattner1e39a152006-01-28 06:05:41 +000047/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
48/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +000049bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
50 unsigned *rECX, unsigned *rEDX) {
Evan Cheng25ab6902006-09-08 06:48:29 +000051#if defined(__x86_64__)
Evan Chengf896d1e2006-10-17 00:24:49 +000052 // gcc doesn't know cpuid would clobber ebx/rbx. Preseve it manually.
53 asm ("movq\t%%rbx, %%rsi\n\t"
54 "cpuid\n\t"
55 "xchgq\t%%rbx, %%rsi\n\t"
Evan Cheng25ab6902006-09-08 06:48:29 +000056 : "=a" (*rEAX),
57 "=S" (*rEBX),
58 "=c" (*rECX),
59 "=d" (*rEDX)
60 : "a" (value));
61 return false;
62#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Evan Cheng559806f2006-01-27 08:10:46 +000063#if defined(__GNUC__)
Evan Chengaacf9992006-11-08 20:35:37 +000064 asm ("movl\t%%ebx, %%esi\n\t"
Evan Cheng559806f2006-01-27 08:10:46 +000065 "cpuid\n\t"
Evan Chengaacf9992006-11-08 20:35:37 +000066 "xchgl\t%%ebx, %%esi\n\t"
Jeff Cohen41adb0d2006-01-28 18:09:06 +000067 : "=a" (*rEAX),
68 "=S" (*rEBX),
69 "=c" (*rECX),
70 "=d" (*rEDX)
Evan Cheng559806f2006-01-27 08:10:46 +000071 : "a" (value));
Chris Lattner1e39a152006-01-28 06:05:41 +000072 return false;
Jeff Cohen41adb0d2006-01-28 18:09:06 +000073#elif defined(_MSC_VER)
74 __asm {
75 mov eax,value
76 cpuid
77 mov esi,rEAX
78 mov dword ptr [esi],eax
79 mov esi,rEBX
80 mov dword ptr [esi],ebx
81 mov esi,rECX
82 mov dword ptr [esi],ecx
83 mov esi,rEDX
84 mov dword ptr [esi],edx
85 }
86 return false;
Evan Cheng559806f2006-01-27 08:10:46 +000087#endif
88#endif
Chris Lattner1e39a152006-01-28 06:05:41 +000089 return true;
Evan Cheng559806f2006-01-27 08:10:46 +000090}
91
Evan Chenga26eb5e2006-10-06 09:17:41 +000092void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +000093 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +000094 union {
Jeff Cohen216d2812006-01-28 19:48:34 +000095 unsigned u[3];
96 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +000097 } text;
Chris Lattner3b6f4972006-11-20 18:16:05 +000098
Evan Cheng751c0e12006-10-16 21:00:37 +000099 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +0000100 return;
Chris Lattner3b6f4972006-11-20 18:16:05 +0000101
Evan Chengabc346c2006-10-06 08:21:07 +0000102 // FIXME: support for AMD family of processors.
103 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
Evan Cheng751c0e12006-10-16 21:00:37 +0000104 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Evan Chengabc346c2006-10-06 08:21:07 +0000105
106 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
107 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
108 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
109 if (ECX & 0x1) X86SSELevel = SSE3;
110
Evan Cheng751c0e12006-10-16 21:00:37 +0000111 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Chengabc346c2006-10-06 08:21:07 +0000112 HasX86_64 = (EDX >> 29) & 0x1;
Evan Cheng559806f2006-01-27 08:10:46 +0000113 }
114}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000115
Evan Chenga26eb5e2006-10-06 09:17:41 +0000116static const char *GetCurrentX86CPU() {
117 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000118 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000119 return "generic";
120 unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11
121 unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7
Evan Cheng751c0e12006-10-16 21:00:37 +0000122 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000123 bool Em64T = (EDX >> 29) & 0x1;
Evan Chenga26eb5e2006-10-06 09:17:41 +0000124
125 union {
126 unsigned u[3];
127 char c[12];
128 } text;
129
Evan Cheng751c0e12006-10-16 21:00:37 +0000130 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000131 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
132 switch (Family) {
133 case 3:
134 return "i386";
135 case 4:
136 return "i486";
137 case 5:
138 switch (Model) {
139 case 4: return "pentium-mmx";
140 default: return "pentium";
141 }
142 case 6:
143 switch (Model) {
144 case 1: return "pentiumpro";
145 case 3:
146 case 5:
147 case 6: return "pentium2";
148 case 7:
149 case 8:
150 case 10:
151 case 11: return "pentium3";
152 case 9:
153 case 13: return "pentium-m";
154 case 14: return "yonah";
155 case 15: return "core2";
156 default: return "i686";
157 }
158 case 15: {
159 switch (Model) {
160 case 3:
161 case 4:
162 return (Em64T) ? "nocona" : "prescott";
163 default:
164 return (Em64T) ? "x86-64" : "pentium4";
165 }
166 }
167
168 default:
169 return "generic";
170 }
171 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
172 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
173 // appears to be no way to generate the wide variety of AMD-specific targets
174 // from the information returned from CPUID.
175 switch (Family) {
176 case 4:
177 return "i486";
178 case 5:
179 switch (Model) {
180 case 6:
181 case 7: return "k6";
182 case 8: return "k6-2";
183 case 9:
184 case 13: return "k6-3";
185 default: return "pentium";
186 }
187 case 6:
188 switch (Model) {
189 case 4: return "athlon-tbird";
190 case 6:
191 case 7:
192 case 8: return "athlon-mp";
193 case 10: return "athlon-xp";
194 default: return "athlon";
195 }
196 case 15:
197 switch (Model) {
198 case 5: return "athlon-fx"; // also opteron
199 default: return "athlon64";
200 }
201
202 default:
203 return "generic";
204 }
205 } else {
206 return "generic";
207 }
208}
209
Anton Korobeynikov15fccf12006-12-20 01:03:20 +0000210/// SetJITMode - This is called to inform the subtarget info that we are
211/// producing code for the JIT.
212void X86Subtarget::SetJITMode() {
213 // JIT mode doesn't want extra loads for dllimported symbols, it knows exactly
214 // where everything is.
215 if (isTargetCygwin())
216 GenerateExtraLoadsForGVs = false;
217}
218
Evan Cheng25ab6902006-09-08 06:48:29 +0000219X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng8e0055d2006-10-04 18:33:00 +0000220 : AsmFlavor(AsmWriterFlavor)
Evan Cheng25ab6902006-09-08 06:48:29 +0000221 , X86SSELevel(NoMMXSSE)
Evan Cheng25ab6902006-09-08 06:48:29 +0000222 , HasX86_64(false)
223 , stackAlignment(8)
224 // FIXME: this is a known good value for Yonah. How about others?
225 , MinRepStrSizeThreshold(128)
226 , Is64Bit(is64Bit)
Anton Korobeynikov15fccf12006-12-20 01:03:20 +0000227 , GenerateExtraLoadsForGVs(true)
Evan Cheng25ab6902006-09-08 06:48:29 +0000228 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Chris Lattner104988a2006-01-27 22:37:09 +0000229
Evan Cheng97c7fc32006-01-26 09:53:06 +0000230 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000231 if (!FS.empty()) {
232 // If feature string is not empty, parse features string.
233 std::string CPU = GetCurrentX86CPU();
234 ParseSubtargetFeatures(FS, CPU);
Chris Lattner3b6f4972006-11-20 18:16:05 +0000235
236 if (Is64Bit && !HasX86_64)
Bill Wendlingf5da1332006-12-07 22:21:48 +0000237 cerr << "Warning: Generation of 64-bit code for a 32-bit processor "
238 << "requested.\n";
Chris Lattner3b6f4972006-11-20 18:16:05 +0000239 if (Is64Bit && X86SSELevel < SSE2)
Bill Wendlingf5da1332006-12-07 22:21:48 +0000240 cerr << "Warning: 64-bit processors all have at least SSE2.\n";
Chris Lattner3b6f4972006-11-20 18:16:05 +0000241 } else {
242 // Otherwise, use CPUID to auto-detect feature set.
243 AutoDetectSubtargetFeatures();
244 }
245
246 // If requesting codegen for X86-64, make sure that 64-bit and SSE2 features
247 // are enabled. These are available on all x86-64 CPUs.
248 if (Is64Bit) {
249 HasX86_64 = true;
250 if (X86SSELevel < SSE2)
251 X86SSELevel = SSE2;
Evan Cheng25ab6902006-09-08 06:48:29 +0000252 }
253
Nate Begemanfb5792f2005-07-12 01:41:54 +0000254 // Set the boolean corresponding to the current target triple, or the default
255 // if one cannot be determined, to true.
256 const std::string& TT = M.getTargetTriple();
257 if (TT.length() > 5) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000258 if (TT.find("cygwin") != std::string::npos ||
259 TT.find("mingw") != std::string::npos)
260 TargetType = isCygwin;
261 else if (TT.find("darwin") != std::string::npos)
262 TargetType = isDarwin;
263 else if (TT.find("win32") != std::string::npos)
264 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000265 } else if (TT.empty()) {
266#if defined(__CYGWIN__) || defined(__MINGW32__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000267 TargetType = isCygwin;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000268#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000269 TargetType = isDarwin;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000270#elif defined(_WIN32)
Chris Lattnere5600e52005-11-21 22:31:58 +0000271 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000272#endif
273 }
274
Chris Lattnercdb341d2006-09-07 22:29:41 +0000275 // If the asm syntax hasn't been overridden on the command line, use whatever
276 // the target wants.
277 if (AsmFlavor == X86Subtarget::unset) {
278 if (TargetType == isWindows) {
279 AsmFlavor = X86Subtarget::intel;
280 } else {
281 AsmFlavor = X86Subtarget::att;
282 }
283 }
284
Evan Chengb4809b22006-11-29 02:00:40 +0000285 if (TargetType == isDarwin ||
286 TargetType == isCygwin ||
287 (TargetType == isELF && Is64Bit))
Nate Begemanfb5792f2005-07-12 01:41:54 +0000288 stackAlignment = 16;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000289}