aboutsummaryrefslogtreecommitdiff
path: root/target/mips/translate.c
AgeCommit message (Expand)AuthorFilesLines
2021-01-14target/mips: Convert Rel6 LL/SC opcodes to decodetreePhilippe Mathieu-Daudé1-2/+0
2021-01-14target/mips: Convert Rel6 LLD/SCD opcodes to decodetreePhilippe Mathieu-Daudé1-2/+0
2021-01-14target/mips: Convert Rel6 LDL/LDR/SDL/SDR opcodes to decodetreePhilippe Mathieu-Daudé1-4/+1
2021-01-14target/mips: Convert Rel6 LWLE/LWRE/SWLE/SWRE opcodes to decodetreePhilippe Mathieu-Daudé1-4/+0
2021-01-14target/mips: Convert Rel6 LWL/LWR/SWL/SWR opcodes to decodetreePhilippe Mathieu-Daudé1-4/+1
2021-01-14target/mips: Convert Rel6 CACHE/PREF opcodes to decodetreePhilippe Mathieu-Daudé1-2/+0
2021-01-14target/mips: Convert Rel6 COP1X opcode to decodetreePhilippe Mathieu-Daudé1-1/+0
2021-01-14target/mips: Convert Rel6 Special2 opcode to decodetreePhilippe Mathieu-Daudé1-2/+0
2021-01-14target/mips: Remove now unreachable LSA/DLSA opcodes codePhilippe Mathieu-Daudé1-23/+5
2021-01-14target/mips: Introduce decodetree helpers for Release6 LSA/DLSA opcodesPhilippe Mathieu-Daudé1-0/+5
2021-01-14target/mips: Extract LSA/DLSA translation generatorsPhilippe Mathieu-Daudé1-32/+4
2021-01-14target/mips: Use decode_ase_msa() generated from decodetreePhilippe Mathieu-Daudé1-22/+10
2021-01-14target/mips: Extract MSA translation routinesPhilippe Mathieu-Daudé1-2249/+0
2021-01-14target/mips: Declare gen_msa/_branch() in 'translate.h'Philippe Mathieu-Daudé1-2/+2
2021-01-14target/mips: Explode gen_msa_branch() as gen_msa_BxZ_V/BxZ()Philippe Mathieu-Daudé1-21/+48
2021-01-14target/mips: Remove CPUMIPSState* argument from gen_msa*() methodsPhilippe Mathieu-Daudé1-29/+28
2021-01-14target/mips: Extract msa_translate_init() from mips_tcg_init()Philippe Mathieu-Daudé1-13/+18
2021-01-14target/mips: Alias MSA vector registers on FPU scalar registersPhilippe Mathieu-Daudé1-5/+9
2021-01-14target/mips: Simplify MSA TCG logicPhilippe Mathieu-Daudé1-12/+11
2021-01-14target/mips: Introduce ase_msa_available() helperPhilippe Mathieu-Daudé1-4/+2
2021-01-14target/mips/translate: Expose check_mips_64() to 32-bit modePhilippe Mathieu-Daudé1-5/+3
2021-01-14target/mips/translate: Extract decode_opc_legacy() from decode_opc()Philippe Mathieu-Daudé1-20/+29
2021-01-14target/mips: Extract FPU specific definitions to translate.hPhilippe Mathieu-Daudé1-70/+0
2021-01-14target/mips: Declare generic FPU / Coprocessor functions in translate.hPhilippe Mathieu-Daudé1-12/+12
2021-01-14target/mips: Replace gen_exception_end(EXCP_RI) by gen_rsvd_instructionPhilippe Mathieu-Daudé1-362/+367
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é1-38/+14
2021-01-14target/mips/translate: Extract DisasContext structurePhilippe Mathieu-Daudé1-37/+1
2021-01-14target/mips: Extract FPU helpers to 'fpu_helper.h'Philippe Mathieu-Daudé1-0/+1
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32R6 as ISA_MIPS_R6Philippe Mathieu-Daudé1-213/+213
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32R5 as ISA_MIPS_R5Philippe Mathieu-Daudé1-1/+1
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32R2 as ISA_MIPS_R2Philippe Mathieu-Daudé1-69/+69
2021-01-14target/mips/mips-defs: Rename ISA_MIPS32 as ISA_MIPS_R1Philippe Mathieu-Daudé1-27/+27
2021-01-14target/mips/mips-defs: Use ISA_MIPS32R6 definition to check Release 6Philippe Mathieu-Daudé1-1/+1
2021-01-14target/mips/mips-defs: Use ISA_MIPS32R2 definition to check Release 2Philippe Mathieu-Daudé1-2/+2
2021-01-14target/mips/mips-defs: Use ISA_MIPS32 definition to check Release 1Philippe Mathieu-Daudé1-5/+5
2020-12-13target/mips: Move cpu definitions, reset() and realize() to cpu.cPhilippe Mathieu-Daudé1-240/+0
2020-12-13target/mips: Extract cpu_supports*/cpu_set* translate.cPhilippe Mathieu-Daudé1-18/+0
2020-12-13target/mips: Introduce ase_mt_available() helperPhilippe Mathieu-Daudé1-1/+1
2020-12-13target/mips: Remove mips_def_t unused argument from mvp_init()Philippe Mathieu-Daudé1-1/+1
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é1-2/+0
2020-12-13target/mips: Rename cpu_supports_FEAT() as cpu_type_supports_FEAT()Philippe Mathieu-Daudé1-2/+2
2020-11-03target/mips: Add unaligned access support for MIPS64R6 and Loongson-3Huacai Chen1-2/+2
2020-11-03target/mips: Fix Lesser GPL version numberChetan Pant1-1/+1
2020-10-17target/mips: Add loongson-ext lsdc2 group of instructionsJiaxun Yang1-0/+179
2020-10-17target/mips: Add loongson-ext lswc2 group of instructions (Part 2)Jiaxun Yang1-2/+180
2020-10-17target/mips: Add loongson-ext lswc2 group of instructions (Part 1)Jiaxun Yang1-0/+86
2020-10-17target/mips: Fix some comment spelling errorszhaolichang1-5/+5
2020-09-10target/mips: simplify gen_compute_imm_branch logicAlex Bennée1-10/+2