ladybird/Userland/Libraries/LibJS/Bytecode
Andreas Kling 59eedd6de0 LibJS: Implement bytecode generation for UpdateExpression :^)
Added Increment and Decrement bytecode ops to support this. Postfix
updates use a temporary register to preserve the original value.

Note that this patch only implements Identifier updates. Member
expression updates are a TODO.
2021-06-09 11:40:38 +02:00
..
ASTCodegen.cpp LibJS: Implement bytecode generation for UpdateExpression :^) 2021-06-09 11:40:38 +02:00
BasicBlock.cpp LibJS: Generate bytecode in basic blocks instead of one big block 2021-06-09 09:07:29 +02:00
BasicBlock.h LibJS: Generate bytecode in basic blocks instead of one big block 2021-06-09 09:07:29 +02:00
Generator.cpp LibJS: Rename Bytecode::ExecutionUnit => Bytecode::Executable 2021-06-09 09:24:32 +02:00
Generator.h LibJS: Rename Bytecode::ExecutionUnit => Bytecode::Executable 2021-06-09 09:24:32 +02:00
Instruction.cpp LibJS: Move Instruction::length() to the Op.h header 2021-06-09 09:24:32 +02:00
Instruction.h LibJS: Implement bytecode generation for UpdateExpression :^) 2021-06-09 11:40:38 +02:00
Interpreter.cpp LibJS: Move Bytecode::Instruction::execute() to the Op.h header 2021-06-09 09:24:32 +02:00
Interpreter.h LibJS: Rename Bytecode::ExecutionUnit => Bytecode::Executable 2021-06-09 09:24:32 +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: Implement bytecode generation for UpdateExpression :^) 2021-06-09 11:40:38 +02:00
Op.h LibJS: Implement bytecode generation for UpdateExpression :^) 2021-06-09 11:40:38 +02:00
Register.h LibJS: Introduce an accumulator register to Bytecode::Interpreter 2021-06-08 21:00:12 +02:00