aboutsummaryrefslogtreecommitdiff
path: root/target/mips
AgeCommit message (Expand)AuthorFilesLines
2021-01-14target/mips: Declare generic FPU / Coprocessor functions in translate.hPhilippe Mathieu-Daudé2-12/+24
2021-01-14target/mips: Replace gen_exception_end(EXCP_RI) by gen_rsvd_instructionPhilippe Mathieu-Daudé2-362/+368
2021-01-14target/mips: Replace gen_exception_err(err=0) by gen_exception_end()Philippe Mathieu-Daudé1-3/+3
2021-01-14target/mips/translate: Add declarations for generic codePhilippe Mathieu-Daudé2-38/+57
2021-01-14target/mips/translate: Extract DisasContext structurePhilippe Mathieu-Daudé2-37/+51
2021-01-14target/mips: Rename translate_init.c as cpu-defs.cPhilippe Mathieu-Daudé2-1/+1
2021-01-14target/mips: Move mmu_init() functions to tlb_helper.cPhilippe Mathieu-Daudé3-48/+47
2021-01-14target/mips: Fix code style for checkpatch.plPhilippe Mathieu-Daudé1-18/+18
2021-01-14target/mips: Rename helper.c as tlb_helper.cPhilippe Mathieu-Daudé2-2/+2
2021-01-14target/mips: Move common helpers from helper.c to cpu.cPhilippe Mathieu-Daudé3-207/+211
2021-01-14target/mips: Remove consecutive CONFIG_USER_ONLY ifdefsPhilippe Mathieu-Daudé1-2/+0
2021-01-14target/mips: Add !CONFIG_USER_ONLY comment after #endifPhilippe Mathieu-Daudé1-5/+8
2021-01-14target/mips: Extract FPU helpers to 'fpu_helper.h'Philippe Mathieu-Daudé10-50/+68
2021-01-14target/mips: Inline cpu_state_reset() in mips_cpu_reset()Philippe Mathieu-Daudé1-17/+9
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32R6 as ISA_MIPS_R6Philippe Mathieu-Daudé7-236/+236
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32R5 as ISA_MIPS_R5Philippe Mathieu-Daudé2-3/+3
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32R3 as ISA_MIPS_R3Philippe Mathieu-Daudé1-2/+2
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32R2 as ISA_MIPS_R2Philippe Mathieu-Daudé5-75/+75
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32 as ISA_MIPS_R1Philippe Mathieu-Daudé3-30/+30
2021-01-14target/mips/mips-defs: Use ISA_MIPS32R6 definition to check Release 6Philippe Mathieu-Daudé4-7/+6
2021-01-14target/mips/mips-defs: Use ISA_MIPS32R5 definition to check Release 5Philippe Mathieu-Daudé1-2/+1
2021-01-14target/mips/mips-defs: Use ISA_MIPS32R3 definition to check Release 3Philippe Mathieu-Daudé1-2/+1
2021-01-14target/mips/mips-defs: Use ISA_MIPS32R2 definition to check Release 2Philippe Mathieu-Daudé2-4/+3
2021-01-14target/mips/mips-defs: Use ISA_MIPS32 definition to check Release 1Philippe Mathieu-Daudé2-7/+6
2021-01-14target/mips/mips-defs: Introduce CPU_MIPS64 and cpu_type_is_64bit()Philippe Mathieu-Daudé2-1/+8
2021-01-14target/mips/mips-defs: Rename CPU_MIPSxx Release 1 as CPU_MIPSxxR1Philippe Mathieu-Daudé2-11/+11
2021-01-14target/mips/mips-defs: Reorder CPU_MIPS5 definitionPhilippe Mathieu-Daudé1-2/+1
2021-01-14target/mips/mips-defs: Remove USE_HOST_FLOAT_REGS commentPhilippe Mathieu-Daudé1-6/+0
2021-01-14target/mips/addr: Add translation helpers for KSEG1Jiaxun Yang2-0/+12
2021-01-14target/mips: Replace CP0_Config0 magic values by proper definitionsPhilippe Mathieu-Daudé1-6/+8
2021-01-14target/mips: Add CP0 Config0 register definitions for MIPS3 ISAPhilippe Mathieu-Daudé1-1/+9
2021-01-07tcg: Make tb arg to synchronize_from_tb constRichard Henderson1-1/+2
2021-01-04target/mips: Don't use clock_get_ns() in clock period calculationPeter Maydell1-2/+2
2021-01-01Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2020-12-19' into ...Peter Maydell2-7/+3
2020-12-19migration: Replace migration's JSON writer by the general oneMarkus Armbruster1-2/+2
2020-12-19qapi: Use QAPI_LIST_PREPEND() where possibleEric Blake1-5/+1
2020-12-17linux-user/elfload: Introduce MIPS GET_FEATURE_REG_EQU() macroPhilippe Mathieu-Daudé1-0/+1
2020-12-13target/mips: Use FloatRoundMode enum for FCR31 modes conversionPhilippe Mathieu-Daudé2-2/+3
2020-12-13target/mips: Remove unused headers from fpu_helper.cPhilippe Mathieu-Daudé1-4/+0
2020-12-13target/mips: Inline cpu_mips_realize_env() in mips_cpu_realizefn()Philippe Mathieu-Daudé1-12/+8
2020-12-13target/mips: Move cpu definitions, reset() and realize() to cpu.cPhilippe Mathieu-Daudé3-244/+243
2020-12-13target/mips: Move mips_cpu_add_definition() from helper.c to cpu.cPhilippe Mathieu-Daudé2-33/+33
2020-12-13target/mips: Extract cpu_supports*/cpu_set* translate.cPhilippe Mathieu-Daudé2-18/+18
2020-12-13target/mips: Do not initialize MT registers if MT ASE absentPhilippe Mathieu-Daudé1-0/+4
2020-12-13target/mips: Introduce ase_mt_available() helperPhilippe Mathieu-Daudé5-4/+11
2020-12-13target/mips: Remove mips_def_t unused argument from mvp_init()Philippe Mathieu-Daudé2-2/+2
2020-12-13target/mips: Remove unused headers from op_helper.cPhilippe Mathieu-Daudé1-4/+0
2020-12-13target/mips: Remove unused headers from translate.cPhilippe Mathieu-Daudé1-2/+0
2020-12-13hw/mips: Move address translation helpers to target/mips/Philippe Mathieu-Daudé4-2/+60
2020-12-13target/mips: Introduce cpu_supports_isa() taking CPUMIPSState argumentPhilippe Mathieu-Daudé2-0/+6