OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 // Test enabled only on supported architectures. | 5 // Test enabled only on supported architectures. |
6 #if defined(V8_TARGET_ARCH_X64) || defined(V8_TARGET_ARCH_ARM) || \ | 6 #if defined(V8_TARGET_ARCH_X64) || defined(V8_TARGET_ARCH_ARM) || \ |
7 defined(V8_TARGET_ARCH_ARM64) | 7 defined(V8_TARGET_ARCH_ARM64) |
8 | 8 |
| 9 #include "src/flags.h" |
| 10 #include "src/objects-inl.h" |
| 11 #include "src/objects.h" |
| 12 #include "src/unicode-cache.h" |
9 #include "test/cctest/compiler/function-tester.h" | 13 #include "test/cctest/compiler/function-tester.h" |
10 | 14 |
11 namespace v8 { | 15 namespace v8 { |
12 namespace internal { | 16 namespace internal { |
13 namespace compiler { | 17 namespace compiler { |
14 | 18 |
15 TEST(RunUnwindingInfo) { | 19 TEST(RunUnwindingInfo) { |
16 FLAG_turbo = true; | 20 FLAG_turbo = true; |
17 FLAG_perf_prof_unwinding_info = true; | 21 FLAG_perf_prof_unwinding_info = true; |
18 | 22 |
(...skipping 30 matching lines...) Expand all Loading... |
49 // | | State B != A |---+ | 53 // | | State B != A |---+ |
50 // | +----------------+ | | 54 // | +----------------+ | |
51 // +-->| Failure here |<--+ | 55 // +-->| Failure here |<--+ |
52 // +----------------+ | 56 // +----------------+ |
53 | 57 |
54 } // namespace compiler | 58 } // namespace compiler |
55 } // namespace internal | 59 } // namespace internal |
56 } // namespace v8 | 60 } // namespace v8 |
57 | 61 |
58 #endif | 62 #endif |
OLD | NEW |