ladybird/Userland/Libraries/LibJS/Bytecode
Gal Horowitz b47d117bd2 LibJS: Add bytecode generation for simple ObjectExpressions
Bytecode is now generated for object literals which only contain simple
key-value pairs (i.e. no spread, getters or setters)
2021-06-11 22:44:17 +02:00
..
ASTCodegen.cpp LibJS: Add bytecode generation for simple ObjectExpressions 2021-06-11 22:44:17 +02:00
BasicBlock.cpp LibJS: Allocate 4 KiB for Bytecode::BasicBlock 2021-06-10 21:59:49 +02:00
BasicBlock.h LibJS: Automatically split linear bytecode into multiple blocks 2021-06-11 00:30:09 +02:00
Generator.cpp LibJS: Implement generator functions (only in bytecode mode) 2021-06-11 00:30:09 +02:00
Generator.h LibJS: Implement generator functions (only in bytecode mode) 2021-06-11 00:30:09 +02:00
Instruction.cpp LibJS: Move Instruction::length() to the Op.h header 2021-06-09 09:24:32 +02:00
Instruction.h LibJS: Basic bytecode support for computed member expressions 2021-06-11 00:36:18 +02:00
Interpreter.cpp LibJS: Implement generator functions (only in bytecode mode) 2021-06-11 00:30:09 +02:00
Interpreter.h LibJS: Implement generator functions (only in bytecode mode) 2021-06-11 00:30:09 +02:00
Label.h LibJS: Generate bytecode in basic blocks instead of one big block 2021-06-09 09:07:29 +02:00
Op.cpp LibJS: Use an enum class instead of 'bool is_generator' 2021-06-11 19:42:58 +04:30
Op.h LibJS: Basic bytecode support for computed member expressions 2021-06-11 00:36:18 +02:00
Register.h LibJS: Always keep the global object in bytecode VM register $1 2021-06-10 21:59:49 +02:00
StringTable.cpp LibJS: Store strings in a string table 2021-06-09 17:42:52 +02:00
StringTable.h LibJS: Store strings in a string table 2021-06-09 17:42:52 +02:00