Searched refs:CondConstant (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 1601 bool CondConstant; in EmitOMPSimdDirective() local 1603 if (CGF.ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { in EmitOMPSimdDirective() 1604 if (!CondConstant) in EmitOMPSimdDirective() 1960 bool CondConstant; in EmitOMPWorksharingLoop() local 1962 if (ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { in EmitOMPWorksharingLoop() 1963 if (!CondConstant) in EmitOMPWorksharingLoop() 2417 bool CondConstant; in EmitOMPTaskBasedDirective() local 2418 if (ConstantFoldsToSimpleInteger(Cond, CondConstant)) in EmitOMPTaskBasedDirective() 2419 Data.Final.setInt(CondConstant); in EmitOMPTaskBasedDirective() 2643 bool CondConstant; in EmitOMPDistributeLoop() local [all …]
|
D | CGStmt.cpp | 583 bool CondConstant; in EmitIfStmt() local 584 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant, in EmitIfStmt() 589 if (!CondConstant) // Condition false? in EmitIfStmt() 595 if (CondConstant) in EmitIfStmt()
|
D | CGOpenMPRuntime.cpp | 1899 bool CondConstant; in emitOMPIfClause() local 1900 if (CGF.ConstantFoldsToSimpleInteger(Cond, CondConstant)) { in emitOMPIfClause() 1901 if (CondConstant) in emitOMPIfClause()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmtOpenMP.cpp | 2319 bool CondConstant; in emitOMPSimdRegion() local 2321 if (CGF.ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { in emitOMPSimdRegion() 2322 if (!CondConstant) in emitOMPSimdRegion() 2894 bool CondConstant; in EmitOMPWorksharingLoop() local 2896 if (ConstantFoldsToSimpleInteger(S.getPreCond(), CondConstant)) { in EmitOMPWorksharingLoop() 2897 if (!CondConstant) in EmitOMPWorksharingLoop() 3845 bool CondConstant; in EmitOMPTaskBasedDirective() local 3846 if (ConstantFoldsToSimpleInteger(Cond, CondConstant)) in EmitOMPTaskBasedDirective() 3847 Data.Final.setInt(CondConstant); in EmitOMPTaskBasedDirective() 4642 bool CondConstant; in EmitOMPDistributeLoop() local [all …]
|
D | CGStmt.cpp | 691 bool CondConstant; in EmitIfStmt() local 692 if (ConstantFoldsToSimpleInteger(S.getCond(), CondConstant, in EmitIfStmt() 697 if (!CondConstant) // Condition false? in EmitIfStmt() 703 if (CondConstant) in EmitIfStmt()
|
D | CGOpenMPRuntime.cpp | 2023 bool CondConstant; in emitIfClause() local 2024 if (CGF.ConstantFoldsToSimpleInteger(Cond, CondConstant)) { in emitIfClause() 2025 if (CondConstant) in emitIfClause()
|