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/v8.h" | |
6 | |
7 #if V8_TARGET_ARCH_PPC | 5 #if V8_TARGET_ARCH_PPC |
8 | 6 |
9 #include "src/codegen.h" | 7 #include "src/codegen.h" |
10 #include "src/debug/debug.h" | 8 #include "src/debug/debug.h" |
11 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
12 #include "src/full-codegen/full-codegen.h" | 10 #include "src/full-codegen/full-codegen.h" |
13 #include "src/interpreter/bytecodes.h" | 11 #include "src/interpreter/bytecodes.h" |
14 #include "src/runtime/runtime.h" | 12 #include "src/runtime/runtime.h" |
15 | 13 |
16 namespace v8 { | 14 namespace v8 { |
(...skipping 1905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1922 __ bkpt(0); | 1920 __ bkpt(0); |
1923 } | 1921 } |
1924 } | 1922 } |
1925 | 1923 |
1926 | 1924 |
1927 #undef __ | 1925 #undef __ |
1928 } // namespace internal | 1926 } // namespace internal |
1929 } // namespace v8 | 1927 } // namespace v8 |
1930 | 1928 |
1931 #endif // V8_TARGET_ARCH_PPC | 1929 #endif // V8_TARGET_ARCH_PPC |
OLD | NEW |