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

Side by Side Diff: src/bootstrapper.cc

Issue 1596483005: Add ES2015 RegExp full subclassing semantics behind a flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update bytecode test expectations Created 4 years, 9 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #include "src/bootstrapper.h" 5 #include "src/bootstrapper.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api-natives.h" 8 #include "src/api-natives.h"
9 #include "src/code-stubs.h" 9 #include "src/code-stubs.h"
10 #include "src/extensions/externalize-string-extension.h" 10 #include "src/extensions/externalize-string-extension.h"
(...skipping 2342 matching lines...) Expand 10 before | Expand all | Expand 10 after
2353 void Genesis::InitializeGlobal_##id() {} 2353 void Genesis::InitializeGlobal_##id() {}
2354 2354
2355 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy) 2355 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy)
2356 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_function) 2356 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_function)
2357 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_let) 2357 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy_let)
2358 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_observe) 2358 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_observe)
2359 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexps) 2359 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexps)
2360 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode_regexps) 2360 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode_regexps)
2361 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_do_expressions) 2361 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_do_expressions)
2362 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_iterator_close) 2362 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_iterator_close)
2363 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_exec)
2363 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_lookbehind) 2364 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_lookbehind)
2364 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_property) 2365 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_regexp_property)
2365 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_function_name) 2366 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_function_name)
2366 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_function_sent) 2367 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_function_sent)
2367 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(promise_extra) 2368 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(promise_extra)
2368 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tailcalls) 2369 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tailcalls)
2369 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_instanceof) 2370 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_instanceof)
2370 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_restrictive_declarations) 2371 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_restrictive_declarations)
2371 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_exponentiation_operator) 2372 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_exponentiation_operator)
2372 2373
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
2931 static const char* harmony_tailcalls_natives[] = {nullptr}; 2932 static const char* harmony_tailcalls_natives[] = {nullptr};
2932 static const char* harmony_unicode_regexps_natives[] = { 2933 static const char* harmony_unicode_regexps_natives[] = {
2933 "native harmony-unicode-regexps.js", nullptr}; 2934 "native harmony-unicode-regexps.js", nullptr};
2934 static const char* harmony_object_observe_natives[] = { 2935 static const char* harmony_object_observe_natives[] = {
2935 "native harmony-object-observe.js", nullptr}; 2936 "native harmony-object-observe.js", nullptr};
2936 static const char* harmony_sharedarraybuffer_natives[] = { 2937 static const char* harmony_sharedarraybuffer_natives[] = {
2937 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL}; 2938 "native harmony-sharedarraybuffer.js", "native harmony-atomics.js", NULL};
2938 static const char* harmony_simd_natives[] = {"native harmony-simd.js", 2939 static const char* harmony_simd_natives[] = {"native harmony-simd.js",
2939 nullptr}; 2940 nullptr};
2940 static const char* harmony_do_expressions_natives[] = {nullptr}; 2941 static const char* harmony_do_expressions_natives[] = {nullptr};
2942 static const char* harmony_regexp_exec_natives[] = {
2943 "native harmony-regexp-exec.js", nullptr};
2941 static const char* harmony_regexp_subclass_natives[] = {nullptr}; 2944 static const char* harmony_regexp_subclass_natives[] = {nullptr};
2942 static const char* harmony_regexp_lookbehind_natives[] = {nullptr}; 2945 static const char* harmony_regexp_lookbehind_natives[] = {nullptr};
2943 static const char* harmony_instanceof_natives[] = {nullptr}; 2946 static const char* harmony_instanceof_natives[] = {nullptr};
2944 static const char* harmony_restrictive_declarations_natives[] = {nullptr}; 2947 static const char* harmony_restrictive_declarations_natives[] = {nullptr};
2945 static const char* harmony_regexp_property_natives[] = {nullptr}; 2948 static const char* harmony_regexp_property_natives[] = {nullptr};
2946 static const char* harmony_function_name_natives[] = {nullptr}; 2949 static const char* harmony_function_name_natives[] = {nullptr};
2947 static const char* harmony_function_sent_natives[] = {nullptr}; 2950 static const char* harmony_function_sent_natives[] = {nullptr};
2948 static const char* promise_extra_natives[] = {"native promise-extra.js", 2951 static const char* promise_extra_natives[] = {"native promise-extra.js",
2949 nullptr}; 2952 nullptr};
2950 static const char* harmony_object_values_entries_natives[] = {nullptr}; 2953 static const char* harmony_object_values_entries_natives[] = {nullptr};
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
3618 } 3621 }
3619 3622
3620 3623
3621 // Called when the top-level V8 mutex is destroyed. 3624 // Called when the top-level V8 mutex is destroyed.
3622 void Bootstrapper::FreeThreadResources() { 3625 void Bootstrapper::FreeThreadResources() {
3623 DCHECK(!IsActive()); 3626 DCHECK(!IsActive());
3624 } 3627 }
3625 3628
3626 } // namespace internal 3629 } // namespace internal
3627 } // namespace v8 3630 } // namespace v8
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/flag-definitions.h » ('j') | src/js/prologue.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698