Skip to content
Snippets Groups Projects
Commit 99370723 authored by jdh8d's avatar jdh8d
Browse files

fixes for spasm with libstrata.so

Former-commit-id: 90112870110ff883249b93c94c25bb2944db4643
parent 23e3da86
No related branches found
No related tags found
No related merge requests found
......@@ -51,18 +51,31 @@ static void resolveSymbols(const string &mapFile);
static vector<bin_instruction_t> parseBin(const string &binFile);
static vector<string> getSPRI(const vector<bin_instruction_t> &bin, const vector<spasmline_t> &spasmlines, const string &symbolFilename);
static void printVector(const string &outputFile, const vector<string> &lines);
static int getSymbolAddress(const string &symbolFilename, const string &symbol) throw(exception);
//
// @todo: need to cache results
//
static string getCallbackAddress(const string &symbolFilename, const string &symbol) throw(exception)
{
char buf[30];
int diff=getSymbolAddress(symbolFilename, symbol)
- getSymbolAddress(symbolFilename, "strata_init");
sprintf(buf,"%x", diff);
string s(buf);
return s;
}
static int getSymbolAddress(const string &symbolFilename, const string &symbol) throw(exception)
{
string symbolFullName = symbolFilename + "+" + symbol;
map<string,string>::iterator callbackMapIterator;
if(callbackMap.find(symbolFullName) != callbackMap.end())
{
return callbackMap[symbolFullName];
return strtol(callbackMap[symbolFullName].c_str(),NULL,16);
}
// nm -a stratafier.o.exe | egrep " integer_overflow_detector$" | cut -f1 -d' '
......@@ -79,7 +92,7 @@ static string getCallbackAddress(const string &symbolFilename, const string &sym
callbackMap[symbolFullName] = addressString;
return addressString;
return strtol(addressString.c_str(),NULL,16);
}
void a2bspri(const string &input, const string &output, const string &symbolFilename) throw(exception)
......
#include "spasm.h"
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;
bool fexists(string filename)
{
ifstream ifile(filename.c_str());
return ifile;
}
///Utility SPASM's main
int main(int argc, char *argv[])
{
if(argc != 4)
string input, output, elf;
if(argc == 4)
{
elf = string(argv[3]);
if(!fexists(elf))
{
cerr<<"Symbol file "<<elf<<" does not exist. SPASM will not be able to process callbacks properly."<<endl;
}
}
else if(argc == 5)
{
elf = string(argv[3]);
if(!fexists(elf))
{
elf = string(argv[4]);
if(!fexists(elf))
cerr<<"Symbol files ("<<argv[3] << " and " << argv[4] <<
") do not exist. SPASM will not be able to process callbacks properly."<<endl;
}
}
else
{
cerr<<"SPASM Usage:\n<input file> <output file> <symbol file> \n"<<endl;
exit(1);
}
string input, output, elf;
input = string(argv[1]);
output = string(argv[2]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment