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
/
Interpreter.cpp
Age
Commit message (
Expand
)
Author
2022-10-19
LibJS: Disable bytecode optimizations by default
Andreas Kling
2022-08-23
LibJS: Remove Bytecode::Register::global_object()
Linus Groh
2022-08-23
LibJS: Remove {Bytecode::,}Interpreter::global_object()
Linus Groh
2022-07-18
LibJS/Bytecode: Determine strict mode on an executable basis
Luke Wilde
2022-04-18
LibJS: Avoid copying the frame into the interpreter in BC generators
Ali Mohammad Pur
2022-03-18
LibJS: Add infallible variant of VM::push_execution_context()
Linus Groh
2022-03-14
LibJS: Leave unwind context if it has no finalizer when using handler
Luke Wilde
2022-02-13
LibJS: More properly implement scoping rules in bytecode codegen
Ali Mohammad Pur
2022-02-13
LibJS: Implement the NewClass opcode
Ali Mohammad Pur
2022-02-08
LibJS+Everywhere: Remove VM::exception() and most related functions
davidot
2022-02-08
LibJS: Always pop the execution context if we pushed one for bytecode
davidot
2022-02-08
LibJS: Convert Instruction::execute in bytecode to ThrowCompletionOr
davidot
2022-01-24
LibJS: Fix the execution context for the bytecode interpreter
davidot
2022-01-08
LibJS: Remove now unused VM::{set_,}last_value()
Linus Groh
2021-11-14
LibJS: Convert push_execution_context() to ThrowCompletionOr
Linus Groh
2021-11-12
LibJS+LibTest+js: Convert BC::Interpreter::run to ThrowCompletionOr<>
Ali Mohammad Pur
2021-11-12
LibJS: Run the queued promise reaction jobs on bytecode interpreter exit
Ali Mohammad Pur
2021-11-12
LibJS: Make Bytecode::Interpreter return the popped frame
Ali Mohammad Pur
2021-10-25
LibJS: Propagate exceptions across bytecode executable boundaries
Andreas Kling
2021-10-25
LibJS: Make bytecode interpreter leave unwind context immediately
Andreas Kling
2021-10-24
LibJS: Move global "should dump bytecode" flag into LibJS
Andreas Kling
2021-09-13
LibJS: Also set ExecutionContext::realm in Bytecode::Interpreter::run()
Linus Groh
2021-09-12
LibJS: Move the GlobalEnvironment from GlobalObject to Realm
Linus Groh
2021-09-12
LibJS: Allocate a Realm next to GlobalObject in Interpreter::create()
Linus Groh
2021-08-10
LibJS: Change ExecutionContext's arguments list to a MarkedValueList
Timothy Flynn
2021-07-01
LibJS: Drop "Record" suffix from all the *Environment record classes
Andreas Kling
2021-06-24
LibJS: Rename CallFrame => ExecutionContext
Andreas Kling
2021-06-22
LibJS: Begin implementing GlobalEnvironmentRecord
Andreas Kling
2021-06-22
LibJS: Split the per-call-frame environment into lexical and variable
Andreas Kling
2021-06-21
LibJS: Rename Environment Records so they match the spec :^)
Andreas Kling
2021-06-15
LibJS: Add a basic pass manager and add some basic passes
Ali Mohammad Pur
2021-06-12
LibJS: Store and maintain an "execution generation" counter
Idan Horowitz
2021-06-11
LibJS: Implement generator functions (only in bytecode mode)
Ali Mohammad Pur
2021-06-10
LibJS: Always keep the global object in bytecode VM register $1
Andreas Kling
2021-06-10
LibJS: Implement bytecode generation for try..catch..finally
Gunnar Beutner
2021-06-10
LibJS: Let the bytecode interpreter set the VM's last value
Gunnar Beutner
2021-06-09
LibJS: Stop bytecode execution after we've encountered an exception
Gunnar Beutner
2021-06-09
LibJS: Store strings in a string table
Gunnar Beutner
2021-06-09
LibJS: Move Bytecode::Instruction::execute() to the Op.h header
Andreas Kling
2021-06-09
LibJS: Rename Bytecode::ExecutionUnit => Bytecode::Executable
Andreas Kling
2021-06-09
LibJS: Generate bytecode in basic blocks instead of one big block
Ali Mohammad Pur
2021-06-07
LibJS: Move bytecode debug spam behind JS_BYTECODE_DEBUG :^)
Andreas Kling
2021-06-07
LibJS: Devirtualize and pack the bytecode stream :^)
Andreas Kling
2021-06-07
LibJS: Reset Bytecode::Interpreter's m_return_value when leaving run()
Andreas Kling
2021-06-07
LibJS: Make sure the global CallFrame doesn't go out of scope
Andreas Kling
2021-06-07
LibJS: Compile ScriptFunctions into bytecode and run them that way :^)
Andreas Kling
2021-06-07
LibJS: Create a global/outermost CallFrame for Bytecode::Interpreter
Andreas Kling
2021-06-07
LibJS: Add basic support for while loops in the bytecode engine
Andreas Kling
2021-06-07
LibJS: Add a VM accessor to Bytecode::Interpreter :^)
Andreas Kling
2021-06-07
LibJS: Start fleshing out a bytecode for the JavaScript engine :^)
Andreas Kling