diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2021-02-16 15:04:19 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-16 19:04:19 +0100 |
| commit | 715b605e9541cd5a7e4cce7609d96dbc41cd0326 (patch) | |
| tree | 1be96f6e66de50f80d34541175e601f79679c86d /ARMeilleure/Translation | |
| parent | 6f1d9648016c9442f6dcdac257f28c1a7a19aca0 (diff) | |
Validate CPU virtual addresses on access (#1987)
* Enable PTE null checks again
* Do address validation on EmitPtPointerLoad, and make it branchless
* PTC version increment
* Mask of pointer tag for exclusive access
* Move mask to the correct place
Co-authored-by: LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com>
Diffstat (limited to 'ARMeilleure/Translation')
| -rw-r--r-- | ARMeilleure/Translation/PTC/Ptc.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ARMeilleure/Translation/PTC/Ptc.cs b/ARMeilleure/Translation/PTC/Ptc.cs index 846c01cd..f3f209f0 100644 --- a/ARMeilleure/Translation/PTC/Ptc.cs +++ b/ARMeilleure/Translation/PTC/Ptc.cs @@ -22,7 +22,7 @@ namespace ARMeilleure.Translation.PTC { private const string HeaderMagic = "PTChd"; - private const int InternalVersion = 1971; //! To be incremented manually for each change to the ARMeilleure project. + private const int InternalVersion = 1987; //! To be incremented manually for each change to the ARMeilleure project. private const string ActualDir = "0"; private const string BackupDir = "1"; |
