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

Issue 19271008: Speed up Binops (Closed)

Created:
7 years, 5 months ago by oliv
Modified:
7 years, 4 months ago
CC:
v8-dev
Visibility:
Public.

Description

Speed up binary operations by considering HType info and fast-tracking constants. BUG=

Patch Set 1 : #

Total comments: 11
Unified diffs Side-by-side diffs Delta from patch set Stats (+83 lines, -20 lines) Patch
M src/hydrogen.h View 5 chunks +12 lines, -10 lines 0 comments Download
M src/hydrogen.cc View 5 chunks +42 lines, -10 lines 8 comments Download
M src/hydrogen-instructions.h View 2 chunks +11 lines, -0 lines 1 comment Download
M src/hydrogen-instructions.cc View 1 chunk +17 lines, -0 lines 1 comment Download
M src/types.h View 1 chunk +1 line, -0 lines 1 comment Download

Messages

Total messages: 4 (0 generated)
oliv
7 years, 5 months ago (2013-07-18 10:06:00 UTC) #1
Jakob Kummerow
High-level comment: I consider HType deprecated, to be replaced by a Type (or more likely ...
7 years, 5 months ago (2013-07-18 11:56:14 UTC) #2
oliv
> High-level comment: I consider HType deprecated, to be replaced by a Type (or > ...
7 years, 5 months ago (2013-07-18 12:22:52 UTC) #3
Toon Verwaest
7 years, 5 months ago (2013-07-18 13:57:12 UTC) #4
Added some more comments. Perhaps we could split up the CL into a part that
handles the HConstants, and the extra type inference?

https://codereview.chromium.org/19271008/diff/23001/src/hydrogen.cc
File src/hydrogen.cc (right):

https://codereview.chromium.org/19271008/diff/23001/src/hydrogen.cc#newcode7894
src/hydrogen.cc:7894: HValue* HGraphBuilder::ConstantToNumber(HValue* value) {
Perhaps you can also handle strings here.

https://codereview.chromium.org/19271008/diff/23001/src/hydrogen.cc#newcode7895
src/hydrogen.cc:7895: if (value->IsConstant()) {
Move this code together with HConstant::CopyToTruncatedInt32 as "CopyToDouble",
and perhaps extend CopyToTruncatedInt32 to also directly handle the special
values handled below.

https://codereview.chromium.org/19271008/diff/23001/src/hydrogen.cc#newcode7901
src/hydrogen.cc:7901: constant->handle()->IsTheHole()) {
Remove TheHole case.

https://codereview.chromium.org/19271008/diff/23001/src/hydrogen.cc#newcode7941
src/hydrogen.cc:7941: left->KnownOptimalRepresentation() :
Representation::FromType(left_type);
Could we calculate this in "type" and only at the end convert to Representation?
Now it's pretty schizophrenic mixing HType, Type and Representation.

https://codereview.chromium.org/19271008/diff/23001/src/hydrogen.cc#newcode7954
src/hydrogen.cc:7954: AddInstruction(HCheckInstanceType::NewIsString(right,
zone()));
I'd use canonicalization to eliminate CheckInstanceType(string) of values that
are known to be type().IsString(); rather than conditionally emit the
instructions.

Powered by Google App Engine
This is Rietveld 408576698