|
Basic implementation of incremental marking.
Based on classic tri-color abstraction (white --- not seen, grey --- seen and in the marking stack, black --- seen and scanned) with a write barrier that transfers black objects to grey when we assign to white object into field.
Currently write-barrier is out-lined (generated code just calls C function) so write-intensive applications are expected to show significant degradation.
Committed: http://code.google.com/p/v8/source/detail?r=6916
Total comments: 57
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+778 lines, -109 lines) |
Patch |
 |
M |
src/SConscript
|
View
|
|
1 chunk |
+1 line, -0 lines |
2 comments
|
Download
|
 |
M |
src/arm/deoptimizer-arm.cc
|
View
|
|
1 chunk |
+2 lines, -1 line |
2 comments
|
Download
|
 |
M |
src/assembler.h
|
View
|
|
2 chunks |
+4 lines, -3 lines |
2 comments
|
Download
|
 |
M |
src/assembler.cc
|
View
|
|
2 chunks |
+6 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/builtins.cc
|
View
|
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/compiler-intrinsics.h
|
View
|
|
1 chunk |
+1 line, -1 line |
2 comments
|
Download
|
 |
M |
src/debug.cc
|
View
|
|
4 chunks |
+5 lines, -5 lines |
2 comments
|
Download
|
 |
M |
src/deoptimizer.h
|
View
|
|
1 chunk |
+2 lines, -1 line |
2 comments
|
Download
|
 |
M |
src/deoptimizer.cc
|
View
|
|
1 chunk |
+4 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/execution.h
|
View
|
|
2 chunks |
+4 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/execution.cc
|
View
|
|
5 chunks |
+24 lines, -3 lines |
0 comments
|
Download
|
 |
M |
src/flag-definitions.h
|
View
|
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/heap.h
|
View
|
|
1 chunk |
+18 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/heap.cc
|
View
|
|
4 chunks |
+18 lines, -1 line |
2 comments
|
Download
|
 |
M |
src/heap-inl.h
|
View
|
|
1 chunk |
+2 lines, -2 lines |
2 comments
|
Download
|
 |
M |
src/ia32/assembler-ia32-inl.h
|
View
|
|
3 chunks |
+11 lines, -3 lines |
0 comments
|
Download
|
 |
M |
src/ia32/deoptimizer-ia32.cc
|
View
|
|
3 chunks |
+4 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/ia32/lithium-codegen-ia32.cc
|
View
|
|
1 chunk |
+13 lines, -3 lines |
2 comments
|
Download
|
 |
M |
src/ia32/lithium-ia32.h
|
View
|
|
1 chunk |
+11 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/ia32/lithium-ia32.cc
|
View
|
|
1 chunk |
+3 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/ia32/macro-assembler-ia32.h
|
View
|
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/macro-assembler-ia32.cc
|
View
|
|
2 chunks |
+23 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/ia32/stub-cache-ia32.cc
|
View
|
|
3 chunks |
+13 lines, -6 lines |
0 comments
|
Download
|
 |
M |
src/ic-inl.h
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
A |
src/incremental-marking.h
|
View
|
|
1 chunk |
+352 lines, -0 lines |
19 comments
|
Download
|
 |
A |
src/incremental-marking.cc
|
View
|
|
1 chunk |
+43 lines, -0 lines |
1 comment
|
Download
|
 |
M |
src/lithium-allocator.cc
|
View
|
|
1 chunk |
+7 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/liveedit.cc
|
View
|
|
2 chunks |
+4 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/mark-compact.h
|
View
|
|
2 chunks |
+4 lines, -10 lines |
0 comments
|
Download
|
 |
M |
src/mark-compact.cc
|
View
|
|
14 chunks |
+137 lines, -21 lines |
16 comments
|
Download
|
 |
M |
src/objects.cc
|
View
|
|
2 chunks |
+5 lines, -5 lines |
0 comments
|
Download
|
 |
M |
src/objects-inl.h
|
View
|
|
22 chunks |
+23 lines, -30 lines |
2 comments
|
Download
|
 |
M |
src/serialize.cc
|
View
|
|
1 chunk |
+5 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/spaces.cc
|
View
|
|
4 chunks |
+5 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/spaces-inl.h
|
View
|
|
2 chunks |
+12 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/x64/deoptimizer-x64.cc
|
View
|
|
1 chunk |
+2 lines, -1 line |
1 comment
|
Download
|
Total messages: 3 (0 generated)
|