mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
e bitfields in mips TLB structures (Thiemo Seufer).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1774 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
6d6f7c288d
commit
98c1b82b6c
3 changed files with 35 additions and 41 deletions
|
@ -21,11 +21,14 @@ struct tlb_t {
|
|||
target_ulong VPN;
|
||||
target_ulong end;
|
||||
target_ulong end2;
|
||||
uint8_t ASID;
|
||||
uint8_t G;
|
||||
uint8_t C[2];
|
||||
uint8_t V[2];
|
||||
uint8_t D[2];
|
||||
uint_fast8_t ASID;
|
||||
uint_fast16_t G:1;
|
||||
uint_fast16_t C0:3;
|
||||
uint_fast16_t C1:3;
|
||||
uint_fast16_t V0:1;
|
||||
uint_fast16_t V1:1;
|
||||
uint_fast16_t D0:1;
|
||||
uint_fast16_t D1:1;
|
||||
target_ulong PFN[2];
|
||||
};
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue