diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-07-04 17:14:43 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2019-07-04 17:14:43 +0100 |
commit | 7aab5a8c8bb525ea390b4ebc17ab82c0835cfdb6 (patch) | |
tree | 8202d38786760e2d12a82d57bb92d57f5ba56eec /target/arm/Makefile.objs | |
parent | 91f78c58da9ba78c8ed00f5d822b701765be8499 (diff) | |
download | qemu-7aab5a8c8bb525ea390b4ebc17ab82c0835cfdb6.zip qemu-7aab5a8c8bb525ea390b4ebc17ab82c0835cfdb6.tar.gz qemu-7aab5a8c8bb525ea390b4ebc17ab82c0835cfdb6.tar.bz2 |
target/arm/helper: Move M profile routines to m_helper.c
In preparation for supporting TCG disablement on ARM, we move most
of TCG related v7m/v8m helpers and APIs into their own file.
Note: It is easier to review this commit using the 'histogram'
diff algorithm:
$ git diff --diff-algorithm=histogram ...
or
$ git diff --histogram ...
Suggested-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190702144335.10717-2-philmd@redhat.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
[PMM: updated qapi #include to match recent changes there]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/Makefile.objs')
-rw-r--r-- | target/arm/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/Makefile.objs b/target/arm/Makefile.objs index 82bedef..5cafc1e 100644 --- a/target/arm/Makefile.objs +++ b/target/arm/Makefile.objs @@ -36,6 +36,7 @@ obj-y += tlb_helper.o debug_helper.o obj-y += translate.o op_helper.o obj-y += crypto_helper.o obj-y += iwmmxt_helper.o vec_helper.o neon_helper.o +obj-y += m_helper.o obj-$(CONFIG_SOFTMMU) += psci.o |