Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h838 const Expr *IfCond);
1166 Address Shareds, const Expr *IfCond,
1201 const Expr *IfCond, const OMPTaskDataTy &Data);
1352 const Expr *IfCond,
1393 llvm::Value *OutlinedFnID, const Expr *IfCond,
1493 const Expr *IfCond, const Expr *Device,
1506 const Expr *IfCond,
1657 const Expr *IfCond) override;
2028 const Expr *IfCond,
2059 const Expr *IfCond, const Expr *Device) override;
[all …]
H A DCGOpenMPRuntimeNVPTX.h162 const Expr *IfCond);
178 const Expr *IfCond);
278 const Expr *IfCond) override;
H A DCGStmtOpenMP.cpp1246 const Expr *IfCond = nullptr; in emitCommonOMPParallelDirective() local
3188 const Expr *IfCond = nullptr; in EmitOMPTaskDirective() local
4033 const Expr *IfCond = nullptr; in emitCommonOMPTargetDirective() local
4052 if (IfCond) { in emitCommonOMPTargetDirective()
4503 const Expr *IfCond = nullptr; in EmitOMPCancelDirective() local
4666 const Expr *IfCond = nullptr; in EmitOMPTargetDataDirective() local
4668 IfCond = C->getCondition(); in EmitOMPTargetDataDirective()
4691 const Expr *IfCond = nullptr; in EmitOMPTargetEnterDataDirective() local
4693 IfCond = C->getCondition(); in EmitOMPTargetEnterDataDirective()
4712 const Expr *IfCond = nullptr; in EmitOMPTargetExitDataDirective() local
[all …]
H A DCGOpenMPRuntime.cpp2887 if (IfCond) { in emitParallelCall()
2888 emitOMPIfClause(CGF, IfCond, ThenGen, ElseGen); in emitParallelCall()
5224 if (IfCond) { in emitTaskCall()
5250 if (IfCond) { in emitTaskLoopCall()
6310 if (IfCond) { in emitCancelCall()
6311 emitOMPIfClause(CGF, IfCond, ThenGen, in emitCancelCall()
8504 if (IfCond) { in emitTargetCall()
8993 if (IfCond) { in emitTargetDataCalls()
9007 if (IfCond) { in emitTargetDataCalls()
9157 if (IfCond) { in emitTargetDataStandAloneCall()
[all …]
H A DCGOpenMPRuntimeNVPTX.cpp2450 ArrayRef<llvm::Value *> CapturedVars, const Expr *IfCond) { in emitParallelCall() argument
2455 emitSPMDParallelCall(CGF, Loc, OutlinedFn, CapturedVars, IfCond); in emitParallelCall()
2457 emitNonSPMDParallelCall(CGF, Loc, OutlinedFn, CapturedVars, IfCond); in emitParallelCall()
2462 ArrayRef<llvm::Value *> CapturedVars, const Expr *IfCond) { in emitNonSPMDParallelCall() argument
2618 if (IfCond) { in emitNonSPMDParallelCall()
2619 emitOMPIfClause(CGF, IfCond, LNParallelGen, SeqGen); in emitNonSPMDParallelCall()
2629 ArrayRef<llvm::Value *> CapturedVars, const Expr *IfCond) { in emitSPMDParallelCall() argument
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h1050 Predicate(Record *R, bool C = true) : Def(R), IfCond(C), IsHwMode(false) { in Def()
1056 IfCond(C), IsHwMode(true) {} in Def()
1066 return IfCond ? C : "!("+C+')'; in getCondString()
1069 return IfCond == P.IfCond && IsHwMode == P.IsHwMode && Def == P.Def;
1075 if (IfCond != P.IfCond)
1076 return IfCond < P.IfCond;
1084 bool IfCond; ///< The boolean value that the condition has to variable
/freebsd-12.1/contrib/llvm/include/llvm/MC/MCParser/
H A DAsmCond.h26 IfCond, // inside if conditional enumerator
/freebsd-12.1/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp4894 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIf()
4938 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfb()
4961 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfc()
5015 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfeqs()
5027 TheCondState.TheCond = AsmCond::IfCond; in parseDirectiveIfdef()
5051 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElseIf()
5086 if (TheCondState.TheCond != AsmCond::IfCond && in parseDirectiveElse()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2287 Value *IfCond = GetIfCondition(BB, IfTrue, IfFalse); in FoldTwoEntryPHINode() local
2288 if (!IfCond || in FoldTwoEntryPHINode()
2290 isa<ConstantInt>(IfCond)) in FoldTwoEntryPHINode()
2338 isa<BinaryOperator>(IfCond))) in FoldTwoEntryPHINode()
2374 LLVM_DEBUG(dbgs() << "FOUND IF CONDITION! " << *IfCond in FoldTwoEntryPHINode()
2395 Value *Sel = Builder.CreateSelect(IfCond, TrueVal, FalseVal, "", InsertPt); in FoldTwoEntryPHINode()