Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1039)

Side by Side Diff: src/heap/heap.cc

Issue 817143002: Contribution of PowerPC port (continuation of 422063005) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Contribution of PowerPC port - rebase and address initial set of comments Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/globals.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/globals.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698