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
/
Generator.h
Age
Commit message (
Expand
)
Author
2023-03-06
Everywhere: Remove NonnullOwnPtr.h includes
Andreas Kling
2023-03-06
Everywhere: Stop using NonnullOwnPtrVector
Andreas Kling
2023-02-26
LibJS: Simplify `Generator::perform_needed_unwinds`
Hendiadyoin1
2023-02-26
LibJS: Generate unwind chains for continue in Bytecode
Hendiadyoin1
2023-02-26
LibJS: Generate unwind chains for break in Bytecode
Hendiadyoin1
2023-01-09
AK+Everywhere: Rename FlyString to DeprecatedFlyString
Timothy Flynn
2022-12-06
LibJS: Intercept returns through finally blocks in Bytecode
Hendiadyoin1
2022-12-06
AK+Everywhere: Rename String to DeprecatedString
Linus Groh
2022-12-03
Everywhere: Run clang-format
Linus Groh
2022-12-03
LibJS: Remeber which instruction terminated a block
Hendiadyoin1
2022-10-01
LibJS: Align Instructions as void* and roundup variably sized ones sizes
Hendiadyoin1
2022-07-18
LibJS/Bytecode: Check for lexical bindings only in current scope
Luke Wilde
2022-06-13
LibJS/Bytecode: Implement break/continue labels
Luke Wilde
2022-03-28
LibJS/Bytecode: Implement the delete unary expression
Luke Wilde
2022-03-16
Libraries: Use default constructors/destructors in LibJS
Lenny Maiorani
2022-03-14
LibJS/Bytecode: Unwind to closest unwind boundary on Throw
Luke Wilde
2022-03-14
LibJS/Bytecode: Unwind environments before block terminating instruction
Luke Wilde
2022-03-13
LibJS: Leave the unwind context on break/continue/return in bytecode
Ali Mohammad Pur
2022-02-13
LibJS: More properly implement scoping rules in bytecode codegen
Ali Mohammad Pur
2022-02-13
LibJS: Make ASTNode::generate_bytecode() fallible
Ali Mohammad Pur
2022-01-31
LibJS: Store ECMAScriptFunctionObject bytecode in an OwnPtr
Andreas Kling
2022-01-16
LibJS: Rename FunctionKind::{Regular => Normal}
Linus Groh
2021-11-12
LibJS: Implement async functions as generator functions in BC mode
Ali Mohammad Pur
2021-10-25
LibJS: Add BytecodeGenerator helpers for reference get/put
Andreas Kling
2021-10-24
LibJS: Add a separate "identifier table" to bytecode executables
Andreas Kling
2021-10-24
LibJS: Use String and move semantics in Bytecode::StringTable
Andreas Kling
2021-10-24
LibJS: Add Bytecode::Executable::dump()
Andreas Kling
2021-06-11
LibJS: Implement generator functions (only in bytecode mode)
Ali Mohammad Pur
2021-06-11
LibJS: Automatically split linear bytecode into multiple blocks
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: Implement bytecode generation for BreakStatement
xyanrch
2021-06-09
LibJS: Store strings in a string table
Gunnar Beutner
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-09
Revert "LibJS: Add bytecode instruction handles"
Andreas Kling
2021-06-09
LibJS: Add bytecode instruction handles
Matthew Olsson
2021-06-07
LibJS: Devirtualize and pack the bytecode stream :^)
Andreas Kling
2021-06-07
LibJS: Add basic support for "continue" in the bytecode VM
Andreas Kling
2021-06-07
LibJS: Add basic support for while loops in the bytecode engine
Andreas Kling
2021-06-07
LibJS: Make Bytecode::Generator::emit() return the created instruction
Andreas Kling
2021-06-07
LibJS: Start fleshing out a bytecode for the JavaScript engine :^)
Andreas Kling