108 lines
2.6 KiB
C++
108 lines
2.6 KiB
C++
#include <QtCore/QString>
|
|
#include <QtCore/QDir>
|
|
#include <utility>
|
|
#include "dcc.h"
|
|
#include "CallGraph.h"
|
|
#include "project.h"
|
|
#include "Procedure.h"
|
|
using namespace std;
|
|
//Project g_proj;
|
|
QString asm1_name, asm2_name; /* Assembler output filenames */
|
|
SYMTAB symtab; /* Global symbol table */
|
|
STATS stats; /* cfg statistics */
|
|
//PROG prog; /* programs fields */
|
|
OPTION option; /* Command line options */
|
|
Project *Project::s_instance = nullptr;
|
|
Project::Project() : callGraph(nullptr)
|
|
{
|
|
}
|
|
void Project::initialize()
|
|
{
|
|
delete callGraph;
|
|
callGraph = nullptr;
|
|
}
|
|
void Project::create(const QString &a)
|
|
{
|
|
initialize();
|
|
QFileInfo fi(a);
|
|
m_fname=a;
|
|
m_project_name = fi.completeBaseName();
|
|
m_output_path = fi.path();
|
|
}
|
|
|
|
QString Project::output_name(const char *ext) {
|
|
return m_output_path+QDir::separator()+m_project_name+"."+ext;
|
|
}
|
|
bool Project::valid(ilFunction iter)
|
|
{
|
|
return iter!=pProcList.end();
|
|
}
|
|
ilFunction Project::funcIter(Function *to_find)
|
|
{
|
|
auto iter=std::find_if(pProcList.begin(),pProcList.end(),
|
|
[to_find](const Function &f)->bool {return to_find==&f;});
|
|
assert(iter!=pProcList.end());
|
|
return iter;
|
|
}
|
|
|
|
ilFunction Project::findByEntry(uint32_t entry)
|
|
{
|
|
/* Search procedure list for one with appropriate entry point */
|
|
ilFunction iter= std::find_if(pProcList.begin(),pProcList.end(),
|
|
[entry](const Function &f) { return f.procEntry==entry; });
|
|
return iter;
|
|
}
|
|
|
|
ilFunction Project::createFunction(FunctionType *f,const QString &name)
|
|
{
|
|
pProcList.push_back(*Function::Create(f,0,name,0));
|
|
return (++pProcList.rbegin()).base();
|
|
}
|
|
|
|
int Project::getSymIdxByAdd(uint32_t adr)
|
|
{
|
|
size_t i;
|
|
for (i = 0; i < symtab.size(); i++)
|
|
if (symtab[i].label == adr)
|
|
break;
|
|
return i;
|
|
}
|
|
bool Project::validSymIdx(size_t idx)
|
|
{
|
|
return idx<symtab.size();
|
|
}
|
|
const SYM &Project::getSymByIdx(size_t idx) const
|
|
{
|
|
return symtab[idx];
|
|
}
|
|
size_t Project::symbolSize(size_t idx)
|
|
{
|
|
assert(validSymIdx(idx));
|
|
return symtab[idx].size;
|
|
}
|
|
hlType Project::symbolType(size_t idx)
|
|
{
|
|
assert(validSymIdx(idx));
|
|
return symtab[idx].type;
|
|
}
|
|
|
|
const QString &Project::symbolName(size_t idx)
|
|
{
|
|
assert(validSymIdx(idx));
|
|
return symtab[idx].name;
|
|
}
|
|
Project *Project::get()
|
|
{
|
|
//WARNING: poor man's singleton, not thread safe
|
|
if(s_instance==nullptr)
|
|
s_instance=new Project;
|
|
return s_instance;
|
|
}
|
|
|
|
|
|
SourceMachine *Project::machine()
|
|
{
|
|
return nullptr;
|
|
}
|
|
|