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

Unified Diff: vm/object.h

Issue 10824266: Remove functions_cache_ and it's references as it is not being used anymore. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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 | « vm/instructions_x64_test.cc ('k') | vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 10541)
+++ vm/object.h (working copy)
@@ -555,13 +555,6 @@
return OFFSET_OF(RawClass, interfaces_);
}
- RawArray* functions_cache() const { return raw_ptr()->functions_cache_; }
- void set_functions_cache(const Array& value) const;
-
- static intptr_t functions_cache_offset() {
- return OFFSET_OF(RawClass, functions_cache_);
- }
-
// Check if this class represents the class of null.
bool IsNullClass() const { return raw() == Object::null_class(); }
@@ -688,9 +681,6 @@
void Finalize() const;
- // Initialize the functions cache array.
- void InitFunctionsCache() const;
-
// Allocate a class used for VM internal objects.
template <class FakeObject> static RawClass* New();
« no previous file with comments | « vm/instructions_x64_test.cc ('k') | vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698