mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibX86: Add CMPXCHG8B, RDRAND and RDSEED
With this we can run following script with no errors: ```sh for /usr/lib/*.so { disasm "$it" > /dev/zero } ```
This commit is contained in:
parent
688782efab
commit
7ba2e5e3e7
Notes:
sideshowbarker
2024-07-17 14:19:41 +09:00
Author: https://github.com/Hendiadyoin1
Commit: 7ba2e5e3e7
Pull-request: https://github.com/SerenityOS/serenity/pull/13541
5 changed files with 40 additions and 1 deletions
|
@ -657,7 +657,13 @@ public:
|
|||
virtual void wrap_0xD3_16(Instruction const&) = 0;
|
||||
virtual void wrap_0xD3_32(Instruction const&) = 0;
|
||||
|
||||
virtual void PREFETCHTNTA(Instruction const&) = 0;
|
||||
virtual void CMPXCHG8B_m64(Instruction const&) = 0;
|
||||
virtual void RDRAND_reg(Instruction const&) = 0;
|
||||
virtual void RDSEED_reg(Instruction const&) = 0;
|
||||
|
||||
virtual void
|
||||
PREFETCHTNTA(Instruction const&)
|
||||
= 0;
|
||||
virtual void PREFETCHT0(Instruction const&) = 0;
|
||||
virtual void PREFETCHT1(Instruction const&) = 0;
|
||||
virtual void PREFETCHT2(Instruction const&) = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue