diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2021-06-17 13:15:53 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2021-06-21 17:12:50 +0100 |
commit | 614dd4f3ba2a025eae5235c3466ef6da191879f6 (patch) | |
tree | ebace9429994ecd47c5e5c5dd8a9897ba2b75d89 /include/tcg/tcg.h | |
parent | 399a8c766c0526b51cd180e1b1c776d6dc95bad8 (diff) | |
download | qemu-614dd4f3ba2a025eae5235c3466ef6da191879f6.zip qemu-614dd4f3ba2a025eae5235c3466ef6da191879f6.tar.gz qemu-614dd4f3ba2a025eae5235c3466ef6da191879f6.tar.bz2 |
tcg: Make gen_dup_i32/i64() public as tcg_gen_dup_i32/i64
The Arm MVE VDUP implementation would like to be able to emit code to
duplicate a byte or halfword value into an i32. We have code to do
this already in tcg-op-gvec.c, so all we need to do is make the
functions global.
For consistency with other functions made available to the frontends:
* we rename to tcg_gen_dup_*
* we expose both the _i32 and _i64 forms
* we provide the #define for a _tl form
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20210617121628.20116-10-peter.maydell@linaro.org
Diffstat (limited to 'include/tcg/tcg.h')
-rw-r--r-- | include/tcg/tcg.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index 064dab3..483e1e1 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -1331,7 +1331,6 @@ uint64_t dup_const(unsigned vece, uint64_t c); : (qemu_build_not_reached_always(), 0)) \ : dup_const(VECE, C)) - /* * Memory helpers that will be used by TCG generated code. */ |