HomeSort by relevance Sort by last modified time
    Searched refs:getValueAPF (Results 1 - 25 of 46) sorted by null

1 2

  /external/llvm/lib/Target/ARM/
ARMMCInstLower.cpp 104 APFloat Val = MO.getFPImm()->getValueAPF();
ARMCodeEmitter.cpp 461 return static_cast<unsigned>(MO.getFPImm()->getValueAPF()
672 emitWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
674 emitDWordLE(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 721 !CFPt->getValueAPF().isZero()) ||
723 !CFPf->getValueAPF().isZero()))
733 !CFPt->getValueAPF().isZero()) ||
735 !CFPf->getValueAPF().isZero()))
748 !CFPt->getValueAPF().isZero()) ||
750 !CFPf->getValueAPF().isZero()))
760 !CFPt->getValueAPF().isZero()) ||
762 !CFPf->getValueAPF().isZero()))
    [all...]
InstCombineAddSub.cpp 332 (I.getType())->getValueAPF()))
353 if (CFP->getValueAPF().isPosZero() && CannotBeNegativeZero(LHS))
InstCombineAndOrXor.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeMCInstLower.cpp 155 APFloat FVal = MO.getFPImm()->getValueAPF();
MBlazeAsmPrinter.cpp 226 printHex32(fp->getValueAPF().bitcastToAPInt().getZExtValue(), O);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/llvm/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp 288 if (CN->getValueAPF().isPosZero()) {
292 } else if (CN->getValueAPF().isNegZero()) {
  /external/llvm/lib/VMCore/
AsmWriter.cpp 711 if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEdouble ||
712 &CFP->getValueAPF().getSemantics() == &APFloat::IEEEsingle) {
719 bool isDouble = &CFP->getValueAPF().getSemantics()==&APFloat::IEEEdouble;
720 double Val = isDouble ? CFP->getValueAPF().convertToDouble() :
721 CFP->getValueAPF().convertToFloat();
745 APFloat apf = CFP->getValueAPF();
759 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended) {
762 APInt api = CFP->getValueAPF().bitcastToAPInt();
781 } else if (&CFP->getValueAPF().getSemantics() == &APFloat::IEEEquad)
783 else if (&CFP->getValueAPF().getSemantics() == &APFloat::PPCDoubleDouble
    [all...]
ConstantFold.cpp 179 FP->getValueAPF().bitcastToAPInt());
573 APFloat Val = FPC->getValueAPF();
586 const APFloat &V = FPC->getValueAPF();
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 574 APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF());
    [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 664 return AFP->getValueAPF().bitcastToAPInt() == BI->getValue();
667 return BFP->getValueAPF().bitcastToAPInt() == AI->getValue();
  /external/llvm/lib/Target/CBackend/
CBackend.cpp 656 APFloat APF = APFloat(CFP->getValueAPF()); // copy
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 785 Result.FloatVal = cast<ConstantFP>(C)->getValueAPF().convertToFloat();
788 Result.DoubleVal = cast<ConstantFP>(C)->getValueAPF().convertToDouble();
793 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt();
    [all...]
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 535 llvm::cast<llvm::ConstantFP>(C)->getValueAPF().convertToFloat();
540 llvm::cast<llvm::ConstantFP>(C)->getValueAPF().convertToDouble();
547 llvm::cast<llvm::ConstantFP>(C)->getValueAPF().bitcastToAPInt();
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.cpp 582 APFloat Val = MO.getFPImm()->getValueAPF();
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 85 return getValueAPF().bitwiseIsEqual(V);
134 if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
175 if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
    [all...]
DAGCombiner.cpp 432 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
457 if (N0CFP->getValueAPF().isZero())
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 262 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue))
276 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
314 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue))
    [all...]
  /external/llvm/include/llvm/
Constants.h 260 inline const APFloat &getValueAPF() const { return Val; }
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 204 APFloat APF = APFloat(CFP->getValueAPF()); // copy
223 std::string StrVal = ftostr(CFP->getValueAPF());
240 << utohexstr(CFP->getValueAPF().bitcastToAPInt().getZExtValue())
244 << utohexstr((uint32_t)CFP->getValueAPF().
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 823 Record.push_back(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
827 APInt api = CFP->getValueAPF().bitcastToAPInt();
832 APInt api = CFP->getValueAPF().bitcastToAPInt();
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 863 Record.push_back(CFP->getValueAPF().bitcastToAPInt().getZExtValue());
867 APInt api = CFP->getValueAPF().bitcastToAPInt();
    [all...]

Completed in 740 milliseconds

1 2