| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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/compiler/bytecode-graph-builder.h" | 5 #include "src/compiler/bytecode-graph-builder.h" |
| 6 | 6 |
| 7 #include "src/ast/ast.h" | 7 #include "src/ast/ast.h" |
| 8 #include "src/ast/scopes.h" | 8 #include "src/ast/scopes.h" |
| 9 #include "src/compilation-info.h" | 9 #include "src/compilation-info.h" |
| 10 #include "src/compiler/access-builder.h" | 10 #include "src/compiler/access-builder.h" |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 796 Node* value = environment()->LookupAccumulator(); | 796 Node* value = environment()->LookupAccumulator(); |
| 797 int flags = bytecode_iterator().GetFlagOperand(2); | 797 int flags = bytecode_iterator().GetFlagOperand(2); |
| 798 VectorSlotPair feedback = | 798 VectorSlotPair feedback = |
| 799 CreateVectorSlotPair(bytecode_iterator().GetIndexOperand(3)); | 799 CreateVectorSlotPair(bytecode_iterator().GetIndexOperand(3)); |
| 800 | 800 |
| 801 const Operator* op = javascript()->StoreDataPropertyInLiteral(feedback); | 801 const Operator* op = javascript()->StoreDataPropertyInLiteral(feedback); |
| 802 Node* node = NewNode(op, object, name, value, jsgraph()->Constant(flags)); | 802 Node* node = NewNode(op, object, name, value, jsgraph()->Constant(flags)); |
| 803 environment()->RecordAfterState(node, Environment::kAttachFrameState); | 803 environment()->RecordAfterState(node, Environment::kAttachFrameState); |
| 804 } | 804 } |
| 805 | 805 |
| 806 void BytecodeGraphBuilder::VisitCollectTypeProfile() { |
| 807 PrepareEagerCheckpoint(); |
| 808 |
| 809 Node* name = |
| 810 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0)); |
| 811 Node* value = environment()->LookupAccumulator(); |
| 812 Node* index = jsgraph()->Constant(bytecode_iterator().GetIndexOperand(1)); |
| 813 |
| 814 Node* vector = jsgraph()->Constant(feedback_vector()); |
| 815 |
| 816 const Operator* op = javascript()->CallRuntime(Runtime::kCollectTypeProfile); |
| 817 |
| 818 Node* node = NewNode(op, name, value, vector, index); |
| 819 environment()->RecordAfterState(node, Environment::kAttachFrameState); |
| 820 } |
| 821 |
| 806 void BytecodeGraphBuilder::VisitLdaContextSlot() { | 822 void BytecodeGraphBuilder::VisitLdaContextSlot() { |
| 807 const Operator* op = javascript()->LoadContext( | 823 const Operator* op = javascript()->LoadContext( |
| 808 bytecode_iterator().GetUnsignedImmediateOperand(2), | 824 bytecode_iterator().GetUnsignedImmediateOperand(2), |
| 809 bytecode_iterator().GetIndexOperand(1), false); | 825 bytecode_iterator().GetIndexOperand(1), false); |
| 810 Node* node = NewNode(op); | 826 Node* node = NewNode(op); |
| 811 Node* context = | 827 Node* context = |
| 812 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0)); | 828 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0)); |
| 813 NodeProperties::ReplaceContextInput(node, context); | 829 NodeProperties::ReplaceContextInput(node, context); |
| 814 environment()->BindAccumulator(node); | 830 environment()->BindAccumulator(node); |
| 815 } | 831 } |
| (...skipping 1760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2576 it->source_position().ScriptOffset(), start_position_.InliningId())); | 2592 it->source_position().ScriptOffset(), start_position_.InliningId())); |
| 2577 it->Advance(); | 2593 it->Advance(); |
| 2578 } else { | 2594 } else { |
| 2579 DCHECK_GT(it->code_offset(), offset); | 2595 DCHECK_GT(it->code_offset(), offset); |
| 2580 } | 2596 } |
| 2581 } | 2597 } |
| 2582 | 2598 |
| 2583 } // namespace compiler | 2599 } // namespace compiler |
| 2584 } // namespace internal | 2600 } // namespace internal |
| 2585 } // namespace v8 | 2601 } // namespace v8 |
| OLD | NEW |