Home
last modified time | relevance | path

Searched refs:CurSquare (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp7438 SrcOp CurSquare = Base; in applyExpandFPowI() local
7442 Res = CurSquare; in applyExpandFPowI()
7444 Res = Builder.buildFMul(Ty, *Res, CurSquare); in applyExpandFPowI()
7447 CurSquare = Builder.buildFMul(Ty, CurSquare, CurSquare); in applyExpandFPowI()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5853 SDValue CurSquare = LHS; in ExpandPowI() local
5860 DAG.getNode(ISD::FMUL, DL, Res.getValueType(), Res, CurSquare); in ExpandPowI()
5862 Res = CurSquare; // 1.0*CurSquare. in ExpandPowI()
5865 CurSquare = DAG.getNode(ISD::FMUL, DL, CurSquare.getValueType(), in ExpandPowI()
5866 CurSquare, CurSquare); in ExpandPowI()