| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 V(deleteProperty_string, "deleteProperty") \ | 53 V(deleteProperty_string, "deleteProperty") \ |
| 54 V(display_name_string, "displayName") \ | 54 V(display_name_string, "displayName") \ |
| 55 V(done_string, "done") \ | 55 V(done_string, "done") \ |
| 56 V(dot_result_string, ".result") \ | 56 V(dot_result_string, ".result") \ |
| 57 V(dot_string, ".") \ | 57 V(dot_string, ".") \ |
| 58 V(entries_string, "entries") \ | 58 V(entries_string, "entries") \ |
| 59 V(enumerable_string, "enumerable") \ | 59 V(enumerable_string, "enumerable") \ |
| 60 V(Error_string, "Error") \ | 60 V(Error_string, "Error") \ |
| 61 V(eval_string, "eval") \ | 61 V(eval_string, "eval") \ |
| 62 V(EvalError_string, "EvalError") \ | 62 V(EvalError_string, "EvalError") \ |
| 63 V(exec_string, "exec") \ | |
| 64 V(false_string, "false") \ | 63 V(false_string, "false") \ |
| 65 V(flags_string, "flags") \ | 64 V(flags_string, "flags") \ |
| 66 V(float32x4_string, "float32x4") \ | 65 V(float32x4_string, "float32x4") \ |
| 67 V(Float32x4_string, "Float32x4") \ | 66 V(Float32x4_string, "Float32x4") \ |
| 68 V(for_api_string, "for_api") \ | 67 V(for_api_string, "for_api") \ |
| 69 V(for_string, "for") \ | 68 V(for_string, "for") \ |
| 70 V(function_string, "function") \ | 69 V(function_string, "function") \ |
| 71 V(Function_string, "Function") \ | 70 V(Function_string, "Function") \ |
| 72 V(Generator_string, "Generator") \ | 71 V(Generator_string, "Generator") \ |
| 73 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ | 72 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 85 V(int16x8_string, "int16x8") \ | 84 V(int16x8_string, "int16x8") \ |
| 86 V(Int16x8_string, "Int16x8") \ | 85 V(Int16x8_string, "Int16x8") \ |
| 87 V(int32x4_string, "int32x4") \ | 86 V(int32x4_string, "int32x4") \ |
| 88 V(Int32x4_string, "Int32x4") \ | 87 V(Int32x4_string, "Int32x4") \ |
| 89 V(int8x16_string, "int8x16") \ | 88 V(int8x16_string, "int8x16") \ |
| 90 V(Int8x16_string, "Int8x16") \ | 89 V(Int8x16_string, "Int8x16") \ |
| 91 V(isExtensible_string, "isExtensible") \ | 90 V(isExtensible_string, "isExtensible") \ |
| 92 V(isView_string, "isView") \ | 91 V(isView_string, "isView") \ |
| 93 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ | 92 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ |
| 94 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ | 93 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ |
| 95 V(lastIndex_string, "lastIndex") \ | 94 V(last_index_string, "lastIndex") \ |
| 96 V(length_string, "length") \ | 95 V(length_string, "length") \ |
| 97 V(line_string, "line") \ | 96 V(line_string, "line") \ |
| 98 V(Map_string, "Map") \ | 97 V(Map_string, "Map") \ |
| 99 V(message_string, "message") \ | 98 V(message_string, "message") \ |
| 100 V(minus_infinity_string, "-Infinity") \ | 99 V(minus_infinity_string, "-Infinity") \ |
| 101 V(minus_zero_string, "-0") \ | 100 V(minus_zero_string, "-0") \ |
| 102 V(multiline_string, "multiline") \ | 101 V(multiline_string, "multiline") \ |
| 103 V(name_string, "name") \ | 102 V(name_string, "name") \ |
| 104 V(nan_string, "NaN") \ | 103 V(nan_string, "NaN") \ |
| 105 V(next_string, "next") \ | 104 V(next_string, "next") \ |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 // 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 |
| 222 // 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 |
| 223 // 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 |
| 224 // applies to a subset of spec-defined Well-Known Symbols. | 223 // applies to a subset of spec-defined Well-Known Symbols. |
| 225 #define WELL_KNOWN_SYMBOL_LIST(V) \ | 224 #define WELL_KNOWN_SYMBOL_LIST(V) \ |
| 226 V(has_instance_symbol, Symbol.hasInstance) \ | 225 V(has_instance_symbol, Symbol.hasInstance) \ |
| 227 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ | 226 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ |
| 228 V(to_string_tag_symbol, Symbol.toStringTag) | 227 V(to_string_tag_symbol, Symbol.toStringTag) |
| 229 | 228 |
| 230 #endif // V8_HEAP_SYMBOLS_H_ | 229 #endif // V8_HEAP_SYMBOLS_H_ |
| OLD | NEW |