Searched refs:frs (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/execution/riscv64/ |
H A D | simulator-riscv64.h | 826 inline float CanonicalizeDoubleToFloatOperation(Func fn, double frs) { in CanonicalizeDoubleToFloatOperation() argument 827 float alu_out = fn(frs); in CanonicalizeDoubleToFloatOperation() 834 inline float CanonicalizeFloatToDoubleOperation(Func fn, float frs) { in CanonicalizeFloatToDoubleOperation() argument 835 double alu_out = fn(frs); in CanonicalizeFloatToDoubleOperation()
|
H A D | simulator-riscv64.cc | 3761 auto fn = [this](float frs) { in DecodeRVRFPType() 3762 if (is_invalid_fsqrt(frs)) { in DecodeRVRFPType() 3766 return std::sqrt(frs); in DecodeRVRFPType() 4037 auto fn = [](float frs) { return static_cast<double>(frs); }; in DecodeRVRFPType()
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | assembler-ppc.cc | 1692 void Assembler::stfd(const DoubleRegister frs, const MemOperand& src) { in stfd() argument 1699 emit(STFD | frs.code() * B21 | ra.code() * B16 | imm16); in stfd() 1702 void Assembler::stfdu(const DoubleRegister frs, const MemOperand& src) { in stfdu() argument 1709 emit(STFDU | frs.code() * B21 | ra.code() * B16 | imm16); in stfdu() 1712 void Assembler::stfs(const DoubleRegister frs, const MemOperand& src) { in stfs() argument 1719 emit(STFS | frs.code() * B21 | ra.code() * B16 | imm16); in stfs() 1722 void Assembler::stfsu(const DoubleRegister frs, const MemOperand& src) { in stfsu() argument 1729 emit(STFSU | frs.code() * B21 | ra.code() * B16 | imm16); in stfsu()
|
H A D | assembler-ppc.h | 1049 void stfd(const DoubleRegister frs, const MemOperand& src); 1050 void stfdu(const DoubleRegister frs, const MemOperand& src); 1051 void stfs(const DoubleRegister frs, const MemOperand& src); 1052 void stfsu(const DoubleRegister frs, const MemOperand& src);
|
/third_party/node/deps/v8/src/execution/ppc/ |
H A D | simulator-ppc.cc | 2189 int frs = instr->RSValue(); in ExecuteGeneric() local 2194 float frs_val = static_cast<float>(get_double_from_d_register(frs)); in ExecuteGeneric() 2199 int64_t dval = get_d_register(frs); in ExecuteGeneric() 2220 int frs = instr->RSValue(); in ExecuteGeneric() local 2225 int64_t frs_val = get_d_register(frs); in ExecuteGeneric() 3385 int frs = instr->RSValue(); in ExecuteGeneric() local 3389 float frs_val = static_cast<float>(get_double_from_d_register(frs)); in ExecuteGeneric() 3394 int64_t dval = get_d_register(frs); in ExecuteGeneric() 3414 int frs = instr->RSValue(); in ExecuteGeneric() local 3418 int64_t frs_val = get_d_register(frs); in ExecuteGeneric() [all...] |
Completed in 24 milliseconds