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

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

Issue 2421453002: [wasm] Implement {Compile,Runtime}Error; fix traps from start function (Closed)
Patch Set: Fix merge artefact Created 4 years, 2 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/factory.cc ('k') | src/runtime/runtime-internal.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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 V(SyntaxError_string, "SyntaxError") \ 149 V(SyntaxError_string, "SyntaxError") \
150 V(this_string, "this") \ 150 V(this_string, "this") \
151 V(throw_string, "throw") \ 151 V(throw_string, "throw") \
152 V(timed_out, "timed-out") \ 152 V(timed_out, "timed-out") \
153 V(timeZoneName_string, "timeZoneName") \ 153 V(timeZoneName_string, "timeZoneName") \
154 V(toJSON_string, "toJSON") \ 154 V(toJSON_string, "toJSON") \
155 V(toString_string, "toString") \ 155 V(toString_string, "toString") \
156 V(true_string, "true") \ 156 V(true_string, "true") \
157 V(TypeError_string, "TypeError") \ 157 V(TypeError_string, "TypeError") \
158 V(type_string, "type") \ 158 V(type_string, "type") \
159 V(CompileError_string, "CompileError") \
160 V(RuntimeError_string, "RuntimeError") \
159 V(uint16x8_string, "uint16x8") \ 161 V(uint16x8_string, "uint16x8") \
160 V(Uint16x8_string, "Uint16x8") \ 162 V(Uint16x8_string, "Uint16x8") \
161 V(uint32x4_string, "uint32x4") \ 163 V(uint32x4_string, "uint32x4") \
162 V(Uint32x4_string, "Uint32x4") \ 164 V(Uint32x4_string, "Uint32x4") \
163 V(uint8x16_string, "uint8x16") \ 165 V(uint8x16_string, "uint8x16") \
164 V(Uint8x16_string, "Uint8x16") \ 166 V(Uint8x16_string, "Uint8x16") \
165 V(undefined_string, "undefined") \ 167 V(undefined_string, "undefined") \
166 V(undefined_to_string, "[object Undefined]") \ 168 V(undefined_to_string, "[object Undefined]") \
167 V(unicode_string, "unicode") \ 169 V(unicode_string, "unicode") \
168 V(URIError_string, "URIError") \ 170 V(URIError_string, "URIError") \
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 234 // Well-Known Symbols are "Public" symbols, which have a bit set which causes
233 // them to produce an undefined value when a load results in a failed access 235 // them to produce an undefined value when a load results in a failed access
234 // check. Because this behaviour is not specified properly as of yet, it only 236 // check. Because this behaviour is not specified properly as of yet, it only
235 // applies to a subset of spec-defined Well-Known Symbols. 237 // applies to a subset of spec-defined Well-Known Symbols.
236 #define WELL_KNOWN_SYMBOL_LIST(V) \ 238 #define WELL_KNOWN_SYMBOL_LIST(V) \
237 V(has_instance_symbol, Symbol.hasInstance) \ 239 V(has_instance_symbol, Symbol.hasInstance) \
238 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 240 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
239 V(to_string_tag_symbol, Symbol.toStringTag) 241 V(to_string_tag_symbol, Symbol.toStringTag)
240 242
241 #endif // V8_HEAP_SYMBOLS_H_ 243 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/runtime/runtime-internal.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698