2012-02-18 12:03:15 +00:00
|
|
|
//===-- Hexagon.td - Describe the Hexagon Target Machine --*- tablegen -*--===//
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// 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
|
|
|
// This is the top level entry point for the Hexagon target.
|
2011-12-12 21:14:40 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Target-independent interfaces which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
include "llvm/Target/Target.td"
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Hexagon Subtarget features.
|
2012-02-18 12:03:15 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2011-12-12 21:14:40 +00:00
|
|
|
|
2015-02-09 21:56:37 +00:00
|
|
|
// Hexagon Architectures
|
|
|
|
def ArchV4: SubtargetFeature<"v4", "HexagonArchVersion", "V4", "Hexagon V4">;
|
|
|
|
def ArchV5: SubtargetFeature<"v5", "HexagonArchVersion", "V5", "Hexagon V5">;
|
2011-12-12 21:14:40 +00:00
|
|
|
|
2012-12-04 04:29:16 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Hexagon Instruction Predicate Definitions.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2015-02-02 19:22:03 +00:00
|
|
|
def HasV5T : Predicate<"Subtarget->hasV5TOps()">;
|
|
|
|
def NoV5T : Predicate<"!Subtarget->hasV5TOps()">;
|
|
|
|
def UseMEMOP : Predicate<"Subtarget->useMemOps()">;
|
|
|
|
def IEEERndNearV5T : Predicate<"Subtarget->modeIEEERndNear()">;
|
2012-12-04 04:29:16 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Classes used for relation maps.
|
|
|
|
//===----------------------------------------------------------------------===//
|
2014-12-30 18:58:47 +00:00
|
|
|
|
|
|
|
class ImmRegShl;
|
2012-12-04 04:29:16 +00:00
|
|
|
// PredRel - Filter class used to relate non-predicated instructions with their
|
|
|
|
// predicated forms.
|
|
|
|
class PredRel;
|
|
|
|
// PredNewRel - Filter class used to relate predicated instructions with their
|
|
|
|
// predicate-new forms.
|
|
|
|
class PredNewRel: PredRel;
|
|
|
|
// ImmRegRel - Filter class used to relate instructions having reg-reg form
|
|
|
|
// with their reg-imm counterparts.
|
|
|
|
class ImmRegRel;
|
|
|
|
// NewValueRel - Filter class used to relate regular store instructions with
|
|
|
|
// their new-value store form.
|
|
|
|
class NewValueRel: PredNewRel;
|
|
|
|
// NewValueRel - Filter class used to relate load/store instructions having
|
|
|
|
// different addressing modes with each other.
|
|
|
|
class AddrModeRel: NewValueRel;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generate mapping table to relate non-predicate instructions with their
|
|
|
|
// predicated formats - true and false.
|
|
|
|
//
|
|
|
|
|
|
|
|
def getPredOpcode : InstrMapping {
|
|
|
|
let FilterClass = "PredRel";
|
|
|
|
// Instructions with the same BaseOpcode and isNVStore values form a row.
|
|
|
|
let RowFields = ["BaseOpcode", "isNVStore", "PNewValue"];
|
|
|
|
// Instructions with the same predicate sense form a column.
|
|
|
|
let ColFields = ["PredSense"];
|
|
|
|
// The key column is the unpredicated instructions.
|
|
|
|
let KeyCol = [""];
|
|
|
|
// Value columns are PredSense=true and PredSense=false
|
|
|
|
let ValueCols = [["true"], ["false"]];
|
|
|
|
}
|
|
|
|
|
2013-05-06 18:49:23 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generate mapping table to relate predicate-true instructions with their
|
|
|
|
// predicate-false forms
|
|
|
|
//
|
|
|
|
def getFalsePredOpcode : InstrMapping {
|
|
|
|
let FilterClass = "PredRel";
|
|
|
|
let RowFields = ["BaseOpcode", "PNewValue", "isNVStore", "isBrTaken"];
|
|
|
|
let ColFields = ["PredSense"];
|
|
|
|
let KeyCol = ["true"];
|
|
|
|
let ValueCols = [["false"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generate mapping table to relate predicate-false instructions with their
|
|
|
|
// predicate-true forms
|
|
|
|
//
|
|
|
|
def getTruePredOpcode : InstrMapping {
|
|
|
|
let FilterClass = "PredRel";
|
|
|
|
let RowFields = ["BaseOpcode", "PNewValue", "isNVStore", "isBrTaken"];
|
|
|
|
let ColFields = ["PredSense"];
|
|
|
|
let KeyCol = ["false"];
|
|
|
|
let ValueCols = [["true"]];
|
|
|
|
}
|
|
|
|
|
2012-12-04 04:29:16 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generate mapping table to relate predicated instructions with their .new
|
|
|
|
// format.
|
|
|
|
//
|
|
|
|
def getPredNewOpcode : InstrMapping {
|
|
|
|
let FilterClass = "PredNewRel";
|
2013-05-01 21:37:34 +00:00
|
|
|
let RowFields = ["BaseOpcode", "PredSense", "isNVStore", "isBrTaken"];
|
2012-12-04 04:29:16 +00:00
|
|
|
let ColFields = ["PNewValue"];
|
|
|
|
let KeyCol = [""];
|
|
|
|
let ValueCols = [["new"]];
|
|
|
|
}
|
|
|
|
|
2013-05-10 20:58:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generate mapping table to relate .new predicated instructions with their old
|
|
|
|
// format.
|
|
|
|
//
|
|
|
|
def getPredOldOpcode : InstrMapping {
|
|
|
|
let FilterClass = "PredNewRel";
|
|
|
|
let RowFields = ["BaseOpcode", "PredSense", "isNVStore"];
|
|
|
|
let ColFields = ["PNewValue"];
|
|
|
|
let KeyCol = ["new"];
|
|
|
|
let ValueCols = [[""]];
|
|
|
|
}
|
|
|
|
|
2012-12-04 04:29:16 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generate mapping table to relate store instructions with their new-value
|
|
|
|
// format.
|
|
|
|
//
|
|
|
|
def getNewValueOpcode : InstrMapping {
|
|
|
|
let FilterClass = "NewValueRel";
|
2015-01-06 16:15:15 +00:00
|
|
|
let RowFields = ["BaseOpcode", "PredSense", "PNewValue", "addrMode"];
|
2013-05-10 20:27:34 +00:00
|
|
|
let ColFields = ["NValueST"];
|
|
|
|
let KeyCol = ["false"];
|
|
|
|
let ValueCols = [["true"]];
|
2012-12-04 04:29:16 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 20:58:11 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Generate mapping table to relate new-value store instructions with their old
|
|
|
|
// format.
|
|
|
|
//
|
|
|
|
def getNonNVStore : InstrMapping {
|
|
|
|
let FilterClass = "NewValueRel";
|
2015-01-06 16:15:15 +00:00
|
|
|
let RowFields = ["BaseOpcode", "PredSense", "PNewValue", "addrMode"];
|
2013-05-10 20:58:11 +00:00
|
|
|
let ColFields = ["NValueST"];
|
|
|
|
let KeyCol = ["true"];
|
|
|
|
let ValueCols = [["false"]];
|
|
|
|
}
|
|
|
|
|
2012-12-04 04:29:16 +00:00
|
|
|
def getBasedWithImmOffset : InstrMapping {
|
|
|
|
let FilterClass = "AddrModeRel";
|
|
|
|
let RowFields = ["CextOpcode", "PredSense", "PNewValue", "isNVStore",
|
|
|
|
"isMEMri", "isFloat"];
|
|
|
|
let ColFields = ["addrMode"];
|
|
|
|
let KeyCol = ["Absolute"];
|
|
|
|
let ValueCols = [["BaseImmOffset"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
def getBaseWithRegOffset : InstrMapping {
|
|
|
|
let FilterClass = "AddrModeRel";
|
|
|
|
let RowFields = ["CextOpcode", "PredSense", "PNewValue", "isNVStore"];
|
|
|
|
let ColFields = ["addrMode"];
|
|
|
|
let KeyCol = ["BaseImmOffset"];
|
|
|
|
let ValueCols = [["BaseRegOffset"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
def getRegForm : InstrMapping {
|
|
|
|
let FilterClass = "ImmRegRel";
|
|
|
|
let RowFields = ["CextOpcode", "PredSense", "PNewValue"];
|
|
|
|
let ColFields = ["InputType"];
|
|
|
|
let KeyCol = ["imm"];
|
|
|
|
let ValueCols = [["reg"]];
|
|
|
|
}
|
|
|
|
|
2014-12-30 18:58:47 +00:00
|
|
|
def getRegShlForm : InstrMapping {
|
|
|
|
let FilterClass = "ImmRegShl";
|
|
|
|
let RowFields = ["CextOpcode", "PredSense", "PNewValue", "isNVStore"];
|
|
|
|
let ColFields = ["InputType"];
|
|
|
|
let KeyCol = ["imm"];
|
|
|
|
let ValueCols = [["reg"]];
|
|
|
|
}
|
|
|
|
|
2011-12-12 21:14:40 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register File, Calling Conv, Instruction Descriptions
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
include "HexagonSchedule.td"
|
|
|
|
include "HexagonRegisterInfo.td"
|
|
|
|
include "HexagonCallingConv.td"
|
|
|
|
include "HexagonInstrInfo.td"
|
|
|
|
include "HexagonIntrinsics.td"
|
|
|
|
include "HexagonIntrinsicsDerived.td"
|
|
|
|
|
2012-04-12 17:55:53 +00:00
|
|
|
def HexagonInstrInfo : InstrInfo;
|
2011-12-12 21:14:40 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Hexagon processors supported.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-07-07 04:00:00 +00:00
|
|
|
class Proc<string Name, SchedMachineModel Model,
|
2011-12-12 21:14:40 +00:00
|
|
|
list<SubtargetFeature> Features>
|
2012-07-07 04:00:00 +00:00
|
|
|
: ProcessorModel<Name, Model, Features>;
|
2011-12-12 21:14:40 +00:00
|
|
|
|
2015-02-09 21:56:37 +00:00
|
|
|
def : Proc<"hexagonv4", HexagonModelV4,
|
|
|
|
[ArchV4]>;
|
|
|
|
def : Proc<"hexagonv5", HexagonModelV4,
|
|
|
|
[ArchV4, ArchV5]>;
|
2012-05-10 20:20:25 +00:00
|
|
|
|
2011-12-12 21:14:40 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Declare the target which we are implementing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
def Hexagon : Target {
|
|
|
|
// Pull in Instruction Info:
|
|
|
|
let InstructionSet = HexagonInstrInfo;
|
|
|
|
}
|