diff options
| author | Richard Henderson | 2014-09-19 20:39:20 +0200 |
|---|---|---|
| committer | Richard Henderson | 2015-02-13 06:21:38 +0100 |
| commit | 951c6300f74ace35d87c079affc57cfc513a6a35 (patch) | |
| tree | 0df9e7aae513424e3b911f09f2f22452487bf395 /Makefile.target | |
| parent | Merge remote-tracking branch 'remotes/awilliam/tags/vfio-update-20150210.0' i... (diff) | |
| download | qemu-951c6300f74ace35d87c079affc57cfc513a6a35.tar.gz qemu-951c6300f74ace35d87c079affc57cfc513a6a35.tar.xz qemu-951c6300f74ace35d87c079affc57cfc513a6a35.zip | |
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 'Makefile.target')
| -rw-r--r-- | Makefile.target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index e9ff1eed7b..58c6ae1d69 100644 --- a/Makefile.target +++ b/Makefile.target @@ -83,7 +83,7 @@ all: $(PROGS) stap ######################################################### # cpu emulator library obj-y = exec.o translate-all.o cpu-exec.o -obj-y += tcg/tcg.o tcg/optimize.o +obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o obj-$(CONFIG_TCG_INTERPRETER) += tci.o obj-$(CONFIG_TCG_INTERPRETER) += disas/tci.o obj-y += fpu/softfloat.o |
