private Map<AbsoluteAddress, String> symbolMap;
private Set<ExportedSymbol> functionSymbols;
public ELFModule(File moduleFile, Architecture architecture) throws IOException, BinaryParseException {
inBuf = new BinaryFileInputBuffer(new FileInputStream(moduleFile));
byte[] data = inBuf.getByteArray();
elf = new Elf(moduleFile.getAbsolutePath());
elf.loadSymbols();
requiredLibraries = new FastSet<String>();