summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2021-10-25LibJS: Make bytecode VM throw TypeError on attempt to call non-callableAndreas Kling
2021-10-25LibJS: Fix bogus bytecode codegen for "catch" parametersAndreas Kling
2021-10-25Profiler: Fix disassembling objects with a non-zero `.text` vaddrDaniel Bertalan
2021-10-25LibX86: Take load base address into consideration during disassemblyDaniel Bertalan
2021-10-25Profiler: Subtract the kernel's base address when searching for symbolsDaniel Bertalan
2021-10-24LibC: Fix `%n` conversion specifier in scanf() formatJelle Raaijmakers
2021-10-24LibTest: Introduce a macro to only compare truthinessTim Schumacher
2021-10-24LibHTTP: Reset m_content_length if there's a Transfer-Encoding headerKarol Kosek
2021-10-24LibHTTP: Trim the last packet if it exceeded the Content-Length valueKarol Kosek
2021-10-24LibHTTP: Store Content-Length value in the HTTP Job classKarol Kosek
2021-10-24LibHTTP: Fix buffer overflow when body is larger than the Content-LengthKarol Kosek
2021-10-24Profiler: Handle profiles with more kernel samples than user samplesIdan Horowitz
2021-10-24Profiler: Use profile length in ms as histogram column count directlyIdan Horowitz
2021-10-24LibWeb: Remove now-unnecessary String copy when parsing CSS colorsSam Atkins
2021-10-24LibGfx: Make Color::from_string() case-insensitiveSam Atkins
2021-10-24LibGfx: Make Color use east-constSam Atkins
2021-10-24WindowServer: Prevent sending duplicate MousePackets when clickingJelle Raaijmakers
2021-10-24WindowServer: Deduplicate code for mouse Z state in EventLoopJelle Raaijmakers
2021-10-24WindowServer: Simplify mouse button handling logic in EventLoopJelle Raaijmakers
2021-10-24UE: Properly align stack for signal handlersDaniel Bertalan
2021-10-24LibJS: Optimize Value::to_property_key() for numeric property namesAndreas Kling
2021-10-24LibJS: Make Value::to_property_key() return a JS::PropertyKeyAndreas Kling
2021-10-24LibJS: Provide default hash traits for JS::PropertyKeyAndreas Kling
2021-10-24LibJS: Use PropertyKey in MemberExpression::to_reference()Andreas Kling
2021-10-24LibJS: Make make_super_property_reference() take a PropertyKeyAndreas Kling
2021-10-24LibJS: Rename PropertyName to PropertyKeyAndreas Kling
2021-10-24LibJS: Add the "fast non-local access" optimization to the bytecode VMAndreas Kling
2021-10-24LibJS: Add a separate "identifier table" to bytecode executablesAndreas Kling
2021-10-24LibJS: Use String and move semantics in Bytecode::StringTableAndreas Kling
2021-10-24LibJS: Implement 'this' in the bytecode VMAndreas Kling
2021-10-24LibJS: Alphabetize the bytecode opcode listAndreas Kling
2021-10-24LibJS: Include executable name in bytecode dumpsAndreas Kling
2021-10-24LibJS: Move global "should dump bytecode" flag into LibJSAndreas Kling
2021-10-24LibJS: Add Bytecode::Executable::dump()Andreas Kling
2021-10-24PixelPaint: Move Mask::{get, set, to_index} to the header fileIdan Horowitz
2021-10-24LibJS: Don't VERIFY that a function is Regular when executing in ASTdavidot
2021-10-23LibC: Use a sensible `MB_CUR_MAX` valueDaniel Bertalan
2021-10-23LibC: Define locale categories (LC_*) as macrosDaniel Bertalan
2021-10-24LibCore: Pop the main Core::EventLoop off the stack when destroyedAndreas Kling
2021-10-24LibIPC: Use a zero-delay timer for message processingAndreas Kling
2021-10-24LibIPC: Store local endpoint magic in a ConnectionBase memberAndreas Kling
2021-10-24LibIPC: Move waiting for synchronous responses to ConnectionBaseAndreas Kling
2021-10-24LibIPC: Move more of IPC::Connection to ConnectionBaseAndreas Kling
2021-10-24LibIPC: Move non-templated parts of IPC::Connection out of lineAndreas Kling
2021-10-24LibIPC: Add missing <signal.h> includeAndreas Kling
2021-10-24LibIPC: Add IPC::Stub to forwarding headerAndreas Kling
2021-10-23Shell: Prevent exponential explosion around '$(('Ben Wiederhake
2021-10-23LibJS: Convert a few TRYs to MUST in RegExp.prototypeTimothy Flynn
2021-10-23AK+Everywhere: Make Base64 decoding fallibleBen Wiederhake
2021-10-23LibJS: Convert Atomics functions to ThrowCompletionOrTimothy Flynn