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

Issue 1102543002: Reland: track global accesses to constant types (Closed)

Created:
5 years, 8 months ago by dcarney
Modified:
5 years, 7 months ago
Reviewers:
Toon Verwaest
CC:
v8-dev
Base URL:
https://chromium.googlesource.com/v8/v8.git@master
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

Reland: track global accesses to constant types R=verwaest@chromium.org BUG=468620 LOG=N Committed: https://crrev.com/1d2be2af40d5741741c1614a6ae680dd2c604a6c Cr-Commit-Position: refs/heads/master@{#28081}

Patch Set 1 : original patch #

Patch Set 2 : #

Patch Set 3 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+203 lines, -68 lines) Patch
M src/code-stubs.h View 1 3 chunks +28 lines, -20 lines 0 comments Download
M src/code-stubs-hydrogen.cc View 1 3 chunks +39 lines, -8 lines 0 comments Download
M src/hydrogen.cc View 1 4 chunks +54 lines, -6 lines 0 comments Download
M src/ic/ic.cc View 1 2 chunks +10 lines, -5 lines 0 comments Download
M src/objects.h View 1 1 chunk +2 lines, -0 lines 0 comments Download
M src/objects.cc View 1 13 chunks +51 lines, -22 lines 0 comments Download
M src/property-details.h View 2 chunks +19 lines, -7 lines 0 comments Download

Messages

Total messages: 12 (5 generated)
dcarney
ptal. this fixes that crash by bailing out instead of messing with the cell. it ...
5 years, 8 months ago (2015-04-22 11:36:52 UTC) #2
Toon Verwaest
lgtm
5 years, 8 months ago (2015-04-22 14:42:04 UTC) #4
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1102543002/80001
5 years, 8 months ago (2015-04-27 13:26:23 UTC) #8
commit-bot: I haz the power
Committed patchset #3 (id:80001)
5 years, 8 months ago (2015-04-27 14:01:20 UTC) #9
commit-bot: I haz the power
Patchset 3 (id:??) landed as https://crrev.com/1d2be2af40d5741741c1614a6ae680dd2c604a6c Cr-Commit-Position: refs/heads/master@{#28081}
5 years, 8 months ago (2015-04-27 14:01:33 UTC) #10
brucedawson
This change makes kUninitialized and kUndefined have the same value, where they used to be ...
5 years, 7 months ago (2015-04-29 20:55:12 UTC) #11
dcarney
5 years, 7 months ago (2015-04-30 09:00:46 UTC) #12
Message was sent while issue was closed.
On 2015/04/29 20:55:12, brucedawson wrote:
> This change makes kUninitialized and kUndefined have the same value, where
they
> used to be distinct. I noticed this because the /analyze builder gave a new
> warning pointing out that there was some redundant code. The warning is:
> 
> src\v8\src\objects.cc(17173) : warning C6287: Redundant code:  the left and
> right sub-expressions are identical.
> 
> The code is this:
> 
>   if ((old_type == PropertyCellType::kUninitialized ||
>        old_type == PropertyCellType::kUndefined) &&
>       value->IsString()) {
> 
> This isn't necessarily a bug but I wanted to point it out. If nothing else the
> code is now confusing. FWIW.

thanks, will fix

Powered by Google App Engine
This is Rietveld 408576698