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"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// 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-04 04:59:56 +00:00
|
|
|
let PHIInst = PHI;
|
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.
|
2003-08-06 15:32:20 +00:00
|
|
|
let TSFlagsFields = ["FormBits" , "hasOpSizePrefix" , "Prefix", "TypeBits",
|
|
|
|
"FPFormBits", "printImplicitUses", "Opcode"];
|
|
|
|
let TSFlagsShifts = [ 0, 5, 6, 10,
|
|
|
|
13, 16, 17];
|
2003-08-03 18:19:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def X86 : Target {
|
|
|
|
// Specify the callee saved registers.
|
2003-08-04 04:59:56 +00:00
|
|
|
let CalleeSavedRegisters = [ESI, EDI, EBX, EBP];
|
2003-08-03 18:19:37 +00:00
|
|
|
|
|
|
|
// Yes, pointers are 32-bits in size.
|
2003-08-04 04:59:56 +00:00
|
|
|
let PointerType = i32;
|
2003-08-03 18:19:37 +00:00
|
|
|
|
|
|
|
// Information about the instructions...
|
2003-08-04 04:59:56 +00:00
|
|
|
let InstructionSet = X86InstrInfo;
|
2003-08-03 18:19:37 +00:00
|
|
|
}
|