Chromium Code Reviews| Index: vm/freelist.h |
| =================================================================== |
| --- vm/freelist.h (revision 2404) |
| +++ vm/freelist.h (working copy) |
| @@ -33,6 +33,10 @@ |
| static FreeListElement* AsElement(uword addr, intptr_t size); |
| + static bool IsSpecialMap(RawObject* raw_obj) { |
|
cshapiro
2011/12/14 18:48:11
This is the first time I have seen the class infor
Ivan Posva
2011/12/15 22:29:19
Done.
|
| + return (raw_obj == minimal_element_class_) || (raw_obj == element_class_); |
| + } |
| + |
| static void InitOnce(); |
| private: |