diff options
author | Frank Chang <frank.chang@sifive.com> | 2021-05-06 00:06:14 +0800 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2021-06-08 09:59:45 +1000 |
commit | c24f0422fbc0924389c1345ee30d8f87730ae633 (patch) | |
tree | d1ccf4d28fb6467b959b0d80eb2a596e23bbe071 /target/riscv/helper.h | |
parent | 831ec7f3d1ede387eca225ccaccb2845cbbca85e (diff) | |
download | qemu-c24f0422fbc0924389c1345ee30d8f87730ae633.zip qemu-c24f0422fbc0924389c1345ee30d8f87730ae633.tar.gz qemu-c24f0422fbc0924389c1345ee30d8f87730ae633.tar.bz2 |
target/riscv: rvb: generalized or-combine
Signed-off-by: Frank Chang <frank.chang@sifive.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210505160620.15723-14-frank.chang@sifive.com
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Diffstat (limited to 'target/riscv/helper.h')
-rw-r--r-- | target/riscv/helper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/riscv/helper.h b/target/riscv/helper.h index f81b8fa..415e37b 100644 --- a/target/riscv/helper.h +++ b/target/riscv/helper.h @@ -61,6 +61,8 @@ DEF_HELPER_FLAGS_1(fclass_d, TCG_CALL_NO_RWG_SE, tl, i64) /* Bitmanip */ DEF_HELPER_FLAGS_2(grev, TCG_CALL_NO_RWG_SE, tl, tl, tl) DEF_HELPER_FLAGS_2(grevw, TCG_CALL_NO_RWG_SE, tl, tl, tl) +DEF_HELPER_FLAGS_2(gorc, TCG_CALL_NO_RWG_SE, tl, tl, tl) +DEF_HELPER_FLAGS_2(gorcw, TCG_CALL_NO_RWG_SE, tl, tl, tl) /* Special functions */ DEF_HELPER_3(csrrw, tl, env, tl, tl) |