Searched refs:getConstantFP (Results 1 - 14 of 14) sorted by relevance

/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h419 SDValue getConstantFP(double Val, EVT VT, bool isTarget = false);
420 SDValue getConstantFP(const APFloat& Val, EVT VT, bool isTarget = false);
421 SDValue getConstantFP(const ConstantFP &CF, EVT VT, bool isTarget = false);
423 return getConstantFP(Val, VT, true);
426 return getConstantFP(Val, VT, true);
429 return getConstantFP(Val, VT, true);
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp360 SDValue Ops[2] = { DAG.getConstantFP(-0.0, N->getValueType(0)),
855 Lo = DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(NVT),
858 Hi = DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(NVT),
1045 Lo = DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(NVT),
1169 Lo = DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(NVT),
1194 Lo = DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(NVT),
1241 DAG.getConstantFP(APFloat(APFloat::PPCDoubleDouble,
1407 SDValue Tmp = DAG.getConstantFP(APF, MVT::ppcf128);
H A DSelectionDAG.cpp1070 SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) { function in class:SelectionDAG
1071 return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget);
1074 SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){ function in class:SelectionDAG
1108 SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) { function in class:SelectionDAG
1111 return getConstantFP(APFloat((float)Val), VT, isTarget);
1113 return getConstantFP(APFloat(Val), VT, isTarget);
1120 return getConstantFP(apf, VT, isTarget);
1122 llvm_unreachable("Unsupported type in getConstantFP");
2523 return getConstantFP(apf, VT);
2527 return getConstantFP(APFloa
[all...]
H A DLegalizeVectorOps.cpp725 SDValue TWOHW = DAG.getConstantFP((1<<(BW/2)), Op.getValueType());
744 SDValue Zero = DAG.getConstantFP(-0.0, Op.getValueType());
H A DDAGCombiner.cpp505 return DAG.getConstantFP(V, Op.getValueType());
6030 return DAG.getConstantFP(0.0, VT);
6035 return DAG.getConstantFP(0.0, VT);
6051 DAG.getConstantFP(1.0, VT));
6060 DAG.getConstantFP(1.0, VT));
6071 DAG.getConstantFP(2.0, VT));
6082 DAG.getConstantFP(2.0, VT));
6096 DAG.getConstantFP(1.0, VT));
6105 DAG.getConstantFP(1.0, VT));
6117 DAG.getConstantFP(2.
[all...]
H A DLegalizeDAG.cpp2293 SDValue Bias = DAG.getConstantFP(isSigned ?
2325 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), MVT::f64);
2390 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), MVT::f64);
2921 Results.push_back(DAG.getConstantFP(0, VT));
2997 Tmp1 = DAG.getConstantFP(apf, VT);
3207 Tmp1 = DAG.getConstantFP(-0.0, Node->getValueType(0));
3216 Tmp2 = DAG.getConstantFP(0.0, VT);
H A DSelectionDAGBuilder.cpp1081 return DAG.getConstantFP(*CFP, VT);
1142 Constants[i] = DAG.getConstantFP(0, EltVT);
1169 Op = DAG.getConstantFP(0, EltVT);
3813 return DAG.getConstantFP(APFloat(APFloat::IEEEsingle, APInt(32, Flt)),
4417 return DAG.getConstantFP(1.0, LHS.getValueType());
4447 DAG.getConstantFP(1.0, LHS.getValueType()), Res);
H A DSelectionDAGISel.cpp2769 Imm = CurDAG->getConstantFP(*Val, Imm.getValueType(), true);
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp792 DAG.getConstantFP(0.15915494309, MVT::f32)),
793 DAG.getConstantFP(0.5, MVT::f32)));
807 DAG.getConstantFP(-0.5, MVT::f32)));
812 DAG.getConstantFP(3.14159265359, MVT::f32));
820 Op, DAG.getConstantFP(0.0f, MVT::f32),
973 HWTrue = DAG.getConstantFP(1.0f, CompareVT);
974 HWFalse = DAG.getConstantFP(0.0f, CompareVT);
H A DAMDGPUISelLowering.cpp420 DAG.getConstantFP(1.0f, MVT::f32),
726 DAG.getConstantFP(4294967296.0f, MVT::f32)); // 2^32
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h136 const ConstantFP *getConstantFP() const { return Constants.CFP; } function in class:llvm::DotDebugLocEntry
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp6770 DAG.getConstantFP(1.0, VT.getScalarType());
6832 DAG.getConstantFP(1.5, VT.getScalarType());
7074 SDValue Zero = DAG.getConstantFP(0.0, VT.getScalarType());
/freebsd-9.3-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2620 Op1 = DAG.getConstantFP(0, MVT::f32);
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp8643 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13574 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),

Completed in 322 milliseconds