2003-08-03 15:47:49 +00:00
|
|
|
//===- X86.td - Target definition file for the Intel X86 arch ---*- C++ -*-===//
|
2003-10-21 15:17:13 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-03 15:47:49 +00:00
|
|
|
//
|
|
|
|
// This is a target description file for the Intel i386 architecture, refered to
|
|
|
|
// here as the "X86" architecture.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-04 04:59:56 +00:00
|
|
|
// Get the target-independent interfaces which we are implementing...
|
2003-08-03 15:47:49 +00:00
|
|
|
//
|
|
|
|
include "../Target.td"
|
|
|
|
|
2006-10-06 09:17:41 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 Subtarget features.
|
|
|
|
//
|
|
|
|
|
|
|
|
def Feature64Bit : SubtargetFeature<"64bit", "HasX86_64", "true",
|
|
|
|
"Support 64-bit instructions">;
|
|
|
|
def FeatureMMX : SubtargetFeature<"mmx","X86SSELevel", "MMX",
|
|
|
|
"Enable MMX instructions">;
|
|
|
|
def FeatureSSE1 : SubtargetFeature<"sse", "X86SSELevel", "SSE1",
|
|
|
|
"Enable SSE instructions">;
|
|
|
|
def FeatureSSE2 : SubtargetFeature<"sse2", "X86SSELevel", "SSE2",
|
|
|
|
"Enable SSE2 instructions">;
|
|
|
|
def FeatureSSE3 : SubtargetFeature<"sse3", "X86SSELevel", "SSE3",
|
|
|
|
"Enable SSE3 instructions">;
|
|
|
|
def Feature3DNow : SubtargetFeature<"3dnow", "X863DNowLevel", "ThreeDNow",
|
|
|
|
"Enable 3DNow! instructions">;
|
|
|
|
def Feature3DNowA : SubtargetFeature<"3dnowa", "X863DNowLevel", "ThreeDNowA",
|
|
|
|
"Enable 3DNow! Athlon instructions">;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// X86 processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
|
|
|
: Processor<Name, NoItineraries, Features>;
|
|
|
|
|
|
|
|
def : Proc<"generic", []>;
|
|
|
|
def : Proc<"i386", []>;
|
|
|
|
def : Proc<"i486", []>;
|
|
|
|
def : Proc<"pentium", []>;
|
|
|
|
def : Proc<"pentium-mmx", [FeatureMMX]>;
|
|
|
|
def : Proc<"i686", []>;
|
|
|
|
def : Proc<"pentiumpro", []>;
|
|
|
|
def : Proc<"pentium2", [FeatureMMX]>;
|
|
|
|
def : Proc<"pentium3", [FeatureMMX, FeatureSSE1]>;
|
|
|
|
def : Proc<"pentium-m", [FeatureMMX, FeatureSSE1, FeatureSSE2]>;
|
|
|
|
def : Proc<"pentium4", [FeatureMMX, FeatureSSE1, FeatureSSE2]>;
|
|
|
|
def : Proc<"x86-64", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
Feature64Bit]>;
|
|
|
|
def : Proc<"yonah", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
FeatureSSE3]>;
|
|
|
|
def : Proc<"prescott", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
FeatureSSE3]>;
|
|
|
|
def : Proc<"nocona", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
FeatureSSE3, Feature64Bit]>;
|
|
|
|
def : Proc<"core2", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
FeatureSSE3, Feature64Bit]>;
|
|
|
|
|
|
|
|
def : Proc<"k6", [FeatureMMX]>;
|
|
|
|
def : Proc<"k6-2", [FeatureMMX, Feature3DNow]>;
|
|
|
|
def : Proc<"k6-3", [FeatureMMX, Feature3DNow]>;
|
|
|
|
def : Proc<"athlon", [FeatureMMX, Feature3DNow, Feature3DNowA]>;
|
|
|
|
def : Proc<"athlon-tbird", [FeatureMMX, Feature3DNow, Feature3DNowA]>;
|
|
|
|
def : Proc<"athlon-4", [FeatureMMX, FeatureSSE1, Feature3DNow,
|
|
|
|
Feature3DNowA]>;
|
|
|
|
def : Proc<"athlon-xp", [FeatureMMX, FeatureSSE1, Feature3DNow,
|
|
|
|
Feature3DNowA]>;
|
|
|
|
def : Proc<"athlon-mp", [FeatureMMX, FeatureSSE1, Feature3DNow,
|
|
|
|
Feature3DNowA]>;
|
|
|
|
def : Proc<"k8", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
Feature3DNow, Feature3DNowA, Feature64Bit]>;
|
|
|
|
def : Proc<"opteron", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
Feature3DNow, Feature3DNowA, Feature64Bit]>;
|
|
|
|
def : Proc<"athlon64", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
Feature3DNow, Feature3DNowA, Feature64Bit]>;
|
|
|
|
def : Proc<"athlon-fx", [FeatureMMX, FeatureSSE1, FeatureSSE2,
|
|
|
|
Feature3DNow, Feature3DNowA, Feature64Bit]>;
|
|
|
|
|
|
|
|
def : Proc<"winchip-c6", [FeatureMMX]>;
|
|
|
|
def : Proc<"winchip2", [FeatureMMX, Feature3DNow]>;
|
|
|
|
def : Proc<"c3", [FeatureMMX, Feature3DNow]>;
|
|
|
|
def : Proc<"c3-2", [FeatureMMX, FeatureSSE1]>;
|
|
|
|
|
2003-08-03 15:47:49 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "X86RegisterInfo.td"
|
|
|
|
|
2003-08-03 18:19:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-03 21:54:21 +00:00
|
|
|
include "X86InstrInfo.td"
|
|
|
|
|
2003-08-03 18:19:37 +00:00
|
|
|
def X86InstrInfo : InstrInfo {
|
2003-08-03 21:54:21 +00:00
|
|
|
|
|
|
|
// Define how we want to layout our TargetSpecific information field... This
|
|
|
|
// should be kept up-to-date with the fields in the X86InstrInfo.h file.
|
2004-04-08 20:31:47 +00:00
|
|
|
let TSFlagsFields = ["FormBits",
|
|
|
|
"hasOpSizePrefix",
|
2006-09-08 06:48:29 +00:00
|
|
|
"hasAdSizePrefix",
|
2004-04-08 20:31:47 +00:00
|
|
|
"Prefix",
|
2006-09-08 06:48:29 +00:00
|
|
|
"hasREX_WPrefix",
|
2004-04-08 20:31:47 +00:00
|
|
|
"ImmTypeBits",
|
|
|
|
"FPFormBits",
|
|
|
|
"Opcode"];
|
|
|
|
let TSFlagsShifts = [0,
|
|
|
|
6,
|
2006-02-01 06:13:50 +00:00
|
|
|
7,
|
2006-09-08 06:48:29 +00:00
|
|
|
8,
|
|
|
|
12,
|
2006-02-01 06:13:50 +00:00
|
|
|
13,
|
2006-09-08 06:48:29 +00:00
|
|
|
16,
|
|
|
|
24];
|
2003-08-03 18:19:37 +00:00
|
|
|
}
|
|
|
|
|
2004-10-03 20:36:57 +00:00
|
|
|
// The X86 target supports two different syntaxes for emitting machine code.
|
|
|
|
// This is controlled by the -x86-asm-syntax={att|intel}
|
|
|
|
def ATTAsmWriter : AsmWriter {
|
|
|
|
string AsmWriterClassName = "ATTAsmPrinter";
|
|
|
|
int Variant = 0;
|
|
|
|
}
|
|
|
|
def IntelAsmWriter : AsmWriter {
|
|
|
|
string AsmWriterClassName = "IntelAsmPrinter";
|
|
|
|
int Variant = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-03 18:19:37 +00:00
|
|
|
def X86 : Target {
|
|
|
|
// Information about the instructions...
|
2003-08-04 04:59:56 +00:00
|
|
|
let InstructionSet = X86InstrInfo;
|
2004-10-03 20:36:57 +00:00
|
|
|
|
|
|
|
let AssemblyWriters = [ATTAsmWriter, IntelAsmWriter];
|
2003-08-03 18:19:37 +00:00
|
|
|
}
|