mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-10-31 09:11:13 +00:00
0f3ac8d8d4
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28378 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
1.2 KiB
TableGen
40 lines
1.2 KiB
TableGen
//===-- IA64.td - Target definition file for Intel IA64 -------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by Duraid Madina and is distributed under the
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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...
|
|
//
|
|
include "../Target.td"
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Register File Description
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
include "IA64RegisterInfo.td"
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Instruction Descriptions
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
include "IA64InstrInfo.td"
|
|
|
|
def IA64InstrInfo : InstrInfo { }
|
|
|
|
def IA64 : Target {
|
|
// Our instruction set
|
|
let InstructionSet = IA64InstrInfo;
|
|
|
|
}
|
|
|
|
|