35 | | PPN2 Physical Page Number Concatened to the page offset to build the 40 bits address |
36 | | V Valid entry Valid entry when 1 (set by the OS) |
37 | | T entry Type Must be 0 for a PTE2 (set by the OS) |
38 | | L Local access Used by the OS for page replacement (set by the hardware) |
39 | | R Remote access Used by the OS for page replacement (set by the hardware) |
40 | | C Cachable The page is cachable in the L1 cache when 1 (set by the OS) |
41 | | W Writable The page is writable when 1 (set by the OS) |
42 | | X eXecutable The page can contain instructions when 1 (set by the OS) |
43 | | U User The page accessible in user mode when 1 (set by the OS) |
44 | | G Global Entry not invalidated in TLB flush when 1 (set by the OS) |
45 | | D Dirty The page has been modified when 1 (set by the hardware) |
| 39 | The PTE2 fields are defined as follows : |
| 40 | |
| 41 | || PPN2 || Physical Page Number || 28 bits : Concatened to the page offset to build the 40 bits address || |
| 42 | || V || Valid bit || Valid entry when 1 (set by the OS) || |
| 43 | || T || Type bit || PTD when 1 / Must be 0 for a PTE2 (set by the OS) || |
| 44 | || L || Local access bit || Used by the OS for page replacement (set by the hardware) || |
| 45 | || R || Remote access bit || Used by the OS for page replacement (set by the hardware) || |
| 46 | || C || Cachable bit || The page is cachable in the L1 cache when 1 (set by the OS) || |
| 47 | || W || Writable bit || The page is writable when 1 (set by the OS) || |
| 48 | || X || eXecutable bit || The page can contain instructions when 1 (set by the OS) || |
| 49 | || U || User bit || The page is accessible in user mode when 1 (set by the OS) || |
| 50 | || G || Global bit || Entry not invalidated in TLB flush when 1 (set by the OS) || |
| 51 | || D || Dirty bit || The page has been modified when 1 (set by the hardware) || |