[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 6/7] target-mips: remove misleading comments in t
From: |
Leon Alrae |
Subject: |
[Qemu-devel] [PATCH v2 6/7] target-mips: remove misleading comments in translate_init.c |
Date: |
Wed, 3 Jun 2015 10:32:35 +0100 |
PABITS are not hardcoded to 36 bits and we do not model 59 PABITS (which is
the architectural limit) in QEMU.
Signed-off-by: Leon Alrae <address@hidden>
---
target-mips/translate_init.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/target-mips/translate_init.c b/target-mips/translate_init.c
index 00369f1..05a02eb 100644
--- a/target-mips/translate_init.c
+++ b/target-mips/translate_init.c
@@ -553,9 +553,6 @@ static const mips_def_t mips_defs[] =
(1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
(1 << FCR0_S) | (0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
.SEGBITS = 42,
- /* The architectural limit is 59, but we have hardcoded 36 bit
- in some places...
- .PABITS = 59, */ /* the architectural limit */
.PABITS = 36,
.insn_flags = CPU_MIPS64R2 | ASE_MIPS3D,
.mmu_type = MMU_TYPE_R4000,
@@ -636,9 +633,6 @@ static const mips_def_t mips_defs[] =
(1 << FCR0_W) | (1 << FCR0_D) | (1 << FCR0_S) |
(0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
.SEGBITS = 42,
- /* The architectural limit is 59, but we have hardcoded 36 bit
- in some places...
- .PABITS = 59, */ /* the architectural limit */
.PABITS = 36,
.insn_flags = CPU_MIPS64R6,
.mmu_type = MMU_TYPE_R4000,
@@ -702,9 +696,6 @@ static const mips_def_t mips_defs[] =
(1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
(1 << FCR0_S) | (0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
.SEGBITS = 42,
- /* The architectural limit is 59, but we have hardcoded 36 bit
- in some places...
- .PABITS = 59, */ /* the architectural limit */
.PABITS = 36,
.insn_flags = CPU_MIPS64R2 | ASE_DSP | ASE_DSPR2,
.mmu_type = MMU_TYPE_R4000,
- [Qemu-devel] [PATCH v2 0/7] target-mips: add support for large physical addresses, Leon Alrae, 2015/06/03
- [Qemu-devel] [PATCH v2 1/7] target-mips: extend selected CP0 registers to 64-bits in MIPS32, Leon Alrae, 2015/06/03
- [Qemu-devel] [PATCH v2 2/7] target-mips: support Page Frame Number Extension field, Leon Alrae, 2015/06/03
- [Qemu-devel] [PATCH v2 5/7] target-mips: correct MFC0 for CP0.EntryLo in MIPS64, Leon Alrae, 2015/06/03
- [Qemu-devel] [PATCH v2 6/7] target-mips: remove misleading comments in translate_init.c,
Leon Alrae <=
- [Qemu-devel] [PATCH v2 3/7] target-mips: add CP0.PageGrain.ELPA support, Leon Alrae, 2015/06/03
- [Qemu-devel] [PATCH v2 4/7] target-mips: add MTHC0 and MFHC0 instructions, Leon Alrae, 2015/06/03
- [Qemu-devel] [PATCH v2 7/7] target-mips: enable XPA and LPA features, Leon Alrae, 2015/06/03