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_HEAP_SYMBOLS_H_ | 5 #ifndef V8_HEAP_SYMBOLS_H_ |
6 #define V8_HEAP_SYMBOLS_H_ | 6 #define V8_HEAP_SYMBOLS_H_ |
7 | 7 |
8 #define INTERNALIZED_STRING_LIST(V) \ | 8 #define INTERNALIZED_STRING_LIST(V) \ |
9 V(anonymous_string, "anonymous") \ | 9 V(anonymous_string, "anonymous") \ |
10 V(apply_string, "apply") \ | 10 V(apply_string, "apply") \ |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 V(intl_initialized_marker_symbol) \ | 183 V(intl_initialized_marker_symbol) \ |
184 V(intl_pattern_symbol) \ | 184 V(intl_pattern_symbol) \ |
185 V(intl_resolved_symbol) \ | 185 V(intl_resolved_symbol) \ |
186 V(megamorphic_symbol) \ | 186 V(megamorphic_symbol) \ |
187 V(native_context_index_symbol) \ | 187 V(native_context_index_symbol) \ |
188 V(nonexistent_symbol) \ | 188 V(nonexistent_symbol) \ |
189 V(nonextensible_symbol) \ | 189 V(nonextensible_symbol) \ |
190 V(normal_ic_symbol) \ | 190 V(normal_ic_symbol) \ |
191 V(not_mapped_symbol) \ | 191 V(not_mapped_symbol) \ |
192 V(premonomorphic_symbol) \ | 192 V(premonomorphic_symbol) \ |
| 193 V(promise_await_handler_symbol) \ |
193 V(promise_combined_deferred_symbol) \ | 194 V(promise_combined_deferred_symbol) \ |
194 V(promise_debug_marker_symbol) \ | 195 V(promise_debug_marker_symbol) \ |
195 V(promise_deferred_reactions_symbol) \ | |
196 V(promise_fulfill_reactions_symbol) \ | 196 V(promise_fulfill_reactions_symbol) \ |
| 197 V(promise_handled_hint_symbol) \ |
197 V(promise_has_handler_symbol) \ | 198 V(promise_has_handler_symbol) \ |
198 V(promise_handled_hint_symbol) \ | |
199 V(promise_raw_symbol) \ | 199 V(promise_raw_symbol) \ |
200 V(promise_reject_reactions_symbol) \ | 200 V(promise_reject_reactions_symbol) \ |
201 V(promise_result_symbol) \ | 201 V(promise_result_symbol) \ |
202 V(promise_state_symbol) \ | 202 V(promise_state_symbol) \ |
203 V(sealed_symbol) \ | 203 V(sealed_symbol) \ |
204 V(stack_trace_symbol) \ | 204 V(stack_trace_symbol) \ |
205 V(strict_function_transition_symbol) \ | 205 V(strict_function_transition_symbol) \ |
206 V(string_iterator_iterated_string_symbol) \ | 206 V(string_iterator_iterated_string_symbol) \ |
207 V(string_iterator_next_index_symbol) \ | 207 V(string_iterator_next_index_symbol) \ |
208 V(uninitialized_symbol) | 208 V(uninitialized_symbol) |
(...skipping 11 matching lines...) Expand all Loading... |
220 // Well-Known Symbols are "Public" symbols, which have a bit set which causes | 220 // Well-Known Symbols are "Public" symbols, which have a bit set which causes |
221 // them to produce an undefined value when a load results in a failed access | 221 // them to produce an undefined value when a load results in a failed access |
222 // check. Because this behaviour is not specified properly as of yet, it only | 222 // check. Because this behaviour is not specified properly as of yet, it only |
223 // applies to a subset of spec-defined Well-Known Symbols. | 223 // applies to a subset of spec-defined Well-Known Symbols. |
224 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 224 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
225 V(has_instance_symbol, Symbol.hasInstance) \ | 225 V(has_instance_symbol, Symbol.hasInstance) \ |
226 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 226 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
227 V(to_string_tag_symbol, Symbol.toStringTag) | 227 V(to_string_tag_symbol, Symbol.toStringTag) |
228 | 228 |
229 #endif // V8_HEAP_SYMBOLS_H_ | 229 #endif // V8_HEAP_SYMBOLS_H_ |
OLD | NEW |