blob: dc716143ebb06d8fc80facf5ea788bfbe0cae166 [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"
15#include "llvm/Module.h"
Evan Cheng97c7fc32006-01-26 09:53:06 +000016#include "X86GenSubtarget.inc"
Nate Begemanfb5792f2005-07-12 01:41:54 +000017using namespace llvm;
18
Evan Chengdbd38d72006-01-27 21:49:34 +000019// FIXME: temporary.
20#include "llvm/Support/CommandLine.h"
21namespace {
22 cl::opt<bool> EnableSSE("enable-x86-sse", cl::Hidden,
23 cl::desc("Enable sse on X86"));
24}
25
Evan Cheng559806f2006-01-27 08:10:46 +000026static void GetCpuIDAndInfo(unsigned value, unsigned *EAX, unsigned *EBX,
27 unsigned *ECX, unsigned *EDX) {
28#if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
29#if defined(__GNUC__)
30 asm ("pushl\t%%ebx\n\t"
31 "cpuid\n\t"
Evan Chengb3a7e212006-01-27 19:30:30 +000032 "movl\t%%ebx, %%esi\n\t"
Evan Cheng559806f2006-01-27 08:10:46 +000033 "popl\t%%ebx"
34 : "=a" (*EAX),
Evan Chengb3a7e212006-01-27 19:30:30 +000035 "=S" (*EBX),
Evan Cheng559806f2006-01-27 08:10:46 +000036 "=c" (*ECX),
37 "=d" (*EDX)
38 : "a" (value));
39#endif
40#endif
41}
42
43static const char *GetCurrentX86CPU() {
Evan Chengb3a7e212006-01-27 19:30:30 +000044 unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
45 GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX);
Evan Cheng559806f2006-01-27 08:10:46 +000046 unsigned Family = (EAX & (0xffffffff >> (32 - 4)) << 8) >> 8; // Bits 8 - 11
47 unsigned Model = (EAX & (0xffffffff >> (32 - 4)) << 4) >> 4; // Bits 4 - 7
Evan Chengb3a7e212006-01-27 19:30:30 +000048 GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
Evan Cheng559806f2006-01-27 08:10:46 +000049 bool Em64T = EDX & (1 << 29);
50
51 switch (Family) {
52 case 3:
53 return "i386";
54 case 4:
55 return "i486";
56 case 5:
57 switch (Model) {
58 case 4: return "pentium-mmx";
59 default: return "pentium";
60 }
61 break;
62 case 6:
63 switch (Model) {
64 case 1: return "pentiumpro";
65 case 3:
66 case 5:
67 case 6: return "pentium2";
68 case 7:
69 case 8:
70 case 10:
71 case 11: return "pentium3";
72 case 9:
73 case 13: return "pentium-m";
74 case 14: return "yonah";
75 default: return "i686";
76 }
77 case 15: {
78 switch (Model) {
79 case 3:
80 case 4:
81 return (Em64T) ? "nocona" : "prescott";
82 default:
83 return (Em64T) ? "x86-64" : "pentium4";
84 }
85 }
86
87 default:
88 return "generic";
89 }
90}
Evan Cheng97c7fc32006-01-26 09:53:06 +000091
Chris Lattner104988a2006-01-27 22:37:09 +000092X86Subtarget::X86Subtarget(const Module &M, const std::string &FS) {
93 stackAlignment = 8;
94 indirectExternAndWeakGlobals = false;
95 X86SSELevel = NoMMXSSE;
96 X863DNowLevel = NoThreeDNow;
97 Is64Bit = false;
98
Evan Cheng97c7fc32006-01-26 09:53:06 +000099 // Determine default and user specified characteristics
Evan Cheng559806f2006-01-27 08:10:46 +0000100 std::string CPU = GetCurrentX86CPU();
Evan Cheng97c7fc32006-01-26 09:53:06 +0000101
102 // Parse features string.
103 ParseSubtargetFeatures(FS, CPU);
104
Chris Lattnere5600e52005-11-21 22:31:58 +0000105 // Default to ELF unless otherwise specified.
106 TargetType = isELF;
Chris Lattner9f96a322006-01-27 18:30:50 +0000107
108 // FIXME: Force these off until they work. An llc-beta option should turn
109 // them back on.
Evan Chengdbd38d72006-01-27 21:49:34 +0000110 if (!EnableSSE) {
111 X86SSELevel = NoMMXSSE;
112 X863DNowLevel = NoThreeDNow;
113 }
Chris Lattnere5600e52005-11-21 22:31:58 +0000114
Nate Begemanfb5792f2005-07-12 01:41:54 +0000115 // Set the boolean corresponding to the current target triple, or the default
116 // if one cannot be determined, to true.
117 const std::string& TT = M.getTargetTriple();
118 if (TT.length() > 5) {
Chris Lattnere5600e52005-11-21 22:31:58 +0000119 if (TT.find("cygwin") != std::string::npos ||
120 TT.find("mingw") != std::string::npos)
121 TargetType = isCygwin;
122 else if (TT.find("darwin") != std::string::npos)
123 TargetType = isDarwin;
124 else if (TT.find("win32") != std::string::npos)
125 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000126 } else if (TT.empty()) {
127#if defined(__CYGWIN__) || defined(__MINGW32__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000128 TargetType = isCygwin;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000129#elif defined(__APPLE__)
Chris Lattnere5600e52005-11-21 22:31:58 +0000130 TargetType = isDarwin;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000131#elif defined(_WIN32)
Chris Lattnere5600e52005-11-21 22:31:58 +0000132 TargetType = isWindows;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000133#endif
134 }
135
Chris Lattnerd460f572005-11-21 22:43:58 +0000136 if (TargetType == isDarwin) {
Nate Begemanfb5792f2005-07-12 01:41:54 +0000137 stackAlignment = 16;
138 indirectExternAndWeakGlobals = true;
Nate Begemanfb5792f2005-07-12 01:41:54 +0000139 }
140}