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

Issue 96783002: Allocation site pretenuring. (Closed)

Created:
7 years ago by Hannes Payer (out of office)
Modified:
6 years, 11 months ago
CC:
v8-dev
Visibility:
Public.

Description

Allocation site pretenuring. Pretenuring decisions are made based on allocation site lifetime statistics. BUG= R=mstarzinger@chromium.org, mvstanton@chromium.org Committed: https://code.google.com/p/v8/source/detail?r=18532

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Total comments: 4

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Total comments: 4

Patch Set 8 : #

Patch Set 9 : #

Patch Set 10 : #

Total comments: 4

Patch Set 11 : #

Total comments: 4

Patch Set 12 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+178 lines, -74 lines) Patch
M src/heap.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +12 lines, -0 lines 0 comments Download
M src/heap.cc View 1 2 3 4 5 6 7 8 9 10 7 chunks +52 lines, -9 lines 0 comments Download
M src/heap-inl.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +3 lines, -2 lines 0 comments Download
M src/hydrogen.cc View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -7 lines 0 comments Download
M src/objects.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +4 lines, -5 lines 0 comments Download
M src/objects.cc View 1 2 3 4 5 6 7 8 9 10 3 chunks +25 lines, -5 lines 0 comments Download
M src/objects-inl.h View 1 2 3 4 5 6 7 8 9 1 chunk +16 lines, -14 lines 0 comments Download
M test/cctest/test-heap.cc View 1 2 3 4 5 6 7 8 9 10 11 12 chunks +63 lines, -32 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
Hannes Payer (out of office)
7 years ago (2013-11-29 16:02:33 UTC) #1
mvstanton
A couple comments. Very cool stuff. --Michael https://codereview.chromium.org/96783002/diff/50001/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/96783002/diff/50001/src/heap.cc#newcode1941 src/heap.cc:1941: casted->dependent_code()->DeoptimizeDependentCodeGroup( This ...
7 years ago (2013-11-30 12:20:40 UTC) #2
mvstanton
lgtm
7 years ago (2013-12-02 10:14:45 UTC) #3
Hannes Payer (out of office)
https://codereview.chromium.org/96783002/diff/50001/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/96783002/diff/50001/src/heap.cc#newcode1941 src/heap.cc:1941: casted->dependent_code()->DeoptimizeDependentCodeGroup( On 2013/11/30 12:20:41, mvstanton wrote: > This is ...
7 years ago (2013-12-02 11:27:15 UTC) #4
Hannes Payer (out of office)
This CL should also add the adapted tests since we turn on the allocation site ...
7 years ago (2013-12-02 11:47:11 UTC) #5
Michael Starzinger
One round of comments. Looking good. https://codereview.chromium.org/96783002/diff/110001/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/96783002/diff/110001/src/heap.cc#newcode520 src/heap.cc:520: casted->dependent_code()->DeoptimizeDependentCodeGroup( IMHO this ...
7 years ago (2013-12-02 15:12:54 UTC) #6
Hannes Payer (out of office)
https://codereview.chromium.org/96783002/diff/110001/src/heap.cc File src/heap.cc (right): https://codereview.chromium.org/96783002/diff/110001/src/heap.cc#newcode520 src/heap.cc:520: casted->dependent_code()->DeoptimizeDependentCodeGroup( On 2013/12/02 15:12:54, Michael Starzinger wrote: > IMHO ...
6 years, 11 months ago (2014-01-09 14:37:12 UTC) #7
mvstanton
I have a couple of nits, but this update still LGTM. https://codereview.chromium.org/96783002/diff/240001/src/heap-inl.h File src/heap-inl.h (right): ...
6 years, 11 months ago (2014-01-09 15:33:29 UTC) #8
Hannes Payer (out of office)
https://codereview.chromium.org/96783002/diff/240001/src/heap-inl.h File src/heap-inl.h (right): https://codereview.chromium.org/96783002/diff/240001/src/heap-inl.h#newcode491 src/heap-inl.h:491: AllocationMemento* memento = AllocationMemento::FindForHeapObject( On 2014/01/09 15:33:30, mvstanton wrote: ...
6 years, 11 months ago (2014-01-09 16:01:08 UTC) #9
Michael Starzinger
LGTM. https://codereview.chromium.org/96783002/diff/300001/src/heap-inl.h File src/heap-inl.h (right): https://codereview.chromium.org/96783002/diff/300001/src/heap-inl.h#newcode487 src/heap-inl.h:487: Heap* heap = object->GetIsolate()->heap(); nit: Just "object->GetHeap()" here. ...
6 years, 11 months ago (2014-01-10 09:10:23 UTC) #10
Hannes Payer (out of office)
https://codereview.chromium.org/96783002/diff/300001/src/heap-inl.h File src/heap-inl.h (right): https://codereview.chromium.org/96783002/diff/300001/src/heap-inl.h#newcode487 src/heap-inl.h:487: Heap* heap = object->GetIsolate()->heap(); On 2014/01/10 09:10:23, Michael Starzinger ...
6 years, 11 months ago (2014-01-10 12:03:30 UTC) #11
Hannes Payer (out of office)
6 years, 11 months ago (2014-01-10 12:12:04 UTC) #12
Message was sent while issue was closed.
Committed patchset #12 manually as r18532 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698