summaryrefslogtreecommitdiff
path: root/DevTools/UserspaceEmulator
AgeCommit message (Expand)Author
2020-08-05UserspaceEmulator: Add the getcwd syscallAndreas Kling
2020-08-05UserspaceEmulator: Add the ttyname syscallAndreas Kling
2020-08-05UserspaceEmulator: Support ioctl(TIOCSPGRP)Andreas Kling
2020-08-05UserspaceEmulator: Add the getpgrp syscallAndreas Kling
2020-08-05UserspaceEmulator: Add support for UNIX signals :^)Andreas Kling
2020-08-01UserspaceEmulator: Don't print backtrace offsets if we have file/lineAndreas Kling
2020-08-01UserspaceEmulator: Report heap buffer overflows :^)Andreas Kling
2020-08-01UserspaceEmulator: Mark mmap regions as malloc blocks when mallocingAndreas Kling
2020-08-01UserspaceEmulator: Forward errors from fork() correctlyAndreas Kling
2020-07-31UserspaceEmulator: Use a report() function instead of dbgprintf()Andreas Kling
2020-07-30LibX86: Disassemble most remaining FPU instructionsNico Weber
2020-07-28LibX86: Disassemble most FPU instructions starting with D9Nico Weber
2020-07-28UserspaceEmulator: Add syscalls: stat(), realpath(), gethostname()Andreas Kling
2020-07-28UserspaceEmulator: Don't just return "EMULATED" in get_process_name()Andreas Kling
2020-07-28UserspaceEmulator: Support ioctl(TIOCGWINSZ)Andreas Kling
2020-07-27UserspaceEmulator: Set the process and thread name to "(UE) Executable"Andreas Kling
2020-07-27UserspaceEmulator: Implement the execve() syscall :^)Andreas Kling
2020-07-27UserspaceEmulator: Implement the fork() syscall :^)Andreas Kling
2020-07-27UserspaceEmulator: Implement the setuid() and setgid() syscallsAndreas Kling
2020-07-27UserspaceEmulator: Implement the accept() and setsockopt() syscallsAndreas Kling
2020-07-27UserspaceEmulator: Transfer the environment to the emulated processAndreas Kling
2020-07-27UserspaceEmulator: Mark SimpleRegions as initialized up front for nowAndreas Kling
2020-07-27UserspaceEmulator: Recognize xor/sub zeroing idioms and don't taintAndreas Kling
2020-07-26LibX86: Support disassembling a few FPU opcodes betterNico Weber
2020-07-22UserspaceEmulator: XLAT BX should not check full EBX shadow bitsAndreas Kling
2020-07-21UserspaceEmulator: Tweak some output stringsAndreas Kling
2020-07-21UserspaceEmulator: Include flag taint state in dump outputAndreas Kling
2020-07-21UserspaceEmulator: Use the base address of instructions in backtracesAndreas Kling
2020-07-21UserspaceEmulator: Add a newline before uninitialized op warningsAndreas Kling
2020-07-21UserspaceEmulator: Show file and line numbers in backtraces :^)Andreas Kling
2020-07-21UserspaceEmulator: Remove unnecessary local getpid() cachesAndreas Kling
2020-07-21UserspaceEmulator: Don't hardcode the amount of thread-local dataAndreas Kling
2020-07-21UserspaceEmulator: Warn on conditional op with uninitialized dependencyAndreas Kling
2020-07-21UserspaceEmulator: Flush stdout in SoftCPU::dump()Andreas Kling
2020-07-21UserspaceEmulator: Mark all registers as initialized from bootAndreas Kling
2020-07-21UserspaceEmulator: Mark mmap and shbuf regions as initialized up frontAndreas Kling
2020-07-21UserspaceEmulator: Mark the full initial TCB as initialized memoryAndreas Kling
2020-07-21UserspaceEmulator+LibX86: Start tracking uninitialized memory :^)Andreas Kling
2020-07-18UserspaceEmulator: Add the get_dir_entries() syscall + an ioctl() stubAndreas Kling
2020-07-18UserspaceEmulator: Fix buggy IDIV instructionsAndreas Kling
2020-07-18UserspaceEmulator: Fix buggy IMUL instructionsAndreas Kling
2020-07-18UserspaceEmulator: Add single-operand MUL and DIV instructionsAndreas Kling
2020-07-18UserspaceEmulator: Implement the BSF and BSF instructionsAndreas Kling
2020-07-18UserspaceEmulator: Fix XCHG_AX_reg16 overwriting entire EAXAndreas Kling
2020-07-18UserspaceEmulator: Simplify the STOSB/STOSW/STOSD instructionsAndreas Kling
2020-07-18UserspaceEmulator: Simplify MOVSB/MOVSW/MOVSD instructionsAndreas Kling
2020-07-18UserspaceEmulator: Implement the SCASB/SCASW/SCASD instructionsAndreas Kling
2020-07-18UserspaceEmulator: Implement the LODSB/LODSW/LODSD instructionsAndreas Kling
2020-07-18UserspaceEmulator: Implement the JCXZ instructionAndreas Kling
2020-07-18UserspaceEmulator: Fix too-wide accumulator used in 8/16 bit CMPXCHGAndreas Kling