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 1285163003: Move regexp implementation into its own folder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comment 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 | « src/bytecodes-irregexp.h ('k') | src/ia32/code-stubs-ia32.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 19 matching lines...) Expand all
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 39 #if V8_TARGET_ARCH_PPC && !V8_INTERPRETED_REGEXP
40 #include "src/regexp-macro-assembler.h" // NOLINT 40 #include "src/regexp/ppc/regexp-macro-assembler-ppc.h"
41 #include "src/ppc/regexp-macro-assembler-ppc.h" // NOLINT 41 #include "src/regexp/regexp-macro-assembler.h"
42 #endif 42 #endif
43 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP 43 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP
44 #include "src/regexp-macro-assembler.h" // NOLINT 44 #include "src/regexp/arm/regexp-macro-assembler-arm.h"
45 #include "src/arm/regexp-macro-assembler-arm.h" // NOLINT 45 #include "src/regexp/regexp-macro-assembler.h"
46 #endif 46 #endif
47 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP 47 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP
48 #include "src/regexp-macro-assembler.h" // NOLINT 48 #include "src/regexp/mips/regexp-macro-assembler-mips.h"
49 #include "src/mips/regexp-macro-assembler-mips.h" // NOLINT 49 #include "src/regexp/regexp-macro-assembler.h"
50 #endif 50 #endif
51 #if V8_TARGET_ARCH_MIPS64 && !V8_INTERPRETED_REGEXP 51 #if V8_TARGET_ARCH_MIPS64 && !V8_INTERPRETED_REGEXP
52 #include "src/regexp-macro-assembler.h" 52 #include "src/regexp/mips64/regexp-macro-assembler-mips64.h"
53 #include "src/mips64/regexp-macro-assembler-mips64.h" 53 #include "src/regexp/regexp-macro-assembler.h"
54 #endif 54 #endif
55 55
56 namespace v8 { 56 namespace v8 {
57 namespace internal { 57 namespace internal {
58 58
59 59
60 struct Heap::StrongRootsList { 60 struct Heap::StrongRootsList {
61 Object** start; 61 Object** start;
62 Object** end; 62 Object** end;
63 StrongRootsList* next; 63 StrongRootsList* next;
(...skipping 6853 matching lines...) Expand 10 before | Expand all | Expand 10 after
6917 *object_type = "CODE_TYPE"; \ 6917 *object_type = "CODE_TYPE"; \
6918 *object_sub_type = "CODE_AGE/" #name; \ 6918 *object_sub_type = "CODE_AGE/" #name; \
6919 return true; 6919 return true;
6920 CODE_AGE_LIST_COMPLETE(COMPARE_AND_RETURN_NAME) 6920 CODE_AGE_LIST_COMPLETE(COMPARE_AND_RETURN_NAME)
6921 #undef COMPARE_AND_RETURN_NAME 6921 #undef COMPARE_AND_RETURN_NAME
6922 } 6922 }
6923 return false; 6923 return false;
6924 } 6924 }
6925 } // namespace internal 6925 } // namespace internal
6926 } // namespace v8 6926 } // namespace v8
OLDNEW
« no previous file with comments | « src/bytecodes-irregexp.h ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698