Added a cache mechanism to vtable lookups

Fixed python bindings (build, not actual functionality)
Fixed building subtypes on linux
develop
Petr Mrázek 2010-03-14 22:58:28 +01:00
parent 34a2f238b0
commit 5fe279d8ec
3 changed files with 51 additions and 27 deletions

@ -66,6 +66,9 @@ class memory_info::Private
// cache for faster name lookup, indexed by classID // cache for faster name lookup, indexed by classID
vector<string> classnames; vector<string> classnames;
// map between vptr and class id, needs further type id lookup for multi-classes, not inherited
map<uint32_t, t_class *> classIDs;
// index for the next added class // index for the next added class
uint32_t classindex; uint32_t classindex;
@ -336,41 +339,56 @@ void memory_info::setClassChild (t_class * parent, const char * name, const char
//cout << " classtype " << name << ", assign " << mcc->assign << ", vtable " << mcc->type << endl; //cout << " classtype " << name << ", assign " << mcc->assign << ", vtable " << mcc->type << endl;
} }
// FIXME: stupid. we need a better container
bool memory_info::resolveObjectToClassID(const uint32_t address, int32_t & classid) bool memory_info::resolveObjectToClassID(const uint32_t address, int32_t & classid)
{ {
uint32_t vtable = g_pProcess->readDWord(address); uint32_t vtable = g_pProcess->readDWord(address);
// FIXME: stupid search. we need a better container // try to find the vtable in our cache
string classname = g_pProcess->readClassName(vtable); map<uint32_t, t_class *>::iterator it;
for(uint32_t i = 0;i< d->classes.size();i++) it = d->classIDs.find(vtable);
t_class * cl;
// class found in cache?
if(it != d->classIDs.end())
{ {
if(d->classes[i]->classname == classname) // got class cl = (*it).second;
}
else// couldn't find?
{
// we set up the class for the first time
string classname = g_pProcess->readClassName(vtable);
d->classIDs[vtable] = cl = setClass(classname.c_str(),vtable);
}
// and isn't a multi-class
if(!cl->type_offset)
{
// return
classid = cl->assign;
return true;
}
// and is a multiclass
else
{
// find the type
vector <t_type*>& vec = cl->subs;
uint32_t type = g_pProcess->readWord(address + cl->type_offset);
// return typed building if successful
//FIXME: the vector should map directly to the type IDs here, so we don't have to mess with O(n) search
for (uint32_t k = 0; k < vec.size();k++)
{ {
// if it is a multiclass, try resolving it if(vec[k]->type == type)
if(d->classes[i]->type_offset)
{ {
vector <t_type*>& vec = d->classes[i]->subs; //cout << " multi " << address + classes[i].type_offset << " " << vec[k].classname << endl;
uint32_t type = g_pProcess->readWord(address + d->classes[i]->type_offset); classid = vec[k]->assign;
//printf ("class %d:%s offset 0x%x\n", i , classes[i].classname.c_str(), classes[i].type_offset); return true;
// return typed building if successful
for (uint32_t k = 0; k < vec.size();k++)
{
if(vec[k]->type == type)
{
//cout << " multi " << address + classes[i].type_offset << " " << vec[k].classname << endl;
classid = vec[k]->assign;
return true;
}
}
} }
// otherwise return the class we found
classid = d->classes[i]->assign;
return true;
} }
// couldn't find the type... now what do we do here? throw?
// this is a case where it might be a good idea, because it uncovers some deeper problems
// we return the parent class instead, it doesn't change the API semantics and sort-of makes sense
classid = cl->assign;
return true;
} }
t_class * c = setClass(classname.c_str(),vtable);
classid = c->assign;
return true;
} }
//ALERT: doesn't care about multiclasses //ALERT: doesn't care about multiclasses

@ -186,7 +186,7 @@ namespace DFHack
bool getCursorCoords (int32_t &x, int32_t &y, int32_t &z); bool getCursorCoords (int32_t &x, int32_t &y, int32_t &z);
bool setCursorCoords (const int32_t x, const int32_t y, const int32_t z); bool setCursorCoords (const int32_t x, const int32_t y, const int32_t z);
bool getCurrentCursorCreatures(std::vector<uint32_t> &OUTPUT); bool getCurrentCursorCreature(uint32_t &OUTPUT);
bool InitViewSize(); bool InitViewSize();

@ -1696,6 +1696,12 @@
<Offset name="matgloss_plant_drink">0x14</Offset> <Offset name="matgloss_plant_drink">0x14</Offset>
<Offset name="matgloss_plant_food">0x1C</Offset> <Offset name="matgloss_plant_food">0x1C</Offset>
<Offset name="matgloss_plant_extract">0x20</Offset> <Offset name="matgloss_plant_extract">0x20</Offset>
<VTable name="building_vtable">
<multiclass name="building_workshop" typeoffset="0xAC" />
<multiclass name="building_furnace" typeoffset="0xBA" />
<multiclass name="building_siegeengine" typeoffset="0xAC" />
<multiclass name="building_trap" typeoffset="0xAC" />
</VTable>
</Entry> </Entry>
<Entry version="v0.28.181.40d3" os="linux" id="40d3lin" base="40d2lin"> <Entry version="v0.28.181.40d3" os="linux" id="40d3lin" base="40d2lin">
<String name="md5">51c73ff46b2688aafaee0204efe91a94</String> <String name="md5">51c73ff46b2688aafaee0204efe91a94</String>