OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/builtins.h" | 5 #include "src/builtins.h" |
6 | 6 |
7 #include "src/api.h" | 7 #include "src/api.h" |
8 #include "src/api-natives.h" | 8 #include "src/api-natives.h" |
9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
10 #include "src/base/once.h" | 10 #include "src/base/once.h" |
11 #include "src/bootstrapper.h" | 11 #include "src/bootstrapper.h" |
12 #include "src/cpu-profiler.h" | |
13 #include "src/elements.h" | 12 #include "src/elements.h" |
14 #include "src/frames-inl.h" | 13 #include "src/frames-inl.h" |
15 #include "src/gdb-jit.h" | 14 #include "src/gdb-jit.h" |
16 #include "src/heap-profiler.h" | |
17 #include "src/ic/handler-compiler.h" | 15 #include "src/ic/handler-compiler.h" |
18 #include "src/ic/ic.h" | 16 #include "src/ic/ic.h" |
19 #include "src/isolate-inl.h" | 17 #include "src/isolate-inl.h" |
20 #include "src/messages.h" | 18 #include "src/messages.h" |
| 19 #include "src/profiler/cpu-profiler.h" |
21 #include "src/prototype.h" | 20 #include "src/prototype.h" |
22 #include "src/vm-state-inl.h" | 21 #include "src/vm-state-inl.h" |
23 | 22 |
24 namespace v8 { | 23 namespace v8 { |
25 namespace internal { | 24 namespace internal { |
26 | 25 |
27 namespace { | 26 namespace { |
28 | 27 |
29 // Arguments object passed to C++ builtins. | 28 // Arguments object passed to C++ builtins. |
30 template <BuiltinExtraArguments extra_args> | 29 template <BuiltinExtraArguments extra_args> |
(...skipping 2059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2090 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 2089 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
2091 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 2090 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
2092 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 2091 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
2093 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 2092 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
2094 #undef DEFINE_BUILTIN_ACCESSOR_C | 2093 #undef DEFINE_BUILTIN_ACCESSOR_C |
2095 #undef DEFINE_BUILTIN_ACCESSOR_A | 2094 #undef DEFINE_BUILTIN_ACCESSOR_A |
2096 | 2095 |
2097 | 2096 |
2098 } // namespace internal | 2097 } // namespace internal |
2099 } // namespace v8 | 2098 } // namespace v8 |
OLD | NEW |