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 #ifndef V8_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 4373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4384 // must be an internalized string. | 4384 // must be an internalized string. |
4385 int FunctionContextSlotIndex(String* name, VariableMode* mode); | 4385 int FunctionContextSlotIndex(String* name, VariableMode* mode); |
4386 | 4386 |
4387 // Lookup support for serialized scope info. Returns the receiver context | 4387 // Lookup support for serialized scope info. Returns the receiver context |
4388 // slot index if scope has a "this" binding, and the binding is | 4388 // slot index if scope has a "this" binding, and the binding is |
4389 // context-allocated. Otherwise returns a value < 0. | 4389 // context-allocated. Otherwise returns a value < 0. |
4390 int ReceiverContextSlotIndex(); | 4390 int ReceiverContextSlotIndex(); |
4391 | 4391 |
4392 FunctionKind function_kind(); | 4392 FunctionKind function_kind(); |
4393 | 4393 |
| 4394 // Returns true if this ScopeInfo is linked to a outer ScopeInfo. |
| 4395 bool HasOuterScopeInfo(); |
| 4396 |
| 4397 // Return the outer ScopeInfo if present. |
| 4398 ScopeInfo* OuterScopeInfo(); |
| 4399 |
4394 static Handle<ScopeInfo> Create(Isolate* isolate, Zone* zone, Scope* scope); | 4400 static Handle<ScopeInfo> Create(Isolate* isolate, Zone* zone, Scope* scope); |
4395 static Handle<ScopeInfo> CreateGlobalThisBinding(Isolate* isolate); | 4401 static Handle<ScopeInfo> CreateGlobalThisBinding(Isolate* isolate); |
4396 | 4402 |
4397 // Serializes empty scope info. | 4403 // Serializes empty scope info. |
4398 static ScopeInfo* Empty(Isolate* isolate); | 4404 static ScopeInfo* Empty(Isolate* isolate); |
4399 | 4405 |
4400 #ifdef DEBUG | 4406 #ifdef DEBUG |
4401 void Print(); | 4407 void Print(); |
4402 #endif | 4408 #endif |
4403 | 4409 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4457 // context local, so in total this part occupies ContextLocalCount() | 4463 // context local, so in total this part occupies ContextLocalCount() |
4458 // slots in the array. | 4464 // slots in the array. |
4459 // 6. RecieverEntryIndex: | 4465 // 6. RecieverEntryIndex: |
4460 // If the scope binds a "this" value, one slot is reserved to hold the | 4466 // If the scope binds a "this" value, one slot is reserved to hold the |
4461 // context or stack slot index for the variable. | 4467 // context or stack slot index for the variable. |
4462 // 7. FunctionNameEntryIndex: | 4468 // 7. FunctionNameEntryIndex: |
4463 // If the scope belongs to a named function expression this part contains | 4469 // If the scope belongs to a named function expression this part contains |
4464 // information about the function variable. It always occupies two array | 4470 // information about the function variable. It always occupies two array |
4465 // slots: a. The name of the function variable. | 4471 // slots: a. The name of the function variable. |
4466 // b. The context or stack slot index for the variable. | 4472 // b. The context or stack slot index for the variable. |
| 4473 // 8. OuterScopeInfoEntryIndex: |
| 4474 // The outer scope's ScopeInfo or the hole if there's none. |
4467 int ParameterEntriesIndex(); | 4475 int ParameterEntriesIndex(); |
4468 int StackLocalFirstSlotIndex(); | 4476 int StackLocalFirstSlotIndex(); |
4469 int StackLocalEntriesIndex(); | 4477 int StackLocalEntriesIndex(); |
4470 int ContextLocalNameEntriesIndex(); | 4478 int ContextLocalNameEntriesIndex(); |
4471 int ContextGlobalNameEntriesIndex(); | 4479 int ContextGlobalNameEntriesIndex(); |
4472 int ContextLocalInfoEntriesIndex(); | 4480 int ContextLocalInfoEntriesIndex(); |
4473 int ContextGlobalInfoEntriesIndex(); | 4481 int ContextGlobalInfoEntriesIndex(); |
4474 int ReceiverEntryIndex(); | 4482 int ReceiverEntryIndex(); |
4475 int FunctionNameEntryIndex(); | 4483 int FunctionNameEntryIndex(); |
| 4484 int OuterScopeInfoEntryIndex(); |
4476 | 4485 |
4477 int Lookup(Handle<String> name, int start, int end, VariableMode* mode, | 4486 int Lookup(Handle<String> name, int start, int end, VariableMode* mode, |
4478 VariableLocation* location, InitializationFlag* init_flag, | 4487 VariableLocation* location, InitializationFlag* init_flag, |
4479 MaybeAssignedFlag* maybe_assigned_flag); | 4488 MaybeAssignedFlag* maybe_assigned_flag); |
4480 | 4489 |
4481 // Used for the function name variable for named function expressions, and for | 4490 // Used for the function name variable for named function expressions, and for |
4482 // the receiver. | 4491 // the receiver. |
4483 enum VariableAllocationInfo { NONE, STACK, CONTEXT, UNUSED }; | 4492 enum VariableAllocationInfo { NONE, STACK, CONTEXT, UNUSED }; |
4484 | 4493 |
4485 // Properties of scopes. | 4494 // Properties of scopes. |
(...skipping 13 matching lines...) Expand all Loading... |
4499 : public BitField<VariableAllocationInfo, HasNewTargetField::kNext, 2> {}; | 4508 : public BitField<VariableAllocationInfo, HasNewTargetField::kNext, 2> {}; |
4500 class FunctionVariableMode | 4509 class FunctionVariableMode |
4501 : public BitField<VariableMode, FunctionVariableField::kNext, 3> {}; | 4510 : public BitField<VariableMode, FunctionVariableField::kNext, 3> {}; |
4502 class AsmModuleField : public BitField<bool, FunctionVariableMode::kNext, 1> { | 4511 class AsmModuleField : public BitField<bool, FunctionVariableMode::kNext, 1> { |
4503 }; | 4512 }; |
4504 class AsmFunctionField : public BitField<bool, AsmModuleField::kNext, 1> {}; | 4513 class AsmFunctionField : public BitField<bool, AsmModuleField::kNext, 1> {}; |
4505 class HasSimpleParametersField | 4514 class HasSimpleParametersField |
4506 : public BitField<bool, AsmFunctionField::kNext, 1> {}; | 4515 : public BitField<bool, AsmFunctionField::kNext, 1> {}; |
4507 class FunctionKindField | 4516 class FunctionKindField |
4508 : public BitField<FunctionKind, HasSimpleParametersField::kNext, 9> {}; | 4517 : public BitField<FunctionKind, HasSimpleParametersField::kNext, 9> {}; |
| 4518 class HasOuterScopeInfoField |
| 4519 : public BitField<bool, FunctionKindField::kNext, 1> {}; |
4509 | 4520 |
4510 // Properties of variables. | 4521 // Properties of variables. |
4511 class VariableModeField : public BitField<VariableMode, 0, 3> {}; | 4522 class VariableModeField : public BitField<VariableMode, 0, 3> {}; |
4512 class InitFlagField : public BitField<InitializationFlag, 3, 1> {}; | 4523 class InitFlagField : public BitField<InitializationFlag, 3, 1> {}; |
4513 class MaybeAssignedFlagField : public BitField<MaybeAssignedFlag, 4, 1> {}; | 4524 class MaybeAssignedFlagField : public BitField<MaybeAssignedFlag, 4, 1> {}; |
4514 | 4525 |
4515 friend class ScopeIterator; | 4526 friend class ScopeIterator; |
4516 }; | 4527 }; |
4517 | 4528 |
4518 | 4529 |
(...skipping 6659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11178 } | 11189 } |
11179 return value; | 11190 return value; |
11180 } | 11191 } |
11181 }; | 11192 }; |
11182 | 11193 |
11183 | 11194 |
11184 } // NOLINT, false-positive due to second-order macros. | 11195 } // NOLINT, false-positive due to second-order macros. |
11185 } // NOLINT, false-positive due to second-order macros. | 11196 } // NOLINT, false-positive due to second-order macros. |
11186 | 11197 |
11187 #endif // V8_OBJECTS_H_ | 11198 #endif // V8_OBJECTS_H_ |
OLD | NEW |