summaryrefslogtreecommitdiff
path: root/tcg/tcg.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@twiddle.net>2014-09-19 11:39:20 -0700
committerRichard Henderson <rth@twiddle.net>2015-02-12 21:21:38 -0800
commit951c6300f74ace35d87c079affc57cfc513a6a35 (patch)
tree0df9e7aae513424e3b911f09f2f22452487bf395 /tcg/tcg.h
parent449008f86418583a1f0fb946cf91ee7b4797317d (diff)
downloadqemu-951c6300f74ace35d87c079affc57cfc513a6a35.tar.gz
tcg: Move some opcode generation functions out of line
Some of these functions are really quite large. We have a number of things that ought to be circularly dependent, but we duplicated code to break that chain for the inlines. This saved 25% of the code size of one of the translators I examined. Reviewed-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r--tcg/tcg.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/tcg/tcg.h b/tcg/tcg.h
index 944b87712a..e231bc936e 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -706,9 +706,6 @@ void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs);
void tcg_gen_callN(TCGContext *s, void *func,
TCGArg ret, int nargs, TCGArg *args);
-void tcg_gen_shifti_i64(TCGv_i64 ret, TCGv_i64 arg1,
- int c, int right, int arith);
-
TCGArg *tcg_optimize(TCGContext *s, uint16_t *tcg_opc_ptr, TCGArg *args,
TCGOpDef *tcg_op_def);