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

Side by Side Diff: src/bootstrapper.cc

Issue 716423002: ES6 unicode extensions, part 1. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add tests Created 6 years 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 | « no previous file | src/flag-definitions.h » ('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 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/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/extensions/externalize-string-extension.h" 9 #include "src/extensions/externalize-string-extension.h"
10 #include "src/extensions/free-buffer-extension.h" 10 #include "src/extensions/free-buffer-extension.h"
(...skipping 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after
1583 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_strings) 1583 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_strings)
1584 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_arrays) 1584 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_arrays)
1585 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_classes) 1585 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_classes)
1586 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_object_literals) 1586 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_object_literals)
1587 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_regexps) 1587 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_regexps)
1588 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_arrow_functions) 1588 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_arrow_functions)
1589 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_numeric_literals) 1589 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_numeric_literals)
1590 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_tostring) 1590 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_tostring)
1591 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_templates) 1591 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_templates)
1592 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_sloppy) 1592 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_sloppy)
1593 EMPTY_NATIVE_FUNCTIONS_FOR_FEATURE(harmony_unicode)
1593 1594
1594 1595
1595 void Genesis::InstallNativeFunctions_harmony_proxies() { 1596 void Genesis::InstallNativeFunctions_harmony_proxies() {
1596 if (FLAG_harmony_proxies) { 1597 if (FLAG_harmony_proxies) {
1597 INSTALL_NATIVE(JSFunction, "DerivedHasTrap", derived_has_trap); 1598 INSTALL_NATIVE(JSFunction, "DerivedHasTrap", derived_has_trap);
1598 INSTALL_NATIVE(JSFunction, "DerivedGetTrap", derived_get_trap); 1599 INSTALL_NATIVE(JSFunction, "DerivedGetTrap", derived_get_trap);
1599 INSTALL_NATIVE(JSFunction, "DerivedSetTrap", derived_set_trap); 1600 INSTALL_NATIVE(JSFunction, "DerivedSetTrap", derived_set_trap);
1600 INSTALL_NATIVE(JSFunction, "ProxyEnumerate", proxy_enumerate); 1601 INSTALL_NATIVE(JSFunction, "ProxyEnumerate", proxy_enumerate);
1601 } 1602 }
1602 } 1603 }
1603 1604
1604 #undef INSTALL_NATIVE 1605 #undef INSTALL_NATIVE
1605 1606
1606 #define EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(id) \ 1607 #define EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(id) \
1607 void Genesis::InitializeGlobal_##id() {} 1608 void Genesis::InitializeGlobal_##id() {}
1608 1609
1609 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_scoping) 1610 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_scoping)
1610 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_modules) 1611 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_modules)
1611 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_strings) 1612 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_strings)
1612 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrays) 1613 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrays)
1613 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_classes) 1614 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_classes)
1614 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_literals) 1615 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_object_literals)
1615 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrow_functions) 1616 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_arrow_functions)
1616 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_numeric_literals) 1617 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_numeric_literals)
1617 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tostring) 1618 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_tostring)
1618 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_proxies) 1619 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_proxies)
1619 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_templates) 1620 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_templates)
1620 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy) 1621 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_sloppy)
1622 EMPTY_INITIALIZE_GLOBAL_FOR_FEATURE(harmony_unicode)
1621 1623
1622 void Genesis::InitializeGlobal_harmony_regexps() { 1624 void Genesis::InitializeGlobal_harmony_regexps() {
1623 Handle<JSObject> builtins(native_context()->builtins()); 1625 Handle<JSObject> builtins(native_context()->builtins());
1624 1626
1625 Handle<HeapObject> flag(FLAG_harmony_regexps ? heap()->true_value() 1627 Handle<HeapObject> flag(FLAG_harmony_regexps ? heap()->true_value()
1626 : heap()->false_value()); 1628 : heap()->false_value());
1627 PropertyAttributes attributes = 1629 PropertyAttributes attributes =
1628 static_cast<PropertyAttributes>(DONT_DELETE | READ_ONLY); 1630 static_cast<PropertyAttributes>(DONT_DELETE | READ_ONLY);
1629 Runtime::DefineObjectProperty(builtins, factory()->harmony_regexps_string(), 1631 Runtime::DefineObjectProperty(builtins, factory()->harmony_regexps_string(),
1630 flag, attributes).Assert(); 1632 flag, attributes).Assert();
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
2169 static const char* harmony_scoping_natives[] = {NULL}; 2171 static const char* harmony_scoping_natives[] = {NULL};
2170 static const char* harmony_object_literals_natives[] = {NULL}; 2172 static const char* harmony_object_literals_natives[] = {NULL};
2171 static const char* harmony_regexps_natives[] = {NULL}; 2173 static const char* harmony_regexps_natives[] = {NULL};
2172 static const char* harmony_arrow_functions_natives[] = {NULL}; 2174 static const char* harmony_arrow_functions_natives[] = {NULL};
2173 static const char* harmony_numeric_literals_natives[] = {NULL}; 2175 static const char* harmony_numeric_literals_natives[] = {NULL};
2174 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js", 2176 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js",
2175 NULL}; 2177 NULL};
2176 static const char* harmony_templates_natives[] = { 2178 static const char* harmony_templates_natives[] = {
2177 "native harmony-templates.js", NULL}; 2179 "native harmony-templates.js", NULL};
2178 static const char* harmony_sloppy_natives[] = {NULL}; 2180 static const char* harmony_sloppy_natives[] = {NULL};
2181 static const char* harmony_unicode_natives[] = {NULL};
2179 2182
2180 for (int i = ExperimentalNatives::GetDebuggerCount(); 2183 for (int i = ExperimentalNatives::GetDebuggerCount();
2181 i < ExperimentalNatives::GetBuiltinsCount(); i++) { 2184 i < ExperimentalNatives::GetBuiltinsCount(); i++) {
2182 #define INSTALL_EXPERIMENTAL_NATIVES(id, desc) \ 2185 #define INSTALL_EXPERIMENTAL_NATIVES(id, desc) \
2183 if (FLAG_##id) { \ 2186 if (FLAG_##id) { \
2184 for (size_t j = 0; id##_natives[j] != NULL; j++) { \ 2187 for (size_t j = 0; id##_natives[j] != NULL; j++) { \
2185 if (strcmp(ExperimentalNatives::GetScriptName(i).start(), \ 2188 if (strcmp(ExperimentalNatives::GetScriptName(i).start(), \
2186 id##_natives[j]) == 0) { \ 2189 id##_natives[j]) == 0) { \
2187 if (!CompileExperimentalBuiltin(isolate(), i)) return false; \ 2190 if (!CompileExperimentalBuiltin(isolate(), i)) return false; \
2188 } \ 2191 } \
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
2823 return from + sizeof(NestingCounterType); 2826 return from + sizeof(NestingCounterType);
2824 } 2827 }
2825 2828
2826 2829
2827 // Called when the top-level V8 mutex is destroyed. 2830 // Called when the top-level V8 mutex is destroyed.
2828 void Bootstrapper::FreeThreadResources() { 2831 void Bootstrapper::FreeThreadResources() {
2829 DCHECK(!IsActive()); 2832 DCHECK(!IsActive());
2830 } 2833 }
2831 2834
2832 } } // namespace v8::internal 2835 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698