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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api.h" | 8 #include "src/api.h" |
9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/base/once.h" | 10 #include "src/base/once.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "src/isolate-inl.h" | 27 #include "src/isolate-inl.h" |
28 #include "src/natives.h" | 28 #include "src/natives.h" |
29 #include "src/runtime-profiler.h" | 29 #include "src/runtime-profiler.h" |
30 #include "src/scopeinfo.h" | 30 #include "src/scopeinfo.h" |
31 #include "src/serialize.h" | 31 #include "src/serialize.h" |
32 #include "src/snapshot.h" | 32 #include "src/snapshot.h" |
33 #include "src/utils.h" | 33 #include "src/utils.h" |
34 #include "src/v8threads.h" | 34 #include "src/v8threads.h" |
35 #include "src/vm-state-inl.h" | 35 #include "src/vm-state-inl.h" |
36 | 36 |
| 37 #if V8_TARGET_ARCH_PPC && !V8_INTERPRETED_REGEXP |
| 38 #include "src/regexp-macro-assembler.h" // NOLINT |
| 39 #include "src/ppc/regexp-macro-assembler-ppc.h" // NOLINT |
| 40 #endif |
37 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP | 41 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP |
38 #include "src/regexp-macro-assembler.h" // NOLINT | 42 #include "src/regexp-macro-assembler.h" // NOLINT |
39 #include "src/arm/regexp-macro-assembler-arm.h" // NOLINT | 43 #include "src/arm/regexp-macro-assembler-arm.h" // NOLINT |
40 #endif | 44 #endif |
41 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP | 45 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP |
42 #include "src/regexp-macro-assembler.h" // NOLINT | 46 #include "src/regexp-macro-assembler.h" // NOLINT |
43 #include "src/mips/regexp-macro-assembler-mips.h" // NOLINT | 47 #include "src/mips/regexp-macro-assembler-mips.h" // NOLINT |
44 #endif | 48 #endif |
45 #if V8_TARGET_ARCH_MIPS64 && !V8_INTERPRETED_REGEXP | 49 #if V8_TARGET_ARCH_MIPS64 && !V8_INTERPRETED_REGEXP |
46 #include "src/regexp-macro-assembler.h" | 50 #include "src/regexp-macro-assembler.h" |
(...skipping 6390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6437 static_cast<int>(object_sizes_last_time_[index])); | 6441 static_cast<int>(object_sizes_last_time_[index])); |
6438 CODE_AGE_LIST_COMPLETE(ADJUST_LAST_TIME_OBJECT_COUNT) | 6442 CODE_AGE_LIST_COMPLETE(ADJUST_LAST_TIME_OBJECT_COUNT) |
6439 #undef ADJUST_LAST_TIME_OBJECT_COUNT | 6443 #undef ADJUST_LAST_TIME_OBJECT_COUNT |
6440 | 6444 |
6441 MemCopy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); | 6445 MemCopy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); |
6442 MemCopy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); | 6446 MemCopy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); |
6443 ClearObjectStats(); | 6447 ClearObjectStats(); |
6444 } | 6448 } |
6445 } | 6449 } |
6446 } // namespace v8::internal | 6450 } // namespace v8::internal |
OLD | NEW |