aboutsummaryrefslogtreecommitdiff
path: root/tcg/tcg.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2017-06-19 23:18:10 -0700
committerRichard Henderson <richard.henderson@linaro.org>2017-10-24 21:43:36 +0200
commit434391390ba99996af1591b427a73b3f5c05065e (patch)
tree042c37636cf3b826e923b9c53cadc06c42261f0e /tcg/tcg.h
parentdd186292017641d5b31fc13225a420677e1d20d3 (diff)
downloadqemu-434391390ba99996af1591b427a73b3f5c05065e.zip
qemu-434391390ba99996af1591b427a73b3f5c05065e.tar.gz
qemu-434391390ba99996af1591b427a73b3f5c05065e.tar.bz2
tcg: Introduce arg_temp
Reviewed-by: Emilio G. Cota <cota@braap.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r--tcg/tcg.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tcg/tcg.h b/tcg/tcg.h
index 2cefd9f..f06187f 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -725,6 +725,11 @@ struct TCGContext {
extern TCGContext tcg_ctx;
extern bool parallel_cpus;
+static inline TCGTemp *arg_temp(TCGArg a)
+{
+ return &tcg_ctx.temps[a];
+}
+
static inline void tcg_set_insn_param(int op_idx, int arg, TCGArg v)
{
tcg_ctx.gen_op_buf[op_idx].args[arg] = v;