summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Bytecode/Op.cpp
AgeCommit message (Expand)Author
2021-06-19LibJS: Support object rest elements in the bytecode interpreterMatthew Olsson
2021-06-19LibJS: Support array rest elements in the bytecode interpreterMatthew Olsson
2021-06-19LibJS: Implement array destructuring for the bytecode interpreterMatthew Olsson
2021-06-19LibJS: Add JumpUndefined bytecodeMatthew Olsson
2021-06-19LibJS: Ensure GetBy{Id,Value} never load <empty> into the accumulatorMatthew Olsson
2021-06-16LibJS: Replace Object's create_empty() with create() taking a prototypeLinus Groh
2021-06-15LibJS: Add a basic pass manager and add some basic passesAli Mohammad Pur
2021-06-15LibJS: Rename the overridden Instruction methods to foo_implAli Mohammad Pur
2021-06-15LibJS: Make EnterUnwindContext a terminator opAli Mohammad Pur
2021-06-14LibJS: Add LoadArgument bytecode instruction for fast argument accessAndreas Kling
2021-06-11LibJS: Use an enum class instead of 'bool is_generator'Ali Mohammad Pur
2021-06-11LibJS: Add bytecode generation for FunctionExpression :^)Andreas Kling
2021-06-11LibJS: Basic bytecode support for computed member expressionsAndreas Kling
2021-06-11LibJS: Implement generator functions (only in bytecode mode)Ali Mohammad Pur
2021-06-10LibJS: Remove GlobalObject& argument from VM::construct()Andreas Kling
2021-06-10LibJS: Very basic support for "new" construction in bytecode VMAndreas Kling
2021-06-10LibJS: Generate bytecode for entering nested lexical environmentsAndreas Kling
2021-06-10LibJS: Perform function instantiation in bytecodeAndreas Kling
2021-06-10LibJS: Implement bytecode generation for try..catch..finallyGunnar Beutner
2021-06-09LibJS: Generate bytecode for throw statementsGunnar Beutner
2021-06-09LibJS: Store strings in a string tableGunnar Beutner
2021-06-09LibJS: Implement bytecode generation for UpdateExpression :^)Andreas Kling
2021-06-09LibJS: Simplify the way we stringify bytecode instructionsAndreas Kling
2021-06-09LibJS: Move Bytecode::Instruction::execute() to the Op.h headerAndreas Kling
2021-06-09LibJS: Generate bytecode in basic blocks instead of one big blockAli Mohammad Pur
2021-06-09LibJS: Generate bytecode for array expressionsGunnar Beutner
2021-06-08LibJS: Introduce an accumulator register to Bytecode::InterpreterMatthew Olsson
2021-06-08LibJS: Implement bytecode generation for BigIntsGunnar Beutner
2021-06-08LibJS: Implement bytecode ops for logical expressionsGunnar Beutner
2021-06-08LibJS: Convert values to boolean for JumpIfTrue/JumpIfFalseGunnar Beutner
2021-06-07LibJS: Use macros to generate the common unary/binary bytecode opsAndreas Kling
2021-06-07LibJS: Add bytecode generation for BinaryOp::InstanceOfLinus Groh
2021-06-07LibJS: Add bytecode generation for BinaryOp::InLinus Groh
2021-06-07LibJS: Make sure that if expressions yield the correct valueGunnar Beutner
2021-06-07LibJS: Add bytecode ops for <<, >> and >>>Luke
2021-06-07LibJS: Add support for typed equality checksRyan Chandler
2021-06-07LibJS: Add bytecode instructions for a bunch of unary operatorsLinus Groh
2021-06-07LibJS: Remove redundant Value() from bytecode bitwise ops execute()Linus Groh
2021-06-07LibJS: Add bytecode ops for &, | and ^Luke
2021-06-07LibJS: Add bytecode ops for >, >= and <=Gunnar Beutner
2021-06-07LibJS: Add bytecode instructions for modulo and exponentiationGunnar Beutner
2021-06-07LibJS: Add bytecode instructions for multiplication and divisionGunnar Beutner
2021-06-07LibJS: Devirtualize and pack the bytecode stream :^)Andreas Kling
2021-06-07LibJS: Add AbstractEquals bytecode instruction for == comparison :^)Andreas Kling
2021-06-07LibJS: Add basic "if" statement support to the bytecode VM :^)Andreas Kling
2021-06-07LibJS: Compile ScriptFunctions into bytecode and run them that way :^)Andreas Kling
2021-06-07LibJS: Support basic function calls in the bytecode world :^)Andreas Kling
2021-06-07LibJS: Add a new EnterScope bytecode instructionAndreas Kling
2021-06-07LibJS: Add GetById bytecode instruction for object property retrievalAndreas Kling
2021-06-07LibJS: Add PutById bytecode instruction for object property assignmentAndreas Kling