diff options
author | Peter Maydell | 2019-04-29 18:36:03 +0200 |
---|---|---|
committer | Peter Maydell | 2019-04-29 18:36:03 +0200 |
commit | 956fe143b4f254356496a0a1c479fa632376dfec (patch) | |
tree | 245c9f8a90a0c5d9cd2de0d912c16d7dad3b530c /target/arm/helper.h | |
parent | target/arm: Implement VLSTM for v7M CPUs with an FPU (diff) | |
download | qemu-956fe143b4f254356496a0a1c479fa632376dfec.tar.gz qemu-956fe143b4f254356496a0a1c479fa632376dfec.tar.xz qemu-956fe143b4f254356496a0a1c479fa632376dfec.zip |
target/arm: Implement VLLDM for v7M CPUs with an FPU
Implement the VLLDM instruction for v7M for the FPU present cas.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20190416125744.27770-26-peter.maydell@linaro.org
Diffstat (limited to 'target/arm/helper.h')
-rw-r--r-- | target/arm/helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/helper.h b/target/arm/helper.h index 62051ae6d5..50cb036378 100644 --- a/target/arm/helper.h +++ b/target/arm/helper.h @@ -72,6 +72,7 @@ DEF_HELPER_3(v7m_tt, i32, env, i32, i32) DEF_HELPER_1(v7m_preserve_fp_state, void, env) DEF_HELPER_2(v7m_vlstm, void, env, i32) +DEF_HELPER_2(v7m_vlldm, void, env, i32) DEF_HELPER_2(v8m_stackcheck, void, env, i32) |