summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWasm/AbstractMachine
AgeCommit message (Expand)Author
2022-01-07Everywhere: Fix many spelling errorsmjz19910
2022-01-04Userland: Resolve tautological-constant-out-of-range-compare warningsAndrew Kaster
2021-12-21AK+Everywhere: Replace __builtin bit functionsNick Johnson
2021-12-21LibWasm: Fix silly typo in f32 reinterpret validationAli Mohammad Pur
2021-12-21LibWasm: Make blocks that take arguments actually workAli Mohammad Pur
2021-12-21LibWasm: Implement memory.init and passive mode dataAli Mohammad Pur
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-11-11LibWasm: Fix broken build after merging un-rebased Validator changesAndreas Kling
2021-11-11LibWasm: Remove traps caught by validationAli Mohammad Pur
2021-11-11LibWasm: Implement module validationAli Mohammad Pur
2021-11-10AK: Make ByteBuffer::try_* functions return ErrorOr<void>Andreas Kling
2021-11-10AK: Make Vector::try_* functions return ErrorOr<void>Andreas Kling
2021-09-21Libraries: Use AK::Variant default initialization where appropriateBen Wiederhake
2021-09-11LibWasm: Avoid making StringView of temporary ByteBufferBen Wiederhake
2021-09-07Everywhere: Behaviour => BehaviorAndreas Kling
2021-09-06Everywhere: Use OOM-safe ByteBuffer APIs where possibleAli Mohammad Pur
2021-09-05LibWeb+LibWasm: Implement the WebAssembly.Table objectAli Mohammad Pur
2021-08-30LibWasm: Make the Truncate operator trap on undefined resultsAli Mohammad Pur
2021-08-30LibWasm: Implement fx.nearest using nearbyint() instead of round()Ali Mohammad Pur
2021-08-26LibWasm: Use Operators::BitShiftRight for i64.shruAli Mohammad Pur
2021-08-12LibWasm: Move some Values and Vector<Value>s instead of copying themAli Mohammad Pur
2021-08-12LibWasm: Avoid calculating stack bounds on each wasm callAli Mohammad Pur
2021-08-12LibWasm: Generate Value::type() on the fly instead of storing itAli Mohammad Pur
2021-08-12LibWasm: Replace memory write macros with templated functionsAli Mohammad Pur
2021-08-12LibWasm: Make memory operation address calculation match the specAli Mohammad Pur
2021-08-12LibWasm: Replace memory read macros with templated functionsAli Mohammad Pur
2021-08-12LibWasm: Replace the numeric operation macros with templated functionsAli Mohammad Pur
2021-07-17LibWasm: Remove a useless use of ScopeGuardAli Mohammad Pur
2021-07-17LibWasm+Everywhere: Make the instruction count limit configurableAli Mohammad Pur
2021-07-17LibWasm: Inline some very hot functionsAli Mohammad Pur
2021-07-17Revert "LibWasm: Some more performance stuff (#8812)"Ali Mohammad Pur
2021-07-17LibWasm: Some more performance stuff (#8812)Ali Mohammad Pur
2021-07-12LibWasm: Adjust signed integer operations to avoid UBAndrew Kaster
2021-07-12LibWasm: Skip initializing active empty data sectionsAli Mohammad Pur
2021-07-12LibWasm: Use AK::StackInfo to track stack sizeAli Mohammad Pur
2021-07-06LibWasm: Don't create useless temporary strings for trap reasonsAli Mohammad Pur
2021-07-06LibWasm: Allow overflow in normal 64-bit arithmetic instructionsAli Mohammad Pur
2021-07-06LibWasm: Limit module memory to 65536 pagesAli Mohammad Pur
2021-07-06LibWasm: Fix data section initialization bounds checkingAli Mohammad Pur
2021-07-06LibWasm: Jump to the default label in br_table with negative valuesAli Mohammad Pur
2021-07-06LibWasm: Use the number of bytes when comparing memory limitsAli Mohammad Pur
2021-07-06LibWasm: Guard stack accesses with checksAli Mohammad Pur
2021-07-04Everywhere: Fix incorrect usages of AK::CheckedIdan Horowitz
2021-07-02LibWasm: Give traps a reason and display it when neededAli Mohammad Pur
2021-06-26AK: Undo bogus Variant::downcast() renameAndreas Kling
2021-06-24AK: Rename downcast<T> => verify_cast<T>Andreas Kling
2021-06-22LibWasm: Limit the call stack depth and the number of executed instsAli Mohammad Pur
2021-06-22LibWasm: Trap if a non-Value is used as a ValueAli Mohammad Pur
2021-06-20LibWasm: Remove empty AbstractMachine/Interpreter.cppLinus Groh
2021-06-09LibWasm: ALWAYS_INLINE some very hot functionsAli Mohammad Pur