Home
last modified time | relevance | path

Searched refs:NewStep (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5432 VarDecl *NewStep = precomputeExpr(Actions, BodyStmts, StepExpr, ".step"); in buildDistanceFunc() local
5446 Actions.BuildBinOp(nullptr, {}, BO_LT, BuildVarRef(NewStep), Zero)); in buildDistanceFunc()
5454 nullptr, {}, BO_Div, ForwardRange, BuildVarRef(NewStep))); in buildDistanceFunc()
5462 Actions.BuildUnaryOp(nullptr, {}, UO_Minus, BuildVarRef(NewStep))); in buildDistanceFunc()
5505 Expr *Divisor = BuildVarRef(NewStep); in buildDistanceFunc()
5585 Expr *NewStep = AssertSuccess(Recap.TransformExpr(Step)); in buildLoopVarFunc() local
5588 Actions.BuildBinOp(nullptr, {}, BO_Mul, NewStep, LogicalRef)); in buildLoopVarFunc()
6973 Expr *NewStep = nullptr; in ActOnOpenMPDeclareSimdDirective() local
6978 NewSteps.push_back(E ? NewStep : nullptr); in ActOnOpenMPDeclareSimdDirective()
6999 NewStep = Step; in ActOnOpenMPDeclareSimdDirective()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp519 auto *NewStep = SE.getMulExpr(Step, SE.getConstant(Ty, StepMultiplier)); in visitAddRecExpr() local
522 return SE.getAddRecExpr(NewStart, NewStep, TheLoop, SCEV::FlagAnyWrap); in visitAddRecExpr()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2999 APInt NewStep = C0 + C1; in visitADD() local
3000 return DAG.getStepVector(DL, VT, NewStep); in visitADD()
3009 APInt NewStep = SV0 + SV1; in visitADD() local
3010 SDValue SV = DAG.getStepVector(DL, VT, NewStep); in visitADD()
4063 APInt NewStep = -N1.getConstantOperandAPInt(0); in visitSUB() local
4065 DAG.getStepVector(DL, VT, NewStep)); in visitSUB()
4507 APInt NewStep = C0 * MulVal; in visitMUL() local
4508 return DAG.getStepVector(DL, VT, NewStep); in visitMUL()
10161 APInt NewStep = C0 << ShlVal; in visitSHL() local
10162 return DAG.getStepVector(DL, VT, NewStep); in visitSHL()
H A DSelectionDAG.cpp6652 APInt NewStep = Opcode == ISD::MUL in FoldConstantArithmetic() local
6655 return getStepVector(DL, VT, NewStep); in FoldConstantArithmetic()