| OLD | NEW |
| 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 2144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2155 static const char* harmony_arrays_natives[] = { | 2155 static const char* harmony_arrays_natives[] = { |
| 2156 "native harmony-array.js", "native harmony-typedarray.js", NULL}; | 2156 "native harmony-array.js", "native harmony-typedarray.js", NULL}; |
| 2157 static const char* harmony_proxies_natives[] = {"native proxy.js", NULL}; | 2157 static const char* harmony_proxies_natives[] = {"native proxy.js", NULL}; |
| 2158 static const char* harmony_strings_natives[] = {"native harmony-string.js", | 2158 static const char* harmony_strings_natives[] = {"native harmony-string.js", |
| 2159 NULL}; | 2159 NULL}; |
| 2160 static const char* harmony_classes_natives[] = {"native harmony-classes.js", | 2160 static const char* harmony_classes_natives[] = {"native harmony-classes.js", |
| 2161 NULL}; | 2161 NULL}; |
| 2162 static const char* harmony_modules_natives[] = {NULL}; | 2162 static const char* harmony_modules_natives[] = {NULL}; |
| 2163 static const char* harmony_scoping_natives[] = {NULL}; | 2163 static const char* harmony_scoping_natives[] = {NULL}; |
| 2164 static const char* harmony_object_literals_natives[] = {NULL}; | 2164 static const char* harmony_object_literals_natives[] = {NULL}; |
| 2165 static const char* harmony_regexps_natives[] = {NULL}; | 2165 static const char* harmony_regexps_natives[] = { |
| 2166 "native harmony-regexp.js", NULL}; |
| 2166 static const char* harmony_arrow_functions_natives[] = {NULL}; | 2167 static const char* harmony_arrow_functions_natives[] = {NULL}; |
| 2167 static const char* harmony_numeric_literals_natives[] = {NULL}; | 2168 static const char* harmony_numeric_literals_natives[] = {NULL}; |
| 2168 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js", | 2169 static const char* harmony_tostring_natives[] = {"native harmony-tostring.js", |
| 2169 NULL}; | 2170 NULL}; |
| 2170 static const char* harmony_templates_natives[] = { | 2171 static const char* harmony_templates_natives[] = { |
| 2171 "native harmony-templates.js", NULL}; | 2172 "native harmony-templates.js", NULL}; |
| 2172 static const char* harmony_sloppy_natives[] = {NULL}; | 2173 static const char* harmony_sloppy_natives[] = {NULL}; |
| 2173 static const char* harmony_unicode_natives[] = {NULL}; | 2174 static const char* harmony_unicode_natives[] = {NULL}; |
| 2174 | 2175 |
| 2175 for (int i = ExperimentalNatives::GetDebuggerCount(); | 2176 for (int i = ExperimentalNatives::GetDebuggerCount(); |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2819 return from + sizeof(NestingCounterType); | 2820 return from + sizeof(NestingCounterType); |
| 2820 } | 2821 } |
| 2821 | 2822 |
| 2822 | 2823 |
| 2823 // Called when the top-level V8 mutex is destroyed. | 2824 // Called when the top-level V8 mutex is destroyed. |
| 2824 void Bootstrapper::FreeThreadResources() { | 2825 void Bootstrapper::FreeThreadResources() { |
| 2825 DCHECK(!IsActive()); | 2826 DCHECK(!IsActive()); |
| 2826 } | 2827 } |
| 2827 | 2828 |
| 2828 } } // namespace v8::internal | 2829 } } // namespace v8::internal |
| OLD | NEW |