summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS
AgeCommit message (Expand)Author
2021-06-07LibJS: Add bytecode generation for BinaryOp::InstanceOfLinus Groh
2021-06-07LibJS: Add bytecode generation for BinaryOp::InLinus Groh
2021-06-07LibJS: Make sure that if expressions yield the correct valueGunnar Beutner
2021-06-07LibJS: Make sure scope expressions yield the correct valueGunnar Beutner
2021-06-07LibJS: Add <<, >> and >>> assignment operatorsRyan Chandler
2021-06-07LibJS: Add bytecode ops for <<, >> and >>>Luke
2021-06-07LibJS: Add support for various assignment operatorsRyan Chandler
2021-06-07LibJS: Add support for typed equality checksRyan Chandler
2021-06-07LibJS: Add bytecode generation for EmptyStatementGunnar Beutner
2021-06-07LibJS: Add bytecode generation for DebuggerStatementLinus Groh
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 loading boolean and null valuesGunnar Beutner
2021-06-07LibJS: Fix AbstractInequals returning result of AbstractEqualsRyan Chandler
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: Remove unused Bytecode::Block::m_buffer_endAndreas Kling
2021-06-07LibJS: Add placeholder bytecode block sealing mechanismAndreas Kling
2021-06-07LibJS: Cache generated bytecode for ScriptFunctionAndreas Kling
2021-06-07LibJS: Move bytecode debug spam behind JS_BYTECODE_DEBUG :^)Andreas Kling
2021-06-07LibJS: Devirtualize and pack the bytecode stream :^)Andreas Kling
2021-06-07LibJS: Reset Bytecode::Interpreter's m_return_value when leaving run()Andreas Kling
2021-06-07LibJS: Make sure the global CallFrame doesn't go out of scopeAndreas Kling
2021-06-07LibJS: Add AbstractEquals bytecode instruction for == comparison :^)Andreas Kling
2021-06-07LibJS: Add basic support for "continue" in the bytecode VMAndreas 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: Create a global/outermost CallFrame for Bytecode::InterpreterAndreas 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: Print bytecode registers with format "$num" instead of "rnum"Andreas Kling
2021-06-07LibJS: Make Bytecode::Generator::emit() return the created instructionAndreas Kling
2021-06-07LibJS: Move AST bytecode generation virtuals to separate cpp fileAndreas 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: Add a VM accessor to Bytecode::Interpreter :^)Andreas Kling
2021-06-07LibJS: Start fleshing out a bytecode for the JavaScript engine :^)Andreas Kling
2021-06-07LibJS: Use ToPropertyKey in Object.getOwnPropertyDescriptorIdan Horowitz
2021-06-07LibJS: Add missing length field to Symbol.prototype[Symbol.ToPrimitive]Idan Horowitz
2021-06-07LibWeb+LibSyntax: Implement nested syntax highlightersAli Mohammad Pur