Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h1021 const Expr *IfCond, llvm::Value *NumThreads);
1357 Address Shareds, const Expr *IfCond,
1393 const Expr *IfCond, const OMPTaskDataTy &Data);
1566 const Expr *IfCond,
1728 const Expr *IfCond, const Expr *Device,
1741 const Expr *IfCond,
1999 const Expr *IfCond, llvm::Value *NumThreads) override;
2236 Address Shareds, const Expr *IfCond,
2406 const Expr *IfCond,
2488 const OMPExecutableDirective &D, const Expr *IfCond,
[all …]
H A DCGOpenMPRuntimeGPU.h134 const Expr *IfCond);
150 const Expr *IfCond);
265 const Expr *IfCond, llvm::Value *NumThreads) override;
H A DCGStmtOpenMP.cpp1560 const Expr *IfCond = nullptr; in emitCommonOMPParallelDirective() local
2480 const Expr *IfCond = nullptr; in emitCommonSimdLoop() local
2491 if (IfCond) { in emitCommonSimdLoop()
5165 const Expr *IfCond = nullptr; in EmitOMPTaskDirective() local
6573 const Expr *IfCond = nullptr; in emitCommonOMPTargetDirective() local
6593 if (IfCond) { in emitCommonOMPTargetDirective()
7111 const Expr *IfCond = nullptr; in EmitOMPCancelDirective() local
7127 if (IfCond) in EmitOMPCancelDirective()
7343 const Expr *IfCond = nullptr; in EmitOMPTargetDataDirective() local
7345 IfCond = C->getCondition(); in EmitOMPTargetDataDirective()
[all …]
H A DCGOpenMPRuntime.cpp2103 if (IfCond) { in emitParallelCall()
2104 emitIfClause(CGF, IfCond, ThenGen, ElseGen); in emitParallelCall()
5122 if (IfCond) { in emitTaskCall()
5148 if (IfCond) { in emitTaskLoopCall()
6294 if (IfCond) { in emitCancelCall()
6295 emitIfClause(CGF, IfCond, ThenGen, in emitCancelCall()
10484 if (IfCond) { in emitTargetCall()
11158 if (IfCond) { in emitTargetDataCalls()
11172 if (IfCond) { in emitTargetDataCalls()
11352 if (IfCond) { in emitTargetDataStandAloneCall()
[all …]
H A DCGOpenMPRuntimeGPU.cpp1524 const Expr *IfCond, in emitParallelCall() argument
1529 auto &&ParallelGen = [this, Loc, OutlinedFn, CapturedVars, IfCond, in emitParallelCall()
1567 if (IfCond) in emitParallelCall()
1568 IfCondVal = Bld.CreateIntCast(CGF.EvaluateExprAsBool(IfCond), CGF.Int32Ty, in emitParallelCall()
/llvm-project-15.0.7/llvm/include/llvm/MC/MCParser/
H A DAsmCond.h25 IfCond, // inside if conditional enumerator
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DAsmParser.cpp5150 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
5192 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
5214 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfc()
5267 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfeqs()
5279 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
5303 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
5336 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
H A DMasmParser.cpp6154 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
6183 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
6229 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfidn()
6245 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
6282 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
6322 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfb()
6357 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfdef()
6403 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIfidn()
6458 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3156 Value *IfCond = DomBI->getCondition(); in FoldTwoEntryPHINode() local
3158 if (isa<ConstantInt>(IfCond)) in FoldTwoEntryPHINode()
3197 if (auto *IfCondPhiInst = dyn_cast<PHINode>(IfCond)) in FoldTwoEntryPHINode()
3264 IsBinOpOrAnd(PN->getIncomingValue(1)) || IsBinOpOrAnd(IfCond)) && in FoldTwoEntryPHINode()
3287 LLVM_DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond in FoldTwoEntryPHINode()
3310 Value *Sel = Builder.CreateSelect(IfCond, TrueVal, FalseVal, "", DomBI); in FoldTwoEntryPHINode()