From 9483bf27ee1ed3dca290f6c0150b1b161efdb222 Mon Sep 17 00:00:00 2001 From: Max Filippov Date: Sun, 13 Jan 2019 19:00:04 -0800 Subject: target/xtensa: extract FPU helpers Move FPU-related HELPER functions from op_helper.c to fpu_helper.c No functional changes. Signed-off-by: Max Filippov --- target/xtensa/Makefile.objs | 1 + 1 file changed, 1 insertion(+) (limited to 'target/xtensa/Makefile.objs') diff --git a/target/xtensa/Makefile.objs b/target/xtensa/Makefile.objs index f63352cc04..1508714c44 100644 --- a/target/xtensa/Makefile.objs +++ b/target/xtensa/Makefile.objs @@ -7,4 +7,5 @@ obj-y += core-test_kc705_be.o obj-$(CONFIG_SOFTMMU) += monitor.o xtensa-semi.o obj-y += xtensa-isa.o obj-y += translate.o op_helper.o helper.o cpu.o +obj-y += fpu_helper.o obj-y += gdbstub.o -- cgit v1.2.3 From c9ed50e82d640f164b06c9170382622a9adf9906 Mon Sep 17 00:00:00 2001 From: Max Filippov Date: Sun, 13 Jan 2019 19:03:40 -0800 Subject: target/xtensa: extract windowed registers helpers Move helper functions related to register windows from op_helper.c to win_helper.c. No functional changes. Signed-off-by: Max Filippov --- target/xtensa/Makefile.objs | 1 + 1 file changed, 1 insertion(+) (limited to 'target/xtensa/Makefile.objs') diff --git a/target/xtensa/Makefile.objs b/target/xtensa/Makefile.objs index 1508714c44..cc550c2ccb 100644 --- a/target/xtensa/Makefile.objs +++ b/target/xtensa/Makefile.objs @@ -9,3 +9,4 @@ obj-y += xtensa-isa.o obj-y += translate.o op_helper.o helper.o cpu.o obj-y += fpu_helper.o obj-y += gdbstub.o +obj-y += win_helper.o -- cgit v1.2.3 From 7e5e5a630245727854ac17a973bff1f3b3d87743 Mon Sep 17 00:00:00 2001 From: Max Filippov Date: Sun, 13 Jan 2019 19:16:18 -0800 Subject: target/xtensa: extract MMU helpers Move MMU-related helper functions from op_helper.c and helper.c to mmu_helper.c. No functional changes. Signed-off-by: Max Filippov --- target/xtensa/Makefile.objs | 1 + 1 file changed, 1 insertion(+) (limited to 'target/xtensa/Makefile.objs') diff --git a/target/xtensa/Makefile.objs b/target/xtensa/Makefile.objs index cc550c2ccb..b2c720b2df 100644 --- a/target/xtensa/Makefile.objs +++ b/target/xtensa/Makefile.objs @@ -9,4 +9,5 @@ obj-y += xtensa-isa.o obj-y += translate.o op_helper.o helper.o cpu.o obj-y += fpu_helper.o obj-y += gdbstub.o +obj-$(CONFIG_SOFTMMU) += mmu_helper.o obj-y += win_helper.o -- cgit v1.2.3 From 8803bfea0ea6dee8f44e56775ed77eb4175bb916 Mon Sep 17 00:00:00 2001 From: Max Filippov Date: Sun, 13 Jan 2019 19:34:05 -0800 Subject: target/xtensa: extract debug helpers Move HELPER functions related to native debugging from op_helper.c to dbg_helper.c. No functional changes. Signed-off-by: Max Filippov --- target/xtensa/Makefile.objs | 1 + 1 file changed, 1 insertion(+) (limited to 'target/xtensa/Makefile.objs') diff --git a/target/xtensa/Makefile.objs b/target/xtensa/Makefile.objs index b2c720b2df..cfd33ba1d9 100644 --- a/target/xtensa/Makefile.objs +++ b/target/xtensa/Makefile.objs @@ -7,6 +7,7 @@ obj-y += core-test_kc705_be.o obj-$(CONFIG_SOFTMMU) += monitor.o xtensa-semi.o obj-y += xtensa-isa.o obj-y += translate.o op_helper.o helper.o cpu.o +obj-$(CONFIG_SOFTMMU) += dbg_helper.o obj-y += fpu_helper.o obj-y += gdbstub.o obj-$(CONFIG_SOFTMMU) += mmu_helper.o -- cgit v1.2.3 From 8d918d656a1c4bb2300928468e27c53d72420bb9 Mon Sep 17 00:00:00 2001 From: Max Filippov Date: Sun, 13 Jan 2019 19:51:54 -0800 Subject: target/xtensa: extract interrupt and exception helpers Move helper functions related to interrupt and exception handling from op_helper.c and helper.c to exc_helper.c. No functional changes. Signed-off-by: Max Filippov --- target/xtensa/Makefile.objs | 1 + 1 file changed, 1 insertion(+) (limited to 'target/xtensa/Makefile.objs') diff --git a/target/xtensa/Makefile.objs b/target/xtensa/Makefile.objs index cfd33ba1d9..808f7e3fce 100644 --- a/target/xtensa/Makefile.objs +++ b/target/xtensa/Makefile.objs @@ -8,6 +8,7 @@ obj-$(CONFIG_SOFTMMU) += monitor.o xtensa-semi.o obj-y += xtensa-isa.o obj-y += translate.o op_helper.o helper.o cpu.o obj-$(CONFIG_SOFTMMU) += dbg_helper.o +obj-y += exc_helper.o obj-y += fpu_helper.o obj-y += gdbstub.o obj-$(CONFIG_SOFTMMU) += mmu_helper.o -- cgit v1.2.3