Searched refs:Cnt (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/lib/CodeGen/
H A DCodeGenPGO.cpp398 RegionCounter Cnt(PGO, D->getBody());
399 Cnt.beginRegion();
411 RegionCounter Cnt(PGO, D->getBody());
412 Cnt.beginRegion();
419 RegionCounter Cnt(PGO, D->getBody());
420 Cnt.beginRegion();
427 RegionCounter Cnt(PGO, D->getBody());
428 Cnt.beginRegion();
450 RegionCounter Cnt(PGO, S);
451 Cnt
998 createLoopWeights(const Stmt *Cond, RegionCounter &Cnt) argument
[all...]
H A DCodeGenFunction.cpp698 RegionCounter Cnt = getPGORegionCounter(Body); local
699 Cnt.beginRegion(Builder);
711 RegionCounter &Cnt) {
721 Cnt.beginRegion(Builder, /*AddIncomingFallThrough=*/true);
972 RegionCounter Cnt = getPGORegionCounter(CondBOp); local
980 Cnt.beginRegion(Builder);
999 uint64_t RHSCount = Cnt.getCount();
1006 Cnt.beginRegion(Builder);
1015 RegionCounter Cnt = getPGORegionCounter(CondBOp); local
1023 Cnt
710 EmitBlockWithFallThrough(llvm::BasicBlock *BB, RegionCounter &Cnt) argument
1077 RegionCounter Cnt = getPGORegionCounter(CondOp); local
[all...]
H A DCGStmt.cpp388 RegionCounter Cnt = getPGORegionCounter(D->getStmt()); local
390 Cnt.beginRegion(Builder);
478 RegionCounter Cnt = getPGORegionCounter(&S); local
497 Cnt.beginRegion(Builder);
514 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, Cnt.getCount());
518 Cnt.beginRegion(Builder);
631 RegionCounter Cnt = getPGORegionCounter(&S); local
679 PGO.createLoopWeights(S.getCond(), Cnt));
695 Cnt.beginRegion(Builder);
723 RegionCounter Cnt local
793 RegionCounter Cnt = getPGORegionCounter(&S); local
899 RegionCounter Cnt = getPGORegionCounter(&S); local
1259 RegionCounter Cnt = getPGORegionCounter(&S); local
[all...]
H A DCodeGenPGO.h100 llvm::MDNode *createLoopWeights(const Stmt *Cond, RegionCounter &Cnt);
H A DCGExprScalar.cpp2880 RegionCounter Cnt = CGF.getPGORegionCounter(E); local
2884 Cnt.beginRegion(Builder);
2907 Cnt.beginRegion(Builder);
2925 CGF.EmitBranchOnBoolExpr(E->getLHS(), RHSBlock, ContBlock, Cnt.getCount());
2938 Cnt.beginRegion(Builder);
2958 RegionCounter Cnt = CGF.getPGORegionCounter(E); local
2962 Cnt.beginRegion(Builder);
2985 Cnt.beginRegion(Builder);
3004 Cnt.getParentCount() - Cnt
3070 RegionCounter Cnt = CGF.getPGORegionCounter(E); local
[all...]
H A DCGExprComplex.cpp755 RegionCounter Cnt = CGF.getPGORegionCounter(E); local
757 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock, Cnt.getCount());
761 Cnt.beginRegion(Builder);
H A DCGExprAgg.cpp912 RegionCounter Cnt = CGF.getPGORegionCounter(E); local
914 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock, Cnt.getCount());
921 Cnt.beginRegion(Builder);
H A DCGClass.cpp722 RegionCounter Cnt = getPGORegionCounter(Body); local
723 Cnt.beginRegion(Builder);
1311 RegionCounter Cnt = getPGORegionCounter(Body); local
1312 Cnt.beginRegion(Builder);
H A DCGObjC.cpp507 RegionCounter Cnt = getPGORegionCounter(OMD->getBody()); local
508 Cnt.beginRegion(Builder);
1516 RegionCounter Cnt = getPGORegionCounter(&S); local
1519 PGO.createBranchWeights(EntryCount, Cnt.getCount()));
1548 Cnt.beginRegion(Builder);
1662 PGO.createBranchWeights(Cnt.getCount(), EntryCount));
H A DCodeGenFunction.h206 RegionCounter Cnt = CGF.getPGORegionCounter(S); local
207 Cnt.beginRegion(CGF.Builder);
1164 void EmitBlockWithFallThrough(llvm::BasicBlock *BB, RegionCounter &Cnt);
H A DCGExpr.cpp2715 RegionCounter Cnt = getPGORegionCounter(expr); local
2726 Cnt.beginRegion(Builder);
2736 EmitBranchOnBoolExpr(condExpr, lhsBlock, rhsBlock, Cnt.getCount());
2740 Cnt.beginRegion(Builder);
H A DCGBlocks.cpp1199 RegionCounter Cnt = getPGORegionCounter(blockDecl->getBody()); local
1200 Cnt.beginRegion(Builder);
/external/clang/tools/scan-build/
H A Dccc-analyzer494 my $Cnt = $CompileOptionMap{$ArgKey};
496 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
507 my $Cnt = $LinkerOptionMap{$ArgKey};
509 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
516 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
522 $i += $Cnt;
531 while ($Cnt > 0) {
532 ++$i; --$Cnt;
[all...]
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h162 iterator insert(iterator I, size_t Cnt, const_reference E, argument
165 if (End + Cnt <= Capacity) {
167 move_range_right(I, End, Cnt);
168 construct_range(I, I + Cnt, E);
169 End += Cnt;
170 return I + Cnt;
173 grow(C, size() + Cnt);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp99 unsigned Cnt; member in class:__anon18226::RefVal
128 : Cnt(cnt), ACnt(acnt), T(t), RawKind(static_cast<unsigned>(k)),
141 unsigned getCount() const { return Cnt; }
143 unsigned getCombinedCounts() const { return Cnt + ACnt; }
145 Cnt = 0;
150 Cnt = i;
228 return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt;
239 ID.AddInteger(Cnt);
3591 unsigned Cnt local
[all...]
/external/clang/include/clang/Analysis/
H A DCFG.h368 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, argument
370 return Impl.insert(I, Cnt, E, C);
694 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, argument
696 return iterator(Elements.insert(I.base(), Cnt,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h448 unsigned Cnt; // Block counter. Used to distinguish different pieces of member in class:clang::ento::AllocaRegion
453 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
466 unsigned Cnt, const MemRegion *superRegion);
1181 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt,
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp222 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) {
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp5733 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
5745 Cnt = SplatBits.getSExtValue();
5753 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
5756 if (!getVShiftImm(Op, ElementBits, Cnt))
5758 return (Cnt >= 0 && (isLong ? Cnt - 1 : Cnt) < ElementBits);
5768 int64_t &Cnt) {
5771 if (!getVShiftImm(Op, ElementBits, Cnt))
5774 Cnt
5767 isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, int64_t &Cnt) argument
5782 int64_t Cnt; local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp9197 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
9209 Cnt = SplatBits.getSExtValue();
9217 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
9220 if (! getVShiftImm(Op, ElementBits, Cnt))
9222 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
9232 int64_t &Cnt) {
9235 if (! getVShiftImm(Op, ElementBits, Cnt))
9238 Cnt
9231 isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, int64_t &Cnt) argument
9270 int64_t Cnt; local
9358 int64_t Cnt; local
9410 int64_t Cnt; local
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp288 ProfileRegion(ID, Ex, Cnt, superRegion);
457 os << "alloca{" << (const void*) Ex << ',' << Cnt << '}'; local
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp643 const ConstantFP *Cnt = MO.getFPImm(); local
644 APFloat Val = Cnt->getValueAPF();
646 switch (Cnt->getType()->getTypeID()) {
/external/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp1107 unsigned Cnt = std::count(ProcIndices.begin(), ProcIndices.end(),
1109 if (!Cnt)
1111 if (Cnt > 1) {
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp1732 for (unsigned Cnt = 0; Cnt < NestedLoopCount; ++Cnt) {
1733 if (CheckOpenMPIterationSpace(DKind, CurStmt, SemaRef, DSA, Cnt,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1218 TargetLowering::BooleanContent Cnt = local
1221 Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT);

Completed in 478 milliseconds

12