blob: c26c1855d5e6318dbb2f0888b2fe0ca61b8300c7 [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"
Evan Cheng25ab6902006-09-08 06:48:29 +000018#include <iostream>
Nate Begemanfb5792f2005-07-12 01:41:54 +000019using namespace llvm;
20
Jim Laskey05a059d2006-09-07 12:23:47 +000021cl::opt<X86Subtarget::AsmWriterFlavorTy>
Chris Lattnercdb341d2006-09-07 22:29:41 +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(
25 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
Chris Lattner1e39a152006-01-28 06:05:41 +000030/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
31/// specified arguments. If we can't run cpuid on the host, return true.
Evan Cheng751c0e12006-10-16 21:00:37 +000032bool X86::GetCpuIDAndInfo(unsigned value, unsigned *rEAX, unsigned *rEBX,
33 unsigned *rECX, unsigned *rEDX) {
Evan Cheng25ab6902006-09-08 06:48:29 +000034#if defined(__x86_64__)
Evan Cheng751c0e12006-10-16 21:00:37 +000035 unsigned long long saveRBX;
36 asm ("nop" : "=b" (saveRBX));
37 asm ("cpuid\n\t"
Evan Cheng25ab6902006-09-08 06:48:29 +000038 "movl\t%%ebx, %%esi\n\t"
Evan Cheng25ab6902006-09-08 06:48:29 +000039 : "=a" (*rEAX),
40 "=S" (*rEBX),
41 "=c" (*rECX),
42 "=d" (*rEDX)
43 : "a" (value));
Evan Cheng751c0e12006-10-16 21:00:37 +000044 asm ("nop" :: "b" (saveRBX));
Evan Cheng25ab6902006-09-08 06:48:29 +000045 return false;
46#elif defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
Evan Cheng559806f2006-01-27 08:10:46 +000047#if defined(__GNUC__)
48 asm ("pushl\t%%ebx\n\t"
49 "cpuid\n\t"
Evan Chengb3a7e212006-01-27 19:30:30 +000050 "movl\t%%ebx, %%esi\n\t"
Evan Cheng559806f2006-01-27 08:10:46 +000051 "popl\t%%ebx"
Jeff Cohen41adb0d2006-01-28 18:09:06 +000052 : "=a" (*rEAX),
53 "=S" (*rEBX),
54 "=c" (*rECX),
55 "=d" (*rEDX)
Evan Cheng559806f2006-01-27 08:10:46 +000056 : "a" (value));
Chris Lattner1e39a152006-01-28 06:05:41 +000057 return false;
Jeff Cohen41adb0d2006-01-28 18:09:06 +000058#elif defined(_MSC_VER)
59 __asm {
60 mov eax,value
61 cpuid
62 mov esi,rEAX
63 mov dword ptr [esi],eax
64 mov esi,rEBX
65 mov dword ptr [esi],ebx
66 mov esi,rECX
67 mov dword ptr [esi],ecx
68 mov esi,rEDX
69 mov dword ptr [esi],edx
70 }
71 return false;
Evan Cheng559806f2006-01-27 08:10:46 +000072#endif
73#endif
Chris Lattner1e39a152006-01-28 06:05:41 +000074 return true;
Evan Cheng559806f2006-01-27 08:10:46 +000075}
76
Evan Chenga26eb5e2006-10-06 09:17:41 +000077void X86Subtarget::AutoDetectSubtargetFeatures() {
Evan Chengb3a7e212006-01-27 19:30:30 +000078 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Jeff Cohena3496402006-01-28 18:47:32 +000079 union {
Jeff Cohen216d2812006-01-28 19:48:34 +000080 unsigned u[3];
81 char c[12];
Jeff Cohena3496402006-01-28 18:47:32 +000082 } text;
83
Evan Cheng751c0e12006-10-16 21:00:37 +000084 if (X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1))
Evan Chengabc346c2006-10-06 08:21:07 +000085 return;
Jeff Cohen41adb0d2006-01-28 18:09:06 +000086
Evan Chengabc346c2006-10-06 08:21:07 +000087 // FIXME: support for AMD family of processors.
88 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
Evan Cheng751c0e12006-10-16 21:00:37 +000089 X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Evan Chengabc346c2006-10-06 08:21:07 +000090
91 if ((EDX >> 23) & 0x1) X86SSELevel = MMX;
92 if ((EDX >> 25) & 0x1) X86SSELevel = SSE1;
93 if ((EDX >> 26) & 0x1) X86SSELevel = SSE2;
94 if (ECX & 0x1) X86SSELevel = SSE3;
95
Evan Cheng751c0e12006-10-16 21:00:37 +000096 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Chengabc346c2006-10-06 08:21:07 +000097 HasX86_64 = (EDX >> 29) & 0x1;
Evan Cheng559806f2006-01-27 08:10:46 +000098 }
99}
Evan Cheng97c7fc32006-01-26 09:53:06 +0000100
Evan Chenga26eb5e2006-10-06 09:17:41 +0000101static const char *GetCurrentX86CPU() {
102 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
Evan Cheng751c0e12006-10-16 21:00:37 +0000103 if (X86::GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
Evan Chenga26eb5e2006-10-06 09:17:41 +0000104 return "generic";
105 unsigned Family = (EAX >> 8) & 0xf; // Bits 8 - 11
106 unsigned Model = (EAX >> 4) & 0xf; // Bits 4 - 7
Evan Cheng751c0e12006-10-16 21:00:37 +0000107 X86::GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng3cff9f82006-10-06 18:57:51 +0000108 bool Em64T = (EDX >> 29) & 0x1;
Evan Chenga26eb5e2006-10-06 09:17:41 +0000109
110 union {
111 unsigned u[3];
112 char c[12];
113 } text;
114
Evan Cheng751c0e12006-10-16 21:00:37 +0000115 X86::GetCpuIDAndInfo(0, &EAX, text.u+0, text.u+2, text.u+1);
Evan Chenga26eb5e2006-10-06 09:17:41 +0000116 if (memcmp(text.c, "GenuineIntel", 12) == 0) {
117 switch (Family) {
118 case 3:
119 return "i386";
120 case 4:
121 return "i486";
122 case 5:
123 switch (Model) {
124 case 4: return "pentium-mmx";
125 default: return "pentium";
126 }
127 case 6:
128 switch (Model) {
129 case 1: return "pentiumpro";
130 case 3:
131 case 5:
132 case 6: return "pentium2";
133 case 7:
134 case 8:
135 case 10:
136 case 11: return "pentium3";
137 case 9:
138 case 13: return "pentium-m";
139 case 14: return "yonah";
140 case 15: return "core2";
141 default: return "i686";
142 }
143 case 15: {
144 switch (Model) {
145 case 3:
146 case 4:
147 return (Em64T) ? "nocona" : "prescott";
148 default:
149 return (Em64T) ? "x86-64" : "pentium4";
150 }
151 }
152
153 default:
154 return "generic";
155 }
156 } else if (memcmp(text.c, "AuthenticAMD", 12) == 0) {
157 // FIXME: this poorly matches the generated SubtargetFeatureKV table. There
158 // appears to be no way to generate the wide variety of AMD-specific targets
159 // from the information returned from CPUID.
160 switch (Family) {
161 case 4:
162 return "i486";
163 case 5:
164 switch (Model) {
165 case 6:
166 case 7: return "k6";
167 case 8: return "k6-2";
168 case 9:
169 case 13: return "k6-3";
170 default: return "pentium";
171 }
172 case 6:
173 switch (Model) {
174 case 4: return "athlon-tbird";
175 case 6:
176 case 7:
177 case 8: return "athlon-mp";
178 case 10: return "athlon-xp";
179 default: return "athlon";
180 }
181 case 15:
182 switch (Model) {
183 case 5: return "athlon-fx"; // also opteron
184 default: return "athlon64";
185 }
186
187 default:
188 return "generic";
189 }
190 } else {
191 return "generic";
192 }
193}
194
Evan Cheng25ab6902006-09-08 06:48:29 +0000195X86Subtarget::X86Subtarget(const Module &M, const std::string &FS, bool is64Bit)
Evan Cheng8e0055d2006-10-04 18:33:00 +0000196 : AsmFlavor(AsmWriterFlavor)
Evan Cheng25ab6902006-09-08 06:48:29 +0000197 , X86SSELevel(NoMMXSSE)
Evan Cheng25ab6902006-09-08 06:48:29 +0000198 , HasX86_64(false)
199 , stackAlignment(8)
200 // FIXME: this is a known good value for Yonah. How about others?
201 , MinRepStrSizeThreshold(128)
202 , Is64Bit(is64Bit)
203 , TargetType(isELF) { // Default to ELF unless otherwise specified.
Chris Lattner104988a2006-01-27 22:37:09 +0000204
Evan Cheng97c7fc32006-01-26 09:53:06 +0000205 // Determine default and user specified characteristics
Evan Chenga26eb5e2006-10-06 09:17:41 +0000206 if (!FS.empty()) {
207 // If feature string is not empty, parse features string.
208 std::string CPU = GetCurrentX86CPU();
209 ParseSubtargetFeatures(FS, CPU);
210 } else
211 // Otherwise, use CPUID to auto-detect feature set.
212 AutoDetectSubtargetFeatures();
213
Evan Cheng25ab6902006-09-08 06:48:29 +0000214 if (Is64Bit && !HasX86_64) {
215 std::cerr << "Warning: Generation of 64-bit code for a 32-bit processor "
216 "requested.\n";
217 HasX86_64 = true;
218 }
219
Nate Begemanfb5792f2005-07-12 01:41:54 +0000220 // Set the boolean corresponding to the current target triple, or the default
221 // if one cannot be determined, to true.
222 const std::string& TT = M.getTargetTriple();
223 if (TT.length() > 5) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000224 if (TT.find("cygwin") != std::string::npos ||
225 TT.find("mingw") != std::string::npos)
226 TargetType = isCygwin;
227 else if (TT.find("darwin") != std::string::npos)
228 TargetType = isDarwin;
229 else if (TT.find("win32") != std::string::npos)
230 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000231 } else if (TT.empty()) {
232#if defined(__CYGWIN__) || defined(__MINGW32__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000233 TargetType = isCygwin;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000234#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000235 TargetType = isDarwin;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000236#elif defined(_WIN32)
Chris Lattnere5600e52005-11-21 22:31:58 +0000237 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000238#endif
239 }
240
Chris Lattnercdb341d2006-09-07 22:29:41 +0000241 // If the asm syntax hasn't been overridden on the command line, use whatever
242 // the target wants.
243 if (AsmFlavor == X86Subtarget::unset) {
244 if (TargetType == isWindows) {
245 AsmFlavor = X86Subtarget::intel;
246 } else {
247 AsmFlavor = X86Subtarget::att;
248 }
249 }
250
Evan Cheng932ad512006-05-25 21:59:08 +0000251 if (TargetType == isDarwin || TargetType == isCygwin)
Nate Begemanfb5792f2005-07-12 01:41:54 +0000252 stackAlignment = 16;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000253}