2012-02-18 12:03:15 +00:00
|
|
|
//===-- Sparc.td - Describe the Sparc Target Machine -------*- tablegen -*-===//
|
|
|
|
//
|
2004-02-25 19:28:19 +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.
|
2012-02-18 12:03:15 +00:00
|
|
|
//
|
2004-02-25 19:28:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-22 20:09:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-11-24 07:34:46 +00:00
|
|
|
include "llvm/Target/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
|
|
|
//
|
2013-06-04 18:33:25 +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">;
|
2014-03-02 19:31:21 +00: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-01-26 06:51:21 +00:00
|
|
|
|
2013-08-25 18:30:06 +00:00
|
|
|
def FeatureHardQuad
|
|
|
|
: SubtargetFeature<"hard-quad-float", "HasHardQuad", "true",
|
|
|
|
"Enable quad-word floating point instructions">;
|
|
|
|
|
2014-01-26 06:09:59 +00:00
|
|
|
def UsePopc : SubtargetFeature<"popc", "UsePopc", "true",
|
|
|
|
"Use the popc (population count) instruction">;
|
|
|
|
|
2004-02-25 19:28:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-03-17 05:41:48 +00:00
|
|
|
// Register File, Calling Conv, Instruction Descriptions
|
2004-02-25 19:28:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
include "SparcRegisterInfo.td"
|
2008-03-17 05:41:48 +00:00
|
|
|
include "SparcCallingConv.td"
|
2006-02-05 05:50:24 +00:00
|
|
|
include "SparcInstrInfo.td"
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2010-04-05 03:10:20 +00:00
|
|
|
def SparcInstrInfo : InstrInfo;
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2014-01-04 11:30:13 +00:00
|
|
|
def SparcAsmParser : AsmParser {
|
|
|
|
bit ShouldEmitMatchRegisterName = 0;
|
|
|
|
}
|
|
|
|
|
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", []>;
|
2014-01-11 23:56:13 +00:00
|
|
|
def : Proc<"v7", []>;
|
2006-01-26 07:22:22 +00: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-02 19:31:21 +00: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-01-26 07:22:22 +00:00
|
|
|
|
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;
|
2014-01-04 11:30:13 +00:00
|
|
|
let AssemblyParsers = [SparcAsmParser];
|
2004-02-25 19:28:19 +00:00
|
|
|
}
|