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.cpp1278 const bool IsInt8 = isInt<8>(Value); in emitPredicateOpcodes() local
1279 Table << MatchTable::Opcode(IsInt8 ? "GIM_CheckConstantInt8" in emitPredicateOpcodes()
1283 << MatchTable::IntValue(IsInt8 ? 1 : 8, Value) << MatchTable::LineBreak; in emitPredicateOpcodes()
2067 const bool IsInt8 = isInt<8>(Imm); in emitAddImm() local
2069 Table << MatchTable::Opcode(IsInt8 ? "GIR_AddImm8" : "GIR_AddImm") in emitAddImm()
2072 << MatchTable::IntValue(IsInt8 ? 1 : 8, Imm) << MatchTable::LineBreak; in emitAddImm()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGIMatchTableExecutorImpl.h855 const bool IsInt8 = (MatcherOpcode == GIM_CheckConstantInt8); in executeMatchTable() local
859 uint64_t Value = IsInt8 ? (int64_t)readS8() : readU64(); in executeMatchTable()