mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[Hexagon] Add LLVM instruction definitions for Hexagon V68
This commit is contained in:
parent
8e87532070
commit
65e46aa23b
File diff suppressed because it is too large
Load Diff
@ -48,7 +48,10 @@ def ExtensionHVXV66: SubtargetFeature<"hvxv66", "HexagonHVXVersion",
|
|||||||
def ExtensionHVXV67: SubtargetFeature<"hvxv67", "HexagonHVXVersion",
|
def ExtensionHVXV67: SubtargetFeature<"hvxv67", "HexagonHVXVersion",
|
||||||
"Hexagon::ArchEnum::V67", "Hexagon HVX instructions",
|
"Hexagon::ArchEnum::V67", "Hexagon HVX instructions",
|
||||||
[ExtensionHVXV60, ExtensionHVXV62, ExtensionHVXV65, ExtensionHVXV66]>;
|
[ExtensionHVXV60, ExtensionHVXV62, ExtensionHVXV65, ExtensionHVXV66]>;
|
||||||
|
def ExtensionHVXV68: SubtargetFeature<"hvxv68", "HexagonHVXVersion",
|
||||||
|
"Hexagon::ArchEnum::V68", "Hexagon HVX instructions",
|
||||||
|
[ExtensionHVXV60, ExtensionHVXV62, ExtensionHVXV65, ExtensionHVXV66,
|
||||||
|
ExtensionHVXV67]>;
|
||||||
|
|
||||||
def ExtensionHVX64B: SubtargetFeature<"hvx-length64b", "UseHVX64BOps",
|
def ExtensionHVX64B: SubtargetFeature<"hvx-length64b", "UseHVX64BOps",
|
||||||
"true", "Hexagon HVX 64B instructions", [ExtensionHVX]>;
|
"true", "Hexagon HVX 64B instructions", [ExtensionHVX]>;
|
||||||
@ -107,6 +110,8 @@ def UseHVXV66 : Predicate<"HST->useHVXV66Ops()">,
|
|||||||
AssemblerPredicate<(all_of ExtensionHVXV66)>;
|
AssemblerPredicate<(all_of ExtensionHVXV66)>;
|
||||||
def UseHVXV67 : Predicate<"HST->useHVXV67Ops()">,
|
def UseHVXV67 : Predicate<"HST->useHVXV67Ops()">,
|
||||||
AssemblerPredicate<(all_of ExtensionHVXV67)>;
|
AssemblerPredicate<(all_of ExtensionHVXV67)>;
|
||||||
|
def UseHVXV68 : Predicate<"HST->useHVXV68Ops()">,
|
||||||
|
AssemblerPredicate<(all_of ExtensionHVXV68)>;
|
||||||
def UseAudio : Predicate<"HST->useAudioOps()">,
|
def UseAudio : Predicate<"HST->useAudioOps()">,
|
||||||
AssemblerPredicate<(all_of ExtensionAudio)>;
|
AssemblerPredicate<(all_of ExtensionAudio)>;
|
||||||
def UseZReg : Predicate<"HST->useZRegOps()">,
|
def UseZReg : Predicate<"HST->useZRegOps()">,
|
||||||
@ -394,6 +399,11 @@ def : Proc<"hexagonv67", HexagonModelV67,
|
|||||||
[ArchV5, ArchV55, ArchV60, ArchV62, ArchV65, ArchV66, ArchV67,
|
[ArchV5, ArchV55, ArchV60, ArchV62, ArchV65, ArchV66, ArchV67,
|
||||||
FeatureCompound, FeatureDuplex, FeatureMemNoShuf, FeatureMemops,
|
FeatureCompound, FeatureDuplex, FeatureMemNoShuf, FeatureMemops,
|
||||||
FeatureNVJ, FeatureNVS, FeaturePackets, FeatureSmallData]>;
|
FeatureNVJ, FeatureNVS, FeaturePackets, FeatureSmallData]>;
|
||||||
|
def : Proc<"hexagonv68", HexagonModelV68,
|
||||||
|
[ArchV5, ArchV55, ArchV60, ArchV62, ArchV65, ArchV66, ArchV67,
|
||||||
|
ArchV68,
|
||||||
|
FeatureCompound, FeatureDuplex, FeatureMemNoShuf, FeatureMemops,
|
||||||
|
FeatureNVJ, FeatureNVS, FeaturePackets, FeatureSmallData]>;
|
||||||
// Need to update the correct features for tiny core.
|
// Need to update the correct features for tiny core.
|
||||||
// Disable NewValueJumps since the packetizer is unable to handle a packet with
|
// Disable NewValueJumps since the packetizer is unable to handle a packet with
|
||||||
// a new value jump and another SLOT0 instruction.
|
// a new value jump and another SLOT0 instruction.
|
||||||
|
@ -14,35 +14,76 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace Hexagon {
|
namespace Hexagon {
|
||||||
enum class ArchEnum { NoArch, Generic, V5, V55, V60, V62, V65, V66, V67 };
|
enum class ArchEnum { NoArch, Generic, V5, V55, V60, V62, V65, V66, V67, V68 };
|
||||||
|
|
||||||
static constexpr unsigned ArchValsNumArray[] = {5, 55, 60, 62, 65, 66, 67};
|
static constexpr unsigned ArchValsNumArray[] = {5, 55, 60, 62, 65, 66, 67, 68};
|
||||||
static constexpr ArrayRef<unsigned> ArchValsNum(ArchValsNumArray);
|
static constexpr ArrayRef<unsigned> ArchValsNum(ArchValsNumArray);
|
||||||
|
|
||||||
static constexpr StringLiteral ArchValsTextArray[] = { "v5", "v55", "v60", "v62", "v65", "v66", "v67" };
|
static constexpr StringLiteral ArchValsTextArray[] = { "v5", "v55", "v60", "v62", "v65", "v66", "v67", "v68" };
|
||||||
static constexpr ArrayRef<StringLiteral> ArchValsText(ArchValsTextArray);
|
static constexpr ArrayRef<StringLiteral> ArchValsText(ArchValsTextArray);
|
||||||
|
|
||||||
static constexpr StringLiteral CpuValsTextArray[] = { "hexagonv5", "hexagonv55", "hexagonv60", "hexagonv62", "hexagonv65", "hexagonv66", "hexagonv67", "hexagonv67t" };
|
static constexpr StringLiteral CpuValsTextArray[] = { "hexagonv5", "hexagonv55", "hexagonv60", "hexagonv62", "hexagonv65", "hexagonv66", "hexagonv67", "hexagonv67t", "hexagonv68" };
|
||||||
static constexpr ArrayRef<StringLiteral> CpuValsText(CpuValsTextArray);
|
static constexpr ArrayRef<StringLiteral> CpuValsText(CpuValsTextArray);
|
||||||
|
|
||||||
static constexpr StringLiteral CpuNickTextArray[] = { "v5", "v55", "v60", "v62", "v65", "v66", "v67", "v67t" };
|
static constexpr StringLiteral CpuNickTextArray[] = { "v5", "v55", "v60", "v62", "v65", "v66", "v67", "v67t", "v68" };
|
||||||
static constexpr ArrayRef<StringLiteral> CpuNickText(CpuNickTextArray);
|
static constexpr ArrayRef<StringLiteral> CpuNickText(CpuNickTextArray);
|
||||||
|
|
||||||
static const std::map<std::string, ArchEnum> CpuTable{
|
static const std::map<std::string, ArchEnum> CpuTable{
|
||||||
{"generic", Hexagon::ArchEnum::V60},
|
{"generic", Hexagon::ArchEnum::V5},
|
||||||
{"hexagonv5", Hexagon::ArchEnum::V5},
|
{"hexagonv5", Hexagon::ArchEnum::V5},
|
||||||
{"hexagonv55", Hexagon::ArchEnum::V55},
|
{"hexagonv55", Hexagon::ArchEnum::V55},
|
||||||
{"hexagonv60", Hexagon::ArchEnum::V60},
|
{"hexagonv60", Hexagon::ArchEnum::V60},
|
||||||
{"hexagonv62", Hexagon::ArchEnum::V62},
|
{"hexagonv62", Hexagon::ArchEnum::V62},
|
||||||
{"hexagonv65", Hexagon::ArchEnum::V65},
|
{"hexagonv65", Hexagon::ArchEnum::V65},
|
||||||
{"hexagonv66", Hexagon::ArchEnum::V66},
|
{"hexagonv66", Hexagon::ArchEnum::V66},
|
||||||
{"hexagonv67", Hexagon::ArchEnum::V67},
|
{"hexagonv67", Hexagon::ArchEnum::V67},
|
||||||
{"hexagonv67t", Hexagon::ArchEnum::V67},
|
{"hexagonv67t", Hexagon::ArchEnum::V67},
|
||||||
|
{"hexagonv68", Hexagon::ArchEnum::V68},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const std::map<std::string, unsigned> ElfFlagsByCpuStr = {
|
||||||
|
{"generic", llvm::ELF::EF_HEXAGON_MACH_V5},
|
||||||
|
{"hexagonv5", llvm::ELF::EF_HEXAGON_MACH_V5},
|
||||||
|
{"hexagonv55", llvm::ELF::EF_HEXAGON_MACH_V55},
|
||||||
|
{"hexagonv60", llvm::ELF::EF_HEXAGON_MACH_V60},
|
||||||
|
{"hexagonv62", llvm::ELF::EF_HEXAGON_MACH_V62},
|
||||||
|
{"hexagonv65", llvm::ELF::EF_HEXAGON_MACH_V65},
|
||||||
|
{"hexagonv66", llvm::ELF::EF_HEXAGON_MACH_V66},
|
||||||
|
{"hexagonv67", llvm::ELF::EF_HEXAGON_MACH_V67},
|
||||||
|
{"hexagonv67t", llvm::ELF::EF_HEXAGON_MACH_V67T},
|
||||||
|
{"hexagonv68", llvm::ELF::EF_HEXAGON_MACH_V68},
|
||||||
|
};
|
||||||
|
static const std::map<unsigned, std::string> ElfArchByMachFlags = {
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V5, "V5"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V55, "V55"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V60, "V60"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V62, "V62"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V65, "V65"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V66, "V66"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V67, "V67"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V67T, "V67T"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V68, "V68"},
|
||||||
|
};
|
||||||
|
static const std::map<unsigned, std::string> ElfCpuByMachFlags = {
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V5, "hexagonv5"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V55, "hexagonv55"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V60, "hexagonv60"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V62, "hexagonv62"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V65, "hexagonv65"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V66, "hexagonv66"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V67, "hexagonv67"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V67T, "hexagonv67t"},
|
||||||
|
{llvm::ELF::EF_HEXAGON_MACH_V68, "hexagonv68"},
|
||||||
|
};
|
||||||
|
|
||||||
} // namespace Hexagon
|
} // namespace Hexagon
|
||||||
} // namespace llvm;
|
} // namespace llvm;
|
||||||
#endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPARCH_H
|
|
||||||
|
#endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPARCH_H
|
||||||
|
@ -22,3 +22,5 @@ def ArchV66: SubtargetFeature<"v66", "HexagonArchVersion", "Hexagon::ArchEnum::V
|
|||||||
def HasV66 : Predicate<"HST->hasV66Ops()">, AssemblerPredicate<(all_of ArchV66)>;
|
def HasV66 : Predicate<"HST->hasV66Ops()">, AssemblerPredicate<(all_of ArchV66)>;
|
||||||
def ArchV67: SubtargetFeature<"v67", "HexagonArchVersion", "Hexagon::ArchEnum::V67", "Enable Hexagon V67 architecture">;
|
def ArchV67: SubtargetFeature<"v67", "HexagonArchVersion", "Hexagon::ArchEnum::V67", "Enable Hexagon V67 architecture">;
|
||||||
def HasV67 : Predicate<"HST->hasV67Ops()">, AssemblerPredicate<(all_of ArchV67)>;
|
def HasV67 : Predicate<"HST->hasV67Ops()">, AssemblerPredicate<(all_of ArchV67)>;
|
||||||
|
def ArchV68: SubtargetFeature<"v68", "HexagonArchVersion", "Hexagon::ArchEnum::V68", "Enable Hexagon V68 architecture">;
|
||||||
|
def HasV68 : Predicate<"HST->hasV68Ops()">, AssemblerPredicate<(all_of ArchV68)>;
|
||||||
|
@ -8,21 +8,14 @@
|
|||||||
// Automatically generated file, do not edit!
|
// Automatically generated file, do not edit!
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
#pragma clang diagnostic ignored "-Wunused-function"
|
#pragma clang diagnostic ignored "-Wunused-function"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static DecodeStatus s8_0ImmDecoder(MCInst &MI, unsigned tmp,
|
static DecodeStatus s6_0ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
uint64_t, const void *Decoder) {
|
uint64_t, const void *Decoder) {
|
||||||
signedDecoder<8>(MI, tmp, Decoder);
|
signedDecoder<6>(MI, tmp, Decoder);
|
||||||
return MCDisassembler::Success;
|
|
||||||
}
|
|
||||||
static DecodeStatus s4_0ImmDecoder(MCInst &MI, unsigned tmp,
|
|
||||||
uint64_t, const void *Decoder) {
|
|
||||||
signedDecoder<4>(MI, tmp, Decoder);
|
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
static DecodeStatus s31_1ImmDecoder(MCInst &MI, unsigned tmp,
|
static DecodeStatus s31_1ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
@ -30,44 +23,49 @@ static DecodeStatus s31_1ImmDecoder(MCInst &MI, unsigned tmp,
|
|||||||
signedDecoder<12>(MI, tmp, Decoder);
|
signedDecoder<12>(MI, tmp, Decoder);
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
static DecodeStatus s4_1ImmDecoder(MCInst &MI, unsigned tmp,
|
|
||||||
uint64_t, const void *Decoder) {
|
|
||||||
signedDecoder<5>(MI, tmp, Decoder);
|
|
||||||
return MCDisassembler::Success;
|
|
||||||
}
|
|
||||||
static DecodeStatus s30_2ImmDecoder(MCInst &MI, unsigned tmp,
|
static DecodeStatus s30_2ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
uint64_t, const void *Decoder) {
|
uint64_t, const void *Decoder) {
|
||||||
signedDecoder<13>(MI, tmp, Decoder);
|
signedDecoder<13>(MI, tmp, Decoder);
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
static DecodeStatus s4_2ImmDecoder(MCInst &MI, unsigned tmp,
|
|
||||||
uint64_t, const void *Decoder) {
|
|
||||||
signedDecoder<6>(MI, tmp, Decoder);
|
|
||||||
return MCDisassembler::Success;
|
|
||||||
}
|
|
||||||
static DecodeStatus s29_3ImmDecoder(MCInst &MI, unsigned tmp,
|
static DecodeStatus s29_3ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
uint64_t, const void *Decoder) {
|
uint64_t, const void *Decoder) {
|
||||||
signedDecoder<14>(MI, tmp, Decoder);
|
signedDecoder<14>(MI, tmp, Decoder);
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
|
static DecodeStatus s3_0ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
|
uint64_t, const void *Decoder) {
|
||||||
|
signedDecoder<3>(MI, tmp, Decoder);
|
||||||
|
return MCDisassembler::Success;
|
||||||
|
}
|
||||||
|
static DecodeStatus s4_0ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
|
uint64_t, const void *Decoder) {
|
||||||
|
signedDecoder<4>(MI, tmp, Decoder);
|
||||||
|
return MCDisassembler::Success;
|
||||||
|
}
|
||||||
|
static DecodeStatus s4_1ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
|
uint64_t, const void *Decoder) {
|
||||||
|
signedDecoder<5>(MI, tmp, Decoder);
|
||||||
|
return MCDisassembler::Success;
|
||||||
|
}
|
||||||
|
static DecodeStatus s4_2ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
|
uint64_t, const void *Decoder) {
|
||||||
|
signedDecoder<6>(MI, tmp, Decoder);
|
||||||
|
return MCDisassembler::Success;
|
||||||
|
}
|
||||||
static DecodeStatus s4_3ImmDecoder(MCInst &MI, unsigned tmp,
|
static DecodeStatus s4_3ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
uint64_t, const void *Decoder) {
|
uint64_t, const void *Decoder) {
|
||||||
signedDecoder<7>(MI, tmp, Decoder);
|
signedDecoder<7>(MI, tmp, Decoder);
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
static DecodeStatus s6_0ImmDecoder(MCInst &MI, unsigned tmp,
|
|
||||||
uint64_t, const void *Decoder) {
|
|
||||||
signedDecoder<6>(MI, tmp, Decoder);
|
|
||||||
return MCDisassembler::Success;
|
|
||||||
}
|
|
||||||
static DecodeStatus s6_3ImmDecoder(MCInst &MI, unsigned tmp,
|
static DecodeStatus s6_3ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
uint64_t, const void *Decoder) {
|
uint64_t, const void *Decoder) {
|
||||||
signedDecoder<9>(MI, tmp, Decoder);
|
signedDecoder<9>(MI, tmp, Decoder);
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
static DecodeStatus s3_0ImmDecoder(MCInst &MI, unsigned tmp,
|
static DecodeStatus s8_0ImmDecoder(MCInst &MI, unsigned tmp,
|
||||||
uint64_t, const void *Decoder) {
|
uint64_t, const void *Decoder) {
|
||||||
signedDecoder<3>(MI, tmp, Decoder);
|
signedDecoder<8>(MI, tmp, Decoder);
|
||||||
return MCDisassembler::Success;
|
return MCDisassembler::Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,4 +73,3 @@ static DecodeStatus s3_0ImmDecoder(MCInst &MI, unsigned tmp,
|
|||||||
#pragma clang diagnostic pop
|
#pragma clang diagnostic pop
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// clang-format on
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -8,6 +8,10 @@
|
|||||||
// Automatically generated file, do not edit!
|
// Automatically generated file, do not edit!
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPITYPES_H
|
||||||
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPITYPES_H
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace HexagonII {
|
namespace HexagonII {
|
||||||
enum Type {
|
enum Type {
|
||||||
@ -16,48 +20,50 @@ enum Type {
|
|||||||
TypeALU32_ADDI = 2,
|
TypeALU32_ADDI = 2,
|
||||||
TypeALU64 = 3,
|
TypeALU64 = 3,
|
||||||
TypeCJ = 4,
|
TypeCJ = 4,
|
||||||
TypeCR = 7,
|
TypeCR = 5,
|
||||||
TypeCVI_4SLOT_MPY = 8,
|
TypeCVI_4SLOT_MPY = 6,
|
||||||
TypeCVI_GATHER = 9,
|
TypeCVI_GATHER = 7,
|
||||||
TypeCVI_GATHER_DV = 10,
|
TypeCVI_GATHER_DV = 8,
|
||||||
TypeCVI_GATHER_RST = 11,
|
TypeCVI_GATHER_RST = 9,
|
||||||
TypeCVI_HIST = 12,
|
TypeCVI_HIST = 10,
|
||||||
TypeCVI_SCATTER = 13,
|
TypeCVI_SCATTER = 11,
|
||||||
TypeCVI_SCATTER_DV = 14,
|
TypeCVI_SCATTER_DV = 12,
|
||||||
TypeCVI_SCATTER_NEW_RST = 15,
|
TypeCVI_SCATTER_NEW_RST = 13,
|
||||||
TypeCVI_SCATTER_NEW_ST = 16,
|
TypeCVI_SCATTER_NEW_ST = 14,
|
||||||
TypeCVI_SCATTER_RST = 17,
|
TypeCVI_SCATTER_RST = 15,
|
||||||
TypeCVI_VA = 18,
|
TypeCVI_VA = 16,
|
||||||
TypeCVI_VA_DV = 19,
|
TypeCVI_VA_DV = 17,
|
||||||
TypeCVI_VM_LD = 20,
|
TypeCVI_VM_LD = 18,
|
||||||
TypeCVI_VM_NEW_ST = 21,
|
TypeCVI_VM_NEW_ST = 19,
|
||||||
TypeCVI_VM_ST = 22,
|
TypeCVI_VM_ST = 20,
|
||||||
TypeCVI_VM_STU = 23,
|
TypeCVI_VM_STU = 21,
|
||||||
TypeCVI_VM_TMP_LD = 24,
|
TypeCVI_VM_TMP_LD = 22,
|
||||||
TypeCVI_VM_VP_LDU = 25,
|
TypeCVI_VM_VP_LDU = 23,
|
||||||
TypeCVI_VP = 26,
|
TypeCVI_VP = 24,
|
||||||
TypeCVI_VP_VS = 27,
|
TypeCVI_VP_VS = 25,
|
||||||
TypeCVI_VS = 28,
|
TypeCVI_VS = 26,
|
||||||
TypeCVI_VS_VX = 29,
|
TypeCVI_VS_VX = 27,
|
||||||
TypeCVI_VX = 30,
|
TypeCVI_VX = 28,
|
||||||
TypeCVI_VX_DV = 31,
|
TypeCVI_VX_DV = 29,
|
||||||
TypeCVI_VX_LATE = 32,
|
TypeCVI_VX_LATE = 30,
|
||||||
TypeCVI_ZW = 33,
|
TypeCVI_ZW = 31,
|
||||||
TypeDUPLEX = 34,
|
TypeDUPLEX = 32,
|
||||||
TypeENDLOOP = 35,
|
TypeENDLOOP = 33,
|
||||||
TypeEXTENDER = 36,
|
TypeEXTENDER = 34,
|
||||||
TypeJ = 37,
|
TypeJ = 35,
|
||||||
TypeLD = 38,
|
TypeLD = 36,
|
||||||
TypeM = 39,
|
TypeM = 37,
|
||||||
TypeMAPPING = 40,
|
TypeMAPPING = 38,
|
||||||
TypeNCJ = 41,
|
TypeNCJ = 39,
|
||||||
TypePSEUDO = 42,
|
TypePSEUDO = 40,
|
||||||
TypeST = 43,
|
TypeST = 41,
|
||||||
TypeSUBINSN = 44,
|
TypeSUBINSN = 42,
|
||||||
TypeS_2op = 45,
|
TypeS_2op = 43,
|
||||||
TypeS_3op = 46,
|
TypeS_3op = 44,
|
||||||
TypeV2LDST = 49,
|
TypeV2LDST = 47,
|
||||||
TypeV4LDST = 50,
|
TypeV4LDST = 48,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPITYPES_H
|
||||||
|
@ -14,45 +14,45 @@ def TypeALU32_3op : IType<1>;
|
|||||||
def TypeALU32_ADDI : IType<2>;
|
def TypeALU32_ADDI : IType<2>;
|
||||||
def TypeALU64 : IType<3>;
|
def TypeALU64 : IType<3>;
|
||||||
def TypeCJ : IType<4>;
|
def TypeCJ : IType<4>;
|
||||||
def TypeCR : IType<7>;
|
def TypeCR : IType<5>;
|
||||||
def TypeCVI_4SLOT_MPY : IType<8>;
|
def TypeCVI_4SLOT_MPY : IType<6>;
|
||||||
def TypeCVI_GATHER : IType<9>;
|
def TypeCVI_GATHER : IType<7>;
|
||||||
def TypeCVI_GATHER_DV : IType<10>;
|
def TypeCVI_GATHER_DV : IType<8>;
|
||||||
def TypeCVI_GATHER_RST : IType<11>;
|
def TypeCVI_GATHER_RST : IType<9>;
|
||||||
def TypeCVI_HIST : IType<12>;
|
def TypeCVI_HIST : IType<10>;
|
||||||
def TypeCVI_SCATTER : IType<13>;
|
def TypeCVI_SCATTER : IType<11>;
|
||||||
def TypeCVI_SCATTER_DV : IType<14>;
|
def TypeCVI_SCATTER_DV : IType<12>;
|
||||||
def TypeCVI_SCATTER_NEW_RST : IType<15>;
|
def TypeCVI_SCATTER_NEW_RST : IType<13>;
|
||||||
def TypeCVI_SCATTER_NEW_ST : IType<16>;
|
def TypeCVI_SCATTER_NEW_ST : IType<14>;
|
||||||
def TypeCVI_SCATTER_RST : IType<17>;
|
def TypeCVI_SCATTER_RST : IType<15>;
|
||||||
def TypeCVI_VA : IType<18>;
|
def TypeCVI_VA : IType<16>;
|
||||||
def TypeCVI_VA_DV : IType<19>;
|
def TypeCVI_VA_DV : IType<17>;
|
||||||
def TypeCVI_VM_LD : IType<20>;
|
def TypeCVI_VM_LD : IType<18>;
|
||||||
def TypeCVI_VM_NEW_ST : IType<21>;
|
def TypeCVI_VM_NEW_ST : IType<19>;
|
||||||
def TypeCVI_VM_ST : IType<22>;
|
def TypeCVI_VM_ST : IType<20>;
|
||||||
def TypeCVI_VM_STU : IType<23>;
|
def TypeCVI_VM_STU : IType<21>;
|
||||||
def TypeCVI_VM_TMP_LD : IType<24>;
|
def TypeCVI_VM_TMP_LD : IType<22>;
|
||||||
def TypeCVI_VM_VP_LDU : IType<25>;
|
def TypeCVI_VM_VP_LDU : IType<23>;
|
||||||
def TypeCVI_VP : IType<26>;
|
def TypeCVI_VP : IType<24>;
|
||||||
def TypeCVI_VP_VS : IType<27>;
|
def TypeCVI_VP_VS : IType<25>;
|
||||||
def TypeCVI_VS : IType<28>;
|
def TypeCVI_VS : IType<26>;
|
||||||
def TypeCVI_VS_VX : IType<29>;
|
def TypeCVI_VS_VX : IType<27>;
|
||||||
def TypeCVI_VX : IType<30>;
|
def TypeCVI_VX : IType<28>;
|
||||||
def TypeCVI_VX_DV : IType<31>;
|
def TypeCVI_VX_DV : IType<29>;
|
||||||
def TypeCVI_VX_LATE : IType<32>;
|
def TypeCVI_VX_LATE : IType<30>;
|
||||||
def TypeCVI_ZW : IType<33>;
|
def TypeCVI_ZW : IType<31>;
|
||||||
def TypeDUPLEX : IType<34>;
|
def TypeDUPLEX : IType<32>;
|
||||||
def TypeENDLOOP : IType<35>;
|
def TypeENDLOOP : IType<33>;
|
||||||
def TypeEXTENDER : IType<36>;
|
def TypeEXTENDER : IType<34>;
|
||||||
def TypeJ : IType<37>;
|
def TypeJ : IType<35>;
|
||||||
def TypeLD : IType<38>;
|
def TypeLD : IType<36>;
|
||||||
def TypeM : IType<39>;
|
def TypeM : IType<37>;
|
||||||
def TypeMAPPING : IType<40>;
|
def TypeMAPPING : IType<38>;
|
||||||
def TypeNCJ : IType<41>;
|
def TypeNCJ : IType<39>;
|
||||||
def TypePSEUDO : IType<42>;
|
def TypePSEUDO : IType<40>;
|
||||||
def TypeST : IType<43>;
|
def TypeST : IType<41>;
|
||||||
def TypeSUBINSN : IType<44>;
|
def TypeSUBINSN : IType<42>;
|
||||||
def TypeS_2op : IType<45>;
|
def TypeS_2op : IType<43>;
|
||||||
def TypeS_3op : IType<46>;
|
def TypeS_3op : IType<44>;
|
||||||
def TypeV2LDST : IType<49>;
|
def TypeV2LDST : IType<47>;
|
||||||
def TypeV4LDST : IType<50>;
|
def TypeV4LDST : IType<48>;
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -197,6 +197,8 @@ def V6_stqnt0Alias : InstAlias<"if ($Qv4) vmem($Rt32):nt = $Vs32", (V6_vS32b_nt_
|
|||||||
def V6_stu0Alias : InstAlias<"vmemu($Rt32) = $Vs32", (V6_vS32Ub_ai IntRegs:$Rt32, 0, HvxVR:$Vs32)>, Requires<[UseHVX]>;
|
def V6_stu0Alias : InstAlias<"vmemu($Rt32) = $Vs32", (V6_vS32Ub_ai IntRegs:$Rt32, 0, HvxVR:$Vs32)>, Requires<[UseHVX]>;
|
||||||
def V6_stunp0Alias : InstAlias<"if (!$Pv4) vmemu($Rt32) = $Vs32", (V6_vS32Ub_npred_ai PredRegs:$Pv4, IntRegs:$Rt32, 0, HvxVR:$Vs32)>, Requires<[UseHVX]>;
|
def V6_stunp0Alias : InstAlias<"if (!$Pv4) vmemu($Rt32) = $Vs32", (V6_vS32Ub_npred_ai PredRegs:$Pv4, IntRegs:$Rt32, 0, HvxVR:$Vs32)>, Requires<[UseHVX]>;
|
||||||
def V6_stup0Alias : InstAlias<"if ($Pv4) vmemu($Rt32) = $Vs32", (V6_vS32Ub_pred_ai PredRegs:$Pv4, IntRegs:$Rt32, 0, HvxVR:$Vs32)>, Requires<[UseHVX]>;
|
def V6_stup0Alias : InstAlias<"if ($Pv4) vmemu($Rt32) = $Vs32", (V6_vS32Ub_pred_ai PredRegs:$Pv4, IntRegs:$Rt32, 0, HvxVR:$Vs32)>, Requires<[UseHVX]>;
|
||||||
|
def V6_v6mpyhubs10_altAlias : InstAlias<"$Vdd32.w = v6mpy($Vuu32.ub,$Vvv32.b10,#$Ii):h", (V6_v6mpyhubs10 HvxWR:$Vdd32, HvxWR:$Vuu32, HvxWR:$Vvv32, u2_0Imm:$Ii)>, Requires<[UseHVX]>;
|
||||||
|
def V6_v6mpyvubs10_altAlias : InstAlias<"$Vdd32.w = v6mpy($Vuu32.ub,$Vvv32.b10,#$Ii):v", (V6_v6mpyvubs10 HvxWR:$Vdd32, HvxWR:$Vuu32, HvxWR:$Vvv32, u2_0Imm:$Ii)>, Requires<[UseHVX]>;
|
||||||
def V6_vabsb_altAlias : InstAlias<"$Vd32 = vabsb($Vu32)", (V6_vabsb HvxVR:$Vd32, HvxVR:$Vu32)>, Requires<[UseHVX]>;
|
def V6_vabsb_altAlias : InstAlias<"$Vd32 = vabsb($Vu32)", (V6_vabsb HvxVR:$Vd32, HvxVR:$Vu32)>, Requires<[UseHVX]>;
|
||||||
def V6_vabsb_sat_altAlias : InstAlias<"$Vd32 = vabsb($Vu32):sat", (V6_vabsb_sat HvxVR:$Vd32, HvxVR:$Vu32)>, Requires<[UseHVX]>;
|
def V6_vabsb_sat_altAlias : InstAlias<"$Vd32 = vabsb($Vu32):sat", (V6_vabsb_sat HvxVR:$Vd32, HvxVR:$Vu32)>, Requires<[UseHVX]>;
|
||||||
def V6_vabsdiffh_altAlias : InstAlias<"$Vd32 = vabsdiffh($Vu32,$Vv32)", (V6_vabsdiffh HvxVR:$Vd32, HvxVR:$Vu32, HvxVR:$Vv32)>, Requires<[UseHVX]>;
|
def V6_vabsdiffh_altAlias : InstAlias<"$Vd32 = vabsdiffh($Vu32,$Vv32)", (V6_vabsdiffh HvxVR:$Vd32, HvxVR:$Vu32, HvxVR:$Vv32)>, Requires<[UseHVX]>;
|
||||||
|
@ -8,10 +8,10 @@
|
|||||||
// Automatically generated file, do not edit!
|
// Automatically generated file, do not edit!
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
|
||||||
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPMASK_H
|
#ifndef LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPMASK_H
|
||||||
#define LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPMASK_H
|
#define LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPMASK_H
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
HexagonInstruction InstructionEncodings[] = {
|
HexagonInstruction InstructionEncodings[] = {
|
||||||
{ /*Tag:A2_addi*/
|
{ /*Tag:A2_addi*/
|
||||||
/*Rd32=add(Rs32,#s16)*/
|
/*Rd32=add(Rs32,#s16)*/
|
||||||
@ -2816,6 +2816,5 @@ HexagonInstruction InstructionEncodings[] = {
|
|||||||
0x00002404,
|
0x00002404,
|
||||||
0 }
|
0 }
|
||||||
};
|
};
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
#endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPMASK_H
|
#endif // LLVM_LIB_TARGET_HEXAGON_HEXAGONDEPMASK_H
|
||||||
|
@ -13,120 +13,120 @@ multiclass ImmOpPred<code pred, ValueType vt = i32> {
|
|||||||
def _timm : PatLeaf<(vt timm), pred>;
|
def _timm : PatLeaf<(vt timm), pred>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def s6_0ImmOperand : AsmOperandClass { let Name = "s6_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def s6_0Imm : Operand<i32> { let ParserMatchClass = s6_0ImmOperand; let DecoderMethod = "s6_0ImmDecoder"; }
|
||||||
|
defm s6_0ImmPred : ImmOpPred<[{ return isShiftedInt<6, 0>(N->getSExtValue());}]>;
|
||||||
def s32_0ImmOperand : AsmOperandClass { let Name = "s32_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
def s32_0ImmOperand : AsmOperandClass { let Name = "s32_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
def s32_0Imm : Operand<i32> { let ParserMatchClass = s32_0ImmOperand; let DecoderMethod = "s32_0ImmDecoder"; }
|
def s32_0Imm : Operand<i32> { let ParserMatchClass = s32_0ImmOperand; let DecoderMethod = "s32_0ImmDecoder"; }
|
||||||
defm s32_0ImmPred : ImmOpPred<[{ return isShiftedInt<32, 0>(N->getSExtValue());}]>;
|
defm s32_0ImmPred : ImmOpPred<[{ return isShiftedInt<32, 0>(N->getSExtValue());}]>;
|
||||||
def s8_0ImmOperand : AsmOperandClass { let Name = "s8_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def s8_0Imm : Operand<i32> { let ParserMatchClass = s8_0ImmOperand; let DecoderMethod = "s8_0ImmDecoder"; }
|
|
||||||
defm s8_0ImmPred : ImmOpPred<[{ return isShiftedInt<8, 0>(N->getSExtValue());}]>;
|
|
||||||
def u16_0ImmOperand : AsmOperandClass { let Name = "u16_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u16_0Imm : Operand<i32> { let ParserMatchClass = u16_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u16_0ImmPred : ImmOpPred<[{ return isShiftedUInt<16, 0>(N->getSExtValue());}]>;
|
|
||||||
def u5_0ImmOperand : AsmOperandClass { let Name = "u5_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u5_0Imm : Operand<i32> { let ParserMatchClass = u5_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u5_0ImmPred : ImmOpPred<[{ return isShiftedUInt<5, 0>(N->getSExtValue());}]>;
|
|
||||||
def u8_0ImmOperand : AsmOperandClass { let Name = "u8_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u8_0Imm : Operand<i32> { let ParserMatchClass = u8_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u8_0ImmPred : ImmOpPred<[{ return isShiftedUInt<8, 0>(N->getSExtValue());}]>;
|
|
||||||
def u32_0ImmOperand : AsmOperandClass { let Name = "u32_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u32_0Imm : Operand<i32> { let ParserMatchClass = u32_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u32_0ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 0>(N->getSExtValue());}]>;
|
|
||||||
def u26_6ImmOperand : AsmOperandClass { let Name = "u26_6Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u26_6Imm : Operand<i32> { let ParserMatchClass = u26_6ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u26_6ImmPred : ImmOpPred<[{ return isShiftedUInt<26, 6>(N->getSExtValue());}]>;
|
|
||||||
def u7_0ImmOperand : AsmOperandClass { let Name = "u7_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u7_0Imm : Operand<i32> { let ParserMatchClass = u7_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u7_0ImmPred : ImmOpPred<[{ return isShiftedUInt<7, 0>(N->getSExtValue());}]>;
|
|
||||||
def u6_0ImmOperand : AsmOperandClass { let Name = "u6_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u6_0Imm : Operand<i32> { let ParserMatchClass = u6_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u6_0ImmPred : ImmOpPred<[{ return isShiftedUInt<6, 0>(N->getSExtValue());}]>;
|
|
||||||
def u10_0ImmOperand : AsmOperandClass { let Name = "u10_0Imm"; let RenderMethod = "addImmOperands"; }
|
def u10_0ImmOperand : AsmOperandClass { let Name = "u10_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
def u10_0Imm : Operand<i32> { let ParserMatchClass = u10_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
def u10_0Imm : Operand<i32> { let ParserMatchClass = u10_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
defm u10_0ImmPred : ImmOpPred<[{ return isShiftedUInt<10, 0>(N->getSExtValue());}]>;
|
defm u10_0ImmPred : ImmOpPred<[{ return isShiftedUInt<10, 0>(N->getSExtValue());}]>;
|
||||||
|
def u32_0ImmOperand : AsmOperandClass { let Name = "u32_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u32_0Imm : Operand<i32> { let ParserMatchClass = u32_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u32_0ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 0>(N->getSExtValue());}]>;
|
||||||
|
def m32_0ImmOperand : AsmOperandClass { let Name = "m32_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def m32_0Imm : Operand<i32> { let ParserMatchClass = m32_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm m32_0ImmPred : ImmOpPred<[{ return isShiftedInt<32, 0>(N->getSExtValue());}]>;
|
||||||
|
def b13_2ImmOperand : AsmOperandClass { let Name = "b13_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def b13_2Imm : Operand<OtherVT> { let ParserMatchClass = b13_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
||||||
|
defm b13_2ImmPred : ImmOpPred<[{ return isShiftedInt<13, 2>(N->getSExtValue());}]>;
|
||||||
|
def b15_2ImmOperand : AsmOperandClass { let Name = "b15_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def b15_2Imm : Operand<OtherVT> { let ParserMatchClass = b15_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
||||||
|
defm b15_2ImmPred : ImmOpPred<[{ return isShiftedInt<15, 2>(N->getSExtValue());}]>;
|
||||||
def a30_2ImmOperand : AsmOperandClass { let Name = "a30_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
def a30_2ImmOperand : AsmOperandClass { let Name = "a30_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
def a30_2Imm : Operand<i32> { let ParserMatchClass = a30_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
def a30_2Imm : Operand<i32> { let ParserMatchClass = a30_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
||||||
defm a30_2ImmPred : ImmOpPred<[{ return isShiftedInt<32, 2>(N->getSExtValue());}]>;
|
defm a30_2ImmPred : ImmOpPred<[{ return isShiftedInt<32, 2>(N->getSExtValue());}]>;
|
||||||
def b30_2ImmOperand : AsmOperandClass { let Name = "b30_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
def b30_2ImmOperand : AsmOperandClass { let Name = "b30_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
def b30_2Imm : Operand<OtherVT> { let ParserMatchClass = b30_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
def b30_2Imm : Operand<OtherVT> { let ParserMatchClass = b30_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
||||||
defm b30_2ImmPred : ImmOpPred<[{ return isShiftedInt<32, 2>(N->getSExtValue());}]>;
|
defm b30_2ImmPred : ImmOpPred<[{ return isShiftedInt<32, 2>(N->getSExtValue());}]>;
|
||||||
def b15_2ImmOperand : AsmOperandClass { let Name = "b15_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def b15_2Imm : Operand<OtherVT> { let ParserMatchClass = b15_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
|
||||||
defm b15_2ImmPred : ImmOpPred<[{ return isShiftedInt<15, 2>(N->getSExtValue());}]>;
|
|
||||||
def b13_2ImmOperand : AsmOperandClass { let Name = "b13_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def b13_2Imm : Operand<OtherVT> { let ParserMatchClass = b13_2ImmOperand; let DecoderMethod = "brtargetDecoder"; let PrintMethod = "printBrtarget"; }
|
|
||||||
defm b13_2ImmPred : ImmOpPred<[{ return isShiftedInt<13, 2>(N->getSExtValue());}]>;
|
|
||||||
def s4_0ImmOperand : AsmOperandClass { let Name = "s4_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def s4_0Imm : Operand<i32> { let ParserMatchClass = s4_0ImmOperand; let DecoderMethod = "s4_0ImmDecoder"; }
|
|
||||||
defm s4_0ImmPred : ImmOpPred<[{ return isShiftedInt<4, 0>(N->getSExtValue());}]>;
|
|
||||||
def s31_1ImmOperand : AsmOperandClass { let Name = "s31_1Imm"; let RenderMethod = "addSignedImmOperands"; }
|
def s31_1ImmOperand : AsmOperandClass { let Name = "s31_1Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
def s31_1Imm : Operand<i32> { let ParserMatchClass = s31_1ImmOperand; let DecoderMethod = "s31_1ImmDecoder"; }
|
def s31_1Imm : Operand<i32> { let ParserMatchClass = s31_1ImmOperand; let DecoderMethod = "s31_1ImmDecoder"; }
|
||||||
defm s31_1ImmPred : ImmOpPred<[{ return isShiftedInt<32, 1>(N->getSExtValue());}]>;
|
defm s31_1ImmPred : ImmOpPred<[{ return isShiftedInt<32, 1>(N->getSExtValue());}]>;
|
||||||
def s4_1ImmOperand : AsmOperandClass { let Name = "s4_1Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def s4_1Imm : Operand<i32> { let ParserMatchClass = s4_1ImmOperand; let DecoderMethod = "s4_1ImmDecoder"; }
|
|
||||||
defm s4_1ImmPred : ImmOpPred<[{ return isShiftedInt<4, 1>(N->getSExtValue());}]>;
|
|
||||||
def s30_2ImmOperand : AsmOperandClass { let Name = "s30_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
def s30_2ImmOperand : AsmOperandClass { let Name = "s30_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
def s30_2Imm : Operand<i32> { let ParserMatchClass = s30_2ImmOperand; let DecoderMethod = "s30_2ImmDecoder"; }
|
def s30_2Imm : Operand<i32> { let ParserMatchClass = s30_2ImmOperand; let DecoderMethod = "s30_2ImmDecoder"; }
|
||||||
defm s30_2ImmPred : ImmOpPred<[{ return isShiftedInt<32, 2>(N->getSExtValue());}]>;
|
defm s30_2ImmPred : ImmOpPred<[{ return isShiftedInt<32, 2>(N->getSExtValue());}]>;
|
||||||
def s4_2ImmOperand : AsmOperandClass { let Name = "s4_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def s4_2Imm : Operand<i32> { let ParserMatchClass = s4_2ImmOperand; let DecoderMethod = "s4_2ImmDecoder"; }
|
|
||||||
defm s4_2ImmPred : ImmOpPred<[{ return isShiftedInt<4, 2>(N->getSExtValue());}]>;
|
|
||||||
def s29_3ImmOperand : AsmOperandClass { let Name = "s29_3Imm"; let RenderMethod = "addSignedImmOperands"; }
|
def s29_3ImmOperand : AsmOperandClass { let Name = "s29_3Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
def s29_3Imm : Operand<i32> { let ParserMatchClass = s29_3ImmOperand; let DecoderMethod = "s29_3ImmDecoder"; }
|
def s29_3Imm : Operand<i32> { let ParserMatchClass = s29_3ImmOperand; let DecoderMethod = "s29_3ImmDecoder"; }
|
||||||
defm s29_3ImmPred : ImmOpPred<[{ return isShiftedInt<32, 3>(N->getSExtValue());}]>;
|
defm s29_3ImmPred : ImmOpPred<[{ return isShiftedInt<32, 3>(N->getSExtValue());}]>;
|
||||||
def s4_3ImmOperand : AsmOperandClass { let Name = "s4_3Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def s4_3Imm : Operand<i32> { let ParserMatchClass = s4_3ImmOperand; let DecoderMethod = "s4_3ImmDecoder"; }
|
|
||||||
defm s4_3ImmPred : ImmOpPred<[{ return isShiftedInt<4, 3>(N->getSExtValue());}]>;
|
|
||||||
def u29_3ImmOperand : AsmOperandClass { let Name = "u29_3Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u29_3Imm : Operand<i32> { let ParserMatchClass = u29_3ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u29_3ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 3>(N->getSExtValue());}]>;
|
|
||||||
def u31_1ImmOperand : AsmOperandClass { let Name = "u31_1Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u31_1Imm : Operand<i32> { let ParserMatchClass = u31_1ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u31_1ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 1>(N->getSExtValue());}]>;
|
|
||||||
def u30_2ImmOperand : AsmOperandClass { let Name = "u30_2Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u30_2Imm : Operand<i32> { let ParserMatchClass = u30_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u30_2ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 2>(N->getSExtValue());}]>;
|
|
||||||
def u2_0ImmOperand : AsmOperandClass { let Name = "u2_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u2_0Imm : Operand<i32> { let ParserMatchClass = u2_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u2_0ImmPred : ImmOpPred<[{ return isShiftedUInt<2, 0>(N->getSExtValue());}]>;
|
|
||||||
def m32_0ImmOperand : AsmOperandClass { let Name = "m32_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def m32_0Imm : Operand<i32> { let ParserMatchClass = m32_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm m32_0ImmPred : ImmOpPred<[{ return isShiftedInt<32, 0>(N->getSExtValue());}]>;
|
|
||||||
def u6_2ImmOperand : AsmOperandClass { let Name = "u6_2Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u6_2Imm : Operand<i32> { let ParserMatchClass = u6_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u6_2ImmPred : ImmOpPred<[{ return isShiftedUInt<6, 2>(N->getSExtValue());}]>;
|
|
||||||
def u3_0ImmOperand : AsmOperandClass { let Name = "u3_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u3_0Imm : Operand<i32> { let ParserMatchClass = u3_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u3_0ImmPred : ImmOpPred<[{ return isShiftedUInt<3, 0>(N->getSExtValue());}]>;
|
|
||||||
def u11_3ImmOperand : AsmOperandClass { let Name = "u11_3Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u11_3Imm : Operand<i32> { let ParserMatchClass = u11_3ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u11_3ImmPred : ImmOpPred<[{ return isShiftedUInt<11, 3>(N->getSExtValue());}]>;
|
|
||||||
def u4_0ImmOperand : AsmOperandClass { let Name = "u4_0Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u4_0Imm : Operand<i32> { let ParserMatchClass = u4_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u4_0ImmPred : ImmOpPred<[{ return isShiftedUInt<4, 0>(N->getSExtValue());}]>;
|
|
||||||
def s6_0ImmOperand : AsmOperandClass { let Name = "s6_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def s6_0Imm : Operand<i32> { let ParserMatchClass = s6_0ImmOperand; let DecoderMethod = "s6_0ImmDecoder"; }
|
|
||||||
defm s6_0ImmPred : ImmOpPred<[{ return isShiftedInt<6, 0>(N->getSExtValue());}]>;
|
|
||||||
def u6_1ImmOperand : AsmOperandClass { let Name = "u6_1Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u6_1Imm : Operand<i32> { let ParserMatchClass = u6_1ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u6_1ImmPred : ImmOpPred<[{ return isShiftedUInt<6, 1>(N->getSExtValue());}]>;
|
|
||||||
def u4_2ImmOperand : AsmOperandClass { let Name = "u4_2Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u4_2Imm : Operand<i32> { let ParserMatchClass = u4_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u4_2ImmPred : ImmOpPred<[{ return isShiftedUInt<4, 2>(N->getSExtValue());}]>;
|
|
||||||
def u5_3ImmOperand : AsmOperandClass { let Name = "u5_3Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u5_3Imm : Operand<i32> { let ParserMatchClass = u5_3ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u5_3ImmPred : ImmOpPred<[{ return isShiftedUInt<5, 3>(N->getSExtValue());}]>;
|
|
||||||
def u3_1ImmOperand : AsmOperandClass { let Name = "u3_1Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u3_1Imm : Operand<i32> { let ParserMatchClass = u3_1ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u3_1ImmPred : ImmOpPred<[{ return isShiftedUInt<3, 1>(N->getSExtValue());}]>;
|
|
||||||
def u5_2ImmOperand : AsmOperandClass { let Name = "u5_2Imm"; let RenderMethod = "addImmOperands"; }
|
|
||||||
def u5_2Imm : Operand<i32> { let ParserMatchClass = u5_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
|
||||||
defm u5_2ImmPred : ImmOpPred<[{ return isShiftedUInt<5, 2>(N->getSExtValue());}]>;
|
|
||||||
def s6_3ImmOperand : AsmOperandClass { let Name = "s6_3Imm"; let RenderMethod = "addSignedImmOperands"; }
|
|
||||||
def s6_3Imm : Operand<i32> { let ParserMatchClass = s6_3ImmOperand; let DecoderMethod = "s6_3ImmDecoder"; }
|
|
||||||
defm s6_3ImmPred : ImmOpPred<[{ return isShiftedInt<6, 3>(N->getSExtValue());}]>;
|
|
||||||
def s3_0ImmOperand : AsmOperandClass { let Name = "s3_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
def s3_0ImmOperand : AsmOperandClass { let Name = "s3_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
def s3_0Imm : Operand<i32> { let ParserMatchClass = s3_0ImmOperand; let DecoderMethod = "s3_0ImmDecoder"; }
|
def s3_0Imm : Operand<i32> { let ParserMatchClass = s3_0ImmOperand; let DecoderMethod = "s3_0ImmDecoder"; }
|
||||||
defm s3_0ImmPred : ImmOpPred<[{ return isShiftedInt<3, 0>(N->getSExtValue());}]>;
|
defm s3_0ImmPred : ImmOpPred<[{ return isShiftedInt<3, 0>(N->getSExtValue());}]>;
|
||||||
|
def s4_0ImmOperand : AsmOperandClass { let Name = "s4_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def s4_0Imm : Operand<i32> { let ParserMatchClass = s4_0ImmOperand; let DecoderMethod = "s4_0ImmDecoder"; }
|
||||||
|
defm s4_0ImmPred : ImmOpPred<[{ return isShiftedInt<4, 0>(N->getSExtValue());}]>;
|
||||||
|
def s4_1ImmOperand : AsmOperandClass { let Name = "s4_1Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def s4_1Imm : Operand<i32> { let ParserMatchClass = s4_1ImmOperand; let DecoderMethod = "s4_1ImmDecoder"; }
|
||||||
|
defm s4_1ImmPred : ImmOpPred<[{ return isShiftedInt<4, 1>(N->getSExtValue());}]>;
|
||||||
|
def s4_2ImmOperand : AsmOperandClass { let Name = "s4_2Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def s4_2Imm : Operand<i32> { let ParserMatchClass = s4_2ImmOperand; let DecoderMethod = "s4_2ImmDecoder"; }
|
||||||
|
defm s4_2ImmPred : ImmOpPred<[{ return isShiftedInt<4, 2>(N->getSExtValue());}]>;
|
||||||
|
def s4_3ImmOperand : AsmOperandClass { let Name = "s4_3Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def s4_3Imm : Operand<i32> { let ParserMatchClass = s4_3ImmOperand; let DecoderMethod = "s4_3ImmDecoder"; }
|
||||||
|
defm s4_3ImmPred : ImmOpPred<[{ return isShiftedInt<4, 3>(N->getSExtValue());}]>;
|
||||||
|
def s6_3ImmOperand : AsmOperandClass { let Name = "s6_3Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def s6_3Imm : Operand<i32> { let ParserMatchClass = s6_3ImmOperand; let DecoderMethod = "s6_3ImmDecoder"; }
|
||||||
|
defm s6_3ImmPred : ImmOpPred<[{ return isShiftedInt<6, 3>(N->getSExtValue());}]>;
|
||||||
|
def s8_0ImmOperand : AsmOperandClass { let Name = "s8_0Imm"; let RenderMethod = "addSignedImmOperands"; }
|
||||||
|
def s8_0Imm : Operand<i32> { let ParserMatchClass = s8_0ImmOperand; let DecoderMethod = "s8_0ImmDecoder"; }
|
||||||
|
defm s8_0ImmPred : ImmOpPred<[{ return isShiftedInt<8, 0>(N->getSExtValue());}]>;
|
||||||
def u1_0ImmOperand : AsmOperandClass { let Name = "u1_0Imm"; let RenderMethod = "addImmOperands"; }
|
def u1_0ImmOperand : AsmOperandClass { let Name = "u1_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
def u1_0Imm : Operand<i32> { let ParserMatchClass = u1_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
def u1_0Imm : Operand<i32> { let ParserMatchClass = u1_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
defm u1_0ImmPred : ImmOpPred<[{ return isShiftedUInt<1, 0>(N->getSExtValue());}]>;
|
defm u1_0ImmPred : ImmOpPred<[{ return isShiftedUInt<1, 0>(N->getSExtValue());}]>;
|
||||||
|
def u11_3ImmOperand : AsmOperandClass { let Name = "u11_3Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u11_3Imm : Operand<i32> { let ParserMatchClass = u11_3ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u11_3ImmPred : ImmOpPred<[{ return isShiftedUInt<11, 3>(N->getSExtValue());}]>;
|
||||||
|
def u16_0ImmOperand : AsmOperandClass { let Name = "u16_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u16_0Imm : Operand<i32> { let ParserMatchClass = u16_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u16_0ImmPred : ImmOpPred<[{ return isShiftedUInt<16, 0>(N->getSExtValue());}]>;
|
||||||
|
def u2_0ImmOperand : AsmOperandClass { let Name = "u2_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u2_0Imm : Operand<i32> { let ParserMatchClass = u2_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u2_0ImmPred : ImmOpPred<[{ return isShiftedUInt<2, 0>(N->getSExtValue());}]>;
|
||||||
|
def u26_6ImmOperand : AsmOperandClass { let Name = "u26_6Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u26_6Imm : Operand<i32> { let ParserMatchClass = u26_6ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u26_6ImmPred : ImmOpPred<[{ return isShiftedUInt<26, 6>(N->getSExtValue());}]>;
|
||||||
|
def u3_0ImmOperand : AsmOperandClass { let Name = "u3_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u3_0Imm : Operand<i32> { let ParserMatchClass = u3_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u3_0ImmPred : ImmOpPred<[{ return isShiftedUInt<3, 0>(N->getSExtValue());}]>;
|
||||||
|
def u3_1ImmOperand : AsmOperandClass { let Name = "u3_1Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u3_1Imm : Operand<i32> { let ParserMatchClass = u3_1ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u3_1ImmPred : ImmOpPred<[{ return isShiftedUInt<3, 1>(N->getSExtValue());}]>;
|
||||||
|
def u4_0ImmOperand : AsmOperandClass { let Name = "u4_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u4_0Imm : Operand<i32> { let ParserMatchClass = u4_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u4_0ImmPred : ImmOpPred<[{ return isShiftedUInt<4, 0>(N->getSExtValue());}]>;
|
||||||
|
def u4_2ImmOperand : AsmOperandClass { let Name = "u4_2Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u4_2Imm : Operand<i32> { let ParserMatchClass = u4_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u4_2ImmPred : ImmOpPred<[{ return isShiftedUInt<4, 2>(N->getSExtValue());}]>;
|
||||||
|
def u5_0ImmOperand : AsmOperandClass { let Name = "u5_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u5_0Imm : Operand<i32> { let ParserMatchClass = u5_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u5_0ImmPred : ImmOpPred<[{ return isShiftedUInt<5, 0>(N->getSExtValue());}]>;
|
||||||
|
def u5_2ImmOperand : AsmOperandClass { let Name = "u5_2Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u5_2Imm : Operand<i32> { let ParserMatchClass = u5_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u5_2ImmPred : ImmOpPred<[{ return isShiftedUInt<5, 2>(N->getSExtValue());}]>;
|
||||||
|
def u5_3ImmOperand : AsmOperandClass { let Name = "u5_3Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u5_3Imm : Operand<i32> { let ParserMatchClass = u5_3ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u5_3ImmPred : ImmOpPred<[{ return isShiftedUInt<5, 3>(N->getSExtValue());}]>;
|
||||||
|
def u6_0ImmOperand : AsmOperandClass { let Name = "u6_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u6_0Imm : Operand<i32> { let ParserMatchClass = u6_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u6_0ImmPred : ImmOpPred<[{ return isShiftedUInt<6, 0>(N->getSExtValue());}]>;
|
||||||
|
def u6_1ImmOperand : AsmOperandClass { let Name = "u6_1Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u6_1Imm : Operand<i32> { let ParserMatchClass = u6_1ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u6_1ImmPred : ImmOpPred<[{ return isShiftedUInt<6, 1>(N->getSExtValue());}]>;
|
||||||
|
def u31_1ImmOperand : AsmOperandClass { let Name = "u31_1Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u31_1Imm : Operand<i32> { let ParserMatchClass = u31_1ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u31_1ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 1>(N->getSExtValue());}]>;
|
||||||
|
def u6_2ImmOperand : AsmOperandClass { let Name = "u6_2Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u6_2Imm : Operand<i32> { let ParserMatchClass = u6_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u6_2ImmPred : ImmOpPred<[{ return isShiftedUInt<6, 2>(N->getSExtValue());}]>;
|
||||||
|
def u30_2ImmOperand : AsmOperandClass { let Name = "u30_2Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u30_2Imm : Operand<i32> { let ParserMatchClass = u30_2ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u30_2ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 2>(N->getSExtValue());}]>;
|
||||||
|
def u29_3ImmOperand : AsmOperandClass { let Name = "u29_3Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u29_3Imm : Operand<i32> { let ParserMatchClass = u29_3ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u29_3ImmPred : ImmOpPred<[{ return isShiftedUInt<32, 3>(N->getSExtValue());}]>;
|
||||||
|
def u7_0ImmOperand : AsmOperandClass { let Name = "u7_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u7_0Imm : Operand<i32> { let ParserMatchClass = u7_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u7_0ImmPred : ImmOpPred<[{ return isShiftedUInt<7, 0>(N->getSExtValue());}]>;
|
||||||
|
def u8_0ImmOperand : AsmOperandClass { let Name = "u8_0Imm"; let RenderMethod = "addImmOperands"; }
|
||||||
|
def u8_0Imm : Operand<i32> { let ParserMatchClass = u8_0ImmOperand; let DecoderMethod = "unsignedImmDecoder"; }
|
||||||
|
defm u8_0ImmPred : ImmOpPred<[{ return isShiftedUInt<8, 0>(N->getSExtValue());}]>;
|
||||||
|
@ -95,6 +95,16 @@ inline bool is_TC2(unsigned SchedClass) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool is_TC2early(unsigned SchedClass) {
|
||||||
|
switch (SchedClass) {
|
||||||
|
case Hexagon::Sched::tc_45f9d1be:
|
||||||
|
case Hexagon::Sched::tc_a4ee89db:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
inline bool is_TC3x(unsigned SchedClass) {
|
inline bool is_TC3x(unsigned SchedClass) {
|
||||||
switch (SchedClass) {
|
switch (SchedClass) {
|
||||||
case Hexagon::Sched::tc_01e1be3b:
|
case Hexagon::Sched::tc_01e1be3b:
|
||||||
@ -126,16 +136,6 @@ inline bool is_TC3x(unsigned SchedClass) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool is_TC2early(unsigned SchedClass) {
|
|
||||||
switch (SchedClass) {
|
|
||||||
case Hexagon::Sched::tc_45f9d1be:
|
|
||||||
case Hexagon::Sched::tc_a4ee89db:
|
|
||||||
return true;
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
inline bool is_TC4x(unsigned SchedClass) {
|
inline bool is_TC4x(unsigned SchedClass) {
|
||||||
switch (SchedClass) {
|
switch (SchedClass) {
|
||||||
case Hexagon::Sched::tc_02fe1c65:
|
case Hexagon::Sched::tc_02fe1c65:
|
||||||
|
@ -68,3 +68,4 @@ include "HexagonScheduleV65.td"
|
|||||||
include "HexagonScheduleV66.td"
|
include "HexagonScheduleV66.td"
|
||||||
include "HexagonScheduleV67.td"
|
include "HexagonScheduleV67.td"
|
||||||
include "HexagonScheduleV67T.td"
|
include "HexagonScheduleV67T.td"
|
||||||
|
include "HexagonScheduleV68.td"
|
||||||
|
38
lib/Target/Hexagon/HexagonScheduleV68.td
Normal file
38
lib/Target/Hexagon/HexagonScheduleV68.td
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
//=-HexagonScheduleV68.td - HexagonV68 Scheduling Definitions *- tablegen -*-=//
|
||||||
|
//
|
||||||
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||||
|
// See https://llvm.org/LICENSE.txt for license information.
|
||||||
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
//
|
||||||
|
// ScalarItin and HVXItin contain some old itineraries
|
||||||
|
// still used by a handful of instructions. Hopefully, we will be able
|
||||||
|
// to get rid of them soon.
|
||||||
|
def HexagonV68ItinList : DepScalarItinV68, ScalarItin,
|
||||||
|
DepHVXItinV68, HVXItin, PseudoItin {
|
||||||
|
list<InstrItinData> ItinList =
|
||||||
|
!listconcat(DepScalarItinV68_list, ScalarItin_list,
|
||||||
|
DepHVXItinV68_list, HVXItin_list, PseudoItin_list);
|
||||||
|
}
|
||||||
|
|
||||||
|
def HexagonItinerariesV68 :
|
||||||
|
ProcessorItineraries<[SLOT0, SLOT1, SLOT2, SLOT3, SLOT_ENDLOOP,
|
||||||
|
CVI_ST, CVI_XLANE, CVI_SHIFT, CVI_MPY0, CVI_MPY1,
|
||||||
|
CVI_LD, CVI_XLSHF, CVI_MPY01, CVI_ALL,
|
||||||
|
CVI_ALL_NOMEM, CVI_ZW],
|
||||||
|
[Hex_FWD, HVX_FWD],
|
||||||
|
HexagonV68ItinList.ItinList>;
|
||||||
|
|
||||||
|
def HexagonModelV68 : SchedMachineModel {
|
||||||
|
// Max issue per cycle == bundle width.
|
||||||
|
let IssueWidth = 4;
|
||||||
|
let Itineraries = HexagonItinerariesV68;
|
||||||
|
let LoadLatency = 1;
|
||||||
|
let CompleteModel = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
// Hexagon V68 Resource Definitions -
|
||||||
|
//===----------------------------------------------------------------------===//
|
@ -179,6 +179,12 @@ public:
|
|||||||
bool hasV67OpsOnly() const {
|
bool hasV67OpsOnly() const {
|
||||||
return getHexagonArchVersion() == Hexagon::ArchEnum::V67;
|
return getHexagonArchVersion() == Hexagon::ArchEnum::V67;
|
||||||
}
|
}
|
||||||
|
bool hasV68Ops() const {
|
||||||
|
return getHexagonArchVersion() >= Hexagon::ArchEnum::V68;
|
||||||
|
}
|
||||||
|
bool hasV68OpsOnly() const {
|
||||||
|
return getHexagonArchVersion() == Hexagon::ArchEnum::V68;
|
||||||
|
}
|
||||||
|
|
||||||
bool useAudioOps() const { return UseAudioOps; }
|
bool useAudioOps() const { return UseAudioOps; }
|
||||||
bool useCompound() const { return UseCompound; }
|
bool useCompound() const { return UseCompound; }
|
||||||
@ -212,6 +218,9 @@ public:
|
|||||||
bool useHVXV67Ops() const {
|
bool useHVXV67Ops() const {
|
||||||
return HexagonHVXVersion >= Hexagon::ArchEnum::V67;
|
return HexagonHVXVersion >= Hexagon::ArchEnum::V67;
|
||||||
}
|
}
|
||||||
|
bool useHVXV68Ops() const {
|
||||||
|
return HexagonHVXVersion >= Hexagon::ArchEnum::V68;
|
||||||
|
}
|
||||||
bool useHVX128BOps() const { return useHVXOps() && UseHVX128BOps; }
|
bool useHVX128BOps() const { return useHVXOps() && UseHVX128BOps; }
|
||||||
bool useHVX64BOps() const { return useHVXOps() && UseHVX64BOps; }
|
bool useHVX64BOps() const { return useHVXOps() && UseHVX64BOps; }
|
||||||
|
|
||||||
|
@ -78,6 +78,8 @@ cl::opt<bool> MV67("mv67", cl::Hidden, cl::desc("Build for Hexagon V67"),
|
|||||||
cl::init(false));
|
cl::init(false));
|
||||||
cl::opt<bool> MV67T("mv67t", cl::Hidden, cl::desc("Build for Hexagon V67T"),
|
cl::opt<bool> MV67T("mv67t", cl::Hidden, cl::desc("Build for Hexagon V67T"),
|
||||||
cl::init(false));
|
cl::init(false));
|
||||||
|
cl::opt<bool> MV68("mv68", cl::Hidden, cl::desc("Build for Hexagon V68"),
|
||||||
|
cl::init(false));
|
||||||
|
|
||||||
cl::opt<Hexagon::ArchEnum>
|
cl::opt<Hexagon::ArchEnum>
|
||||||
EnableHVX("mhvx",
|
EnableHVX("mhvx",
|
||||||
@ -88,6 +90,7 @@ cl::opt<Hexagon::ArchEnum>
|
|||||||
clEnumValN(Hexagon::ArchEnum::V65, "v65", "Build for HVX v65"),
|
clEnumValN(Hexagon::ArchEnum::V65, "v65", "Build for HVX v65"),
|
||||||
clEnumValN(Hexagon::ArchEnum::V66, "v66", "Build for HVX v66"),
|
clEnumValN(Hexagon::ArchEnum::V66, "v66", "Build for HVX v66"),
|
||||||
clEnumValN(Hexagon::ArchEnum::V67, "v67", "Build for HVX v67"),
|
clEnumValN(Hexagon::ArchEnum::V67, "v67", "Build for HVX v67"),
|
||||||
|
clEnumValN(Hexagon::ArchEnum::V68, "v68", "Build for HVX v68"),
|
||||||
// Sentinel for no value specified.
|
// Sentinel for no value specified.
|
||||||
clEnumValN(Hexagon::ArchEnum::Generic, "", "")),
|
clEnumValN(Hexagon::ArchEnum::Generic, "", "")),
|
||||||
// Sentinel for flag not present.
|
// Sentinel for flag not present.
|
||||||
@ -118,6 +121,8 @@ static StringRef HexagonGetArchVariant() {
|
|||||||
return "hexagonv67";
|
return "hexagonv67";
|
||||||
if (MV67T)
|
if (MV67T)
|
||||||
return "hexagonv67t";
|
return "hexagonv67t";
|
||||||
|
if (MV68)
|
||||||
|
return "hexagonv68";
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -363,6 +368,9 @@ std::string selectHexagonFS(StringRef CPU, StringRef FS) {
|
|||||||
case Hexagon::ArchEnum::V67:
|
case Hexagon::ArchEnum::V67:
|
||||||
Result.push_back("+hvxv67");
|
Result.push_back("+hvxv67");
|
||||||
break;
|
break;
|
||||||
|
case Hexagon::ArchEnum::V68:
|
||||||
|
Result.push_back("+hvxv68");
|
||||||
|
break;
|
||||||
case Hexagon::ArchEnum::Generic:{
|
case Hexagon::ArchEnum::Generic:{
|
||||||
Result.push_back(StringSwitch<StringRef>(CPU)
|
Result.push_back(StringSwitch<StringRef>(CPU)
|
||||||
.Case("hexagonv60", "+hvxv60")
|
.Case("hexagonv60", "+hvxv60")
|
||||||
@ -370,7 +378,8 @@ std::string selectHexagonFS(StringRef CPU, StringRef FS) {
|
|||||||
.Case("hexagonv65", "+hvxv65")
|
.Case("hexagonv65", "+hvxv65")
|
||||||
.Case("hexagonv66", "+hvxv66")
|
.Case("hexagonv66", "+hvxv66")
|
||||||
.Case("hexagonv67", "+hvxv67")
|
.Case("hexagonv67", "+hvxv67")
|
||||||
.Case("hexagonv67t", "+hvxv67"));
|
.Case("hexagonv67t", "+hvxv67")
|
||||||
|
.Case("hexagonv68", "+hvxv68"));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case Hexagon::ArchEnum::NoArch:
|
case Hexagon::ArchEnum::NoArch:
|
||||||
@ -413,8 +422,8 @@ FeatureBitset Hexagon_MC::completeHVXFeatures(const FeatureBitset &S) {
|
|||||||
// turns on hvxvNN, corresponding to the existing ArchVNN.
|
// turns on hvxvNN, corresponding to the existing ArchVNN.
|
||||||
FeatureBitset FB = S;
|
FeatureBitset FB = S;
|
||||||
unsigned CpuArch = ArchV5;
|
unsigned CpuArch = ArchV5;
|
||||||
for (unsigned F : {ArchV67, ArchV66, ArchV65, ArchV62, ArchV60, ArchV55,
|
for (unsigned F : {ArchV68, ArchV67, ArchV66, ArchV65, ArchV62, ArchV60,
|
||||||
ArchV5}) {
|
ArchV55, ArchV5}) {
|
||||||
if (!FB.test(F))
|
if (!FB.test(F))
|
||||||
continue;
|
continue;
|
||||||
CpuArch = F;
|
CpuArch = F;
|
||||||
@ -429,7 +438,7 @@ FeatureBitset Hexagon_MC::completeHVXFeatures(const FeatureBitset &S) {
|
|||||||
}
|
}
|
||||||
bool HasHvxVer = false;
|
bool HasHvxVer = false;
|
||||||
for (unsigned F : {ExtensionHVXV60, ExtensionHVXV62, ExtensionHVXV65,
|
for (unsigned F : {ExtensionHVXV60, ExtensionHVXV62, ExtensionHVXV65,
|
||||||
ExtensionHVXV66, ExtensionHVXV67}) {
|
ExtensionHVXV66, ExtensionHVXV67, ExtensionHVXV68}) {
|
||||||
if (!FB.test(F))
|
if (!FB.test(F))
|
||||||
continue;
|
continue;
|
||||||
HasHvxVer = true;
|
HasHvxVer = true;
|
||||||
@ -442,6 +451,9 @@ FeatureBitset Hexagon_MC::completeHVXFeatures(const FeatureBitset &S) {
|
|||||||
|
|
||||||
// HasHvxVer is false, and UseHvx is true.
|
// HasHvxVer is false, and UseHvx is true.
|
||||||
switch (CpuArch) {
|
switch (CpuArch) {
|
||||||
|
case ArchV68:
|
||||||
|
FB.set(ExtensionHVXV68);
|
||||||
|
LLVM_FALLTHROUGH;
|
||||||
case ArchV67:
|
case ArchV67:
|
||||||
FB.set(ExtensionHVXV67);
|
FB.set(ExtensionHVXV67);
|
||||||
LLVM_FALLTHROUGH;
|
LLVM_FALLTHROUGH;
|
||||||
@ -525,6 +537,7 @@ unsigned Hexagon_MC::GetELFFlags(const MCSubtargetInfo &STI) {
|
|||||||
{"hexagonv66", ELF::EF_HEXAGON_MACH_V66},
|
{"hexagonv66", ELF::EF_HEXAGON_MACH_V66},
|
||||||
{"hexagonv67", ELF::EF_HEXAGON_MACH_V67},
|
{"hexagonv67", ELF::EF_HEXAGON_MACH_V67},
|
||||||
{"hexagonv67t", ELF::EF_HEXAGON_MACH_V67T},
|
{"hexagonv67t", ELF::EF_HEXAGON_MACH_V67T},
|
||||||
|
{"hexagonv68", ELF::EF_HEXAGON_MACH_V68},
|
||||||
};
|
};
|
||||||
|
|
||||||
auto F = ElfFlags.find(STI.getCPU());
|
auto F = ElfFlags.find(STI.getCPU());
|
||||||
|
Loading…
Reference in New Issue
Block a user