Searched refs:BlockCount (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DLoopWidening.h30 unsigned BlockCount, const Stmt *LoopStmt);
H A DCallEvent.h347 ProgramStateRef invalidateRegions(unsigned BlockCount,
389 const StackFrameContext *getCalleeStackFrame(unsigned BlockCount) const;
394 unsigned BlockCount) const;
H A DProgramState.h271 /// \param BlockCount The number of times the current basic block has been
284 unsigned BlockCount, const LocationContext *LCtx,
291 unsigned BlockCount, const LocationContext *LCtx,
444 const Expr *E, unsigned BlockCount,
H A DMemRegion.h678 unsigned BlockCount; member in class:clang::ento::BlockDataRegion
685 BlockCount(count) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopWidening.cpp46 unsigned BlockCount, const Stmt *LoopStmt) {
94 BlockCount, LCtx, true, nullptr, nullptr,
44 getWidenedLoopState(ProgramStateRef PrevState, const LocationContext *LCtx, unsigned BlockCount, const Stmt *LoopStmt) argument
H A DCallEvent.cpp196 CallEvent::getCalleeStackFrame(unsigned BlockCount) const {
222 return ADC->getManager()->getStackFrame(ADC, LCtx, E, B, BlockCount, Idx);
226 unsigned BlockCount) const {
227 const StackFrameContext *SFC = getCalleeStackFrame(BlockCount);
287 ProgramStateRef CallEvent::invalidateRegions(unsigned BlockCount, argument
328 if (const VarRegion *VR = getParameterLocation(*AdjIdx, BlockCount))
336 BlockCount, getLocationContext(),
H A DExprEngine.cpp1948 unsigned int BlockCount = nodeBuilder.getContext().blockCount(); local
1949 if (BlockCount == AMgr.options.maxBlockVisitOnPath - 1 &&
1958 getWidenedLoopState(Pred->getState(), LCtx, BlockCount, Term);
1964 if (BlockCount >= AMgr.options.maxBlockVisitOnPath) {
H A DMemRegion.cpp383 BlockDataRegion::ProfileRegion(ID, BC, LC, BlockCount, getSuperRegion());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h187 unsigned BlockCount, unsigned Idx);
308 const unsigned BlockCount; member in class:clang::StackFrameContext
317 BlockCount(blockCount), Index(idx) {}
492 unsigned BlockCount, unsigned Idx) {
493 return LocContexts.getStackFrame(Ctx, Parent, S, Blk, BlockCount, Idx);
506 unsigned BlockCount, unsigned Idx) {
507 return LocContexts.getStackFrame(getContext(D), Parent, S, Blk, BlockCount,
489 getStackFrame(AnalysisDeclContext *Ctx, const LocationContext *Parent, const Stmt *S, const CFGBlock *Blk, unsigned BlockCount, unsigned Idx) argument
503 getStackFrame(const Decl *D, const LocationContext *Parent, const Stmt *S, const CFGBlock *Blk, unsigned BlockCount, unsigned Idx) argument
/freebsd-11-stable/sys/dev/hptmv/
H A Datapi.h43 UCHAR BlockCount; /* RW: Sector count */ member in struct:_IDE_REGISTERS_1
360 #define mSetBlockCount(IOPort,x) OutPort(&IOPort->BlockCount, x)
361 #define mGetBlockCount(IOPort) (UCHAR)InPort(&IOPort->BlockCount)
362 #define mGetInterruptReason(IOPort) (UCHAR)InPort(&IOPort->BlockCount)
/freebsd-11-stable/crypto/openssl/crypto/md5/asm/
H A Dmd5-ia64.S190 // in2 Integral Blocks BlockCount
232 #define BlockCount in2 define
330 add BlockCount = -1, BlockCount
340 cmp.ne pAgain, p0 = 0, BlockCount
396 add BlockCount = -1, BlockCount ; \
402 cmp.ne pAgain, p0 = 0, BlockCount ; \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp574 APInt BlockCount(128, EntryCount.getCount());
577 BlockCount *= BlockFreq;
578 // Rounded division of BlockCount by EntryFreq. Since EntryFreq is unsigned
580 BlockCount = (BlockCount + EntryFreq.lshr(1)).udiv(EntryFreq);
581 return BlockCount.getLimitedValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp161 uint32_t BlockCount; local
162 if (!Buff.readInt(BlockCount))
164 for (uint32_t i = 0, e = BlockCount; i != e; ++i) {
179 if (BlockNo >= BlockCount) {
208 if (BlockNo >= BlockCount) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp340 unsigned BlockCount = 0; local
347 BlockCount++;
348 if (BlockCount >= InspectionLimit)
359 if (BlockCount < InspectionLimit) {
361 int LimitLeft = InspectionLimit - BlockCount;
H A DX86SelectionDAGInfo.cpp259 const uint64_t BlockCount = Size / BlockBytes; local
263 DAG.getIntPtrConstant(BlockCount, dl), BlockType);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp313 const CFGBlock *Blk, unsigned BlockCount,
316 BlockCount, Idx);
365 BlockCount, Index);
312 getStackFrame(LocationContext const *Parent, const Stmt *S, const CFGBlock *Blk, unsigned BlockCount, unsigned Idx) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp160 unsigned BlockCount);
164 unsigned BlockCount);
1324 unsigned BlockCount) {
1331 const SymbolConjured *Sym = SymMgr.conjureSymbol(E, LCtx, T, BlockCount,
1347 unsigned BlockCount) {
1354 const SymbolConjured *Sym = SymMgr.conjureSymbol(E, LCtx, T, BlockCount,
1321 createContainerBegin(ProgramStateRef State, const MemRegion *Cont, const Expr *E, QualType T, const LocationContext *LCtx, unsigned BlockCount) argument
1344 createContainerEnd(ProgramStateRef State, const MemRegion *Cont, const Expr *E, QualType T, const LocationContext *LCtx, unsigned BlockCount) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp448 uint64_t BlockCount = setCount(PGO.getRegionCount(S)); local
449 CountMap[S] = BlockCount;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp361 while (unsigned &BlockCount = LoopBlocks[CurrentLoop]) {
364 --BlockCount;

Completed in 420 milliseconds