|
|
Provide baseline for experimental GC implementation.
(Third attempt).
- Remove anything related to mark-compact collection;
- Guard current write-barrier implementation with ENABLE_CARDMARKING_WRITE_BARRIER on all platforms to disable. Conditional compilation was used instead of flag to detect all places where we emit write-barrier. Some of them depend on actuall instructions sequence used inside write-barrier.
Committed: http://code.google.com/p/v8/source/detail?r=6019
Total comments: 2
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+274 lines, -1300 lines) |
Patch |
 |
M |
src/arm/code-stubs-arm.cc
|
View
|
|
2 chunks |
+6 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/arm/codegen-arm.h
|
View
|
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/arm/codegen-arm.cc
|
View
|
|
9 chunks |
+14 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/arm/full-codegen-arm.cc
|
View
|
|
7 chunks |
+15 lines, -0 lines |
1 comment
|
Download
|
 |
M |
src/arm/ic-arm.cc
|
View
|
|
4 chunks |
+7 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/arm/macro-assembler-arm.h
|
View
|
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/arm/macro-assembler-arm.cc
|
View
|
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/arm/stub-cache-arm.cc
|
View
|
|
5 chunks |
+14 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/flag-definitions.h
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
src/globals.h
|
View
|
|
1 chunk |
+1 line, -0 lines |
1 comment
|
Download
|
 |
M |
src/heap.h
|
View
|
|
3 chunks |
+4 lines, -4 lines |
0 comments
|
Download
|
 |
M |
src/heap.cc
|
View
|
|
4 chunks |
+8 lines, -20 lines |
0 comments
|
Download
|
 |
M |
src/heap-inl.h
|
View
|
|
4 chunks |
+12 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/code-stubs-ia32.cc
|
View
|
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/codegen-ia32.cc
|
View
|
|
15 chunks |
+28 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/ia32/full-codegen-ia32.cc
|
View
|
|
8 chunks |
+18 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/ic-ia32.cc
|
View
|
|
5 chunks |
+9 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/lithium-codegen-ia32.cc
|
View
|
|
2 chunks |
+6 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/macro-assembler-ia32.h
|
View
|
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/ia32/macro-assembler-ia32.cc
|
View
|
|
2 chunks |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
src/ia32/stub-cache-ia32.cc
|
View
|
|
5 chunks |
+14 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/mark-compact.h
|
View
|
|
2 chunks |
+4 lines, -107 lines |
0 comments
|
Download
|
 |
M |
src/mark-compact.cc
|
View
|
|
6 chunks |
+7 lines, -1017 lines |
0 comments
|
Download
|
 |
M |
src/objects.h
|
View
|
|
2 chunks |
+0 lines, -59 lines |
0 comments
|
Download
|
 |
M |
src/objects-inl.h
|
View
|
|
3 chunks |
+4 lines, -55 lines |
0 comments
|
Download
|
 |
M |
src/spaces.h
|
View
|
|
2 chunks |
+3 lines, -12 lines |
0 comments
|
Download
|
 |
M |
src/spaces.cc
|
View
|
|
1 chunk |
+0 lines, -14 lines |
0 comments
|
Download
|
 |
M |
src/spaces-inl.h
|
View
|
|
1 chunk |
+6 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/x64/code-stubs-x64.cc
|
View
|
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/x64/codegen-x64.cc
|
View
|
|
15 chunks |
+27 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/x64/full-codegen-x64.cc
|
View
|
|
6 chunks |
+13 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/x64/ic-x64.cc
|
View
|
|
5 chunks |
+8 lines, -0 lines |
0 comments
|
Download
|
 |
M |
src/x64/macro-assembler-x64.h
|
View
|
|
4 chunks |
+4 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/x64/macro-assembler-x64.cc
|
View
|
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
src/x64/stub-cache-x64.cc
|
View
|
|
6 chunks |
+14 lines, -1 line |
0 comments
|
Download
|
 |
M |
test/cctest/test-mark-compact.cc
|
View
|
|
2 chunks |
+3 lines, -1 line |
0 comments
|
Download
|
 |
M |
test/cctest/test-spaces.cc
|
View
|
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
Total messages: 2 (0 generated)
|