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

Issue 61623004: Add signed/unsigned 8-bit and 16-bit Representations (Closed)

Created:
7 years, 1 month ago by danno
Modified:
7 years, 1 month ago
CC:
v8-dev
Visibility:
Public.

Description

Add signed/unsigned 8-bit and 16-bit Representations to Crankshaft R=yangguo@chromium.org Committed: http://code.google.com/p/v8/source/detail?r=17588

Patch Set 1 #

Patch Set 2 : Tweaks #

Total comments: 23

Patch Set 3 : Review feedback #

Patch Set 4 : Back out register alloc changes #

Patch Set 5 : White space #

Total comments: 6

Patch Set 6 : Address review feedback and prepare to land #

Unified diffs Side-by-side diffs Delta from patch set Stats (+562 lines, -80 lines) Patch
M src/arm/lithium-codegen-arm.cc View 5 chunks +5 lines, -25 lines 0 comments Download
M src/arm/macro-assembler-arm.h View 1 chunk +3 lines, -0 lines 0 comments Download
M src/arm/macro-assembler-arm.cc View 1 1 chunk +32 lines, -0 lines 0 comments Download
M src/globals.h View 1 2 3 4 5 1 chunk +8 lines, -0 lines 0 comments Download
M src/hydrogen-instructions.h View 4 chunks +11 lines, -5 lines 0 comments Download
M src/hydrogen-instructions.cc View 1 2 3 4 5 2 chunks +16 lines, -8 lines 0 comments Download
M src/hydrogen-load-elimination.cc View 1 2 3 4 5 1 chunk +1 line, -3 lines 0 comments Download
M src/ia32/lithium-codegen-ia32.cc View 5 chunks +5 lines, -28 lines 0 comments Download
M src/ia32/lithium-ia32.cc View 3 4 1 chunk +2 lines, -1 line 0 comments Download
M src/ia32/macro-assembler-ia32.h View 1 chunk +3 lines, -0 lines 0 comments Download
M src/ia32/macro-assembler-ia32.cc View 1 3 1 chunk +28 lines, -0 lines 0 comments Download
M src/property-details.h View 1 2 3 4 5 6 chunks +35 lines, -6 lines 0 comments Download
M src/x64/macro-assembler-x64.cc View 1 2 2 chunks +10 lines, -2 lines 0 comments Download
M test/cctest/cctest.gyp View 1 2 2 chunks +2 lines, -0 lines 0 comments Download
M test/cctest/test-macro-assembler-arm.cc View 1 1 chunk +94 lines, -0 lines 0 comments Download
A test/cctest/test-macro-assembler-ia32.cc View 1 2 1 chunk +140 lines, -0 lines 0 comments Download
M test/cctest/test-macro-assembler-x64.cc View 2 chunks +43 lines, -2 lines 0 comments Download
A test/cctest/test-representation.cc View 1 2 1 chunk +124 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
danno
PTAL
7 years, 1 month ago (2013-11-06 22:43:10 UTC) #1
Jakob Kummerow
DBC. https://codereview.chromium.org/61623004/diff/30001/src/property-details.h File src/property-details.h (right): https://codereview.chromium.org/61623004/diff/30001/src/property-details.h#newcode137 src/property-details.h:137: return kind_ > other.kind_; This simplification is not ...
7 years, 1 month ago (2013-11-07 09:01:06 UTC) #2
Yang
Added comments. https://codereview.chromium.org/61623004/diff/30001/src/hydrogen-instructions.cc File src/hydrogen-instructions.cc (right): https://codereview.chromium.org/61623004/diff/30001/src/hydrogen-instructions.cc#newcode2866 src/hydrogen-instructions.cc:2866: return new(zone) Range(-16384, 16383); Afaik signed integer ...
7 years, 1 month ago (2013-11-07 09:32:43 UTC) #3
Benedikt Meurer
https://codereview.chromium.org/61623004/diff/30001/src/x64/macro-assembler-x64.cc File src/x64/macro-assembler-x64.cc (right): https://codereview.chromium.org/61623004/diff/30001/src/x64/macro-assembler-x64.cc#newcode956 src/x64/macro-assembler-x64.cc:956: movzxbq(dst, src); We can safely use movzxbl() here, as ...
7 years, 1 month ago (2013-11-07 12:56:04 UTC) #4
Benedikt Meurer
https://codereview.chromium.org/61623004/diff/30001/src/ia32/lithium-ia32.cc File src/ia32/lithium-ia32.cc (right): https://codereview.chromium.org/61623004/diff/30001/src/ia32/lithium-ia32.cc#newcode2428 src/ia32/lithium-ia32.cc:2428: // Just force the value to be in eax ...
7 years, 1 month ago (2013-11-07 12:57:55 UTC) #5
danno
Feedback addressed. Please take another look. https://codereview.chromium.org/61623004/diff/30001/src/hydrogen-instructions.cc File src/hydrogen-instructions.cc (right): https://codereview.chromium.org/61623004/diff/30001/src/hydrogen-instructions.cc#newcode2866 src/hydrogen-instructions.cc:2866: return new(zone) Range(-16384, ...
7 years, 1 month ago (2013-11-07 13:19:56 UTC) #6
danno
Removed byte register checks. https://codereview.chromium.org/61623004/diff/30001/src/x64/macro-assembler-x64.cc File src/x64/macro-assembler-x64.cc (right): https://codereview.chromium.org/61623004/diff/30001/src/x64/macro-assembler-x64.cc#newcode974 src/x64/macro-assembler-x64.cc:974: movw(dst, src); On 2013/11/07 09:32:43, ...
7 years, 1 month ago (2013-11-07 13:35:30 UTC) #7
Yang
LGTM once comments are addressed. https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc File src/hydrogen-load-elimination.cc (right): https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc#newcode277 src/hydrogen-load-elimination.cc:277: access.representation().IsUInteger8()) size = 1; ...
7 years, 1 month ago (2013-11-08 08:45:58 UTC) #8
Sven Panne
https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc File src/hydrogen-load-elimination.cc (right): https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc#newcode277 src/hydrogen-load-elimination.cc:277: access.representation().IsUInteger8()) size = 1; On 2013/11/08 08:45:59, Yang wrote: ...
7 years, 1 month ago (2013-11-08 09:09:30 UTC) #9
danno
https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc File src/hydrogen-load-elimination.cc (right): https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc#newcode277 src/hydrogen-load-elimination.cc:277: access.representation().IsUInteger8()) size = 1; On 2013/11/08 08:45:59, Yang wrote: ...
7 years, 1 month ago (2013-11-08 10:49:11 UTC) #10
Yang
On 2013/11/08 10:49:11, danno wrote: > https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc > File src/hydrogen-load-elimination.cc (right): > > https://codereview.chromium.org/61623004/diff/210001/src/hydrogen-load-elimination.cc#newcode277 > ...
7 years, 1 month ago (2013-11-08 10:52:26 UTC) #11
danno
7 years, 1 month ago (2013-11-08 11:50:36 UTC) #12
Message was sent while issue was closed.
Committed patchset #6 manually as r17588 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698