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

Issue 12880017: Build fast literals in hydrogen. (Closed)

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

Description

Build fast literals in hydrogen. BUG= Committed: https://code.google.com/p/v8/source/detail?r=14211

Patch Set 1 #

Total comments: 38

Patch Set 2 : #

Total comments: 26

Patch Set 3 : #

Total comments: 6

Patch Set 4 : #

Patch Set 5 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+351 lines, -628 lines) Patch
M src/arm/lithium-arm.h View 1 2 chunks +0 lines, -8 lines 0 comments Download
M src/arm/lithium-arm.cc View 1 2 3 4 1 chunk +0 lines, -5 lines 0 comments Download
M src/arm/lithium-codegen-arm.cc View 1 2 3 4 1 chunk +0 lines, -164 lines 0 comments Download
M src/handles.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M src/handles.cc View 1 2 3 4 1 chunk +8 lines, -0 lines 0 comments Download
M src/heap.h View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/hydrogen.h View 1 2 2 chunks +27 lines, -0 lines 0 comments Download
M src/hydrogen.cc View 1 2 3 4 4 chunks +281 lines, -38 lines 0 comments Download
M src/hydrogen-instructions.h View 1 2 3 4 4 chunks +1 line, -42 lines 0 comments Download
M src/hydrogen-instructions.cc View 1 2 3 4 1 chunk +0 lines, -6 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 1 2 3 4 1 chunk +0 lines, -172 lines 0 comments Download
M src/ia32/lithium-ia32.h View 1 2 3 4 2 chunks +0 lines, -14 lines 0 comments Download
M src/ia32/lithium-ia32.cc View 1 2 3 4 1 chunk +0 lines, -7 lines 0 comments Download
M src/x64/lithium-codegen-x64.cc View 1 2 3 4 1 chunk +0 lines, -157 lines 0 comments Download
M src/x64/lithium-x64.h View 1 2 chunks +0 lines, -8 lines 0 comments Download
M src/x64/lithium-x64.cc View 1 1 chunk +0 lines, -5 lines 0 comments Download
M test/cctest/test-heap.cc View 1 2 3 4 1 chunk +24 lines, -0 lines 0 comments Download
M test/mjsunit/allocation-site-info.js View 1 2 chunks +6 lines, -2 lines 0 comments Download

Messages

Total messages: 10 (0 generated)
Hannes Payer (out of office)
7 years, 9 months ago (2013-03-25 15:28:59 UTC) #1
danno
https://codereview.chromium.org/12880017/diff/1/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/12880017/diff/1/src/hydrogen.cc#newcode9912 src/hydrogen.cc:9912: boilerplate_object, Representation::Tagged())); Maybe I missed this, but where is ...
7 years, 8 months ago (2013-04-02 21:08:47 UTC) #2
danno
Ignore my comments about kChangesInobjectFields, that should work automatically. However, calling BuildStoreMap is important to ...
7 years, 8 months ago (2013-04-02 21:18:54 UTC) #3
Michael Starzinger
Drive-by nit. https://codereview.chromium.org/12880017/diff/1/src/hydrogen.h File src/hydrogen.h (right): https://codereview.chromium.org/12880017/diff/1/src/hydrogen.h#newcode1188 src/hydrogen.h:1188: static const int kMaxLiteralDepth = 3; We ...
7 years, 8 months ago (2013-04-03 09:23:23 UTC) #4
Hannes Payer (out of office)
https://codereview.chromium.org/12880017/diff/1/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/12880017/diff/1/src/hydrogen.cc#newcode9912 src/hydrogen.cc:9912: boilerplate_object, Representation::Tagged())); On 2013/04/02 21:08:47, danno wrote: > Maybe ...
7 years, 8 months ago (2013-04-08 11:03:00 UTC) #5
danno
https://codereview.chromium.org/12880017/diff/7001/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/12880017/diff/7001/src/hydrogen.cc#newcode6200 src/hydrogen.cc:6200: new(zone()) HObjectLiteral(context, nit: strange indenting? https://codereview.chromium.org/12880017/diff/7001/src/hydrogen.cc#newcode10200 src/hydrogen.cc:10200: HInstruction* boilerplate_elements ...
7 years, 8 months ago (2013-04-09 08:52:42 UTC) #6
Hannes Payer (out of office)
Additionally, I did minor cleanup changes. https://codereview.chromium.org/12880017/diff/7001/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/12880017/diff/7001/src/hydrogen.cc#newcode6200 src/hydrogen.cc:6200: new(zone()) HObjectLiteral(context, On ...
7 years, 8 months ago (2013-04-09 14:20:13 UTC) #7
danno
LGTM with comments https://codereview.chromium.org/12880017/diff/14001/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/12880017/diff/14001/src/hydrogen.cc#newcode10168 src/hydrogen.cc:10168: object_properties, factory->empty_string(), value_instruction, true, unknown_field_string https://codereview.chromium.org/12880017/diff/14001/src/hydrogen.cc#newcode10177 ...
7 years, 8 months ago (2013-04-10 13:00:33 UTC) #8
Hannes Payer (out of office)
https://codereview.chromium.org/12880017/diff/14001/src/hydrogen.cc File src/hydrogen.cc (right): https://codereview.chromium.org/12880017/diff/14001/src/hydrogen.cc#newcode10168 src/hydrogen.cc:10168: object_properties, factory->empty_string(), value_instruction, true, On 2013/04/10 13:00:33, danno wrote: ...
7 years, 8 months ago (2013-04-10 13:38:24 UTC) #9
Hannes Payer (out of office)
7 years, 8 months ago (2013-04-10 13:52:35 UTC) #10
Message was sent while issue was closed.
Committed patchset #5 manually as r14211 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698