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

Unified Diff: runtime/vm/object.h

Issue 551043002: VM: Remove unused IsClosureCall bit from IC data. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 39965)
+++ runtime/vm/object.h (working copy)
@@ -3501,9 +3501,6 @@
// possibly issue) a Javascript compatibility warning.
bool MayCheckForJSWarning() const;
- bool IsClosureCall() const;
- void SetIsClosureCall() const;
-
intptr_t NumberOfChecks() const;
// Discounts any checks with usage of zero.
@@ -3634,7 +3631,6 @@
kDeoptReasonPos = kNumArgsTestedPos + kNumArgsTestedSize,
kDeoptReasonSize = kDeoptNumReasons,
kIssuedJSWarningBit = kDeoptReasonPos + kDeoptReasonSize,
- kIsClosureCallBit = kIssuedJSWarningBit + 1,
};
class NumArgsTestedBits : public BitField<uint32_t,
@@ -3642,7 +3638,6 @@
class DeoptReasonBits : public BitField<uint32_t,
ICData::kDeoptReasonPos, ICData::kDeoptReasonSize> {}; // NOLINT
class IssuedJSWarningBit : public BitField<bool, kIssuedJSWarningBit, 1> {};
- class IsClosureCallBit : public BitField<bool, kIsClosureCallBit, 1> {};
#if defined(DEBUG)
// Used in asserts to verify that a check is not added twice.

Powered by Google App Engine
This is Rietveld 408576698