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

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

Issue 2143443002: [Atomics] Rename Atomics.futex*, remove Atomics.futexWakeOrRequeue (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: merge master Created 4 years, 5 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/futex-emulation.cc ('k') | src/js/harmony-atomics.js » ('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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ 90 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \
91 V(last_index_string, "lastIndex") \ 91 V(last_index_string, "lastIndex") \
92 V(length_string, "length") \ 92 V(length_string, "length") \
93 V(line_string, "line") \ 93 V(line_string, "line") \
94 V(Map_string, "Map") \ 94 V(Map_string, "Map") \
95 V(minus_infinity_string, "-Infinity") \ 95 V(minus_infinity_string, "-Infinity") \
96 V(minus_zero_string, "-0") \ 96 V(minus_zero_string, "-0") \
97 V(name_string, "name") \ 97 V(name_string, "name") \
98 V(nan_string, "NaN") \ 98 V(nan_string, "NaN") \
99 V(next_string, "next") \ 99 V(next_string, "next") \
100 V(not_equal, "not-equal") \
100 V(null_string, "null") \ 101 V(null_string, "null") \
101 V(null_to_string, "[object Null]") \ 102 V(null_to_string, "[object Null]") \
102 V(number_string, "number") \ 103 V(number_string, "number") \
103 V(Number_string, "Number") \ 104 V(Number_string, "Number") \
104 V(object_string, "object") \ 105 V(object_string, "object") \
105 V(Object_string, "Object") \ 106 V(Object_string, "Object") \
107 V(ok, "ok") \
106 V(ownKeys_string, "ownKeys") \ 108 V(ownKeys_string, "ownKeys") \
107 V(position_string, "position") \ 109 V(position_string, "position") \
108 V(preventExtensions_string, "preventExtensions") \ 110 V(preventExtensions_string, "preventExtensions") \
109 V(private_api_string, "private_api") \ 111 V(private_api_string, "private_api") \
110 V(Promise_string, "Promise") \ 112 V(Promise_string, "Promise") \
111 V(proto_string, "__proto__") \ 113 V(proto_string, "__proto__") \
112 V(prototype_string, "prototype") \ 114 V(prototype_string, "prototype") \
113 V(Proxy_string, "Proxy") \ 115 V(Proxy_string, "Proxy") \
114 V(query_colon_string, "(?:)") \ 116 V(query_colon_string, "(?:)") \
115 V(RegExp_string, "RegExp") \ 117 V(RegExp_string, "RegExp") \
116 V(script_string, "script") \ 118 V(script_string, "script") \
117 V(setPrototypeOf_string, "setPrototypeOf") \ 119 V(setPrototypeOf_string, "setPrototypeOf") \
118 V(set_string, "set") \ 120 V(set_string, "set") \
119 V(Set_string, "Set") \ 121 V(Set_string, "Set") \
120 V(source_mapping_url_string, "source_mapping_url") \ 122 V(source_mapping_url_string, "source_mapping_url") \
121 V(source_string, "source") \ 123 V(source_string, "source") \
122 V(sourceText_string, "sourceText") \ 124 V(sourceText_string, "sourceText") \
123 V(source_url_string, "source_url") \ 125 V(source_url_string, "source_url") \
124 V(stack_string, "stack") \ 126 V(stack_string, "stack") \
125 V(strict_compare_ic_string, "===") \ 127 V(strict_compare_ic_string, "===") \
126 V(string_string, "string") \ 128 V(string_string, "string") \
127 V(String_string, "String") \ 129 V(String_string, "String") \
128 V(symbol_string, "symbol") \ 130 V(symbol_string, "symbol") \
129 V(Symbol_string, "Symbol") \ 131 V(Symbol_string, "Symbol") \
130 V(this_string, "this") \ 132 V(this_string, "this") \
131 V(throw_string, "throw") \ 133 V(throw_string, "throw") \
134 V(timed_out, "timed-out") \
132 V(toJSON_string, "toJSON") \ 135 V(toJSON_string, "toJSON") \
133 V(toString_string, "toString") \ 136 V(toString_string, "toString") \
134 V(true_string, "true") \ 137 V(true_string, "true") \
135 V(uint16x8_string, "uint16x8") \ 138 V(uint16x8_string, "uint16x8") \
136 V(Uint16x8_string, "Uint16x8") \ 139 V(Uint16x8_string, "Uint16x8") \
137 V(uint32x4_string, "uint32x4") \ 140 V(uint32x4_string, "uint32x4") \
138 V(Uint32x4_string, "Uint32x4") \ 141 V(Uint32x4_string, "Uint32x4") \
139 V(uint8x16_string, "uint8x16") \ 142 V(uint8x16_string, "uint8x16") \
140 V(Uint8x16_string, "Uint8x16") \ 143 V(Uint8x16_string, "Uint8x16") \
141 V(undefined_string, "undefined") \ 144 V(undefined_string, "undefined") \
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 213 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
211 // them to produce an undefined value when a load results in a failed access 214 // them to produce an undefined value when a load results in a failed access
212 // check. Because this behaviour is not specified properly as of yet, it only 215 // check. Because this behaviour is not specified properly as of yet, it only
213 // applies to a subset of spec-defined Well-Known Symbols. 216 // applies to a subset of spec-defined Well-Known Symbols.
214 #define WELL_KNOWN_SYMBOL_LIST(V) \ 217 #define WELL_KNOWN_SYMBOL_LIST(V) \
215 V(has_instance_symbol, Symbol.hasInstance) \ 218 V(has_instance_symbol, Symbol.hasInstance) \
216 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 219 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
217 V(to_string_tag_symbol, Symbol.toStringTag) 220 V(to_string_tag_symbol, Symbol.toStringTag)
218 221
219 #endif // V8_HEAP_SYMBOLS_H_ 222 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/futex-emulation.cc ('k') | src/js/harmony-atomics.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698