/* Copyright (c) 2008, Avian Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. There is NO WARRANTY for this software. See license.txt for details. */ #ifndef HEAPWALK_H #define HEAPWALK_H #include "common.h" namespace vm { class Thread; class HeapMap { public: virtual int find(object value) = 0; virtual void dispose() = 0; }; class HeapVisitor { public: virtual void root() = 0; virtual unsigned visitNew(object value) = 0; virtual void visitOld(object value, unsigned number) = 0; virtual void push(unsigned offset) = 0; virtual void pop() = 0; }; class HeapWalker { public: virtual unsigned visitRoot(object root) = 0; virtual void visitAllRoots() = 0; virtual HeapMap* map() = 0; virtual void dispose() = 0; }; HeapWalker* makeHeapWalker(Thread* t, HeapVisitor* v); } // namespace vm #endif//HEAPWALK_H