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

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

Issue 1290403002: [heap] Get rid of unused regexp includes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 | « no previous file | no next file » | 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 18 matching lines...) Expand all
29 #include "src/interpreter/interpreter.h" 29 #include "src/interpreter/interpreter.h"
30 #include "src/runtime-profiler.h" 30 #include "src/runtime-profiler.h"
31 #include "src/scopeinfo.h" 31 #include "src/scopeinfo.h"
32 #include "src/snapshot/natives.h" 32 #include "src/snapshot/natives.h"
33 #include "src/snapshot/serialize.h" 33 #include "src/snapshot/serialize.h"
34 #include "src/snapshot/snapshot.h" 34 #include "src/snapshot/snapshot.h"
35 #include "src/utils.h" 35 #include "src/utils.h"
36 #include "src/v8threads.h" 36 #include "src/v8threads.h"
37 #include "src/vm-state-inl.h" 37 #include "src/vm-state-inl.h"
38 38
39 #if V8_TARGET_ARCH_PPC && !V8_INTERPRETED_REGEXP
40 #include "src/regexp/ppc/regexp-macro-assembler-ppc.h"
41 #include "src/regexp/regexp-macro-assembler.h"
42 #endif
43 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP
44 #include "src/regexp/arm/regexp-macro-assembler-arm.h"
45 #include "src/regexp/regexp-macro-assembler.h"
46 #endif
47 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP
48 #include "src/regexp/mips/regexp-macro-assembler-mips.h"
49 #include "src/regexp/regexp-macro-assembler.h"
50 #endif
51 #if V8_TARGET_ARCH_MIPS64 && !V8_INTERPRETED_REGEXP
52 #include "src/regexp/mips64/regexp-macro-assembler-mips64.h"
53 #include "src/regexp/regexp-macro-assembler.h"
54 #endif
55
56 namespace v8 { 39 namespace v8 {
57 namespace internal { 40 namespace internal {
58 41
59 42
60 struct Heap::StrongRootsList { 43 struct Heap::StrongRootsList {
61 Object** start; 44 Object** start;
62 Object** end; 45 Object** end;
63 StrongRootsList* next; 46 StrongRootsList* next;
64 }; 47 };
65 48
(...skipping 6851 matching lines...) Expand 10 before | Expand all | Expand 10 after
6917 *object_type = "CODE_TYPE"; \ 6900 *object_type = "CODE_TYPE"; \
6918 *object_sub_type = "CODE_AGE/" #name; \ 6901 *object_sub_type = "CODE_AGE/" #name; \
6919 return true; 6902 return true;
6920 CODE_AGE_LIST_COMPLETE(COMPARE_AND_RETURN_NAME) 6903 CODE_AGE_LIST_COMPLETE(COMPARE_AND_RETURN_NAME)
6921 #undef COMPARE_AND_RETURN_NAME 6904 #undef COMPARE_AND_RETURN_NAME
6922 } 6905 }
6923 return false; 6906 return false;
6924 } 6907 }
6925 } // namespace internal 6908 } // namespace internal
6926 } // namespace v8 6909 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698