2012-02-18 20:03:15 +08:00
|
|
|
//===-- Sparc.td - Describe the Sparc Target Machine -------*- tablegen -*-===//
|
|
|
|
//
|
2006-02-05 13:50:24 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2012-02-18 20:03:15 +08:00
|
|
|
//
|
2006-02-05 13:50:24 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-11-24 15:34:46 +08:00
|
|
|
include "llvm/Target/Target.td"
|
2006-02-05 13:50:24 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// SPARC Subtarget features.
|
|
|
|
//
|
2013-06-05 02:33:25 +08:00
|
|
|
|
2006-02-05 13:50:24 +08:00
|
|
|
def FeatureV9
|
|
|
|
: SubtargetFeature<"v9", "IsV9", "true",
|
|
|
|
"Enable SPARC-V9 instructions">;
|
|
|
|
def FeatureV8Deprecated
|
|
|
|
: SubtargetFeature<"deprecated-v8", "V8DeprecatedInsts", "true",
|
|
|
|
"Enable deprecated V8 instructions in V9 mode">;
|
|
|
|
def FeatureVIS
|
|
|
|
: SubtargetFeature<"vis", "IsVIS", "true",
|
|
|
|
"Enable UltraSPARC Visual Instruction Set extensions">;
|
2014-03-03 03:31:21 +08:00
|
|
|
def FeatureVIS2
|
|
|
|
: SubtargetFeature<"vis2", "IsVIS2", "true",
|
|
|
|
"Enable Visual Instruction Set extensions II">;
|
|
|
|
def FeatureVIS3
|
|
|
|
: SubtargetFeature<"vis3", "IsVIS3", "true",
|
|
|
|
"Enable Visual Instruction Set extensions III">;
|
2006-02-05 13:50:24 +08:00
|
|
|
|
2013-08-26 02:30:06 +08:00
|
|
|
def FeatureHardQuad
|
|
|
|
: SubtargetFeature<"hard-quad-float", "HasHardQuad", "true",
|
|
|
|
"Enable quad-word floating point instructions">;
|
|
|
|
|
2014-01-26 14:09:59 +08:00
|
|
|
def UsePopc : SubtargetFeature<"popc", "UsePopc", "true",
|
|
|
|
"Use the popc (population count) instruction">;
|
|
|
|
|
2006-02-05 13:50:24 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-17 13:41:48 +08:00
|
|
|
// Register File, Calling Conv, Instruction Descriptions
|
2006-02-05 13:50:24 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "SparcRegisterInfo.td"
|
2008-03-17 13:41:48 +08:00
|
|
|
include "SparcCallingConv.td"
|
2006-02-05 13:50:24 +08:00
|
|
|
include "SparcInstrInfo.td"
|
|
|
|
|
2010-04-05 11:10:20 +08:00
|
|
|
def SparcInstrInfo : InstrInfo;
|
2006-02-05 13:50:24 +08:00
|
|
|
|
2014-01-04 19:30:13 +08:00
|
|
|
def SparcAsmParser : AsmParser {
|
|
|
|
bit ShouldEmitMatchRegisterName = 0;
|
|
|
|
}
|
|
|
|
|
2006-02-05 13:50:24 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// SPARC processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
class Proc<string Name, list<SubtargetFeature> Features>
|
|
|
|
: Processor<Name, NoItineraries, Features>;
|
|
|
|
|
|
|
|
def : Proc<"generic", []>;
|
2014-01-12 07:56:13 +08:00
|
|
|
def : Proc<"v7", []>;
|
2006-02-05 13:50:24 +08:00
|
|
|
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]>;
|
2014-03-03 03:31:21 +08:00
|
|
|
def : Proc<"ultrasparc", [FeatureV9, FeatureV8Deprecated, FeatureVIS]>;
|
|
|
|
def : Proc<"ultrasparc3", [FeatureV9, FeatureV8Deprecated, FeatureVIS,
|
|
|
|
FeatureVIS2]>;
|
|
|
|
def : Proc<"niagara", [FeatureV9, FeatureV8Deprecated, FeatureVIS,
|
|
|
|
FeatureVIS2]>;
|
|
|
|
def : Proc<"niagara2", [FeatureV9, FeatureV8Deprecated, UsePopc,
|
|
|
|
FeatureVIS, FeatureVIS2]>;
|
|
|
|
def : Proc<"niagara3", [FeatureV9, FeatureV8Deprecated, UsePopc,
|
|
|
|
FeatureVIS, FeatureVIS2]>;
|
|
|
|
def : Proc<"niagara4", [FeatureV9, FeatureV8Deprecated, UsePopc,
|
|
|
|
FeatureVIS, FeatureVIS2, FeatureVIS3]>;
|
2006-02-05 13:50:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Declare the target which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def Sparc : Target {
|
|
|
|
// Pull in Instruction Info:
|
|
|
|
let InstructionSet = SparcInstrInfo;
|
2014-01-04 19:30:13 +08:00
|
|
|
let AssemblyParsers = [SparcAsmParser];
|
2006-02-05 13:50:24 +08:00
|
|
|
}
|