2006-02-05 05:50:24 +00:00
|
|
|
//===- Sparc.td - Describe the Sparc Target Machine -------------*- C++ -*-===//
|
2004-02-25 19:28:19 +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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-22 20:09:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-12-10 04:48:57 +00:00
|
|
|
include "../Target.td"
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2006-01-26 07:22:22 +00:00
|
|
|
// SPARC Subtarget features.
|
2006-01-26 06:51:21 +00:00
|
|
|
//
|
|
|
|
|
2006-01-26 07:22:22 +00:00
|
|
|
def FeatureV9
|
2006-01-27 08:09:42 +00:00
|
|
|
: SubtargetFeature<"v9", "IsV9", "true",
|
2006-01-26 07:22:22 +00:00
|
|
|
"Enable SPARC-V9 instructions">;
|
|
|
|
def FeatureV8Deprecated
|
2006-01-27 08:09:42 +00:00
|
|
|
: SubtargetFeature<"deprecated-v8", "V8DeprecatedInsts", "true",
|
2006-01-26 07:22:22 +00:00
|
|
|
"Enable deprecated V8 instructions in V9 mode">;
|
|
|
|
def FeatureVIS
|
2006-01-27 08:09:42 +00:00
|
|
|
: SubtargetFeature<"vis", "IsVIS", "true",
|
2006-01-26 07:22:22 +00:00
|
|
|
"Enable UltraSPARC Visual Instruction Set extensions">;
|
2006-01-26 06:51:21 +00:00
|
|
|
|
2004-02-25 19:28:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File Description
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
include "SparcRegisterInfo.td"
|
2004-09-22 20:09:29 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
include "SparcInstrInfo.td"
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def SparcInstrInfo : InstrInfo {
|
2004-09-22 20:09:29 +00:00
|
|
|
// Define how we want to layout our target-specific information field.
|
|
|
|
let TSFlagsFields = [];
|
|
|
|
let TSFlagsShifts = [];
|
2004-02-25 19:28:19 +00:00
|
|
|
}
|
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// SPARC processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-01-26 07:22:22 +00:00
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
|
|
|
: Processor<Name, NoItineraries, Features>;
|
|
|
|
|
|
|
|
def : Proc<"generic", []>;
|
|
|
|
def : Proc<"v8", []>;
|
|
|
|
def : Proc<"supersparc", []>;
|
|
|
|
def : Proc<"sparclite", []>;
|
|
|
|
def : Proc<"f934", []>;
|
|
|
|
def : Proc<"hypersparc", []>;
|
|
|
|
def : Proc<"sparclite86x", []>;
|
|
|
|
def : Proc<"sparclet", []>;
|
|
|
|
def : Proc<"tsc701", []>;
|
|
|
|
def : Proc<"v9", [FeatureV9]>;
|
|
|
|
def : Proc<"ultrasparc", [FeatureV9, FeatureV8Deprecated]>;
|
|
|
|
def : Proc<"ultrasparc3", [FeatureV9, FeatureV8Deprecated]>;
|
|
|
|
def : Proc<"ultrasparc3-vis", [FeatureV9, FeatureV8Deprecated, FeatureVIS]>;
|
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
|
2004-09-22 20:09:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Declare the target which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
def Sparc : Target {
|
2004-02-25 19:28:19 +00:00
|
|
|
// Pull in Instruction Info:
|
2006-02-05 05:50:24 +00:00
|
|
|
let InstructionSet = SparcInstrInfo;
|
2004-02-25 19:28:19 +00:00
|
|
|
}
|