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_CONTEXTS_INL_H_ | 5 #ifndef V8_CONTEXTS_INL_H_ |
6 #define V8_CONTEXTS_INL_H_ | 6 #define V8_CONTEXTS_INL_H_ |
7 | 7 |
8 #include "src/contexts.h" | 8 #include "src/contexts.h" |
9 #include "src/objects-inl.h" | 9 #include "src/objects-inl.h" |
10 | 10 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 Map* map = this->map(); | 111 Map* map = this->map(); |
112 return map == map->GetHeap()->block_context_map(); | 112 return map == map->GetHeap()->block_context_map(); |
113 } | 113 } |
114 | 114 |
115 | 115 |
116 bool Context::IsModuleContext() { | 116 bool Context::IsModuleContext() { |
117 Map* map = this->map(); | 117 Map* map = this->map(); |
118 return map == map->GetHeap()->module_context_map(); | 118 return map == map->GetHeap()->module_context_map(); |
119 } | 119 } |
120 | 120 |
| 121 bool Context::IsEvalContext() { |
| 122 Map* map = this->map(); |
| 123 return map == map->GetHeap()->eval_context_map(); |
| 124 } |
121 | 125 |
122 bool Context::IsScriptContext() { | 126 bool Context::IsScriptContext() { |
123 Map* map = this->map(); | 127 Map* map = this->map(); |
124 return map == map->GetHeap()->script_context_map(); | 128 return map == map->GetHeap()->script_context_map(); |
125 } | 129 } |
126 | 130 |
127 bool Context::OptimizedCodeMapIsCleared() { | 131 bool Context::OptimizedCodeMapIsCleared() { |
128 return osr_code_table() == GetHeap()->empty_fixed_array(); | 132 return osr_code_table() == GetHeap()->empty_fixed_array(); |
129 } | 133 } |
130 | 134 |
(...skipping 17 matching lines...) Expand all Loading... |
148 return type::cast(get(index)); \ | 152 return type::cast(get(index)); \ |
149 } | 153 } |
150 NATIVE_CONTEXT_FIELDS(NATIVE_CONTEXT_FIELD_ACCESSORS) | 154 NATIVE_CONTEXT_FIELDS(NATIVE_CONTEXT_FIELD_ACCESSORS) |
151 #undef NATIVE_CONTEXT_FIELD_ACCESSORS | 155 #undef NATIVE_CONTEXT_FIELD_ACCESSORS |
152 | 156 |
153 | 157 |
154 } // namespace internal | 158 } // namespace internal |
155 } // namespace v8 | 159 } // namespace v8 |
156 | 160 |
157 #endif // V8_CONTEXTS_INL_H_ | 161 #endif // V8_CONTEXTS_INL_H_ |
OLD | NEW |