Lines Matching defs:NumToSkip

679   // Any NumToSkip fixups in the current scope can resolve to the
685 // NumToSkip entry itself, so subtract two from the displacement here
689 // Our NumToSkip entries are 24-bits. Make sure our table isn't too
727 // Resolve any NumToSkip fixups in the current scope.
737 // Reserve space for the NumToSkip entry. We'll backpatch the value
751 // Now that we've emitted the body of the handler, update the NumToSkip
753 // two as to account for the width of the NumToSkip field itself.
755 uint32_t NumToSkip = Table.size() - PrevFilter - 3;
756 assert(NumToSkip < (1u << 24) &&
758 Table[PrevFilter] = (uint8_t)NumToSkip;
759 Table[PrevFilter + 1] = (uint8_t)(NumToSkip >> 8);
760 Table[PrevFilter + 2] = (uint8_t)(NumToSkip >> 16);
822 // Emit 24-bit numtoskip value to OS, returning the NumToSkip value.
826 uint32_t NumToSkip = Byte;
830 NumToSkip |= Byte << 8;
833 NumToSkip |= Byte << 16;
834 return NumToSkip;
837 // FIXME: We may be able to use the NumToSkip values to recover
876 uint32_t NumToSkip = emitNumToSkip(I, OS);
878 OS << "// Skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
893 uint32_t NumToSkip = emitNumToSkip(I, OS);
895 OS << "// Skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
904 uint32_t NumToSkip = emitNumToSkip(I, OS);
906 OS << "// Skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
937 uint32_t NumToSkip = emitNumToSkip(I, OS);
941 << ", skip to: " << ((I - Table.begin()) + NumToSkip) << "\n";
1366 // Push location for NumToSkip backpatching.
1469 // Push location for NumToSkip backpatching.
1513 // Push location for NumToSkip backpatching.
2276 // NumToSkip is a plain 24-bit integer.
2277 unsigned NumToSkip = *Ptr++;
2278 NumToSkip |= (*Ptr++) << 8;
2279 NumToSkip |= (*Ptr++) << 16;
2283 Ptr += NumToSkip;
2284 LLVM_DEBUG(dbgs() << Loc << ": OPC_FilterValue(" << Val << ", " << NumToSkip
2302 // NumToSkip is a plain 24-bit integer.
2303 unsigned NumToSkip = *Ptr++;
2304 NumToSkip |= (*Ptr++) << 8;
2305 NumToSkip |= (*Ptr++) << 16;
2309 Ptr += NumToSkip;
2311 << Len << ", " << ExpectedValue << ", " << NumToSkip
2320 // NumToSkip is a plain 24-bit integer.
2321 unsigned NumToSkip = *Ptr++;
2322 NumToSkip |= (*Ptr++) << 8;
2323 NumToSkip |= (*Ptr++) << 16;
2327 Ptr += NumToSkip;
2359 // NumToSkip is a plain 24-bit integer.
2360 unsigned NumToSkip = *Ptr++;
2361 NumToSkip |= (*Ptr++) << 8;
2362 NumToSkip |= (*Ptr++) << 16;
2380 Ptr += NumToSkip;
2613 // Any NumToSkip fixups in the top level scope can resolve to the
2616 // Resolve any NumToSkip fixups in the current scope.