Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: src/heap-symbols.h

Issue 1986173002: Refactor script position calculation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix DCHECK logic Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/debug/mirrors.js ('k') | src/isolate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 12 matching lines...) Expand all
23 V(Boolean_string, "Boolean") \ 23 V(Boolean_string, "Boolean") \
24 V(bound__string, "bound ") \ 24 V(bound__string, "bound ") \
25 V(byte_length_string, "byteLength") \ 25 V(byte_length_string, "byteLength") \
26 V(byte_offset_string, "byteOffset") \ 26 V(byte_offset_string, "byteOffset") \
27 V(call_string, "call") \ 27 V(call_string, "call") \
28 V(callee_string, "callee") \ 28 V(callee_string, "callee") \
29 V(caller_string, "caller") \ 29 V(caller_string, "caller") \
30 V(cell_value_string, "%cell_value") \ 30 V(cell_value_string, "%cell_value") \
31 V(char_at_string, "CharAt") \ 31 V(char_at_string, "CharAt") \
32 V(closure_string, "(closure)") \ 32 V(closure_string, "(closure)") \
33 V(column_string, "column") \
33 V(compare_ic_string, "==") \ 34 V(compare_ic_string, "==") \
34 V(configurable_string, "configurable") \ 35 V(configurable_string, "configurable") \
35 V(constructor_string, "constructor") \ 36 V(constructor_string, "constructor") \
36 V(construct_string, "construct") \ 37 V(construct_string, "construct") \
37 V(create_string, "create") \ 38 V(create_string, "create") \
38 V(Date_string, "Date") \ 39 V(Date_string, "Date") \
39 V(default_string, "default") \ 40 V(default_string, "default") \
40 V(defineProperty_string, "defineProperty") \ 41 V(defineProperty_string, "defineProperty") \
41 V(deleteProperty_string, "deleteProperty") \ 42 V(deleteProperty_string, "deleteProperty") \
42 V(display_name_string, "displayName") \ 43 V(display_name_string, "displayName") \
(...skipping 28 matching lines...) Expand all
71 V(int32x4_string, "int32x4") \ 72 V(int32x4_string, "int32x4") \
72 V(Int32x4_string, "Int32x4") \ 73 V(Int32x4_string, "Int32x4") \
73 V(int8x16_string, "int8x16") \ 74 V(int8x16_string, "int8x16") \
74 V(Int8x16_string, "Int8x16") \ 75 V(Int8x16_string, "Int8x16") \
75 V(isExtensible_string, "isExtensible") \ 76 V(isExtensible_string, "isExtensible") \
76 V(isView_string, "isView") \ 77 V(isView_string, "isView") \
77 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ 78 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \
78 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ 79 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \
79 V(last_index_string, "lastIndex") \ 80 V(last_index_string, "lastIndex") \
80 V(length_string, "length") \ 81 V(length_string, "length") \
82 V(line_string, "line") \
81 V(Map_string, "Map") \ 83 V(Map_string, "Map") \
82 V(minus_infinity_string, "-Infinity") \ 84 V(minus_infinity_string, "-Infinity") \
83 V(minus_zero_string, "-0") \ 85 V(minus_zero_string, "-0") \
84 V(name_string, "name") \ 86 V(name_string, "name") \
85 V(nan_string, "NaN") \ 87 V(nan_string, "NaN") \
86 V(next_string, "next") \ 88 V(next_string, "next") \
87 V(null_string, "null") \ 89 V(null_string, "null") \
88 V(null_to_string, "[object Null]") \ 90 V(null_to_string, "[object Null]") \
89 V(number_string, "number") \ 91 V(number_string, "number") \
90 V(Number_string, "Number") \ 92 V(Number_string, "Number") \
91 V(object_string, "object") \ 93 V(object_string, "object") \
92 V(Object_string, "Object") \ 94 V(Object_string, "Object") \
93 V(ownKeys_string, "ownKeys") \ 95 V(ownKeys_string, "ownKeys") \
96 V(position_string, "position") \
94 V(preventExtensions_string, "preventExtensions") \ 97 V(preventExtensions_string, "preventExtensions") \
95 V(private_api_string, "private_api") \ 98 V(private_api_string, "private_api") \
96 V(Promise_string, "Promise") \ 99 V(Promise_string, "Promise") \
97 V(proto_string, "__proto__") \ 100 V(proto_string, "__proto__") \
98 V(prototype_string, "prototype") \ 101 V(prototype_string, "prototype") \
99 V(Proxy_string, "Proxy") \ 102 V(Proxy_string, "Proxy") \
100 V(query_colon_string, "(?:)") \ 103 V(query_colon_string, "(?:)") \
101 V(RegExp_string, "RegExp") \ 104 V(RegExp_string, "RegExp") \
105 V(script_string, "script") \
102 V(setPrototypeOf_string, "setPrototypeOf") \ 106 V(setPrototypeOf_string, "setPrototypeOf") \
103 V(set_string, "set") \ 107 V(set_string, "set") \
104 V(Set_string, "Set") \ 108 V(Set_string, "Set") \
105 V(source_mapping_url_string, "source_mapping_url") \ 109 V(source_mapping_url_string, "source_mapping_url") \
106 V(source_string, "source") \ 110 V(source_string, "source") \
111 V(sourceText_string, "sourceText") \
107 V(source_url_string, "source_url") \ 112 V(source_url_string, "source_url") \
108 V(stack_string, "stack") \ 113 V(stack_string, "stack") \
109 V(strict_compare_ic_string, "===") \ 114 V(strict_compare_ic_string, "===") \
110 V(string_string, "string") \ 115 V(string_string, "string") \
111 V(String_string, "String") \ 116 V(String_string, "String") \
112 V(symbol_string, "symbol") \ 117 V(symbol_string, "symbol") \
113 V(Symbol_string, "Symbol") \ 118 V(Symbol_string, "Symbol") \
114 V(this_string, "this") \ 119 V(this_string, "this") \
115 V(throw_string, "throw") \ 120 V(throw_string, "throw") \
116 V(toJSON_string, "toJSON") \ 121 V(toJSON_string, "toJSON") \
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 197 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
193 // them to produce an undefined value when a load results in a failed access 198 // them to produce an undefined value when a load results in a failed access
194 // check. Because this behaviour is not specified properly as of yet, it only 199 // check. Because this behaviour is not specified properly as of yet, it only
195 // applies to a subset of spec-defined Well-Known Symbols. 200 // applies to a subset of spec-defined Well-Known Symbols.
196 #define WELL_KNOWN_SYMBOL_LIST(V) \ 201 #define WELL_KNOWN_SYMBOL_LIST(V) \
197 V(has_instance_symbol, Symbol.hasInstance) \ 202 V(has_instance_symbol, Symbol.hasInstance) \
198 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 203 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
199 V(to_string_tag_symbol, Symbol.toStringTag) 204 V(to_string_tag_symbol, Symbol.toStringTag)
200 205
201 #endif // V8_HEAP_SYMBOLS_H_ 206 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/debug/mirrors.js ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698