//==- HexagonInstrFormats.td - Hexagon Instruction Formats --*- tablegen -*-==// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===// // Hexagon Instruction Flags + // // *** Must match HexagonBaseInfo.h *** //===----------------------------------------------------------------------===// class IType t> { bits<5> Value = t; } def TypePSEUDO : IType<0>; def TypeALU32 : IType<1>; def TypeCR : IType<2>; def TypeJR : IType<3>; def TypeJ : IType<4>; def TypeLD : IType<5>; def TypeST : IType<6>; def TypeSYSTEM : IType<7>; def TypeXTYPE : IType<8>; def TypeENDLOOP: IType<31>; // Maintain list of valid subtargets for each instruction. class SubTarget value> { bits<4> Value = value; } def HasV2SubT : SubTarget<0xf>; def HasV2SubTOnly : SubTarget<0x1>; def NoV2SubT : SubTarget<0x0>; def HasV3SubT : SubTarget<0xe>; def HasV3SubTOnly : SubTarget<0x2>; def NoV3SubT : SubTarget<0x1>; def HasV4SubT : SubTarget<0xc>; def NoV4SubT : SubTarget<0x3>; def HasV5SubT : SubTarget<0x8>; def NoV5SubT : SubTarget<0x7>; // Addressing modes for load/store instructions class AddrModeType value> { bits<3> Value = value; } def NoAddrMode : AddrModeType<0>; // No addressing mode def Absolute : AddrModeType<1>; // Absolute addressing mode def AbsoluteSet : AddrModeType<2>; // Absolute set addressing mode def BaseImmOffset : AddrModeType<3>; // Indirect with offset def BaseLongOffset : AddrModeType<4>; // Indirect with long offset def BaseRegOffset : AddrModeType<5>; // Indirect with register offset def PostInc : AddrModeType<6>; // Post increment addressing mode class MemAccessSize value> { bits<3> Value = value; } def NoMemAccess : MemAccessSize<0>;// Not a memory acces instruction. def ByteAccess : MemAccessSize<1>;// Byte access instruction (memb). def HalfWordAccess : MemAccessSize<2>;// Half word access instruction (memh). def WordAccess : MemAccessSize<3>;// Word access instruction (memw). def DoubleWordAccess : MemAccessSize<4>;// Double word access instruction (memd) //===----------------------------------------------------------------------===// // Instruction Class Declaration + //===----------------------------------------------------------------------===// class OpcodeHexagon { field bits<32> Inst = ?; // Default to an invalid insn. bits<4> IClass = 0; // ICLASS bits<2> IParse = 0; // Parse bits. let Inst{31-28} = IClass; let Inst{15-14} = IParse; bits<1> zero = 0; } class InstHexagon pattern, string cstr, InstrItinClass itin, IType type> : Instruction, OpcodeHexagon { let Namespace = "Hexagon"; dag OutOperandList = outs; dag InOperandList = ins; let AsmString = asmstr; let Pattern = pattern; let Constraints = cstr; let Itinerary = itin; let Size = 4; // *** Must match MCTargetDesc/HexagonBaseInfo.h *** // Instruction type according to the ISA. IType Type = type; let TSFlags{4-0} = Type.Value; // Solo instructions, i.e., those that cannot be in a packet with others. bits<1> isSolo = 0; let TSFlags{5} = isSolo; // Packed only with A or X-type instructions. bits<1> isSoloAX = 0; let TSFlags{6} = isSoloAX; // Only A-type instruction in first slot or nothing. bits<1> isSoloAin1 = 0; let TSFlags{7} = isSoloAin1; // Predicated instructions. bits<1> isPredicated = 0; let TSFlags{8} = isPredicated; bits<1> isPredicatedFalse = 0; let TSFlags{9} = isPredicatedFalse; bits<1> isPredicatedNew = 0; let TSFlags{10} = isPredicatedNew; bits<1> isPredicateLate = 0; let TSFlags{11} = isPredicateLate; // Late predicate producer insn. // New-value insn helper fields. bits<1> isNewValue = 0; let TSFlags{12} = isNewValue; // New-value consumer insn. bits<1> hasNewValue = 0; let TSFlags{13} = hasNewValue; // New-value producer insn. bits<3> opNewValue = 0; let TSFlags{16-14} = opNewValue; // New-value produced operand. bits<1> isNVStorable = 0; let TSFlags{17} = isNVStorable; // Store that can become new-value store. bits<1> isNVStore = 0; let TSFlags{18} = isNVStore; // New-value store insn. bits<1> isCVLoadable = 0; let TSFlags{19} = isCVLoadable; // Load that can become cur-value load. bits<1> isCVLoad = 0; let TSFlags{20} = isCVLoad; // Cur-value load insn. // Immediate extender helper fields. bits<1> isExtendable = 0; let TSFlags{21} = isExtendable; // Insn may be extended. bits<1> isExtended = 0; let TSFlags{22} = isExtended; // Insn must be extended. bits<3> opExtendable = 0; let TSFlags{25-23} = opExtendable; // Which operand may be extended. bits<1> isExtentSigned = 0; let TSFlags{26} = isExtentSigned; // Signed or unsigned range. bits<5> opExtentBits = 0; let TSFlags{31-27} = opExtentBits; //Number of bits of range before extending. bits<2> opExtentAlign = 0; let TSFlags{33-32} = opExtentAlign; // Alignment exponent before extending. // If an instruction is valid on a subtarget (v2-v5), set the corresponding // bit from validSubTargets. v2 is the least significant bit. // By default, instruction is valid on all subtargets. SubTarget validSubTargets = HasV2SubT; let TSFlags{37-34} = validSubTargets.Value; // Addressing mode for load/store instructions. AddrModeType addrMode = NoAddrMode; let TSFlags{42-40} = addrMode.Value; // Memory access size for mem access instructions (load/store) MemAccessSize accessSize = NoMemAccess; let TSFlags{45-43} = accessSize.Value; bits<1> isTaken = 0; let TSFlags {47} = isTaken; // Branch prediction. bits<1> isFP = 0; let TSFlags {48} = isFP; // Floating-point. // Fields used for relation models. string BaseOpcode = ""; string CextOpcode = ""; string PredSense = ""; string PNewValue = ""; string NValueST = ""; // Set to "true" for new-value stores. string InputType = ""; // Input is "imm" or "reg" type. string isMEMri = "false"; // Set to "true" for load/store with MEMri operand. string isFloat = "false"; // Set to "true" for the floating-point load/store. string isBrTaken = ""; // Set to "true"/"false" for jump instructions let PredSense = !if(isPredicated, !if(isPredicatedFalse, "false", "true"), ""); let PNewValue = !if(isPredicatedNew, "new", ""); let NValueST = !if(isNVStore, "true", "false"); // *** Must match MCTargetDesc/HexagonBaseInfo.h *** } //===----------------------------------------------------------------------===// // Instruction Classes Definitions + //===----------------------------------------------------------------------===// // LD Instruction Class in V2/V3/V4. // Definition of the instruction class NOT CHANGED. class LDInst pattern = [], string cstr = "", InstrItinClass itin = LD_tc_ld_SLOT01> : InstHexagon; let mayLoad = 1 in class LDInst2 pattern = [], string cstr = ""> : LDInst; class CONSTLDInst pattern = [], string cstr = ""> : LDInst; // LD Instruction Class in V2/V3/V4. // Definition of the instruction class NOT CHANGED. class LDInstPost pattern = [], string cstr = ""> : LDInst; let mayLoad = 1 in class LD0Inst pattern = [], string cstr = "", InstrItinClass itin=LD_tc_ld_SLOT0> : InstHexagon; // ST Instruction Class in V2/V3 can take SLOT0 only. // ST Instruction Class in V4 can take SLOT0 & SLOT1. // Definition of the instruction class CHANGED from V2/V3 to V4. let mayStore = 1 in class STInst pattern = [], string cstr = "", InstrItinClass itin = ST_tc_st_SLOT01> : InstHexagon; class STInst2 pattern = [], string cstr = ""> : STInst; let mayStore = 1 in class ST0Inst pattern = [], string cstr = "", InstrItinClass itin = ST_tc_ld_SLOT0> : InstHexagon; // ST Instruction Class in V2/V3 can take SLOT0 only. // ST Instruction Class in V4 can take SLOT0 & SLOT1. // Definition of the instruction class CHANGED from V2/V3 to V4. class STInstPost pattern = [], string cstr = "", InstrItinClass itin = ST_tc_st_SLOT01> : STInst; // SYSTEM Instruction Class in V4 can take SLOT0 only // In V2/V3 we used ST for this but in v4 ST can take SLOT0 or SLOT1. class SYSInst pattern = [], string cstr = "", InstrItinClass itin = ST_tc_3stall_SLOT0> : InstHexagon; // ALU32 Instruction Class in V2/V3/V4. // Definition of the instruction class NOT CHANGED. class ALU32Inst pattern = [], string cstr = "", InstrItinClass itin = ALU32_2op_tc_1_SLOT0123> : InstHexagon; // ALU64 Instruction Class in V2/V3. // XTYPE Instruction Class in V4. // Definition of the instruction class NOT CHANGED. // Name of the Instruction Class changed from ALU64 to XTYPE from V2/V3 to V4. class ALU64Inst pattern = [], string cstr = "", InstrItinClass itin = ALU64_tc_2_SLOT23> : InstHexagon; class ALU64_acc pattern = [], string cstr = "", InstrItinClass itin = ALU64_tc_2_SLOT23> : ALU64Inst; // M Instruction Class in V2/V3. // XTYPE Instruction Class in V4. // Definition of the instruction class NOT CHANGED. // Name of the Instruction Class changed from M to XTYPE from V2/V3 to V4. class MInst pattern = [], string cstr = "", InstrItinClass itin = M_tc_3x_SLOT23> : InstHexagon; // M Instruction Class in V2/V3. // XTYPE Instruction Class in V4. // Definition of the instruction class NOT CHANGED. // Name of the Instruction Class changed from M to XTYPE from V2/V3 to V4. class MInst_acc pattern = [], string cstr = "", InstrItinClass itin = M_tc_2_SLOT23> : MInst; // S Instruction Class in V2/V3. // XTYPE Instruction Class in V4. // Definition of the instruction class NOT CHANGED. // Name of the Instruction Class changed from S to XTYPE from V2/V3 to V4. class SInst pattern = [], string cstr = "", InstrItinClass itin = S_2op_tc_1_SLOT23> : InstHexagon; // S Instruction Class in V2/V3. // XTYPE Instruction Class in V4. // Definition of the instruction class NOT CHANGED. // Name of the Instruction Class changed from S to XTYPE from V2/V3 to V4. class SInst_acc pattern = [], string cstr = "", InstrItinClass itin = S_3op_tc_1_SLOT23> : SInst; // J Instruction Class in V2/V3/V4. // Definition of the instruction class NOT CHANGED. class JInst pattern = [], string cstr = "", InstrItinClass itin = J_tc_2early_SLOT23> : InstHexagon; // JR Instruction Class in V2/V3/V4. // Definition of the instruction class NOT CHANGED. class JRInst pattern = [], string cstr = "", InstrItinClass itin = J_tc_2early_SLOT2> : InstHexagon; // CR Instruction Class in V2/V3/V4. // Definition of the instruction class NOT CHANGED. class CRInst pattern = [], string cstr = "", InstrItinClass itin = CR_tc_2early_SLOT3> : InstHexagon; let isCodeGenOnly = 1, isPseudo = 1 in class Endloop pattern = [], string cstr = "", InstrItinClass itin = J_tc_2early_SLOT0123> : InstHexagon; let isCodeGenOnly = 1, isPseudo = 1 in class Pseudo pattern = [], string cstr = ""> : InstHexagon; let isCodeGenOnly = 1, isPseudo = 1 in class PseudoM pattern = [], string cstr=""> : InstHexagon; //===----------------------------------------------------------------------===// // Instruction Classes Definitions - //===----------------------------------------------------------------------===// // // ALU32 patterns //. class ALU32_rr pattern = [], string cstr = "", InstrItinClass itin = ALU32_2op_tc_1_SLOT0123> : ALU32Inst; class ALU32_ir pattern = [], string cstr = "", InstrItinClass itin = ALU32_2op_tc_1_SLOT0123> : ALU32Inst; class ALU32_ri pattern = [], string cstr = "", InstrItinClass itin = ALU32_2op_tc_1_SLOT0123> : ALU32Inst; class ALU32_ii pattern = [], string cstr = "", InstrItinClass itin = ALU32_2op_tc_1_SLOT0123> : ALU32Inst; // // ALU64 patterns. // class ALU64_rr pattern = [], string cstr = "", InstrItinClass itin = ALU64_tc_1_SLOT23> : ALU64Inst; class ALU64_ri pattern = [], string cstr = "", InstrItinClass itin = ALU64_tc_1_SLOT23> : ALU64Inst; // Post increment ST Instruction. class STInstPI pattern = [], string cstr = ""> : STInst; let mayStore = 1 in class STInst2PI pattern = [], string cstr = ""> : STInst; // Post increment LD Instruction. class LDInstPI pattern = [], string cstr = ""> : LDInst; let mayLoad = 1 in class LDInst2PI pattern = [], string cstr = ""> : LDInst; //===----------------------------------------------------------------------===// // V4 Instruction Format Definitions + //===----------------------------------------------------------------------===// include "HexagonInstrFormatsV4.td" //===----------------------------------------------------------------------===// // V4 Instruction Format Definitions + //===----------------------------------------------------------------------===//