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

Unified Diff: runtime/vm/object.h

Issue 149603003: Fix stack height assertion code and free up a bit in the Function tag bits. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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 | « runtime/vm/intermediate_language_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 32017)
+++ runtime/vm/object.h (working copy)
@@ -1776,11 +1776,6 @@
void SetIsOptimizable(bool value) const;
void SetIsNativeAutoSetupScope(bool value) const;
- bool has_finally() const {
- return HasFinallyBit::decode(raw_ptr()->kind_tag_);
- }
- void set_has_finally(bool value) const;
-
bool is_native() const { return NativeBit::decode(raw_ptr()->kind_tag_); }
void set_is_native(bool value) const;
@@ -1977,10 +1972,9 @@
kInlinableBit = 9,
kIntrinsicBit = 10,
kRecognizedBit = 11,
- kHasFinallyBit = 12,
- kNativeBit = 13,
- kRedirectingBit = 14,
- kExternalBit = 15,
+ kNativeBit = 12,
+ kRedirectingBit = 13,
+ kExternalBit = 14,
};
class KindBits :
public BitField<RawFunction::Kind, kKindTagBit, kKindTagSize> {}; // NOLINT
@@ -1992,7 +1986,6 @@
class InlinableBit : public BitField<bool, kInlinableBit, 1> {};
class IntrinsicBit : public BitField<bool, kIntrinsicBit, 1> {};
class RecognizedBit : public BitField<bool, kRecognizedBit, 1> {};
- class HasFinallyBit : public BitField<bool, kHasFinallyBit, 1> {};
class NativeBit : public BitField<bool, kNativeBit, 1> {};
class ExternalBit : public BitField<bool, kExternalBit, 1> {};
class RedirectingBit : public BitField<bool, kRedirectingBit, 1> {};
« no previous file with comments | « runtime/vm/intermediate_language_x64.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698