serenity/DevTools
Andreas Kling 5ba2022b8e UserspaceEmulator: Result is initialized after OR with all-1 immediate
When compiling with "-Os", GCC produces the following pattern for
atomic decrement (which is used by our RefCounted template):

    or eax, -1
    lock xadd [destination], eax

Since or-ing with -1 will always produce the same output (-1), we can
mark the result of these operations as initialized. This stops us from
complaining about false positives when running the shell in UE. :^)
2020-08-07 15:41:53 +02:00
..
FormCompiler AK: JsonParser improvements 2020-06-13 12:43:22 +02:00
HackStudio Base: Move "js" and "little" HackStudio projects into ~/Source/ 2020-08-05 17:40:47 +02:00
Inspector DevTools: Let Inspector use ProcessChooser and new icons. 2020-07-28 16:29:36 +02:00
IPCCompiler AK: Make string-to-number conversion helpers return Optional 2020-06-12 21:28:55 +02:00
Profiler DevTools+LibGUI: Make ProcessChooser a general Dialog in LibGUI 2020-07-28 16:29:36 +02:00
UserspaceEmulator UserspaceEmulator: Result is initialized after OR with all-1 immediate 2020-08-07 15:41:53 +02:00
VisualBuilder LibWeb: Require parent window argument for MessageBox 2020-07-16 16:10:21 +02:00
CMakeLists.txt UserspaceEmulator: Start building a userspace X86 emulator :^) 2020-07-07 22:44:58 +02:00