Home
last modified time | relevance | path

Searched refs:IsGPR32 (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/llvm/unittests/tools/llvm-exegesis/Mips/
DTargetTest.cpp45 Matcher<MCInst> IsLoadLow16BitImm(unsigned Reg, int64_t Value, bool IsGPR32) { in IsLoadLow16BitImm() argument
46 const unsigned ZeroReg = IsGPR32 ? Mips::ZERO : Mips::ZERO_64; in IsLoadLow16BitImm()
47 const unsigned ORi = IsGPR32 ? Mips::ORi : Mips::ORi64; in IsLoadLow16BitImm()
52 Matcher<MCInst> IsLoadHigh16BitImm(unsigned Reg, int64_t Value, bool IsGPR32) { in IsLoadHigh16BitImm() argument
53 const unsigned LUi = IsGPR32 ? Mips::LUi : Mips::LUi64; in IsLoadHigh16BitImm()
57 Matcher<MCInst> IsShift(unsigned Reg, uint16_t Amount, bool IsGPR32) { in IsShift() argument
58 const unsigned SLL = IsGPR32 ? Mips::SLL : Mips::SLL64_64; in IsShift()
/external/llvm-project/llvm/tools/llvm-exegesis/lib/Mips/
DTarget.cpp72 static std::vector<MCInst> loadImmediate(unsigned Reg, bool IsGPR32, in loadImmediate() argument
76 if (IsGPR32) { in loadImmediate()
98 if (!IsGPR32 && Value.getActiveBits() == 32) { in loadImmediate()