Home
last modified time | relevance | path

Searched refs:BlockList (Results 1 – 15 of 15) sorted by relevance

/external/llvm/include/llvm/Transforms/Utils/
DSSAUpdaterImpl.h82 SmallVector<BBInfo*, 100> BlockList; in GetValue() local
83 BBInfo *PseudoEntry = BuildBlockList(BB, &BlockList); in GetValue()
86 if (BlockList.size() == 0) { in GetValue()
92 FindDominators(&BlockList, PseudoEntry); in GetValue()
93 FindPHIPlacement(&BlockList); in GetValue()
94 FindAvailableVals(&BlockList); in GetValue()
103 BBInfo *BuildBlockList(BlkT *BB, BlockListTy *BlockList) { in BuildBlockList() argument
173 BlockList->push_back(Info); in BuildBlockList()
229 void FindDominators(BlockListTy *BlockList, BBInfo *PseudoEntry) { in FindDominators() argument
234 for (typename BlockListTy::reverse_iterator I = BlockList->rbegin(), in FindDominators()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DSSAUpdaterImpl.h95 SmallVector<BBInfo *, 100> BlockList; in GetValue() local
96 BBInfo *PseudoEntry = BuildBlockList(BB, &BlockList); in GetValue()
99 if (BlockList.size() == 0) { in GetValue()
105 FindDominators(&BlockList, PseudoEntry); in GetValue()
106 FindPHIPlacement(&BlockList); in GetValue()
107 FindAvailableVals(&BlockList); in GetValue()
116 BBInfo *BuildBlockList(BlkT *BB, BlockListTy *BlockList) { in BuildBlockList() argument
185 BlockList->push_back(Info); in BuildBlockList()
241 void FindDominators(BlockListTy *BlockList, BBInfo *PseudoEntry) { in FindDominators() argument
246 for (typename BlockListTy::reverse_iterator I = BlockList->rbegin(), in FindDominators()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
DSSAUpdaterImpl.h71 SmallVector<BBInfo*, 100> BlockList; in GetValue() local
72 BBInfo *PseudoEntry = BuildBlockList(BB, &BlockList); in GetValue()
75 if (BlockList.size() == 0) { in GetValue()
81 FindDominators(&BlockList, PseudoEntry); in GetValue()
82 FindPHIPlacement(&BlockList); in GetValue()
83 FindAvailableVals(&BlockList); in GetValue()
92 BBInfo *BuildBlockList(BlkT *BB, BlockListTy *BlockList) { in BuildBlockList() argument
162 BlockList->push_back(Info); in BuildBlockList()
218 void FindDominators(BlockListTy *BlockList, BBInfo *PseudoEntry) { in FindDominators() argument
223 for (typename BlockListTy::reverse_iterator I = BlockList->rbegin(), in FindDominators()
[all …]
/external/libcxxabi/src/
Dcxa_demangle.cpp259 BlockMeta* BlockList = nullptr; member in __anonf03dc3ff0211::BumpPointerAllocator
265 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
273 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
279 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
283 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
288 BlockList->Current += N; in allocate()
289 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate()
290 BlockList->Current - N); in allocate()
294 while (BlockList) { in reset()
295 BlockMeta* Tmp = BlockList; in reset()
[all …]
/external/llvm/lib/DebugInfo/PDB/Raw/
DMappedBlockStream.cpp130 auto BlockList = Data->getStreamBlocks(); in readLongestContiguousChunk() local
132 if (BlockList[Last] != BlockList[Last + 1] - 1) in readLongestContiguousChunk()
142 auto Result = Pdb.getBlockData(BlockList[First], Pdb.getBlockSize()); in readLongestContiguousChunk()
169 auto BlockList = Data->getStreamBlocks(); in tryReadContiguously() local
171 uint32_t E = BlockList[BlockNum]; in tryReadContiguously()
173 if (BlockList[I + BlockNum] != E) in tryReadContiguously()
177 uint32_t FirstBlockAddr = BlockList[BlockNum]; in tryReadContiguously()
202 auto BlockList = Data->getStreamBlocks(); in readBytes() local
204 uint32_t StreamBlockAddr = BlockList[BlockNum]; in readBytes()
238 auto BlockList = Data->getStreamBlocks(); in writeBytes() local
[all …]
/external/llvm/tools/llvm-pdbdump/
DYAMLOutputStyle.cpp87 pdb::yaml::StreamBlockList BlockList; in dumpStreamDirectory() local
88 BlockList.Blocks = Stream; in dumpStreamDirectory()
89 Obj.StreamMap->push_back(BlockList); in dumpStreamDirectory()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/MSF/
DMSFBuilder.h128 using BlockList = std::vector<uint32_t>; variable
139 std::vector<std::pair<uint32_t, BlockList>> StreamData;
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DYAMLOutputStyle.cpp139 pdb::yaml::StreamBlockList BlockList; in dumpStreamDirectory() local
140 BlockList.Blocks.assign(Stream.begin(), Stream.end()); in dumpStreamDirectory()
141 Obj.StreamMap->push_back(BlockList); in dumpStreamDirectory()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCExpandISEL.cpp195 for (auto &BlockList : ISELInstructions) { in expandAndMergeISELs() local
198 << printMBBReference(*MF->getBlockNumbered(BlockList.first)) in expandAndMergeISELs()
200 BlockISELList &CurrentISELList = BlockList.second; in expandAndMergeISELs()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/MSF/
DMSFBuilder.cpp300 ulittle32_t *BlockList = in generateLayout() local
303 StreamData[I].second.size(), BlockList); in generateLayout()
305 ArrayRef<ulittle32_t>(BlockList, StreamData[I].second.size()); in generateLayout()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DPartialInlining.cpp404 auto IsSingleEntry = [](SmallVectorImpl<BasicBlock *> &BlockList) { in computeOutliningColdRegionsInfo() argument
405 BasicBlock *Dom = BlockList.front(); in computeOutliningColdRegionsInfo()
406 return BlockList.size() > 1 && pred_size(Dom) == 1; in computeOutliningColdRegionsInfo()
410 [&ORE](SmallVectorImpl<BasicBlock *> &BlockList) -> BasicBlock * { in computeOutliningColdRegionsInfo() argument
412 for (auto *Block : BlockList) { in computeOutliningColdRegionsInfo()
414 if (!is_contained(BlockList, *SI)) { in computeOutliningColdRegionsInfo()
420 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()
/external/emma/core/java12/com/vladium/emma/instr/
DInstrVisitor.java946 final BlockList blocks = new BlockList (blockCount); in visit()
1397 private static final class BlockList class in InstrVisitor
1399 BlockList () in BlockList() method in InstrVisitor.BlockList
1404 BlockList (final int capacity) in BlockList() method in InstrVisitor.BlockList
1465 EmitCtx (final BlockList blocks, final ByteArrayOStream out) in EmitCtx()
1473 final BlockList m_blocks;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/
DItaniumDemangle.cpp1779 BlockMeta* BlockList = nullptr; member in __anon17245d330111::BumpPointerAllocator
1785 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
1793 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
1799 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
1803 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
1808 BlockList->Current += N; in allocate()
1809 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate()
1810 BlockList->Current - N); in allocate()
1814 while (BlockList) { in reset()
1815 BlockMeta* Tmp = BlockList; in reset()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetServer.h277 auto &BlockList = StubOwnerItr->second; in handleEmitIndirectStubs() local
278 BlockList.push_back(std::move(IS)); in handleEmitIndirectStubs()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetServer.h290 auto &BlockList = StubOwnerItr->second; in handleEmitIndirectStubs() local
291 BlockList.push_back(std::move(IS)); in handleEmitIndirectStubs()