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

Side by Side Diff: src/mark-compact.cc

Issue 7112030: Make backing store for incremental marking deque non-static. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 19 matching lines...) Expand all
30 #include "compilation-cache.h" 30 #include "compilation-cache.h"
31 #include "execution.h" 31 #include "execution.h"
32 #include "gdb-jit.h" 32 #include "gdb-jit.h"
33 #include "global-handles.h" 33 #include "global-handles.h"
34 #include "heap-profiler.h" 34 #include "heap-profiler.h"
35 #include "ic-inl.h" 35 #include "ic-inl.h"
36 #include "incremental-marking.h" 36 #include "incremental-marking.h"
37 #include "liveobjectlist-inl.h" 37 #include "liveobjectlist-inl.h"
38 #include "mark-compact.h" 38 #include "mark-compact.h"
39 #include "objects-visiting.h" 39 #include "objects-visiting.h"
40 #include "objects-visiting-inl.h"
40 #include "stub-cache.h" 41 #include "stub-cache.h"
41 42
42 namespace v8 { 43 namespace v8 {
43 namespace internal { 44 namespace internal {
44 45
45 46
46 const char* Marking::kWhiteBitPattern = "00"; 47 const char* Marking::kWhiteBitPattern = "00";
47 const char* Marking::kBlackBitPattern = "10"; 48 const char* Marking::kBlackBitPattern = "10";
48 const char* Marking::kGreyBitPattern = "11"; 49 const char* Marking::kGreyBitPattern = "11";
49 const char* Marking::kImpossibleBitPattern = "01"; 50 const char* Marking::kImpossibleBitPattern = "01";
(...skipping 2719 matching lines...) Expand 10 before | Expand all | Expand 10 after
2769 } 2770 }
2770 2771
2771 2772
2772 void MarkCompactCollector::Initialize() { 2773 void MarkCompactCollector::Initialize() {
2773 StaticPointersToNewGenUpdatingVisitor::Initialize(); 2774 StaticPointersToNewGenUpdatingVisitor::Initialize();
2774 StaticMarkingVisitor::Initialize(); 2775 StaticMarkingVisitor::Initialize();
2775 } 2776 }
2776 2777
2777 2778
2778 } } // namespace v8::internal 2779 } } // namespace v8::internal
OLDNEW
« src/incremental-marking.cc ('K') | « src/incremental-marking.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698