HomeSort by relevance Sort by last modified time
    Searched refs:isExactlyValue (Results 1 - 10 of 10) sorted by null

  /external/llvm/include/llvm/
Constants.h 271 /// isExactlyValue - We don't rely on operator== working on double values, as
275 /// because it's so convenient to write isExactlyValue(2.0), but please use
277 bool isExactlyValue(const APFloat &V) const;
279 bool isExactlyValue(double V) const {
286 return isExactlyValue(FV);
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 303 if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) {
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 858 if (Op1C->isExactlyValue(1.0)) // pow(1.0, x) -> 1.0
860 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
870 if (Op2C->isExactlyValue(0.5)) {
887 if (Op2C->isExactlyValue(1.0)) // pow(x, 1.0) -> x
889 if (Op2C->isExactlyValue(2.0)) // pow(x, 2.0) -> x*x
891 if (Op2C->isExactlyValue(-1.0)) // pow(x, -1.0) -> 1.0/x
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 264 if (Op1F->isExactlyValue(1.0))
271 if (F->isExactlyValue(1.0))
InstCombineAddSub.cpp 331 if (CFP->isExactlyValue(ConstantFP::getNegativeZero
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 233 (CFP->isExactlyValue(atof(StrVal.c_str())))) {
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 582 bool ConstantFP::isExactlyValue(const APFloat &V) const {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
SelectionDAG.cpp 80 /// isExactlyValue - We don't rely on operator== working on double values, as
84 bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
    [all...]

Completed in 107 milliseconds