Home
last modified time | relevance | path

Searched refs:IfCond (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h995 const Expr *IfCond);
1331 Address Shareds, const Expr *IfCond,
1367 const Expr *IfCond, const OMPTaskDataTy &Data);
1539 const Expr *IfCond,
1572 llvm::Function *OutlinedFn, llvm::Value *OutlinedFnID, const Expr *IfCond,
1706 const Expr *IfCond, const Expr *Device,
1719 const Expr *IfCond,
1975 const Expr *IfCond) override;
2212 Address Shareds, const Expr *IfCond,
2246 QualType SharedsTy, Address Shareds, const Expr *IfCond,
[all …]
H A DCGOpenMPRuntimeGPU.h161 const Expr *IfCond);
177 const Expr *IfCond);
290 const Expr *IfCond) override;
H A DCGStmtOpenMP.cpp1568 const Expr *IfCond = nullptr; in emitCommonOMPParallelDirective() local
1572 IfCond = C->getCondition(); in emitCommonOMPParallelDirective()
1586 CapturedVars, IfCond); in emitCommonOMPParallelDirective()
1692 llvm::Value *IfCond = nullptr; in EmitOMPParallelDirective() local
1694 IfCond = EmitScalarExpr(C->getCondition(), in EmitOMPParallelDirective()
1745 IfCond, NumThreads, ProcBind, S.hasCancel())); in EmitOMPParallelDirective()
2448 const Expr *IfCond = nullptr; in emitCommonSimdLoop() local
2454 IfCond = C->getCondition(); in emitCommonSimdLoop()
2459 if (IfCond) { in emitCommonSimdLoop()
2460 CGF.CGM.getOpenMPRuntime().emitIfClause(CGF, IfCond, ThenGen, ElseGen); in emitCommonSimdLoop()
[all …]
H A DCGOpenMPRuntime.cpp2074 const Expr *IfCond) { in emitParallelCall() argument
2133 if (IfCond) { in emitParallelCall()
2134 emitIfClause(CGF, IfCond, ThenGen, ElseGen); in emitParallelCall()
5112 const Expr *IfCond, in emitTaskCall() argument
5218 if (IfCond) { in emitTaskCall()
5219 emitIfClause(CGF, IfCond, ThenCodeGen, ElseCodeGen); in emitTaskCall()
5230 const Expr *IfCond, in emitTaskLoopCall() argument
5244 if (IfCond) { in emitTaskLoopCall()
5245 IfVal = CGF.Builder.CreateIntCast(CGF.EvaluateExprAsBool(IfCond), CGF.IntTy, in emitTaskLoopCall()
6327 const Expr *IfCond, in emitCancelCall() argument
[all …]
H A DCGOpenMPRuntimeGPU.cpp2088 const Expr *IfCond) { in emitParallelCall() argument
2093 IfCond](CodeGenFunction &CGF, PrePostActionTy &Action) { in emitParallelCall()
2131 if (IfCond) in emitParallelCall()
2132 IfCondVal = Bld.CreateIntCast(CGF.EvaluateExprAsBool(IfCond), CGF.Int32Ty, in emitParallelCall()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
H A DAsmCond.h25 IfCond, // inside if conditional enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DMasmParser.cpp5855 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
5886 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
5933 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfidn()
5949 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
5984 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
6025 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfb()
6061 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfdef()
6106 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfidn()
6162 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
H A DAsmParser.cpp5106 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
5148 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
5170 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfc()
5223 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfeqs()
5235 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
5259 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
5292 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2714 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() local
2715 if (!IfCond || in FoldTwoEntryPHINode()
2717 isa<ConstantInt>(IfCond)) in FoldTwoEntryPHINode()
2780 IsBinOpOrAnd(PN->getIncomingValue(1)) || IsBinOpOrAnd(IfCond)) && in FoldTwoEntryPHINode()
2821 LLVM_DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond in FoldTwoEntryPHINode()
2847 Value *Sel = Builder.CreateSelect(IfCond, TrueVal, FalseVal, "", InsertPt); in FoldTwoEntryPHINode()