Home
last modified time | relevance | path

Searched refs:BlockInformation (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
DProfileEstimatorPass.cpp255 BlockInformation[BB->getParent()][BB] = BBWeight; in recurseBasicBlock()
324 BlockInformation[&F].clear(); in runOnFunction()
340 BlockInformation[&F][entry] = pow(2.0, 32.0); in runOnFunction()
342 EdgeInformation[&F][edge] = BlockInformation[&F][entry]; in runOnFunction()
399 BlockInformation[&F].clear(); in runOnFunction()
403 BlockInformation[&F][BB] = 0; in runOnFunction()
DProfileInfo.cpp62 BlockInformation.find(BB->getParent()); in getExecutionCount()
63 if (J != BlockInformation.end()) { in getExecutionCount()
119 if (Count != MissingValue) BlockInformation[BB->getParent()][BB] = Count; in getExecutionCount()
127 BlockInformation.find(MBB->getParent()); in getExecutionCount()
128 if (J != BlockInformation.end()) { in getExecutionCount()
171 BlockInformation[BB->getParent()][BB] = w; in setExecutionCount()
179 BlockInformation[MBB->getParent()][MBB] = w; in setExecutionCount()
198 BlockInformation[BB->getParent()][BB] = oldw + w; in addExecutionCount()
204 BlockInformation.find(BB->getParent()); in removeBlock()
205 if (J == BlockInformation.end()) return; in removeBlock()
[all …]
DProfileInfoLoaderPass.cpp227 BlockInformation.clear(); in runOnModule()
239 BlockInformation[F][BB] = (double)Counters[ReadCount++]; in runOnModule()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DProfileInfo.h71 std::map<const FType*, BlockCounts> BlockInformation; variable
192 typename std::map<const FType*, BlockCounts>::iterator bwi = BlockInformation.find(F);
/external/llvm/lib/Target/AMDGPU/
DAMDILCFGStructurizer.cpp107 class BlockInformation { class
111 BlockInformation() : IsRetired(false), SccNum(INVALIDSCCNUM) {} in BlockInformation() function in __anone3a43a910211::BlockInformation
126 typedef std::map<MachineBasicBlock *, BlockInformation *> MBBInfoMap;
1712 BlockInformation *&srcBlkInfo = BlockInfoMap[MBB]; in recordSccnum()
1714 srcBlkInfo = new BlockInformation(); in recordSccnum()
1723 BlockInformation *&SrcBlkInfo = BlockInfoMap[MBB]; in retireBlock()
1726 SrcBlkInfo = new BlockInformation(); in retireBlock()