blob: 4e1da29e686ba1ab1770cc1f4ec117ef7c1e9acc [file] [log] [blame]
//===----------- GC.h - Garbage Collection Interface -----------------------===//
//
// The Micro Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MVM_GC_H
#define MVM_GC_H
#include <stdint.h>
struct VirtualTable;
class gcRoot {
public:
virtual ~gcRoot() {}
virtual void tracer(void) {}
/// getVirtualTable - Returns the virtual table of this object.
///
VirtualTable* getVirtualTable() const {
return ((VirtualTable**)(this))[0];
}
/// setVirtualTable - Sets the virtual table of this object.
///
void setVirtualTable(VirtualTable* VT) {
((VirtualTable**)(this))[0] = VT;
}
};
namespace mvm {
class Thread;
class StackScanner {
public:
virtual void scanStack(mvm::Thread* th) = 0;
virtual ~StackScanner() {}
};
class UnpreciseStackScanner : public StackScanner {
public:
virtual void scanStack(mvm::Thread* th);
};
class PreciseStackScanner : public StackScanner {
public:
virtual void scanStack(mvm::Thread* th);
};
}
#endif