2005-08-04 07:12:09 +00:00
|
|
|
//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
|
2005-07-12 01:41:54 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Nate Begeman and is distributed under the
|
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the X86 specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "X86Subtarget.h"
|
|
|
|
#include "llvm/Module.h"
|
2006-01-26 09:53:06 +00:00
|
|
|
#include "X86GenSubtarget.inc"
|
2005-07-12 01:41:54 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2006-01-27 21:49:34 +00:00
|
|
|
// FIXME: temporary.
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
namespace {
|
|
|
|
cl::opt<bool> EnableSSE("enable-x86-sse", cl::Hidden,
|
|
|
|
cl::desc("Enable sse on X86"));
|
|
|
|
}
|
|
|
|
|
2006-01-28 06:05:41 +00:00
|
|
|
/// GetCpuIDAndInfo - Execute the specified cpuid and return the 4 values in the
|
|
|
|
/// specified arguments. If we can't run cpuid on the host, return true.
|
|
|
|
static bool GetCpuIDAndInfo(unsigned value, unsigned *EAX, unsigned *EBX,
|
2006-01-27 08:10:46 +00:00
|
|
|
unsigned *ECX, unsigned *EDX) {
|
|
|
|
#if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
|
|
|
|
#if defined(__GNUC__)
|
|
|
|
asm ("pushl\t%%ebx\n\t"
|
|
|
|
"cpuid\n\t"
|
2006-01-27 19:30:30 +00:00
|
|
|
"movl\t%%ebx, %%esi\n\t"
|
2006-01-27 08:10:46 +00:00
|
|
|
"popl\t%%ebx"
|
|
|
|
: "=a" (*EAX),
|
2006-01-27 19:30:30 +00:00
|
|
|
"=S" (*EBX),
|
2006-01-27 08:10:46 +00:00
|
|
|
"=c" (*ECX),
|
|
|
|
"=d" (*EDX)
|
|
|
|
: "a" (value));
|
2006-01-28 06:05:41 +00:00
|
|
|
return false;
|
2006-01-27 08:10:46 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
2006-01-28 06:05:41 +00:00
|
|
|
return true;
|
2006-01-27 08:10:46 +00:00
|
|
|
}
|
2006-01-26 09:53:06 +00:00
|
|
|
|
|
|
|
static const char *GetCurrentX86CPU() {
|
2006-01-27 19:30:30 +00:00
|
|
|
unsigned EAX = 0, EBX = 0, ECX = 0, EDX = 0;
|
2006-01-28 06:05:41 +00:00
|
|
|
if (GetCpuIDAndInfo(0x1, &EAX, &EBX, &ECX, &EDX))
|
|
|
|
return "generic";
|
2006-01-27 08:10:46 +00:00
|
|
|
unsigned Family = (EAX & (0xffffffff >> (32 - 4)) << 8) >> 8; // Bits 8 - 11
|
|
|
|
unsigned Model = (EAX & (0xffffffff >> (32 - 4)) << 4) >> 4; // Bits 4 - 7
|
2006-01-27 19:30:30 +00:00
|
|
|
GetCpuIDAndInfo(0x80000001, &EAX, &EBX, &ECX, &EDX);
|
2006-01-27 08:10:46 +00:00
|
|
|
bool Em64T = EDX & (1 << 29);
|
2006-01-26 09:53:06 +00:00
|
|
|
|
2006-01-27 08:10:46 +00:00
|
|
|
switch (Family) {
|
|
|
|
case 3:
|
|
|
|
return "i386";
|
|
|
|
case 4:
|
|
|
|
return "i486";
|
|
|
|
case 5:
|
|
|
|
switch (Model) {
|
|
|
|
case 4: return "pentium-mmx";
|
|
|
|
default: return "pentium";
|
|
|
|
}
|
|
|
|
case 6:
|
|
|
|
switch (Model) {
|
|
|
|
case 1: return "pentiumpro";
|
|
|
|
case 3:
|
|
|
|
case 5:
|
|
|
|
case 6: return "pentium2";
|
|
|
|
case 7:
|
|
|
|
case 8:
|
|
|
|
case 10:
|
|
|
|
case 11: return "pentium3";
|
|
|
|
case 9:
|
|
|
|
case 13: return "pentium-m";
|
|
|
|
case 14: return "yonah";
|
|
|
|
default: return "i686";
|
|
|
|
}
|
|
|
|
case 15: {
|
|
|
|
switch (Model) {
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
return (Em64T) ? "nocona" : "prescott";
|
|
|
|
default:
|
|
|
|
return (Em64T) ? "x86-64" : "pentium4";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return "generic";
|
2006-01-26 09:53:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-27 22:37:09 +00:00
|
|
|
X86Subtarget::X86Subtarget(const Module &M, const std::string &FS) {
|
|
|
|
stackAlignment = 8;
|
|
|
|
indirectExternAndWeakGlobals = false;
|
|
|
|
X86SSELevel = NoMMXSSE;
|
|
|
|
X863DNowLevel = NoThreeDNow;
|
|
|
|
Is64Bit = false;
|
|
|
|
|
2006-01-26 09:53:06 +00:00
|
|
|
// Determine default and user specified characteristics
|
2006-01-27 08:10:46 +00:00
|
|
|
std::string CPU = GetCurrentX86CPU();
|
2006-01-26 09:53:06 +00:00
|
|
|
|
|
|
|
// Parse features string.
|
|
|
|
ParseSubtargetFeatures(FS, CPU);
|
|
|
|
|
2005-11-21 22:31:58 +00:00
|
|
|
// Default to ELF unless otherwise specified.
|
|
|
|
TargetType = isELF;
|
2006-01-27 18:30:50 +00:00
|
|
|
|
|
|
|
// FIXME: Force these off until they work. An llc-beta option should turn
|
|
|
|
// them back on.
|
2006-01-27 21:49:34 +00:00
|
|
|
if (!EnableSSE) {
|
|
|
|
X86SSELevel = NoMMXSSE;
|
|
|
|
X863DNowLevel = NoThreeDNow;
|
|
|
|
}
|
2005-11-21 22:31:58 +00:00
|
|
|
|
2005-07-12 01:41:54 +00:00
|
|
|
// Set the boolean corresponding to the current target triple, or the default
|
|
|
|
// if one cannot be determined, to true.
|
|
|
|
const std::string& TT = M.getTargetTriple();
|
|
|
|
if (TT.length() > 5) {
|
2005-11-21 22:31:58 +00:00
|
|
|
if (TT.find("cygwin") != std::string::npos ||
|
|
|
|
TT.find("mingw") != std::string::npos)
|
|
|
|
TargetType = isCygwin;
|
|
|
|
else if (TT.find("darwin") != std::string::npos)
|
|
|
|
TargetType = isDarwin;
|
|
|
|
else if (TT.find("win32") != std::string::npos)
|
|
|
|
TargetType = isWindows;
|
2005-07-12 01:41:54 +00:00
|
|
|
} else if (TT.empty()) {
|
|
|
|
#if defined(__CYGWIN__) || defined(__MINGW32__)
|
2005-11-21 22:31:58 +00:00
|
|
|
TargetType = isCygwin;
|
2005-07-12 01:41:54 +00:00
|
|
|
#elif defined(__APPLE__)
|
2005-11-21 22:31:58 +00:00
|
|
|
TargetType = isDarwin;
|
2005-07-12 01:41:54 +00:00
|
|
|
#elif defined(_WIN32)
|
2005-11-21 22:31:58 +00:00
|
|
|
TargetType = isWindows;
|
2005-07-12 01:41:54 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-11-21 22:43:58 +00:00
|
|
|
if (TargetType == isDarwin) {
|
2005-07-12 01:41:54 +00:00
|
|
|
stackAlignment = 16;
|
|
|
|
indirectExternAndWeakGlobals = true;
|
|
|
|
}
|
|
|
|
}
|