mbox series

[0/2] target/mips: Separate CP0-related and FPU-related helpers into their own files

Message ID 1580745443-24650-1-git-send-email-aleksandar.markovic@rt-rk.com (mailing list archive)
Headers show
Series target/mips: Separate CP0-related and FPU-related helpers into their own files | expand

Message

Aleksandar Markovic Feb. 3, 2020, 3:57 p.m. UTC
From: Aleksandar Markovic <amarkovic@wavecomp.com>

This is just a mechanical movement of the code, done for clarity and
easier maintenance.

In stats it appears that more lines are added than removed - this is
because of license preambles within two new files.

Aleksandar Markovic (2):
  target mips: Separate CP0-related helpers into their own file
  target mips: Separate FPU-related helpers into their own file

 target/mips/Makefile.objs |    5 +-
 target/mips/cp0_helper.c  | 1678 +++++++++++++++++
 target/mips/fpu_helper.c  | 1911 ++++++++++++++++++++
 target/mips/op_helper.c   | 4414 +++++----------------------------------------
 4 files changed, 4040 insertions(+), 3968 deletions(-)
 create mode 100644 target/mips/cp0_helper.c
 create mode 100644 target/mips/fpu_helper.c