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

Unified Diff: src/ast.h

Issue 1312693004: Vector ICs: Ensure KeyedAccessStore mode is encoded in all handlers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: A few nits. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/code-stubs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.h
diff --git a/src/ast.h b/src/ast.h
index 1366041387215bc4c018c4b1650d39ff5f6549c4..c6f2f338b7f339da09f1ba37b0448887504ecc9d 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -2233,8 +2233,8 @@ class CountOperation final : public Expression {
class IsPrefixField : public BitField16<bool, 0, 1> {};
class KeyTypeField : public BitField16<IcCheckType, 1, 1> {};
- class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 4> {};
- class TokenField : public BitField16<Token::Value, 6, 8> {};
+ class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 3> {};
+ class TokenField : public BitField16<Token::Value, 5, 8> {};
// Starts with 16-bit field, which should get packed together with
// Expression's trailing 16-bit field.
@@ -2404,8 +2404,8 @@ class Assignment final : public Expression {
class IsUninitializedField : public BitField16<bool, 0, 1> {};
class KeyTypeField : public BitField16<IcCheckType, 1, 1> {};
- class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 4> {};
- class TokenField : public BitField16<Token::Value, 6, 8> {};
+ class StoreModeField : public BitField16<KeyedAccessStoreMode, 2, 3> {};
+ class TokenField : public BitField16<Token::Value, 5, 8> {};
// Starts with 16-bit field, which should get packed together with
// Expression's trailing 16-bit field.
« no previous file with comments | « no previous file | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698