2009-02-17 15:02:16 +00:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-02-18 02:34:24 +01:00
|
|
|
*
|
2009-02-17 15:02:16 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-02-18 02:34:24 +01:00
|
|
|
*
|
2009-02-17 15:02:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
2009-02-15 06:10:59 +00:00
|
|
|
|
|
|
|
|
2009-02-24 15:33:40 +00:00
|
|
|
#ifndef SCI_ENGINE_GC_H
|
|
|
|
#define SCI_ENGINE_GC_H
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-16 01:58:30 +00:00
|
|
|
#include "common/hashmap.h"
|
2009-02-27 02:23:00 +00:00
|
|
|
#include "sci/engine/vm_types.h"
|
2009-02-27 02:23:40 +00:00
|
|
|
#include "sci/engine/state.h"
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-02-21 10:23:36 +00:00
|
|
|
namespace Sci {
|
2009-02-16 01:58:30 +00:00
|
|
|
|
|
|
|
struct reg_t_Hash {
|
|
|
|
uint operator()(const reg_t& x) const {
|
2012-06-18 05:21:59 +03:00
|
|
|
return (x.getSegment() << 3) ^ x.getOffset() ^ (x.getOffset() << 16);
|
2009-02-16 01:58:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-06-18 22:09:57 +00:00
|
|
|
/*
|
2010-07-01 16:05:47 +00:00
|
|
|
* The AddrSet is a "set" of reg_t values.
|
|
|
|
* We don't have a HashSet type, so we abuse a HashMap for this.
|
2009-06-18 22:09:57 +00:00
|
|
|
*/
|
2010-07-01 16:05:47 +00:00
|
|
|
typedef Common::HashMap<reg_t, bool, reg_t_Hash> AddrSet;
|
2009-02-16 01:58:30 +00:00
|
|
|
|
2009-06-18 22:09:57 +00:00
|
|
|
/**
|
|
|
|
* Finds all used references and normalises them to their memory addresses
|
|
|
|
* @param s The state to gather all information from
|
|
|
|
* @return A hash map containing entries for all used references
|
|
|
|
*/
|
2010-07-01 16:05:47 +00:00
|
|
|
AddrSet *findAllActiveReferences(EngineState *s);
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2009-06-18 22:09:57 +00:00
|
|
|
/**
|
|
|
|
* Runs garbage collection on the current system state
|
|
|
|
* @param s The state in which we should gc
|
|
|
|
*/
|
2009-02-21 10:47:56 +00:00
|
|
|
void run_gc(EngineState *s);
|
2009-02-15 06:10:59 +00:00
|
|
|
|
2011-03-20 15:29:12 +02:00
|
|
|
struct WorklistManager {
|
|
|
|
Common::Array<reg_t> _worklist;
|
|
|
|
AddrSet _map; // used for 2 contains() calls, inside push() and run_gc()
|
|
|
|
|
|
|
|
void push(reg_t reg);
|
|
|
|
void pushArray(const Common::Array<reg_t> &tmp);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-02-21 10:23:36 +00:00
|
|
|
} // End of namespace Sci
|
|
|
|
|
2009-02-24 15:33:40 +00:00
|
|
|
#endif // SCI_ENGINE_GC_H
|