Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h1020 const Expr *IfCond);
1356 Address Shareds, const Expr *IfCond,
1392 const Expr *IfCond, const OMPTaskDataTy &Data);
1564 const Expr *IfCond,
1726 const Expr *IfCond, const Expr *Device,
1739 const Expr *IfCond,
1995 const Expr *IfCond) override;
2232 Address Shareds, const Expr *IfCond,
2401 const Expr *IfCond,
2483 const OMPExecutableDirective &D, const Expr *IfCond,
[all …]
H A DCGOpenMPRuntimeGPU.h135 const Expr *IfCond);
151 const Expr *IfCond);
264 const Expr *IfCond) override;
H A DCGStmtOpenMP.cpp1576 const Expr *IfCond = nullptr; in emitCommonOMPParallelDirective() local
2453 const Expr *IfCond = nullptr; in emitCommonSimdLoop() local
2464 if (IfCond) { in emitCommonSimdLoop()
4752 const Expr *IfCond = nullptr; in EmitOMPTaskDirective() local
5948 const Expr *IfCond = nullptr; in emitCommonOMPTargetDirective() local
5968 if (IfCond) { in emitCommonOMPTargetDirective()
6425 const Expr *IfCond = nullptr; in EmitOMPCancelDirective() local
6441 if (IfCond) in EmitOMPCancelDirective()
6663 const Expr *IfCond = nullptr; in EmitOMPTargetDataDirective() local
6665 IfCond = C->getCondition(); in EmitOMPTargetDataDirective()
[all …]
H A DCGOpenMPRuntime.cpp2138 if (IfCond) { in emitParallelCall()
2139 emitIfClause(CGF, IfCond, ThenGen, ElseGen); in emitParallelCall()
5228 if (IfCond) { in emitTaskCall()
5254 if (IfCond) { in emitTaskLoopCall()
6378 if (IfCond) { in emitCancelCall()
6379 emitIfClause(CGF, IfCond, ThenGen, in emitCancelCall()
10525 if (IfCond) { in emitTargetCall()
11198 if (IfCond) { in emitTargetDataCalls()
11212 if (IfCond) { in emitTargetDataCalls()
11390 if (IfCond) { in emitTargetDataStandAloneCall()
[all …]
H A DCGOpenMPRuntimeGPU.cpp1503 const Expr *IfCond) { in emitParallelCall() argument
1508 IfCond](CodeGenFunction &CGF, PrePostActionTy &Action) { in emitParallelCall()
1543 if (IfCond) in emitParallelCall()
1544 IfCondVal = Bld.CreateIntCast(CGF.EvaluateExprAsBool(IfCond), CGF.Int32Ty, in emitParallelCall()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DAsmCond.h25 IfCond, // inside if conditional enumerator
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp5127 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
5169 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
5191 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfc()
5244 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfeqs()
5256 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
5280 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
5313 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
H A DMasmParser.cpp6178 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
6209 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
6256 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfidn()
6272 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
6309 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
6350 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfb()
6386 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfdef()
6433 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfidn()
6489 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2736 Value *IfCond = DomBI->getCondition(); in FoldTwoEntryPHINode() local
2738 if (isa<ConstantInt>(IfCond)) in FoldTwoEntryPHINode()
2777 if (auto *IfCondPhiInst = dyn_cast<PHINode>(IfCond)) in FoldTwoEntryPHINode()
2844 IsBinOpOrAnd(PN->getIncomingValue(1)) || IsBinOpOrAnd(IfCond)) && in FoldTwoEntryPHINode()
2868 LLVM_DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond in FoldTwoEntryPHINode()
2891 Value *Sel = Builder.CreateSelect(IfCond, TrueVal, FalseVal, "", DomBI); in FoldTwoEntryPHINode()