Home
last modified time | relevance | path

Searched refs:FalseCount (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
DCodeGenPGO.cpp536 uint64_t FalseCount = setCount(ParentCount - TrueCount); in VisitAbstractConditionalOperator() local
537 CountMap[E->getFalseExpr()] = FalseCount; in VisitAbstractConditionalOperator()
795 uint64_t FalseCount) { in createProfileWeights() argument
797 if (!TrueCount && !FalseCount) in createProfileWeights()
801 uint64_t Scale = calculateWeightScale(std::max(TrueCount, FalseCount)); in createProfileWeights()
805 scaleBranchWeight(FalseCount, Scale)); in createProfileWeights()
DCodeGenFunction.cpp1224 uint64_t FalseCount = getCurrentProfileCount() - TrueCount; in EmitBranchOnBoolExpr() local
1227 FalseCount); in EmitBranchOnBoolExpr()
DCodeGenFunction.h946 llvm::MDNode *createProfileWeights(uint64_t TrueCount, uint64_t FalseCount);