HomeSort by relevance Sort by last modified time
    Searched defs:ConstantFP (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/
Constants.h 228 /// ConstantFP - Floating Point Values [float, double]
230 class ConstantFP : public Constant {
233 ConstantFP(const ConstantFP &); // DO NOT IMPLEMENT
236 ConstantFP(Type *Ty, const APFloat& V);
248 /// get() - This returns a ConstantFP, or a vector containing a splat of a
249 /// ConstantFP, for the specified value in the specified type. This should
254 static ConstantFP *get(LLVMContext &Context, const APFloat &V);
255 static ConstantFP *getNegativeZero(Type* Ty);
256 static ConstantFP *getInfinity(Type *Ty, bool Negative = false)
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 61 Constant, ConstantFP,
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 45 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
58 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(this))
71 return ConstantFP::get(Ty->getContext(),
74 return ConstantFP::get(Ty->getContext(),
77 return ConstantFP::get(Ty->getContext(),
80 return ConstantFP::get(Ty->getContext(),
83 return ConstantFP::get(Ty->getContext(),
123 return ConstantFP::get(Ty->getContext(), FL)
    [all...]

Completed in 6040 milliseconds