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

Unified Diff: src/ic.h

Issue 275433004: Require SSE2 support for the ia32 port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 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 | « src/ia32/stub-cache-ia32.cc ('k') | src/ic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic.h
diff --git a/src/ic.h b/src/ic.h
index 895c21e736cb482b724b89aa7705cc227c5d6f3d..197c32e6a55515c787628bab1ac5c91bc5df1cd1 100644
--- a/src/ic.h
+++ b/src/ic.h
@@ -893,14 +893,13 @@ class BinaryOpIC: public IC {
STATIC_ASSERT(LAST_TOKEN - FIRST_TOKEN < (1 << 4));
class OpField: public BitField<int, 0, 4> {};
class OverwriteModeField: public BitField<OverwriteMode, 4, 2> {};
- class SSE2Field: public BitField<bool, 6, 1> {};
- class ResultKindField: public BitField<Kind, 7, 3> {};
- class LeftKindField: public BitField<Kind, 10, 3> {};
+ class ResultKindField: public BitField<Kind, 6, 3> {};
+ class LeftKindField: public BitField<Kind, 9, 3> {};
// When fixed right arg is set, we don't need to store the right kind.
// Thus the two fields can overlap.
- class HasFixedRightArgField: public BitField<bool, 13, 1> {};
- class FixedRightArgValueField: public BitField<int, 14, 4> {};
- class RightKindField: public BitField<Kind, 14, 3> {};
+ class HasFixedRightArgField: public BitField<bool, 12, 1> {};
+ class FixedRightArgValueField: public BitField<int, 13, 4> {};
+ class RightKindField: public BitField<Kind, 13, 3> {};
Token::Value op_;
OverwriteMode mode_;
« no previous file with comments | « src/ia32/stub-cache-ia32.cc ('k') | src/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698