HomeSort by: relevance | last modified time | path
    Searched defs:BlockList (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 94 SmallVector<BBInfo *, 100> BlockList;
95 BBInfo *PseudoEntry = BuildBlockList(BB, &BlockList);
98 if (BlockList.size() == 0) {
104 FindDominators(&BlockList, PseudoEntry);
105 FindPHIPlacement(&BlockList);
106 FindAvailableVals(&BlockList);
115 BBInfo *BuildBlockList(BlkT *BB, BlockListTy *BlockList) {
182 // If not a root, put it on the BlockList.
184 BlockList->push_back(Info);
231 /// corresponding to the basic blocks on the BlockList. This uses th
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MSFBuilder.cpp 298 ulittle32_t *BlockList =
301 StreamData[I].second.size(), BlockList);
303 ArrayRef<ulittle32_t>(BlockList, StreamData[I].second.size());
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetServer.h 290 auto &BlockList = StubOwnerItr->second;
291 BlockList.push_back(std::move(*IS));
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
ItaniumDemangle.cpp 256 BlockMeta* BlockList = nullptr;
262 BlockList = new (NewMeta) BlockMeta{BlockList, 0};
270 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0};
276 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {}
280 if (N + BlockList->Current >= UsableAllocSize) {
285 BlockList->Current += N;
286 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) +
287 BlockList->Current - N)
    [all...]

Completed in 83 milliseconds