| Commit message (Expand) | Author | Age | Files | Lines |
| * | [DYNAREC] Add a mecanism to remember fixed address accessed with LOCK, so MOV... | ptitSeb | 2022-07-03 | 19 | -267/+306 |
| * | Improved a bit HotPage handling (might help Terraria and RimWorld, maybe other) | ptitSeb | 2022-06-26 | 1 | -3/+37 |
| * | [DYNAREC] Remove assert, the test is not relevent anymore | ptitSeb | 2022-06-25 | 1 | -1/+0 |
| * | [DYNAREC] Fixed an issue with fillPredecessor that would undersize the predec... | ptitSeb | 2022-06-25 | 1 | -3/+3 |
| * | [DYNAREC] Added BRK emitter, to help debugging | ptitSeb | 2022-06-25 | 1 | -0/+4 |
| * | [DYNAREC] Fixed some complex x87 opcode, like FSINCOS (fixed bad camera in Un... | ptitSeb | 2022-06-19 | 1 | -1/+14 |
| * | [DYNAREC] added 67 8B opcode | ptitSeb | 2022-06-11 | 1 | -0/+12 |
| * | Added 67 83 opcode ([DYNAREC] too) (for #323) | ptitSeb | 2022-06-11 | 1 | -0/+78 |
| * | [DYNAREC] Fixed (or least avoid SIGILL) for DD /1 opcode | ptitSeb | 2022-06-11 | 1 | -0/+5 |
| * | Added 67 C7 opcode ([DYNAREC] too) (for #323) | ptitSeb | 2022-06-11 | 1 | -1/+17 |
| * | Fixed a regression with last dynarec refactor (for #318) | ptitSeb | 2022-06-05 | 1 | -0/+2 |
| * | [DYNAREC] Fixed a rare case of crash when crrent block is invalid | ptitSeb | 2022-05-28 | 1 | -1/+1 |
| * | [DYNAREC] Fixed regression on 66 C1 /7 opcode | ptitSeb | 2022-05-28 | 1 | -1/+1 |
| * | [DYNAREC] Various small fixes and improvments to a few opcodes | ptitSeb | 2022-05-26 | 5 | -52/+47 |
| * | [DYNAREC] Fix an issue with LOCK ADD Ew, Iw opcode | ptitSeb | 2022-05-26 | 1 | -3/+3 |
| * | Added and fixed opcodes 66 0F 38 38..3F ([DYNAREC] too) (for #299) | ptitSeb | 2022-05-03 | 1 | -1/+42 |
| * | [DYNAREC] Fixed some issue with XMM cache and Native calls (fixed Zoom title ... | ptitSeb | 2022-04-25 | 1 | -8/+8 |
| * | Small fixes for a few sse opcodes | ptitSeb | 2022-04-25 | 3 | -11/+11 |
| * | [DYNAREC] A small optim of FCOMI macro when OF, AF or SF are needed | ptitSeb | 2022-04-25 | 1 | -11/+12 |
| * | [DYNAREC] Ignore 26 Prefix (for #290) | ptitSeb | 2022-04-23 | 1 | -2/+2 |
| * | [DYNAREC] Ignore 36 prefix for 66 prefixed opcodes (for #290) | ptitSeb | 2022-04-23 | 1 | -1/+1 |
| * | [DYNAREC] No need to save op1 and op2 for defered flag computation on logic o... | ptitSeb | 2022-04-18 | 1 | -36/+3 |
| * | [DYNAREC] Simpler writing for this test | ptitSeb | 2022-04-18 | 1 | -1/+1 |
| * | [DYNAREC] Small optim on flags barrier handling | ptitSeb | 2022-04-18 | 1 | -10/+7 |
| * | [DYNAREC] Added F0 21 opcode | ptitSeb | 2022-04-17 | 1 | -0/+20 |
| * | [DYNAREC] Added 66 0F 3A DF opcode | ptitSeb | 2022-04-17 | 3 | -20/+62 |
| * | [DYNAREC] Added 66 0F 51 opcode | ptitSeb | 2022-04-17 | 1 | -1/+20 |
| * | [DYNAREC] Better handling of opcodes with 66 F0 prefixes | ptitSeb | 2022-04-17 | 4 | -276/+335 |
| * | [DYNAREC] Added 0F AE /7 opcode | ptitSeb | 2022-04-17 | 3 | -0/+15 |
| * | [DYNAREC] Added 66 0F 3A 20 opcode | ptitSeb | 2022-04-17 | 1 | -1/+10 |
| * | [DYNAREC] Added 66 F0 FF and F0 08 opcodes | ptitSeb | 2022-04-17 | 1 | -0/+76 |
| * | [DYNAREC] Added F8/F9 opcodes | ptitSeb | 2022-04-17 | 1 | -0/+12 |
| * | [DYNAREC] Stop spamming about not enough Hotpage after a few message, also ad... | ptitSeb | 2022-04-16 | 1 | -1/+12 |
| * | [DYNAREC] Fixed an issue with internal loop to 1st instruction that then use ... | ptitSeb | 2022-04-16 | 1 | -1/+1 |
| * | Some more NAN bordercase handling ([DYNAREC] too, but made FASTNAN default) | ptitSeb | 2022-04-16 | 2 | -12/+64 |
| * | [DYNAREC] Added option to force x87 to use double (ported from box86) | ptitSeb | 2022-04-13 | 1 | -1/+1 |
| * | [DYNAREC] Fixed some issue with RIP optimisations (Fixed Doom) | ptitSeb | 2022-04-10 | 2 | -1/+6 |
| * | [DYNAREC] Fixed a warning | ptitSeb | 2022-04-10 | 1 | -2/+2 |
| * | [DYNAREC] Refactored dynarec, using box86 refactor | ptitSeb | 2022-04-09 | 28 | -1230/+2633 |
| * | Added 66 (2E) 70-7F opcodes ([DYNAREC] too) (for #271) | ptitSeb | 2022-04-06 | 1 | -0/+19 |
| * | More work on test17, and handling -NAN on divsd | ptitSeb | 2022-04-01 | 3 | -10/+22 |
| * | Added more sse2 opcode to test17, and added nan handling to SQRTSD and MULSD ... | ptitSeb | 2022-04-01 | 4 | -38/+77 |
| * | More cases to test17, and added -NAN generation to divpd ([DYNAREC] too) | ptitSeb | 2022-03-31 | 1 | -2/+15 |
| * | More test17 impovements, fixed NAN for mulpd ([DYNAREC] too, introducing BOX6... | ptitSeb | 2022-03-31 | 1 | -2/+15 |
| * | Improved test17 ([DYNAREC] Added 66 0F 38 16 opcode, fixed 66 0F 38 24/34 opc... | ptitSeb | 2022-03-30 | 1 | -3/+16 |
| * | Added 66 0F 38 30..35 opcodes ([DYNAREC] too) (for #260) | ptitSeb | 2022-03-29 | 1 | -0/+47 |
| * | [DYNAREC] Fixed F0 0F B0 opcode | ptitSeb | 2022-03-26 | 1 | -0/+1 |
| * | [DYNAREC] Added F0 0F B0 opcode | ptitSeb | 2022-03-25 | 1 | -0/+43 |
| * | Fixed RunFunction and DynaCall/EmuCall with stack arguments | ptitSeb | 2022-03-25 | 1 | -2/+0 |
| * | Less log in LOG_INFO level | ptitSeb | 2022-03-19 | 1 | -2/+2 |