Searched refs:VSTOffset (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp489 uint64_t VSTOffset = 0; member in class:__anon3411::BitcodeReader
783 uint64_t VSTOffset = 0; member in class:__anon3411::ModuleSummaryIndexBitcodeReader
3523 assert(VSTOffset == 0 || FunctionsWithBodies.empty());
3530 assert(VSTOffset > 0);
3567 if (VSTOffset > 0) {
3572 if (Error Err = BitcodeReader::parseValueSymbolTable(VSTOffset))
3716 VSTOffset = Record[0] - 1;
5311 assert(VSTOffset == 0 || !F->hasName());
5636 // Should have been parsed earlier via VSTOffset, unless there
5638 assert(((SeenValueSymbolTable && VSTOffset >
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp171 /// Saves the offset of the VSTOffset record that must eventually be
3080 uint64_t VSTOffset = Stream.GetCurrentBitNo();
3082 VSTOffset -= bitcodeStartBit();
3083 assert((VSTOffset & 31) == 0 && "VST block not 32-bit aligned");
3087 Stream.BackpatchWord(VSTOffsetPlaceholder, VSTOffset / 32 + 1);

Completed in 72 milliseconds