Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDecoderEmitter.cpp757 uint32_t NumToSkip = Table.size() - PrevFilter - 3; in emitTableEntry() local
758 assert(NumToSkip < (1u << 24) && in emitTableEntry()
760 Table[PrevFilter] = (uint8_t)NumToSkip; in emitTableEntry()
761 Table[PrevFilter + 1] = (uint8_t)(NumToSkip >> 8); in emitTableEntry()
762 Table[PrevFilter + 2] = (uint8_t)(NumToSkip >> 16); in emitTableEntry()
828 uint32_t NumToSkip = Byte; in emitTable() local
832 NumToSkip |= Byte << 8; in emitTable()
835 NumToSkip |= Byte << 16; in emitTable()
836 return NumToSkip; in emitTable()
878 uint32_t NumToSkip = emitNumToSkip(I, OS); in emitTable() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp3354 unsigned NumToSkip = MatcherTable[MatcherIndex++]; in SelectCodeCommon() local
3355 if (NumToSkip & 128) in SelectCodeCommon()
3356 NumToSkip = GetVBR(NumToSkip, MatcherTable, MatcherIndex); in SelectCodeCommon()
3358 if (NumToSkip == 0) { in SelectCodeCommon()
3363 FailIndex = MatcherIndex+NumToSkip; in SelectCodeCommon()
4313 unsigned NumToSkip = MatcherTable[MatcherIndex++]; in SelectCodeCommon() local
4314 if (NumToSkip & 128) in SelectCodeCommon()
4315 NumToSkip = GetVBR(NumToSkip, MatcherTable, MatcherIndex); in SelectCodeCommon()
4319 if (NumToSkip != 0) { in SelectCodeCommon()
4320 LastScope.FailIndex = MatcherIndex+NumToSkip; in SelectCodeCommon()