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

Unified Diff: runtime/vm/object.cc

Issue 23512004: Revert "Compress memory usage. Imprive speed of finding exception handle..." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « runtime/vm/object.h ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index 87d3bfc9a02ca6477f83e9f37d49b1d4eeb0093e..0e7e86cb135bbeefb3e14bb63651193483362c68 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -8643,21 +8643,6 @@ Code::Comments::Comments(const Array& comments)
}
-void Code::set_state_bits(intptr_t bits) const {
- raw_ptr()->state_bits_ = bits;
-}
-
-
-void Code::set_is_optimized(bool value) const {
- set_state_bits(OptimizedBit::update(value, raw_ptr()->state_bits_));
-}
-
-
-void Code::set_is_alive(bool value) const {
- set_state_bits(AliveBit::update(value, raw_ptr()->state_bits_));
-}
-
-
void Code::set_stackmaps(const Array& maps) const {
ASSERT(maps.IsOld());
StorePointer(&raw_ptr()->stackmaps_, maps.raw());
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698