Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.cpp1284 const bool IsInt8 = isInt<8>(Value); in emitPredicateOpcodes() local
1285 Table << MatchTable::Opcode(IsInt8 ? "GIM_CheckConstantInt8" in emitPredicateOpcodes()
1289 << MatchTable::IntValue(IsInt8 ? 1 : 8, Value) << MatchTable::LineBreak; in emitPredicateOpcodes()
2034 const bool IsInt8 = isInt<8>(Imm); in emitAddImm() local
2036 Table << MatchTable::Opcode(IsInt8 ? "GIR_AddImm8" : "GIR_AddImm") in emitAddImm()
2039 << MatchTable::IntValue(IsInt8 ? 1 : 8, Imm) << MatchTable::LineBreak; in emitAddImm()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGIMatchTableExecutorImpl.h817 const bool IsInt8 = (MatcherOpcode == GIM_CheckConstantInt8); in executeMatchTable() local
821 uint64_t Value = IsInt8 ? (int64_t)readS8() : readU64(); in executeMatchTable()