Home
last modified time | relevance | path

Searched refs:BlockCount (Results 1 – 25 of 25) sorted by relevance

/external/llvm/unittests/Analysis/
DLoopPassManagerTest.cpp32 Result(int Count) : BlockCount(Count) {} in Result()
33 int BlockCount; member
74 AnalyzedBlockCount += AR->BlockCount; in run()
78 AnalyzedBlockCount += AR.BlockCount; in run()
/external/llvm/lib/IR/
DGCOV.cpp157 uint32_t BlockCount; in readGCNO() local
158 if (!Buff.readInt(BlockCount)) in readGCNO()
160 for (uint32_t i = 0, e = BlockCount; i != e; ++i) { in readGCNO()
175 if (BlockNo >= BlockCount) { in readGCNO()
204 if (BlockNo >= BlockCount) { in readGCNO()
613 uint64_t BlockCount = Block->getCount(); in print() local
614 LineCount = LineCount > BlockCount ? LineCount : BlockCount; in print()
/external/clang/lib/StaticAnalyzer/Core/
DLoopWidening.cpp41 unsigned BlockCount, const Stmt *LoopStmt) { in getWidenedLoopState() argument
63 BlockCount, LCtx, true, nullptr, nullptr, in getWidenedLoopState()
DCallEvent.cpp156 ProgramStateRef CallEvent::invalidateRegions(unsigned BlockCount, in invalidateRegions() argument
191 BlockCount, getLocationContext(), in invalidateRegions()
DExprEngine.cpp1425 unsigned int BlockCount = nodeBuilder.getContext().blockCount(); in processCFGBlockEntrance() local
1426 if (BlockCount == AMgr.options.maxBlockVisitOnPath - 1 && in processCFGBlockEntrance()
1435 getWidenedLoopState(Pred->getState(), LCtx, BlockCount, Term); in processCFGBlockEntrance()
1441 if (BlockCount >= AMgr.options.maxBlockVisitOnPath) { in processCFGBlockEntrance()
DMemRegion.cpp392 BlockDataRegion::ProfileRegion(ID, BC, LC, BlockCount, getSuperRegion()); in Profile()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DGCOV.cpp117 uint32_t BlockCount = Buff.readInt(); in read() local
118 for (int i = 0, e = BlockCount; i != e; ++i) { in read()
127 assert (BlockNo < BlockCount && "Unexpected Block number!"); in read()
139 assert (BlockNo < BlockCount && "Unexpected Block number!"); in read()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
DGCOV.cpp163 uint32_t BlockCount; in readGCNO() local
164 if (!Buff.readInt(BlockCount)) in readGCNO()
166 for (uint32_t i = 0, e = BlockCount; i != e; ++i) { in readGCNO()
181 if (BlockNo >= BlockCount) { in readGCNO()
210 if (BlockNo >= BlockCount) { in readGCNO()
635 uint64_t BlockCount = Block->getCount(); in print() local
636 LineCount = LineCount > BlockCount ? LineCount : BlockCount; in print()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DLoopWidening.h31 unsigned BlockCount, const Stmt *LoopStmt);
DProgramState.h262 unsigned BlockCount, const LocationContext *LCtx,
269 unsigned BlockCount, const LocationContext *LCtx,
433 const Expr *E, unsigned BlockCount,
DMemRegion.h631 unsigned BlockCount; variable
638 BlockCount(count), in BlockDataRegion()
DCallEvent.h348 ProgramStateRef invalidateRegions(unsigned BlockCount,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp572 APInt BlockCount(128, EntryCount.getCount()); in getProfileCountFromFreq() local
575 BlockCount *= BlockFreq; in getProfileCountFromFreq()
576 BlockCount = BlockCount.udiv(EntryFreq); in getProfileCountFromFreq()
577 return BlockCount.getLimitedValue(); in getProfileCountFromFreq()
/external/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp540 APInt BlockCount(128, EntryCount.getValue()); in getBlockProfileCount() local
543 BlockCount *= BlockFreq; in getBlockProfileCount()
544 BlockCount = BlockCount.udiv(EntryFreq); in getBlockProfileCount()
545 return BlockCount.getLimitedValue(); in getBlockProfileCount()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86AvoidStoreForwardingBlocks.cpp345 unsigned BlockCount = 0; in findPotentialBlockers() local
350 BlockCount++; in findPotentialBlockers()
351 if (BlockCount >= InspectionLimit) in findPotentialBlockers()
362 if (BlockCount < InspectionLimit) { in findPotentialBlockers()
364 int LimitLeft = InspectionLimit - BlockCount; in findPotentialBlockers()
/external/v8/src/objects/
Ddebug-objects.cc336 int CoverageInfo::BlockCount(int slot_index) const { in BlockCount() function in v8::internal::CoverageInfo
353 const int old_count = BlockCount(slot_index); in IncrementBlockCount()
Ddebug-objects.h228 int BlockCount(int slot_index) const;
/external/llvm/lib/Transforms/Scalar/
DStructurizeCFG.cpp332 while (unsigned &BlockCount = LoopBlocks[CurrentLoop]) { in orderNodes() local
336 --BlockCount; in orderNodes()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DStructurizeCFG.cpp354 while (unsigned &BlockCount = LoopBlocks[CurrentLoop]) { in orderNodes() local
357 --BlockCount; in orderNodes()
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp308 uint64_t BlockCount = setCount(PGO.getRegionCount(S)); in VisitLabelStmt() local
309 CountMap[S] = BlockCount; in VisitLabelStmt()
/external/v8/src/debug/
Ddebug-interface.h282 size_t BlockCount() const;
Ddebug-coverage.cc87 const int count = coverage_info->BlockCount(i); in GetSortedBlockData()
/external/v8/src/inspector/
Dv8-profiler-agent-impl.cc359 for (size_t k = 0; k < function_data.BlockCount(); k++) { in coverageToProtocol()
/external/v8/src/
Dd8.cc2073 for (size_t k = 0; k < function_data.BlockCount(); k++) { in WriteLcovData()
Dapi.cc9877 size_t debug::Coverage::FunctionData::BlockCount() const { in BlockCount() function in v8::debug::Coverage::FunctionData