Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGOpenMPRuntime.h556 const Expr *IfCond);
811 Address Shareds, const Expr *IfCond,
846 const Expr *IfCond, const OMPTaskDataTy &Data);
921 const Expr *IfCond,
954 llvm::Value *OutlinedFnID, const Expr *IfCond,
1009 const Expr *IfCond, const Expr *Device,
1021 const Expr *IfCond,
DCGStmtOpenMP.cpp1210 const Expr *IfCond = nullptr; in emitCommonOMPParallelDirective() local
1214 IfCond = C->getCondition(); in emitCommonOMPParallelDirective()
1223 CapturedVars, IfCond); in emitCommonOMPParallelDirective()
2562 const Expr *IfCond = nullptr; in EmitOMPTaskDirective() local
2566 IfCond = C->getCondition(); in EmitOMPTaskDirective()
2578 IfCond](CodeGenFunction &CGF, llvm::Value *OutlinedFn, in EmitOMPTaskDirective()
2581 SharedsTy, CapturedStruct, IfCond, in EmitOMPTaskDirective()
3274 const Expr *IfCond = nullptr; in EmitOMPTargetDirective() local
3277 IfCond = C->getCondition(); in EmitOMPTargetDirective()
3290 if (IfCond) { in EmitOMPTargetDirective()
[all …]
DCGOpenMPRuntime.cpp1934 const Expr *IfCond) { in emitParallelCall() argument
1981 if (IfCond) in emitParallelCall()
1982 emitOMPIfClause(CGF, IfCond, ThenGen, ElseGen); in emitParallelCall()
3870 const Expr *IfCond, in emitTaskCall() argument
4048 if (IfCond) in emitTaskCall()
4049 emitOMPIfClause(CGF, IfCond, ThenCodeGen, ElseCodeGen); in emitTaskCall()
4060 const Expr *IfCond, in emitTaskLoopCall() argument
4074 if (IfCond) { in emitTaskLoopCall()
4075 IfVal = CGF.Builder.CreateIntCast(CGF.EvaluateExprAsBool(IfCond), CGF.IntTy, in emitTaskLoopCall()
4706 const Expr *IfCond, in emitCancelCall() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DCodeGenDAGPatterns.h978 Predicate(Record *R, bool C = true) : Def(R), IfCond(C), IsHwMode(false) { in Def()
984 IfCond(C), IsHwMode(true) {} in Def()
994 return IfCond ? C : "!("+C+')'; in getCondString()
997 return IfCond == P.IfCond && IsHwMode == P.IsHwMode && Def == P.Def;
1003 if (IfCond != P.IfCond)
1004 return IfCond < P.IfCond;
1012 bool IfCond; ///< The boolean value that the condition has to variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/MCParser/
DAsmCond.h26 IfCond, // inside if conditional enumerator
/external/swiftshader/third_party/LLVM/include/llvm/MC/MCParser/
DAsmCond.h26 IfCond, // inside if conditional enumerator
/external/llvm/include/llvm/MC/MCParser/
DAsmCond.h26 IfCond, // inside if conditional enumerator
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DSimplifyCFG.cpp1251 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() local
1252 if (!IfCond || in FoldTwoEntryPHINode()
1254 isa<ConstantInt>(IfCond)) in FoldTwoEntryPHINode()
1299 isa<BinaryOperator>(IfCond))) in FoldTwoEntryPHINode()
1335 DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond << " T: " in FoldTwoEntryPHINode()
1360 cast<SelectInst>(Builder.CreateSelect(IfCond, TrueVal, FalseVal, "")); in FoldTwoEntryPHINode()
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DAsmParser.cpp2185 TheCondState.TheCond = AsmCond::IfCond; in ParseDirectiveIf()
2209 TheCondState.TheCond = AsmCond::IfCond; in ParseDirectiveIfdef()
2234 if (TheCondState.TheCond != AsmCond::IfCond && in ParseDirectiveElseIf()
2271 if (TheCondState.TheCond != AsmCond::IfCond && in ParseDirectiveElse()
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp4350 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
4397 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
4421 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfc()
4486 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfeqs()
4498 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
4523 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
4559 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DAsmParser.cpp4859 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
4903 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
4926 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfc()
4980 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfeqs()
4992 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
5016 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
5051 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp2274 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() local
2275 if (!IfCond || in FoldTwoEntryPHINode()
2277 isa<ConstantInt>(IfCond)) in FoldTwoEntryPHINode()
2325 isa<BinaryOperator>(IfCond))) in FoldTwoEntryPHINode()
2363 LLVM_DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond in FoldTwoEntryPHINode()
2394 Value *Sel = Builder.CreateSelect(IfCond, TrueVal, FalseVal, "", InsertPt); in FoldTwoEntryPHINode()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp1928 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() local
1929 if (!IfCond || in FoldTwoEntryPHINode()
1931 isa<ConstantInt>(IfCond)) in FoldTwoEntryPHINode()
1979 isa<BinaryOperator>(IfCond))) in FoldTwoEntryPHINode()
2017 DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond << " T: " in FoldTwoEntryPHINode()
2041 Value *Sel = Builder.CreateSelect(IfCond, TrueVal, FalseVal, "", InsertPt); in FoldTwoEntryPHINode()