index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Userland
/
Libraries
/
LibJS
/
Bytecode
/
Op.cpp
Age
Commit message (
Expand
)
Author
2021-06-19
LibJS: Support object rest elements in the bytecode interpreter
Matthew Olsson
2021-06-19
LibJS: Support array rest elements in the bytecode interpreter
Matthew Olsson
2021-06-19
LibJS: Implement array destructuring for the bytecode interpreter
Matthew Olsson
2021-06-19
LibJS: Add JumpUndefined bytecode
Matthew Olsson
2021-06-19
LibJS: Ensure GetBy{Id,Value} never load <empty> into the accumulator
Matthew Olsson
2021-06-16
LibJS: Replace Object's create_empty() with create() taking a prototype
Linus Groh
2021-06-15
LibJS: Add a basic pass manager and add some basic passes
Ali Mohammad Pur
2021-06-15
LibJS: Rename the overridden Instruction methods to foo_impl
Ali Mohammad Pur
2021-06-15
LibJS: Make EnterUnwindContext a terminator op
Ali Mohammad Pur
2021-06-14
LibJS: Add LoadArgument bytecode instruction for fast argument access
Andreas Kling
2021-06-11
LibJS: Use an enum class instead of 'bool is_generator'
Ali Mohammad Pur
2021-06-11
LibJS: Add bytecode generation for FunctionExpression :^)
Andreas Kling
2021-06-11
LibJS: Basic bytecode support for computed member expressions
Andreas Kling
2021-06-11
LibJS: Implement generator functions (only in bytecode mode)
Ali Mohammad Pur
2021-06-10
LibJS: Remove GlobalObject& argument from VM::construct()
Andreas Kling
2021-06-10
LibJS: Very basic support for "new" construction in bytecode VM
Andreas Kling
2021-06-10
LibJS: Generate bytecode for entering nested lexical environments
Andreas Kling
2021-06-10
LibJS: Perform function instantiation in bytecode
Andreas Kling
2021-06-10
LibJS: Implement bytecode generation for try..catch..finally
Gunnar Beutner
2021-06-09
LibJS: Generate bytecode for throw statements
Gunnar Beutner
2021-06-09
LibJS: Store strings in a string table
Gunnar Beutner
2021-06-09
LibJS: Implement bytecode generation for UpdateExpression :^)
Andreas Kling
2021-06-09
LibJS: Simplify the way we stringify bytecode instructions
Andreas Kling
2021-06-09
LibJS: Move Bytecode::Instruction::execute() to the Op.h header
Andreas Kling
2021-06-09
LibJS: Generate bytecode in basic blocks instead of one big block
Ali Mohammad Pur
2021-06-09
LibJS: Generate bytecode for array expressions
Gunnar Beutner
2021-06-08
LibJS: Introduce an accumulator register to Bytecode::Interpreter
Matthew Olsson
2021-06-08
LibJS: Implement bytecode generation for BigInts
Gunnar Beutner
2021-06-08
LibJS: Implement bytecode ops for logical expressions
Gunnar Beutner
2021-06-08
LibJS: Convert values to boolean for JumpIfTrue/JumpIfFalse
Gunnar Beutner
2021-06-07
LibJS: Use macros to generate the common unary/binary bytecode ops
Andreas Kling
2021-06-07
LibJS: Add bytecode generation for BinaryOp::InstanceOf
Linus Groh
2021-06-07
LibJS: Add bytecode generation for BinaryOp::In
Linus Groh
2021-06-07
LibJS: Make sure that if expressions yield the correct value
Gunnar Beutner
2021-06-07
LibJS: Add bytecode ops for <<, >> and >>>
Luke
2021-06-07
LibJS: Add support for typed equality checks
Ryan Chandler
2021-06-07
LibJS: Add bytecode instructions for a bunch of unary operators
Linus Groh
2021-06-07
LibJS: Remove redundant Value() from bytecode bitwise ops execute()
Linus Groh
2021-06-07
LibJS: Add bytecode ops for &, | and ^
Luke
2021-06-07
LibJS: Add bytecode ops for >, >= and <=
Gunnar Beutner
2021-06-07
LibJS: Add bytecode instructions for modulo and exponentiation
Gunnar Beutner
2021-06-07
LibJS: Add bytecode instructions for multiplication and division
Gunnar Beutner
2021-06-07
LibJS: Devirtualize and pack the bytecode stream :^)
Andreas Kling
2021-06-07
LibJS: Add AbstractEquals bytecode instruction for == comparison :^)
Andreas Kling
2021-06-07
LibJS: Add basic "if" statement support to the bytecode VM :^)
Andreas Kling
2021-06-07
LibJS: Compile ScriptFunctions into bytecode and run them that way :^)
Andreas Kling
2021-06-07
LibJS: Support basic function calls in the bytecode world :^)
Andreas Kling
2021-06-07
LibJS: Add a new EnterScope bytecode instruction
Andreas Kling
2021-06-07
LibJS: Add GetById bytecode instruction for object property retrieval
Andreas Kling
2021-06-07
LibJS: Add PutById bytecode instruction for object property assignment
Andreas Kling
[next]