2012-02-18 13:03:15 +01:00
|
|
|
//===-- HexagonBaseInfo.h - Top level definitions for Hexagon --*- C++ -*--===//
|
2012-02-08 19:25:47 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains small standalone helper functions and enum definitions for
|
|
|
|
// the Hexagon target useful for the compiler back-end and the MC libraries.
|
|
|
|
// As such, it deliberately does not include references to LLVM core
|
|
|
|
// code gen types, passes, etc..
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONBASEINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONBASEINFO_H
|
2012-02-08 19:25:47 +01:00
|
|
|
|
2014-10-27 13:37:26 +01:00
|
|
|
#include "HexagonMCTargetDesc.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// HexagonII - This namespace holds all of the target specific flags that
|
2012-02-08 19:25:47 +01:00
|
|
|
/// instruction info tracks.
|
|
|
|
///
|
|
|
|
namespace HexagonII {
|
2012-04-23 20:25:57 +02:00
|
|
|
// *** The code below must match HexagonInstrFormat*.td *** //
|
2012-04-23 19:49:20 +02:00
|
|
|
|
2012-05-03 23:52:53 +02:00
|
|
|
// Insn types.
|
|
|
|
// *** Must match HexagonInstrFormat*.td ***
|
|
|
|
enum Type {
|
2013-02-19 19:18:36 +01:00
|
|
|
TypePSEUDO = 0,
|
|
|
|
TypeCR = 2,
|
|
|
|
TypeJ = 4,
|
|
|
|
TypeLD = 5,
|
|
|
|
TypeST = 6,
|
2016-10-07 21:11:28 +02:00
|
|
|
TypeV4LDST = 9,
|
2017-02-06 20:35:46 +01:00
|
|
|
TypeNCJ = 10,
|
2015-06-05 18:00:11 +02:00
|
|
|
TypeDUPLEX = 11,
|
2017-02-02 16:03:30 +01:00
|
|
|
TypeCJ = 12,
|
2015-11-09 05:07:48 +01:00
|
|
|
TypeCVI_FIRST = 13,
|
|
|
|
TypeCVI_VA = TypeCVI_FIRST,
|
|
|
|
TypeCVI_VA_DV = 14,
|
|
|
|
TypeCVI_VX = 15,
|
|
|
|
TypeCVI_VX_DV = 16,
|
|
|
|
TypeCVI_VP = 17,
|
|
|
|
TypeCVI_VP_VS = 18,
|
|
|
|
TypeCVI_VS = 19,
|
|
|
|
TypeCVI_VINLANESAT= 20,
|
|
|
|
TypeCVI_VM_LD = 21,
|
|
|
|
TypeCVI_VM_TMP_LD = 22,
|
|
|
|
TypeCVI_VM_CUR_LD = 23,
|
|
|
|
TypeCVI_VM_VP_LDU = 24,
|
|
|
|
TypeCVI_VM_ST = 25,
|
|
|
|
TypeCVI_VM_NEW_ST = 26,
|
|
|
|
TypeCVI_VM_STU = 27,
|
|
|
|
TypeCVI_HIST = 28,
|
|
|
|
TypeCVI_LAST = TypeCVI_HIST,
|
2017-02-07 18:47:37 +01:00
|
|
|
TypeEXTENDER = 39,
|
|
|
|
TypeENDLOOP = 40,
|
|
|
|
TypeS_2op = 41,
|
|
|
|
TypeS_3op = 42,
|
|
|
|
TypeALU64 = 43,
|
|
|
|
TypeM = 44,
|
|
|
|
TypeALU32_2op = 45,
|
|
|
|
TypeALU32_3op = 46,
|
|
|
|
TypeALU32_ADDI = 47
|
2012-05-03 23:52:53 +02:00
|
|
|
};
|
|
|
|
|
2012-11-14 21:38:48 +01:00
|
|
|
enum SubTarget {
|
2017-02-06 20:35:46 +01:00
|
|
|
HasV4SubT = 0x3f,
|
|
|
|
HasV5SubT = 0x3e,
|
|
|
|
HasV55SubT = 0x3c,
|
|
|
|
HasV60SubT = 0x38,
|
2012-11-14 21:38:48 +01:00
|
|
|
};
|
2012-05-03 23:52:53 +02:00
|
|
|
|
2012-11-14 21:38:48 +01:00
|
|
|
enum AddrMode {
|
|
|
|
NoAddrMode = 0, // No addressing mode
|
|
|
|
Absolute = 1, // Absolute addressing mode
|
|
|
|
AbsoluteSet = 2, // Absolute set addressing mode
|
|
|
|
BaseImmOffset = 3, // Indirect with offset
|
|
|
|
BaseLongOffset = 4, // Indirect with long offset
|
2013-05-07 17:06:29 +02:00
|
|
|
BaseRegOffset = 5, // Indirect with register offset
|
|
|
|
PostInc = 6 // Post increment addressing mode
|
2012-11-14 21:38:48 +01:00
|
|
|
};
|
2012-05-03 23:52:53 +02:00
|
|
|
|
2015-12-03 16:41:33 +01:00
|
|
|
// MemAccessSize is represented as 1+log2(N) where N is size in bits.
|
2015-05-01 23:14:21 +02:00
|
|
|
enum class MemAccessSize {
|
2016-11-17 20:21:20 +01:00
|
|
|
NoMemAccess = 0, // Not a memory access instruction.
|
2013-02-19 19:18:36 +01:00
|
|
|
ByteAccess = 1, // Byte access instruction (memb).
|
|
|
|
HalfWordAccess = 2, // Half word access instruction (memh).
|
2013-09-28 15:42:22 +02:00
|
|
|
WordAccess = 3, // Word access instruction (memw).
|
2015-12-03 16:41:33 +01:00
|
|
|
DoubleWordAccess = 4, // Double word access instruction (memd)
|
|
|
|
// 5, // We do not have a 16 byte vector access.
|
|
|
|
Vector64Access = 7, // 64 Byte vector access instruction (vmem).
|
|
|
|
Vector128Access = 8 // 128 Byte vector access instruction (vmem).
|
2013-02-19 19:18:36 +01:00
|
|
|
};
|
|
|
|
|
2012-02-08 19:25:47 +01:00
|
|
|
// MCInstrDesc TSFlags
|
2012-05-03 23:52:53 +02:00
|
|
|
// *** Must match HexagonInstrFormat*.td ***
|
2012-02-08 19:25:47 +01:00
|
|
|
enum {
|
2012-05-03 23:52:53 +02:00
|
|
|
// This 5-bit field describes the insn type.
|
|
|
|
TypePos = 0,
|
2017-02-06 20:35:46 +01:00
|
|
|
TypeMask = 0x3f,
|
2012-05-03 23:52:53 +02:00
|
|
|
|
|
|
|
// Solo instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
SoloPos = 6,
|
2012-05-03 23:52:53 +02:00
|
|
|
SoloMask = 0x1,
|
2014-05-07 21:07:34 +02:00
|
|
|
// Packed only with A or X-type instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
SoloAXPos = 7,
|
2014-05-07 21:07:34 +02:00
|
|
|
SoloAXMask = 0x1,
|
|
|
|
// Only A-type instruction in first slot or nothing.
|
2017-02-06 20:35:46 +01:00
|
|
|
SoloAin1Pos = 8,
|
2014-05-07 21:07:34 +02:00
|
|
|
SoloAin1Mask = 0x1,
|
2012-02-08 19:25:47 +01:00
|
|
|
|
|
|
|
// Predicated instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
PredicatedPos = 9,
|
2012-11-14 21:38:48 +01:00
|
|
|
PredicatedMask = 0x1,
|
2017-02-06 20:35:46 +01:00
|
|
|
PredicatedFalsePos = 10,
|
2013-02-19 19:18:36 +01:00
|
|
|
PredicatedFalseMask = 0x1,
|
2017-02-06 20:35:46 +01:00
|
|
|
PredicatedNewPos = 11,
|
2012-11-14 21:38:48 +01:00
|
|
|
PredicatedNewMask = 0x1,
|
2017-02-06 20:35:46 +01:00
|
|
|
PredicateLatePos = 12,
|
2014-05-07 21:07:34 +02:00
|
|
|
PredicateLateMask = 0x1,
|
2012-11-14 21:38:48 +01:00
|
|
|
|
2013-02-19 19:18:36 +01:00
|
|
|
// New-Value consumer instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
NewValuePos = 13,
|
2013-02-19 19:18:36 +01:00
|
|
|
NewValueMask = 0x1,
|
|
|
|
// New-Value producer instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
hasNewValuePos = 14,
|
2013-02-19 19:18:36 +01:00
|
|
|
hasNewValueMask = 0x1,
|
|
|
|
// Which operand consumes or produces a new value.
|
2017-02-06 20:35:46 +01:00
|
|
|
NewValueOpPos = 15,
|
2013-02-19 19:18:36 +01:00
|
|
|
NewValueOpMask = 0x7,
|
|
|
|
// Stores that can become new-value stores.
|
2017-02-06 20:35:46 +01:00
|
|
|
mayNVStorePos = 18,
|
2012-11-14 21:38:48 +01:00
|
|
|
mayNVStoreMask = 0x1,
|
2013-02-19 19:18:36 +01:00
|
|
|
// New-value store instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
NVStorePos = 19,
|
2012-11-14 21:38:48 +01:00
|
|
|
NVStoreMask = 0x1,
|
2014-05-07 21:07:34 +02:00
|
|
|
// Loads that can become current-value loads.
|
2017-02-06 20:35:46 +01:00
|
|
|
mayCVLoadPos = 20,
|
2014-05-07 21:07:34 +02:00
|
|
|
mayCVLoadMask = 0x1,
|
|
|
|
// Current-value load instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
CVLoadPos = 21,
|
2014-05-07 21:07:34 +02:00
|
|
|
CVLoadMask = 0x1,
|
2012-11-14 21:38:48 +01:00
|
|
|
|
|
|
|
// Extendable insns.
|
2017-02-06 20:35:46 +01:00
|
|
|
ExtendablePos = 22,
|
2012-11-14 21:38:48 +01:00
|
|
|
ExtendableMask = 0x1,
|
|
|
|
// Insns must be extended.
|
2017-02-06 20:35:46 +01:00
|
|
|
ExtendedPos = 23,
|
2012-11-14 21:38:48 +01:00
|
|
|
ExtendedMask = 0x1,
|
|
|
|
// Which operand may be extended.
|
2017-02-06 20:35:46 +01:00
|
|
|
ExtendableOpPos = 24,
|
2012-11-14 21:38:48 +01:00
|
|
|
ExtendableOpMask = 0x7,
|
|
|
|
// Signed or unsigned range.
|
2017-02-06 20:35:46 +01:00
|
|
|
ExtentSignedPos = 27,
|
2012-11-14 21:38:48 +01:00
|
|
|
ExtentSignedMask = 0x1,
|
|
|
|
// Number of bits of range before extending operand.
|
2017-02-06 20:35:46 +01:00
|
|
|
ExtentBitsPos = 28,
|
2012-11-14 21:38:48 +01:00
|
|
|
ExtentBitsMask = 0x1f,
|
2014-05-07 21:07:34 +02:00
|
|
|
// Alignment power-of-two before extending operand.
|
2017-02-06 20:35:46 +01:00
|
|
|
ExtentAlignPos = 33,
|
2014-05-07 21:07:34 +02:00
|
|
|
ExtentAlignMask = 0x3,
|
2012-11-14 21:38:48 +01:00
|
|
|
|
|
|
|
// Valid subtargets
|
2017-02-06 20:35:46 +01:00
|
|
|
validSubTargetPos = 35,
|
|
|
|
validSubTargetMask = 0x3f,
|
2012-11-14 21:38:48 +01:00
|
|
|
|
2013-02-19 19:18:36 +01:00
|
|
|
// Addressing mode for load/store instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
AddrModePos = 41,
|
2013-02-19 19:18:36 +01:00
|
|
|
AddrModeMask = 0x7,
|
2014-05-07 21:07:34 +02:00
|
|
|
// Access size for load/store instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
MemAccessSizePos = 44,
|
2015-12-03 16:41:33 +01:00
|
|
|
MemAccesSizeMask = 0xf,
|
2014-05-07 21:07:34 +02:00
|
|
|
|
|
|
|
// Branch predicted taken.
|
2017-02-06 20:35:46 +01:00
|
|
|
TakenPos = 48,
|
2014-05-07 21:07:34 +02:00
|
|
|
TakenMask = 0x1,
|
2012-11-14 21:38:48 +01:00
|
|
|
|
2014-05-07 21:07:34 +02:00
|
|
|
// Floating-point instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
FPPos = 49,
|
2015-11-09 05:07:48 +01:00
|
|
|
FPMask = 0x1,
|
|
|
|
|
|
|
|
// New-Value producer-2 instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
hasNewValuePos2 = 51,
|
2015-11-09 05:07:48 +01:00
|
|
|
hasNewValueMask2 = 0x1,
|
|
|
|
// Which operand consumes or produces a new value.
|
2017-02-06 20:35:46 +01:00
|
|
|
NewValueOpPos2 = 52,
|
2015-11-24 15:55:26 +01:00
|
|
|
NewValueOpMask2 = 0x7,
|
|
|
|
|
|
|
|
// Accumulator instructions.
|
2017-02-06 20:35:46 +01:00
|
|
|
AccumulatorPos = 55,
|
2015-11-24 15:55:26 +01:00
|
|
|
AccumulatorMask = 0x1,
|
|
|
|
|
2016-11-17 20:21:20 +01:00
|
|
|
// Complex XU, prevent xu competition by preferring slot3
|
2017-02-06 20:35:46 +01:00
|
|
|
PrefersSlot3Pos = 56,
|
2015-11-24 15:55:26 +01:00
|
|
|
PrefersSlot3Mask = 0x1,
|
2016-10-08 19:18:51 +02:00
|
|
|
|
|
|
|
CofMax1Pos = 60,
|
|
|
|
CofMax1Mask = 0x1
|
2013-02-19 19:18:36 +01:00
|
|
|
};
|
2012-02-08 19:25:47 +01:00
|
|
|
|
2012-02-09 16:20:33 +01:00
|
|
|
// *** The code above must match HexagonInstrFormat*.td *** //
|
2012-02-08 19:25:47 +01:00
|
|
|
|
2013-03-01 18:37:13 +01:00
|
|
|
// Hexagon specific MO operand flag mask.
|
|
|
|
enum HexagonMOTargetFlagVal {
|
|
|
|
//===------------------------------------------------------------------===//
|
|
|
|
// Hexagon Specific MachineOperand flags.
|
|
|
|
MO_NO_FLAG,
|
|
|
|
|
|
|
|
/// MO_PCREL - On a symbol operand, indicates a PC-relative relocation
|
|
|
|
/// Used for computing a global address for PIC compilations
|
|
|
|
MO_PCREL,
|
|
|
|
|
|
|
|
/// MO_GOT - Indicates a GOT-relative relocation
|
|
|
|
MO_GOT,
|
|
|
|
|
|
|
|
// Low or high part of a symbol.
|
|
|
|
MO_LO16, MO_HI16,
|
|
|
|
|
|
|
|
// Offset from the base of the SDA.
|
2016-02-18 16:42:57 +01:00
|
|
|
MO_GPREL,
|
|
|
|
|
|
|
|
// MO_GDGOT - indicates GOT relative relocation for TLS
|
|
|
|
// GeneralDynamic method
|
|
|
|
MO_GDGOT,
|
|
|
|
|
|
|
|
// MO_GDPLT - indicates PLT relative relocation for TLS
|
|
|
|
// GeneralDynamic method
|
|
|
|
MO_GDPLT,
|
|
|
|
|
|
|
|
// MO_IE - indicates non PIC relocation for TLS
|
|
|
|
// Initial Executable method
|
|
|
|
MO_IE,
|
|
|
|
|
|
|
|
// MO_IEGOT - indicates PIC relocation for TLS
|
|
|
|
// Initial Executable method
|
|
|
|
MO_IEGOT,
|
|
|
|
|
|
|
|
// MO_TPREL - indicates relocation for TLS
|
|
|
|
// local Executable method
|
2017-02-06 20:35:46 +01:00
|
|
|
MO_TPREL,
|
|
|
|
|
|
|
|
// HMOTF_ConstExtended
|
|
|
|
// Addendum to abovem, indicates a const extended op
|
|
|
|
// Can be used as a mask.
|
|
|
|
HMOTF_ConstExtended = 0x80
|
|
|
|
|
2014-10-27 13:37:26 +01:00
|
|
|
};
|
|
|
|
|
2015-06-05 18:00:11 +02:00
|
|
|
// Hexagon Sub-instruction classes.
|
|
|
|
enum SubInstructionGroup {
|
|
|
|
HSIG_None = 0,
|
|
|
|
HSIG_L1,
|
|
|
|
HSIG_L2,
|
|
|
|
HSIG_S1,
|
|
|
|
HSIG_S2,
|
|
|
|
HSIG_A,
|
|
|
|
HSIG_Compound
|
|
|
|
};
|
|
|
|
|
2015-06-08 18:34:47 +02:00
|
|
|
// Hexagon Compound classes.
|
|
|
|
enum CompoundGroup {
|
|
|
|
HCG_None = 0,
|
|
|
|
HCG_A,
|
|
|
|
HCG_B,
|
|
|
|
HCG_C
|
|
|
|
};
|
|
|
|
|
2015-05-29 16:44:13 +02:00
|
|
|
enum InstParseBits {
|
2014-10-27 13:37:26 +01:00
|
|
|
INST_PARSE_MASK = 0x0000c000,
|
|
|
|
INST_PARSE_PACKET_END = 0x0000c000,
|
|
|
|
INST_PARSE_LOOP_END = 0x00008000,
|
|
|
|
INST_PARSE_NOT_END = 0x00004000,
|
|
|
|
INST_PARSE_DUPLEX = 0x00000000,
|
|
|
|
INST_PARSE_EXTENDER = 0x00000000
|
|
|
|
};
|
|
|
|
|
2015-11-09 20:44:38 +01:00
|
|
|
enum InstIClassBits : unsigned {
|
2015-11-09 05:07:48 +01:00
|
|
|
INST_ICLASS_MASK = 0xf0000000,
|
|
|
|
INST_ICLASS_EXTENDER = 0x00000000,
|
|
|
|
INST_ICLASS_J_1 = 0x10000000,
|
|
|
|
INST_ICLASS_J_2 = 0x20000000,
|
|
|
|
INST_ICLASS_LD_ST_1 = 0x30000000,
|
|
|
|
INST_ICLASS_LD_ST_2 = 0x40000000,
|
|
|
|
INST_ICLASS_J_3 = 0x50000000,
|
|
|
|
INST_ICLASS_CR = 0x60000000,
|
|
|
|
INST_ICLASS_ALU32_1 = 0x70000000,
|
|
|
|
INST_ICLASS_XTYPE_1 = 0x80000000,
|
|
|
|
INST_ICLASS_LD = 0x90000000,
|
|
|
|
INST_ICLASS_ST = 0xa0000000,
|
|
|
|
INST_ICLASS_ALU32_2 = 0xb0000000,
|
|
|
|
INST_ICLASS_XTYPE_2 = 0xc0000000,
|
|
|
|
INST_ICLASS_XTYPE_3 = 0xd0000000,
|
|
|
|
INST_ICLASS_XTYPE_4 = 0xe0000000,
|
|
|
|
INST_ICLASS_ALU32_3 = 0xf0000000
|
|
|
|
};
|
|
|
|
|
2014-10-27 13:37:26 +01:00
|
|
|
} // End namespace HexagonII.
|
|
|
|
|
|
|
|
} // End namespace llvm.
|
2012-02-08 19:25:47 +01:00
|
|
|
|
|
|
|
#endif
|