OLD | NEW |
---|---|
1 // Copyright 2017 the V8 project authors. All rights reserved. | 1 // Copyright 2017 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/interpreter/interpreter-generator.h" | 5 #include "src/interpreter/interpreter-generator.h" |
6 | 6 |
7 #include <array> | 7 #include <array> |
8 #include <tuple> | 8 #include <tuple> |
9 | 9 |
10 #include "src/builtins/builtins-arguments-gen.h" | 10 #include "src/builtins/builtins-arguments-gen.h" |
(...skipping 1676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1687 // | 1687 // |
1688 // Convert the object referenced by the accumulator to a name. | 1688 // Convert the object referenced by the accumulator to a name. |
1689 void InterpreterGenerator::DoToName(InterpreterAssembler* assembler) { | 1689 void InterpreterGenerator::DoToName(InterpreterAssembler* assembler) { |
1690 Node* object = __ GetAccumulator(); | 1690 Node* object = __ GetAccumulator(); |
1691 Node* context = __ GetContext(); | 1691 Node* context = __ GetContext(); |
1692 Node* result = __ ToName(context, object); | 1692 Node* result = __ ToName(context, object); |
1693 __ StoreRegister(result, __ BytecodeOperandReg(0)); | 1693 __ StoreRegister(result, __ BytecodeOperandReg(0)); |
1694 __ Dispatch(); | 1694 __ Dispatch(); |
1695 } | 1695 } |
1696 | 1696 |
1697 // ToNumber | 1697 // ToNumber |
Michael Starzinger
2017/04/06 11:28:31
nit: I know it was already missing before, but a b
Benedikt Meurer
2017/04/06 11:30:00
Done.
| |
1698 // | 1698 // |
1699 // Convert the object referenced by the accumulator to a number. | 1699 // Convert the object referenced by the accumulator to a number. |
1700 void InterpreterGenerator::DoToNumber(InterpreterAssembler* assembler) { | 1700 void InterpreterGenerator::DoToNumber(InterpreterAssembler* assembler) { |
1701 Node* object = __ GetAccumulator(); | 1701 Node* object = __ GetAccumulator(); |
1702 Node* context = __ GetContext(); | 1702 Node* context = __ GetContext(); |
1703 Node* result = __ ToNumber(context, object); | 1703 |
1704 // Convert the {object} to a Number and collect feedback for the {object}. | |
1705 Variable var_type_feedback(assembler, MachineRepresentation::kTaggedSigned); | |
1706 Node* result = __ ToNumberWithFeedback(context, object, &var_type_feedback); | |
1704 __ StoreRegister(result, __ BytecodeOperandReg(0)); | 1707 __ StoreRegister(result, __ BytecodeOperandReg(0)); |
1708 | |
1709 // Record the type feedback collected for {object}. | |
1710 Node* slot_index = __ BytecodeOperandIdx(1); | |
1711 Node* feedback_vector = __ LoadFeedbackVector(); | |
1712 __ UpdateFeedback(var_type_feedback.value(), feedback_vector, slot_index); | |
1713 | |
1705 __ Dispatch(); | 1714 __ Dispatch(); |
1706 } | 1715 } |
1707 | 1716 |
1708 // ToObject | 1717 // ToObject |
1709 // | 1718 // |
1710 // Convert the object referenced by the accumulator to a JSReceiver. | 1719 // Convert the object referenced by the accumulator to a JSReceiver. |
1711 void InterpreterGenerator::DoToObject(InterpreterAssembler* assembler) { | 1720 void InterpreterGenerator::DoToObject(InterpreterAssembler* assembler) { |
1712 Node* result = BuildUnaryOp(CodeFactory::ToObject(isolate_), assembler); | 1721 Node* result = BuildUnaryOp(CodeFactory::ToObject(isolate_), assembler); |
1713 __ StoreRegister(result, __ BytecodeOperandReg(0)); | 1722 __ StoreRegister(result, __ BytecodeOperandReg(0)); |
1714 __ Dispatch(); | 1723 __ Dispatch(); |
(...skipping 1881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3596 __ StoreObjectField(generator, JSGeneratorObject::kContinuationOffset, | 3605 __ StoreObjectField(generator, JSGeneratorObject::kContinuationOffset, |
3597 __ SmiTag(new_state)); | 3606 __ SmiTag(new_state)); |
3598 __ SetAccumulator(old_state); | 3607 __ SetAccumulator(old_state); |
3599 | 3608 |
3600 __ Dispatch(); | 3609 __ Dispatch(); |
3601 } | 3610 } |
3602 | 3611 |
3603 } // namespace interpreter | 3612 } // namespace interpreter |
3604 } // namespace internal | 3613 } // namespace internal |
3605 } // namespace v8 | 3614 } // namespace v8 |
OLD | NEW |