summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Bytecode/Op.cpp
AgeCommit message (Expand)Author
2021-06-07LibJS: Make sure that if expressions yield the correct valueGunnar Beutner
2021-06-07LibJS: Add bytecode ops for <<, >> and >>>Luke
2021-06-07LibJS: Add support for typed equality checksRyan Chandler
2021-06-07LibJS: Add bytecode instructions for a bunch of unary operatorsLinus Groh
2021-06-07LibJS: Remove redundant Value() from bytecode bitwise ops execute()Linus Groh
2021-06-07LibJS: Add bytecode ops for &, | and ^Luke
2021-06-07LibJS: Add bytecode ops for >, >= and <=Gunnar Beutner
2021-06-07LibJS: Add bytecode instructions for modulo and exponentiationGunnar Beutner
2021-06-07LibJS: Add bytecode instructions for multiplication and divisionGunnar Beutner
2021-06-07LibJS: Devirtualize and pack the bytecode stream :^)Andreas Kling
2021-06-07LibJS: Add AbstractEquals bytecode instruction for == comparison :^)Andreas Kling
2021-06-07LibJS: Add basic "if" statement support to the bytecode VM :^)Andreas Kling
2021-06-07LibJS: Compile ScriptFunctions into bytecode and run them that way :^)Andreas Kling
2021-06-07LibJS: Support basic function calls in the bytecode world :^)Andreas Kling
2021-06-07LibJS: Add a new EnterScope bytecode instructionAndreas Kling
2021-06-07LibJS: Add GetById bytecode instruction for object property retrievalAndreas Kling
2021-06-07LibJS: Add PutById bytecode instruction for object property assignmentAndreas Kling
2021-06-07LibJS: Add a NewObject bytecode instruction for ObjectExpression :^)Andreas Kling
2021-06-07LibJS: Generate bytecode for do...while statements :^)Andreas Kling
2021-06-07LibJS: Add AbstractInequals bytecode instruction :^)Andreas Kling
2021-06-07LibJS: Add basic support for while loops in the bytecode engineAndreas Kling
2021-06-07LibJS: Add LessThan bytecode instruction :^)Andreas Kling
2021-06-07LibJS: Add Sub bytecode instruction (subtract values)Andreas Kling
2021-06-07LibJS: Add formatting helper for Bytecode::RegisterAndreas Kling
2021-06-07LibJS: Some more opcodes for the bytecode VMAndreas Kling
2021-06-07LibJS: Start fleshing out a bytecode for the JavaScript engine :^)Andreas Kling