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 "v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "api.h" | 7 #include "src/api.h" |
8 #include "arguments.h" | 8 #include "src/arguments.h" |
9 #include "bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "builtins.h" | 10 #include "src/builtins.h" |
11 #include "cpu-profiler.h" | 11 #include "src/cpu-profiler.h" |
12 #include "gdb-jit.h" | 12 #include "src/gdb-jit.h" |
13 #include "ic-inl.h" | 13 #include "src/ic-inl.h" |
14 #include "heap-profiler.h" | 14 #include "src/heap-profiler.h" |
15 #include "mark-compact.h" | 15 #include "src/mark-compact.h" |
16 #include "stub-cache.h" | 16 #include "src/stub-cache.h" |
17 #include "vm-state-inl.h" | 17 #include "src/vm-state-inl.h" |
18 | 18 |
19 namespace v8 { | 19 namespace v8 { |
20 namespace internal { | 20 namespace internal { |
21 | 21 |
22 namespace { | 22 namespace { |
23 | 23 |
24 // Arguments object passed to C++ builtins. | 24 // Arguments object passed to C++ builtins. |
25 template <BuiltinExtraArguments extra_args> | 25 template <BuiltinExtraArguments extra_args> |
26 class BuiltinArguments : public Arguments { | 26 class BuiltinArguments : public Arguments { |
27 public: | 27 public: |
(...skipping 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1716 } | 1716 } |
1717 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1717 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1718 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1718 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1719 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1719 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
1720 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1720 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1721 #undef DEFINE_BUILTIN_ACCESSOR_C | 1721 #undef DEFINE_BUILTIN_ACCESSOR_C |
1722 #undef DEFINE_BUILTIN_ACCESSOR_A | 1722 #undef DEFINE_BUILTIN_ACCESSOR_A |
1723 | 1723 |
1724 | 1724 |
1725 } } // namespace v8::internal | 1725 } } // namespace v8::internal |
OLD | NEW |