Searched refs:ImmOp64 (Results 1 – 2 of 2) sorted by relevance
384 uint64_t ImmOp64 = Inst.getOperand(1).getImm(); in processInstruction() local385 int32_t Imm = ImmOp64; in processInstruction()391 const MCExpr *Value = MCConstantExpr::create(ImmOp64, getContext()); in processInstruction()
3410 static uint64_t convertIntToDoubleImm(uint64_t ImmOp64) { in convertIntToDoubleImm() argument3413 if ((Hi_32(ImmOp64) & 0x7ff00000) == 0) { in convertIntToDoubleImm()3414 APFloat RealVal(APFloat::IEEEdouble(), ImmOp64); in convertIntToDoubleImm()3415 ImmOp64 = RealVal.bitcastToAPInt().getZExtValue(); in convertIntToDoubleImm()3417 return ImmOp64; in convertIntToDoubleImm()3420 static uint32_t covertDoubleImmToSingleImm(uint64_t ImmOp64) { in covertDoubleImmToSingleImm() argument3423 double DoubleImm = llvm::bit_cast<double>(ImmOp64); in covertDoubleImmToSingleImm()3436 uint64_t ImmOp64 = Inst.getOperand(1).getImm(); in expandLoadSingleImmToGPR() local3438 uint32_t ImmOp32 = covertDoubleImmToSingleImm(convertIntToDoubleImm(ImmOp64)); in expandLoadSingleImmToGPR()3453 uint64_t ImmOp64 = Inst.getOperand(1).getImm(); in expandLoadSingleImmToFPR() local[all …]