Home
last modified time | relevance | path

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

/external/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/llvm/include/llvm/Analysis/
DProfileInfo.h72 std::map<const FType*, BlockCounts> BlockInformation; variable
191 typename std::map<const FType*, BlockCounts>::iterator bwi = BlockInformation.find(F);