Home
last modified time | relevance | path

Searched refs:CondConstant (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp2555 bool CondConstant; in emitOMPSimdRegion() local
2557 if (CGF.ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { in emitOMPSimdRegion()
2558 if (!CondConstant) in emitOMPSimdRegion()
3335 bool CondConstant; in EmitOMPWorksharingLoop() local
3337 if (ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { in EmitOMPWorksharingLoop()
3338 if (!CondConstant) in EmitOMPWorksharingLoop()
4667 bool CondConstant; in EmitOMPTaskBasedDirective() local
4668 if (ConstantFoldsToSimpleInteger(Cond, CondConstant)) in EmitOMPTaskBasedDirective()
4669 Data.Final.setInt(CondConstant); in EmitOMPTaskBasedDirective()
5679 bool CondConstant; in EmitOMPDistributeLoop() local
[all …]
H A DCGStmt.cpp819 bool CondConstant; in EmitIfStmt() local
820 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant, in EmitIfStmt()
825 if (!CondConstant) // Condition false? in EmitIfStmt()
831 if (CondConstant) in EmitIfStmt()
H A DCGOpenMPRuntime.cpp1836 bool CondConstant; in emitIfClause() local
1837 if (CGF.ConstantFoldsToSimpleInteger(Cond, CondConstant)) { in emitIfClause()
1838 if (CondConstant) in emitIfClause()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp7632 auto CondConstant = CI->getSExtValue(); in emitIfClause() local
7633 if (CondConstant) in emitIfClause()