2005-02-05 02:24:26 +00:00
|
|
|
//===- Alpha.td - Describe the Alpha Target Machine --------*- tablegen -*-===//
|
2005-01-22 23:41:55 +00:00
|
|
|
//
|
|
|
|
// 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-01-22 23:41:55 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Get the target-independent interfaces which we are implementing...
|
|
|
|
//
|
2008-11-24 07:34:46 +00:00
|
|
|
include "llvm/Target/Target.td"
|
2005-01-22 23:41:55 +00:00
|
|
|
|
|
|
|
//Alpha is little endian
|
|
|
|
|
2005-10-23 22:08:45 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Subtarget Features
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-04-16 14:06:19 +00:00
|
|
|
def FeatureCIX : SubtargetFeature<"cix", "HasCT", "true",
|
2005-10-26 17:28:23 +00:00
|
|
|
"Enable CIX extentions">;
|
2005-10-23 22:08:45 +00:00
|
|
|
|
2005-01-22 23:41:55 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "AlphaRegisterInfo.td"
|
|
|
|
|
2009-07-19 01:11:32 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Calling Convention Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "AlphaCallingConv.td"
|
|
|
|
|
2006-03-09 17:16:45 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Schedule Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "AlphaSchedule.td"
|
|
|
|
|
2005-01-22 23:41:55 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "AlphaInstrInfo.td"
|
|
|
|
|
2010-04-05 03:10:20 +00:00
|
|
|
def AlphaInstrInfo : InstrInfo;
|
2005-01-22 23:41:55 +00:00
|
|
|
|
2005-10-23 22:08:45 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Alpha Processor Definitions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-03-09 17:16:45 +00:00
|
|
|
def : Processor<"generic", Alpha21264Itineraries, []>;
|
2007-01-24 21:09:16 +00:00
|
|
|
def : Processor<"ev6" , Alpha21264Itineraries, []>;
|
|
|
|
def : Processor<"ev67" , Alpha21264Itineraries, [FeatureCIX]>;
|
2005-10-23 22:08:45 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// The Alpha Target
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
2005-01-22 23:41:55 +00:00
|
|
|
def Alpha : Target {
|
|
|
|
// Pull in Instruction Info:
|
|
|
|
let InstructionSet = AlphaInstrInfo;
|
|
|
|
}
|