experiments/dciao-kernelstructs: new database driven experiment for DCiAO
The dciao-kernelstructs experiment does a trace imported by the DCiAOKernelImporter: bin/import-trace -t trace.pb -i DCiAOKernelImporter --elf-file app.elf Pruned by the basic method: bin/prune-trace and does CiAO fault injection experiments, where the results are stored in the database. Change-Id: I485dc2e5097b3ebaf354241f474ee3d317213707
This commit is contained in:
@ -11,9 +11,9 @@ using namespace fail;
|
||||
bool DCiAOKernelImporter::inDynamicKernelMemory(fail::address_t addr) {
|
||||
const std::string &name = m_elf->getSymbol(addr).getDemangledName();
|
||||
bool dynamic = name.find("os::data::dynamic", 0) != std::string::npos;
|
||||
bool stack = name.find("_stack") != std::string::npos;
|
||||
|
||||
return dynamic && !stack;
|
||||
// bool stack = name.find("_stack") != std::string::npos;
|
||||
// return dynamic && !stack;
|
||||
return dynamic;
|
||||
}
|
||||
|
||||
bool DCiAOKernelImporter::copy_to_database(fail::ProtoIStream &ps) {
|
||||
|
||||
Reference in New Issue
Block a user