diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-03-29 10:40:49 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-01-13 08:39:08 -1000 |
commit | e01fa97dea857a35be5bb8cce0d632a62e72c689 (patch) | |
tree | 358624811c65272b97e7017dfaecb7c313c0b9ac /include/tcg/tcg.h | |
parent | ee17db83d2dce35792e9bf03366af193e5e0e5c9 (diff) | |
download | qemu-e01fa97dea857a35be5bb8cce0d632a62e72c689.zip qemu-e01fa97dea857a35be5bb8cce0d632a62e72c689.tar.gz qemu-e01fa97dea857a35be5bb8cce0d632a62e72c689.tar.bz2 |
tcg: Add temp_readonly
In most, but not all, places that we check for TEMP_FIXED,
we are really testing that we do not modify the temporary.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/tcg/tcg.h')
-rw-r--r-- | include/tcg/tcg.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index 571d4e0..2bdaeaa 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -679,6 +679,11 @@ struct TCGContext { target_ulong gen_insn_data[TCG_MAX_INSNS][TARGET_INSN_START_WORDS]; }; +static inline bool temp_readonly(TCGTemp *ts) +{ + return ts->kind == TEMP_FIXED; +} + extern TCGContext tcg_init_ctx; extern __thread TCGContext *tcg_ctx; extern const void *tcg_code_gen_epilogue; |