aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2022-10-19 11:26:37 +1000
committerRichard Henderson <richard.henderson@linaro.org>2023-01-05 11:41:28 -0800
commitfac87bd2a49bf16edeb1d2823a993ad7c9ed073b (patch)
tree556de45a7bc4f1272965e0cbacb47e9c27790dec /include
parentd56fea79f9d24c62b0a8c3a80924147942409258 (diff)
downloadqemu-fac87bd2a49bf16edeb1d2823a993ad7c9ed073b.zip
qemu-fac87bd2a49bf16edeb1d2823a993ad7c9ed073b.tar.gz
qemu-fac87bd2a49bf16edeb1d2823a993ad7c9ed073b.tar.bz2
tcg: Add temp_subindex to TCGTemp
Record the location of a TCGTemp within a larger object. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/tcg/tcg.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h
index d207bc4..afa1898 100644
--- a/include/tcg/tcg.h
+++ b/include/tcg/tcg.h
@@ -456,6 +456,7 @@ typedef struct TCGTemp {
unsigned int mem_coherent:1;
unsigned int mem_allocated:1;
unsigned int temp_allocated:1;
+ unsigned int temp_subindex:1;
int64_t val;
struct TCGTemp *mem_base;