| 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/interpreter/bytecode-generator.h" | 5 #include "src/interpreter/bytecode-generator.h" |
| 6 | 6 |
| 7 #include "src/ast/scopes.h" |
| 7 #include "src/compiler.h" | 8 #include "src/compiler.h" |
| 8 #include "src/interpreter/control-flow-builders.h" | 9 #include "src/interpreter/control-flow-builders.h" |
| 9 #include "src/objects.h" | 10 #include "src/objects.h" |
| 10 #include "src/parser.h" | 11 #include "src/parsing/parser.h" |
| 11 #include "src/scopes.h" | 12 #include "src/parsing/token.h" |
| 12 #include "src/token.h" | |
| 13 | 13 |
| 14 namespace v8 { | 14 namespace v8 { |
| 15 namespace internal { | 15 namespace internal { |
| 16 namespace interpreter { | 16 namespace interpreter { |
| 17 | 17 |
| 18 | 18 |
| 19 // Scoped class tracking context objects created by the visitor. Represents | 19 // Scoped class tracking context objects created by the visitor. Represents |
| 20 // mutations of the context chain within the function body, allowing pushing and | 20 // mutations of the context chain within the function body, allowing pushing and |
| 21 // popping of the current {context_register} during visitation. | 21 // popping of the current {context_register} during visitation. |
| 22 class BytecodeGenerator::ContextScope BASE_EMBEDDED { | 22 class BytecodeGenerator::ContextScope BASE_EMBEDDED { |
| (...skipping 2204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2227 } | 2227 } |
| 2228 | 2228 |
| 2229 | 2229 |
| 2230 int BytecodeGenerator::feedback_index(FeedbackVectorSlot slot) const { | 2230 int BytecodeGenerator::feedback_index(FeedbackVectorSlot slot) const { |
| 2231 return info()->feedback_vector()->GetIndex(slot); | 2231 return info()->feedback_vector()->GetIndex(slot); |
| 2232 } | 2232 } |
| 2233 | 2233 |
| 2234 } // namespace interpreter | 2234 } // namespace interpreter |
| 2235 } // namespace internal | 2235 } // namespace internal |
| 2236 } // namespace v8 | 2236 } // namespace v8 |
| OLD | NEW |