2005-03-17 18:17:03 +00:00
|
|
|
//===-- IA64.td - Target definition file for Intel IA64 -------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-03-17 18:17:03 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This is a target description file for the Intel IA64 architecture,
|
|
|
|
// also known variously as ia64, IA-64, IPF, "the Itanium architecture" etc.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Get the target-independent interfaces which we are implementing...
|
|
|
|
//
|
2008-11-24 07:34:46 +00:00
|
|
|
include "llvm/Target/Target.td"
|
2005-03-17 18:17:03 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "IA64RegisterInfo.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "IA64InstrInfo.td"
|
|
|
|
|
2006-01-27 01:46:15 +00:00
|
|
|
def IA64InstrInfo : InstrInfo { }
|
2005-03-17 18:17:03 +00:00
|
|
|
|
|
|
|
def IA64 : Target {
|
|
|
|
// Our instruction set
|
|
|
|
let InstructionSet = IA64InstrInfo;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|