Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenPGO.cpp542 uint64_t FalseCount = setCount(ParentCount - TrueCount); in VisitAbstractConditionalOperator() local
543 CountMap[E->getFalseExpr()] = FalseCount; in VisitAbstractConditionalOperator()
848 uint64_t FalseCount) { in createProfileWeights() argument
850 if (!TrueCount && !FalseCount) in createProfileWeights()
854 uint64_t Scale = calculateWeightScale(std::max(TrueCount, FalseCount)); in createProfileWeights()
858 scaleBranchWeight(FalseCount, Scale)); in createProfileWeights()
DCodeGenFunction.cpp1296 uint64_t FalseCount = getCurrentProfileCount() - TrueCount; in EmitBranchOnBoolExpr() local
1299 FalseCount); in EmitBranchOnBoolExpr()
DCodeGenFunction.h971 llvm::MDNode *createProfileWeights(uint64_t TrueCount, uint64_t FalseCount);