HomeSort by relevance Sort by last modified time
    Searched refs:Cnt (Results 1 - 25 of 29) sorted by null

1 2

  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 398 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.beginRegion()
    [all...]
CodeGenFunction.cpp 698 RegionCounter Cnt = getPGORegionCounter(Body);
699 Cnt.beginRegion(Builder);
711 RegionCounter &Cnt) {
721 Cnt.beginRegion(Builder, /*AddIncomingFallThrough=*/true);
    [all...]
CGStmt.cpp 388 RegionCounter Cnt = getPGORegionCounter(D->getStmt());
390 Cnt.beginRegion(Builder);
478 RegionCounter Cnt = getPGORegionCounter(&S);
497 Cnt.beginRegion(Builder);
514 EmitBranchOnBoolExpr(S.getCond(), ThenBlock, ElseBlock, Cnt.getCount());
518 Cnt.beginRegion(Builder);
631 RegionCounter Cnt = getPGORegionCounter(&S);
679 PGO.createLoopWeights(S.getCond(), Cnt));
695 Cnt.beginRegion(Builder);
723 RegionCounter Cnt = getPGORegionCounter(&S)
    [all...]
CodeGenPGO.h 100 llvm::MDNode *createLoopWeights(const Stmt *Cond, RegionCounter &Cnt);
CGExprScalar.cpp     [all...]
CGExprComplex.cpp 755 RegionCounter Cnt = CGF.getPGORegionCounter(E);
757 CGF.EmitBranchOnBoolExpr(E->getCond(), LHSBlock, RHSBlock, Cnt.getCount());
761 Cnt.beginRegion(Builder);
    [all...]
CGExprAgg.cpp     [all...]
CGClass.cpp 722 RegionCounter Cnt = getPGORegionCounter(Body);
723 Cnt.beginRegion(Builder);
    [all...]
CGObjC.cpp 507 RegionCounter Cnt = getPGORegionCounter(OMD->getBody());
508 Cnt.beginRegion(Builder);
    [all...]
CodeGenFunction.h 206 RegionCounter Cnt = CGF.getPGORegionCounter(S);
207 Cnt.beginRegion(CGF.Builder);
    [all...]
CGExpr.cpp     [all...]
  /external/clang/tools/scan-build/
ccc-analyzer 494 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...]
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
ccc-analyzer 487 my $Cnt = $CompileOptionMap{$ArgKey};
489 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
504 my $Cnt = $LinkerOptionMap{$ArgKey};
506 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
513 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
519 $i += $Cnt;
528 while ($Cnt > 0) {
529 ++$i; --$Cnt;
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
ccc-analyzer 487 my $Cnt = $CompileOptionMap{$ArgKey};
489 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
504 my $Cnt = $LinkerOptionMap{$ArgKey};
506 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
513 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
519 $i += $Cnt;
528 while ($Cnt > 0) {
529 ++$i; --$Cnt;
    [all...]
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 162 iterator insert(iterator I, size_t Cnt, const_reference E,
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/
RetainCountChecker.cpp 99 unsigned Cnt;
126 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t,
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
259 unsigned cnt = getCount(); local
260 if (cnt) Out << " (+ " << cnt << ")"; local
266 unsigned cnt = getCount(); local
267 if (cnt) Out << " (+ " << cnt << ")"; local
273 unsigned cnt = getCount(); local
274 if (cnt) Out << " (+ " << cnt << ")"; local
280 unsigned cnt = getCount(); local
281 if (cnt) Out << " (+ " << cnt << ")"; local
3319 unsigned cnt = X.getCount(); local
3327 unsigned cnt = X.getCount(); local
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 368 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E,
370 return Impl.insert(I, Cnt, E, C);
694 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt,
696 return iterator(Elements.insert(I.base(), Cnt,
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 448 unsigned Cnt; // Block counter. Used to distinguish different pieces of
452 AllocaRegion(const Expr *ex, unsigned cnt, const MemRegion *superRegion)
453 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
466 unsigned Cnt, const MemRegion *superRegion);
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 222 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) {
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 527 // CNT supports only B element sizes.
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 279 const Expr *Ex, unsigned cnt,
283 ID.AddInteger(cnt);
288 ProfileRegion(ID, Ex, Cnt, superRegion);
457 os << "alloca{" << (const void*) Ex << ',' << Cnt << '}';
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 643 const ConstantFP *Cnt = MO.getFPImm();
644 APFloat Val = Cnt->getValueAPF();
646 switch (Cnt->getType()->getTypeID()) {
    [all...]
  /external/llvm/utils/TableGen/
CodeGenSchedule.cpp     [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]

Completed in 491 milliseconds

1 2