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

  /src/external/apache2/llvm/dist/llvm/lib/Support/
BinaryStreamRef.cpp 19 ArrayRefImpl(ArrayRef<uint8_t> Data, endianness Endian) : BBS(Data, Endian) {}
22 return BBS.getEndian();
26 return BBS.readBytes(Offset, Size, Buffer);
30 return BBS.readLongestContiguousChunk(Offset, Buffer);
32 uint32_t getLength() override { return BBS.getLength(); }
35 BinaryByteStream BBS;
41 : BBS(Data, Endian) {}
45 return BBS.getEndian();
49 return BBS.readBytes(Offset, Size, Buffer);
53 return BBS.readLongestContiguousChunk(Offset, Buffer)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
SafepointIRVerifier.cpp 487 /// Iterates over all BBs from BlockMap and recalculates AvailableIn/Out for
493 /// Though Contribution should belong to BBS it is passed separately with
498 const BasicBlockState *BBS,
507 /// Compute the AvailableOut set for BB, based on the BasicBlockState BBS,
512 static void transferBlock(const BasicBlock *BB, BasicBlockState &BBS,
543 BasicBlockState *BBS = new (BSAllocator.Allocate()) BasicBlockState;
545 transferInstruction(I, BBS->Cleared, BBS->Contribution);
546 BlockMap[&BB] = BBS;
550 // dominating BBs
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
SpeculateAnalyses.cpp 28 SmallVector<const BasicBlock *, 8> BBs;
39 BBs.emplace_back(&BB);
41 return BBs;
110 decltype(BBFreqs)::const_reference BBS) {
111 return BBF.second > BBS.second ? true : false;
252 decltype(BBFreqs)::const_reference Bbs) {
253 return Bbf.second > Bbs.second;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
COFFObjectFile.cpp 1695 BinaryStreamReader Reader = BinaryStreamReader(BBS);
1713 BinaryStreamReader Reader(BBS);
1724 BinaryStreamReader Reader(BBS);
1735 BinaryStreamReader Reader(BBS);
1764 ptrdiff_t TableOffset = TablePtr - BBS.data().data();
1788 BBS = BinaryByteStream(*Contents, support::little);
1808 ptrdiff_t EntryOffset = EntryPtr - BBS.data().data();
WindowsResource.cpp 54 BBS = BinaryByteStream(Data.getBuffer().drop_front(LeadingSize),
70 if (BBS.getLength() < sizeof(WinResHeaderPrefix) + sizeof(WinResHeaderSuffix))
73 return ResourceEntryRef::create(BinaryStreamRef(BBS), this);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
WindowsResource.h 150 BinaryByteStream BBS;
COFF.h 1242 explicit ResourceSectionRef(StringRef Ref) : BBS(Ref, support::little) {}
1260 BinaryByteStream BBS;

Completed in 37 milliseconds