Searched refs:DecodeIType (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
H A D | EmulateInstructionRISCV.cpp | 392 template <typename T> static RISCVInst DecodeIType(uint32_t inst) { in DecodeIType() function 427 {"JALR", 0x707F, 0x67, DecodeIType<JALR>}, 429 {"LB", 0x707F, 0x3, DecodeIType<LB>}, 430 {"LH", 0x707F, 0x1003, DecodeIType<LH>}, 431 {"LW", 0x707F, 0x2003, DecodeIType<LW>}, 432 {"LBU", 0x707F, 0x4003, DecodeIType<LBU>}, 433 {"LHU", 0x707F, 0x5003, DecodeIType<LHU>}, 437 {"ADDI", 0x707F, 0x13, DecodeIType<ADDI>}, 438 {"SLTI", 0x707F, 0x2013, DecodeIType<SLTI>}, 439 {"SLTIU", 0x707F, 0x3013, DecodeIType<SLTIU>}, [all …]
|