mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-2237 AddrSpace as marshaling primitive and prettyprint update
This commit is contained in:
parent
4807ec354a
commit
6be9943b8a
58 changed files with 1333 additions and 1098 deletions
|
@ -880,9 +880,9 @@ void IfcPrintCXml::execute(istream &s)
|
|||
throw IfaceExecutionError("No function selected");
|
||||
|
||||
dcp->conf->print->setOutputStream(status->fileoptr);
|
||||
dcp->conf->print->setXML(true);
|
||||
dcp->conf->print->setMarkup(true);
|
||||
dcp->conf->print->docFunction(dcp->fd);
|
||||
dcp->conf->print->setXML(false);
|
||||
dcp->conf->print->setMarkup(false);
|
||||
}
|
||||
|
||||
/// \class IfcPrintCStruct
|
||||
|
@ -2724,7 +2724,7 @@ void IfcCallGraphLoad::execute(istream &s)
|
|||
Document *doc = store.parseDocument(is);
|
||||
|
||||
dcp->allocateCallGraph();
|
||||
XmlDecode decoder(doc->getRoot());
|
||||
XmlDecode decoder(dcp->conf,doc->getRoot());
|
||||
dcp->cgraph->decoder(decoder);
|
||||
*status->optr << "Successfully read in callgraph" << endl;
|
||||
|
||||
|
@ -3016,8 +3016,8 @@ void IfcStructureBlocks::execute(istream &s)
|
|||
|
||||
try {
|
||||
BlockGraph ingraph;
|
||||
XmlDecode decoder(doc->getRoot());
|
||||
ingraph.decode(decoder,dcp->conf);
|
||||
XmlDecode decoder(dcp->conf,doc->getRoot());
|
||||
ingraph.decode(decoder);
|
||||
|
||||
BlockGraph resultgraph;
|
||||
vector<FlowBlock *> rootlist;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue