HomeSort by: relevance | last modified time | path
    Searched refs:VSTOffset (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 490 uint64_t VSTOffset = 0;
782 uint64_t VSTOffset = 0;
3628 assert(VSTOffset == 0 || FunctionsWithBodies.empty());
3635 assert(VSTOffset > 0);
3672 if (VSTOffset > 0) {
3677 if (Error Err = BitcodeReader::parseValueSymbolTable(VSTOffset))
3821 VSTOffset = Record[0] - 1;
5526 assert(VSTOffset == 0 || !F->hasName());
5892 // Should have been parsed earlier via VSTOffset, unless there
5894 assert(((SeenValueSymbolTable && VSTOffset > 0) |
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 175 /// Saves the offset of the VSTOffset record that must eventually be
3181 uint64_t VSTOffset = Stream.GetCurrentBitNo();
3183 VSTOffset -= bitcodeStartBit();
3184 assert((VSTOffset & 31) == 0 && "VST block not 32-bit aligned");
3188 Stream.BackpatchWord(VSTOffsetPlaceholder, VSTOffset / 32 + 1);

Completed in 25 milliseconds