summaryrefslogtreecommitdiff
path: root/DevTools
AgeCommit message (Expand)Author
2020-07-16UserspaceEmulator: Fix incorrect SALC behaviorAndreas Kling
2020-07-16UserspaceEmulator: Let's say "Use-after-free" instead of "UAF"Andreas Kling
2020-07-16UserspaceEmulator: Cache the location and size of "malloc" and "free"Andreas Kling
2020-07-15UserspaceEmulator: Don't complain about free(nullptr)Andreas Kling
2020-07-15UserspaceEmulator: Add the getrandom() syscallAndreas Kling
2020-07-15UserspaceEmulator: Fix bogus use of "errno" in shbuf related syscallsAndreas Kling
2020-07-15UserspaceEmulator: Log invalid and double free() calls :^)Andreas Kling
2020-07-15UserspaceEmulator: Catch use-after-frees by tracking malloc/free :^)Andreas Kling
2020-07-15UserspaceEmulator: Add some more syscalls :^)Andreas Kling
2020-07-15UserspaceEmulator: Add partial support for the SHLD/SHRD instructionsAndreas Kling
2020-07-15UserspaceEmulator: Add support for shared buffers (shbuf)Andreas Kling
2020-07-15UserspaceEmulator: Dump backtrace on FPU instructionAndreas Kling
2020-07-15UserspaceEmulator: Implement MUL_RM32Andreas Kling
2020-07-15UserspaceEmulator: Implement the 32-bit BSWAP instruction :^)Andreas Kling
2020-07-15UserspaceEmulator: Implement an assortment of system callsAndreas Kling
2020-07-15UserspaceEmulator: Implement IDIV_RM32Andreas Kling
2020-07-15UserspaceEmulator: Implement the CBW/CDQ/CWD/CWDE instructionsAndreas Kling
2020-07-15LibX86+UserspaceEmulator: Don't store a32 in MemoryOrRegisterReferenceAndreas Kling
2020-07-15UserspaceEmulator: Implement virt$pipe()Sergey Bugaev
2020-07-15LibGUI: Use enum for TextEditor modes & add new DisplayOnly modethankyouverycool
2020-07-13LibX86+UserspaceEmulator: Devirtualize and inline more instruction codeAndreas Kling
2020-07-13UserspaceEmulator: Mark some generic instructions ALWAYS_INLINE :^)Andreas Kling
2020-07-13UserspaceEmulator: Move the SoftCPU stream virtuals to the headerAndreas Kling
2020-07-13UserspaceEmulator+LibX86: Turn on -O3 optimization for emulation codeAndreas Kling
2020-07-13UserspaceEmulator: Add a very simple instruction fetch cacheAndreas Kling
2020-07-13UserspaceEmulator: Add the POPFD instructionAndreas Kling
2020-07-13UserspaceEmulator: Add the NOT instruction (with bonus: NOP!)Andreas Kling
2020-07-13UserspaceEmulator: Add the STC/CLC and STD/CLD instructionsAndreas Kling
2020-07-13UserspaceEmulator: Implement the ADC instructionAndreas Kling
2020-07-13UserspaceEmulator: Make SBB actually respect the SoftCPU carry flagAndreas Kling
2020-07-13UserspaceEmulator: Remove an unnecessary step in some instructionsAndreas Kling
2020-07-13UserspaceEmulator: Fix wrong ESI/EDI step sizes in MOVSW and MOVSDAndreas Kling
2020-07-13UserspaceEmulator: Add some more syscallsAndreas Kling
2020-07-13UserspaceEmulator: Add basic support for memory-mapped filesAndreas Kling
2020-07-13UserspaceEmulator: Implement the PUSHFD instructionAndreas Kling
2020-07-13UserspaceEmulator: Make mmap'ed memory track read/write protectionAndreas Kling
2020-07-13UserspaceEmulator: Pass arguments through to emulated processAndreas Kling
2020-07-13UserspaceEmulator: Move SimpleRegion to its own filesAndreas Kling
2020-07-13UserspaceEmulator: Support the fstat() and get_process_name() syscallsAndreas Kling
2020-07-12UserspaceEmulator: Move exit() syscall logging to debug outputAndreas Kling
2020-07-12UserspaceEmulator: Put some syscall logging behind DEBUG_SPAMAndreas Kling
2020-07-12UserspaceEmulator: Implement enough syscalls to get /bin/id running :^)Andreas Kling
2020-07-12UserspaceEmulator: Implement/stub out various syscallsAndreas Kling
2020-07-12UserspaceEmulator: Disable per-instruction trace dumps for nowAndreas Kling
2020-07-12UserspaceEmulator: Put the executable name in argv[0] :^)Andreas Kling
2020-07-12UserspaceEmulator: Add Emulator::dump_backtrace()Andreas Kling
2020-07-12UserspaceEmulator: "Add" a couple of syscallsAndreas Kling
2020-07-12UserspaceEmulator: Fix missing sign extension in PUSH_imm8Andreas Kling
2020-07-12UserspaceEmulator: Add some convenient SoftMMU APIs for copying dataAndreas Kling
2020-07-12UserspaceEmulator: Implement the XADD instructionAndreas Kling