// Copyright 2022 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef jit_riscv64_constant_Constant_riscv64_f_h_
#define jit_riscv64_constant_Constant_riscv64_f_h_
#include "jit/riscv64/constant/Base-constant-riscv.h"
namespace js {
namespace jit {
enum OpcodeRISCVF : uint32_t {
// RV32F Standard Extension
RO_FLW = LOAD_FP | (0 b010 << kFunct3Shift),
RO_FSW = STORE_FP | (0 b010 << kFunct3Shift),
RO_FMADD_S = MADD | (0 b00 << kFunct2Shift),
RO_FMSUB_S = MSUB | (0 b00 << kFunct2Shift),
RO_FNMSUB_S = NMSUB | (0 b00 << kFunct2Shift),
RO_FNMADD_S = NMADD | (0 b00 << kFunct2Shift),
RO_FADD_S = OP_FP | (0 b0000000 << kFunct7Shift),
RO_FSUB_S = OP_FP | (0 b0000100 << kFunct7Shift),
RO_FMUL_S = OP_FP | (0 b0001000 << kFunct7Shift),
RO_FDIV_S = OP_FP | (0 b0001100 << kFunct7Shift),
RO_FSQRT_S = OP_FP | (0 b0101100 << kFunct7Shift) | (0 b00000 << kRs2Shift),
RO_FSGNJ_S = OP_FP | (0 b000 << kFunct3Shift) | (0 b0010000 << kFunct7Shift),
RO_FSGNJN_S = OP_FP | (0 b001 << kFunct3Shift) | (0 b0010000 << kFunct7Shift),
RO_FSQNJX_S = OP_FP | (0 b010 << kFunct3Shift) | (0 b0010000 << kFunct7Shift),
RO_FMIN_S = OP_FP | (0 b000 << kFunct3Shift) | (0 b0010100 << kFunct7Shift),
RO_FMAX_S = OP_FP | (0 b001 << kFunct3Shift) | (0 b0010100 << kFunct7Shift),
RO_FCVT_W_S = OP_FP | (0 b1100000 << kFunct7Shift) | (0 b00000 << kRs2Shift),
RO_FCVT_WU_S = OP_FP | (0 b1100000 << kFunct7Shift) | (0 b00001 << kRs2Shift),
RO_FMV = OP_FP | (0 b1110000 << kFunct7Shift) | (0 b000 << kFunct3Shift) |
(0 b00000 << kRs2Shift),
RO_FEQ_S = OP_FP | (0 b010 << kFunct3Shift) | (0 b1010000 << kFunct7Shift),
RO_FLT_S = OP_FP | (0 b001 << kFunct3Shift) | (0 b1010000 << kFunct7Shift),
RO_FLE_S = OP_FP | (0 b000 << kFunct3Shift) | (0 b1010000 << kFunct7Shift),
RO_FCLASS_S = OP_FP | (0 b001 << kFunct3Shift) | (0 b1110000 << kFunct7Shift),
RO_FCVT_S_W = OP_FP | (0 b1101000 << kFunct7Shift) | (0 b00000 << kRs2Shift),
RO_FCVT_S_WU = OP_FP | (0 b1101000 << kFunct7Shift) | (0 b00001 << kRs2Shift),
RO_FMV_W_X = OP_FP | (0 b000 << kFunct3Shift) | (0 b1111000 << kFunct7Shift),
#ifdef JS_CODEGEN_RISCV64
// RV64F Standard Extension (in addition to RV32F)
RO_FCVT_L_S = OP_FP | (0 b1100000 << kFunct7Shift) | (0 b00010 << kRs2Shift),
RO_FCVT_LU_S = OP_FP | (0 b1100000 << kFunct7Shift) | (0 b00011 << kRs2Shift),
RO_FCVT_S_L = OP_FP | (0 b1101000 << kFunct7Shift) | (0 b00010 << kRs2Shift),
RO_FCVT_S_LU = OP_FP | (0 b1101000 << kFunct7Shift) | (0 b00011 << kRs2Shift),
#endif // JS_CODEGEN_RISCV64
};
} // namespace jit
} // namespace js
#endif // jit_riscv64_constant_Constant_riscv64_f_h_
Messung V0.5 in Prozent C=96 H=100 G=97
¤ Dauer der Verarbeitung: 0.10 Sekunden
(vorverarbeitet am 2026-06-12)
¤
*© Formatika GbR, Deutschland