diff options
author | Richard Henderson | 2021-02-01 10:26:14 +0100 |
---|---|---|
committer | Richard Henderson | 2021-06-19 17:51:11 +0200 |
commit | baa94c0d333b5eccd68450625e0c3960e85d1913 (patch) | |
tree | 3e23d7ae84c975e1c85913fcce42dccdbf16af1e /tcg/tci/tcg-target.h | |
parent | tcg/tci: Use ffi for calls (diff) | |
download | qemu-baa94c0d333b5eccd68450625e0c3960e85d1913.tar.gz qemu-baa94c0d333b5eccd68450625e0c3960e85d1913.tar.xz qemu-baa94c0d333b5eccd68450625e0c3960e85d1913.zip |
tcg/tci: Reserve r13 for a temporary
We're about to adjust the offset range on host memory ops,
and the format of branches. Both will require a temporary.
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tci/tcg-target.h')
-rw-r--r-- | tcg/tci/tcg-target.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tcg/tci/tcg-target.h b/tcg/tci/tcg-target.h index f2e5cba539..80cafb7d18 100644 --- a/tcg/tci/tcg-target.h +++ b/tcg/tci/tcg-target.h @@ -156,6 +156,7 @@ typedef enum { TCG_REG_R14, TCG_REG_R15, + TCG_REG_TMP = TCG_REG_R13, TCG_AREG0 = TCG_REG_R14, TCG_REG_CALL_STACK = TCG_REG_R15, } TCGReg; |