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

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

Issue 2307863003: [regexp] Port RegExpMatch, RegExpSearch, and RegExpTest (Closed)
Patch Set: Rebase Created 4 years, 3 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/builtins/builtins-regexp.cc ('k') | src/js/regexp.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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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") \
63 V(false_string, "false") \ 64 V(false_string, "false") \
64 V(flags_string, "flags") \ 65 V(flags_string, "flags") \
65 V(float32x4_string, "float32x4") \ 66 V(float32x4_string, "float32x4") \
66 V(Float32x4_string, "Float32x4") \ 67 V(Float32x4_string, "Float32x4") \
67 V(for_api_string, "for_api") \ 68 V(for_api_string, "for_api") \
68 V(for_string, "for") \ 69 V(for_string, "for") \
69 V(function_string, "function") \ 70 V(function_string, "function") \
70 V(Function_string, "Function") \ 71 V(Function_string, "Function") \
71 V(Generator_string, "Generator") \ 72 V(Generator_string, "Generator") \
72 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \ 73 V(getOwnPropertyDescriptor_string, "getOwnPropertyDescriptor") \
(...skipping 11 matching lines...) Expand all
84 V(int16x8_string, "int16x8") \ 85 V(int16x8_string, "int16x8") \
85 V(Int16x8_string, "Int16x8") \ 86 V(Int16x8_string, "Int16x8") \
86 V(int32x4_string, "int32x4") \ 87 V(int32x4_string, "int32x4") \
87 V(Int32x4_string, "Int32x4") \ 88 V(Int32x4_string, "Int32x4") \
88 V(int8x16_string, "int8x16") \ 89 V(int8x16_string, "int8x16") \
89 V(Int8x16_string, "Int8x16") \ 90 V(Int8x16_string, "Int8x16") \
90 V(isExtensible_string, "isExtensible") \ 91 V(isExtensible_string, "isExtensible") \
91 V(isView_string, "isView") \ 92 V(isView_string, "isView") \
92 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \ 93 V(KeyedLoadMonomorphic_string, "KeyedLoadMonomorphic") \
93 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \ 94 V(KeyedStoreMonomorphic_string, "KeyedStoreMonomorphic") \
94 V(last_index_string, "lastIndex") \ 95 V(lastIndex_string, "lastIndex") \
95 V(length_string, "length") \ 96 V(length_string, "length") \
96 V(line_string, "line") \ 97 V(line_string, "line") \
97 V(Map_string, "Map") \ 98 V(Map_string, "Map") \
98 V(message_string, "message") \ 99 V(message_string, "message") \
99 V(minus_infinity_string, "-Infinity") \ 100 V(minus_infinity_string, "-Infinity") \
100 V(minus_zero_string, "-0") \ 101 V(minus_zero_string, "-0") \
101 V(multiline_string, "multiline") \ 102 V(multiline_string, "multiline") \
102 V(name_string, "name") \ 103 V(name_string, "name") \
103 V(nan_string, "NaN") \ 104 V(nan_string, "NaN") \
104 V(next_string, "next") \ 105 V(next_string, "next") \
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 // Well-Known Symbols are "Public" symbols, which have a bit set which causes 221 // 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 222 // 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 223 // check. Because this behaviour is not specified properly as of yet, it only
223 // applies to a subset of spec-defined Well-Known Symbols. 224 // applies to a subset of spec-defined Well-Known Symbols.
224 #define WELL_KNOWN_SYMBOL_LIST(V) \ 225 #define WELL_KNOWN_SYMBOL_LIST(V) \
225 V(has_instance_symbol, Symbol.hasInstance) \ 226 V(has_instance_symbol, Symbol.hasInstance) \
226 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \ 227 V(is_concat_spreadable_symbol, Symbol.isConcatSpreadable) \
227 V(to_string_tag_symbol, Symbol.toStringTag) 228 V(to_string_tag_symbol, Symbol.toStringTag)
228 229
229 #endif // V8_HEAP_SYMBOLS_H_ 230 #endif // V8_HEAP_SYMBOLS_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins-regexp.cc ('k') | src/js/regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698