Searched refs:DecodeRType (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
H A D | EmulateInstructionRISCV.cpp | 405 template <typename T> static RISCVInst DecodeRType(uint32_t inst) { in DecodeRType() function 446 {"ADD", 0xFE00707F, 0x33, DecodeRType<ADD>}, 447 {"SUB", 0xFE00707F, 0x40000033, DecodeRType<SUB>}, 448 {"SLL", 0xFE00707F, 0x1033, DecodeRType<SLL>}, 449 {"SLT", 0xFE00707F, 0x2033, DecodeRType<SLT>}, 450 {"SLTU", 0xFE00707F, 0x3033, DecodeRType<SLTU>}, 451 {"XOR", 0xFE00707F, 0x4033, DecodeRType<XOR>}, 452 {"SRL", 0xFE00707F, 0x5033, DecodeRType<SRL>}, 453 {"SRA", 0xFE00707F, 0x40005033, DecodeRType<SRA>}, 454 {"OR", 0xFE00707F, 0x6033, DecodeRType<OR>}, [all …]
|