mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
8ba9930638
GenericGraphs no longer require CRTP.
166 lines
3.9 KiB
C++
166 lines
3.9 KiB
C++
/// \file Binary.cpp
|
|
/// \brief
|
|
|
|
//
|
|
// This file is distributed under the MIT License. See LICENSE.md for details.
|
|
//
|
|
|
|
// LLVM includes
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
|
#include "llvm/Support/DOTGraphTraits.h"
|
|
#include "llvm/Support/GraphWriter.h"
|
|
#include "llvm/Support/raw_os_ostream.h"
|
|
|
|
// Local libraries includes
|
|
#include "revng/ADT/GenericGraph.h"
|
|
#include "revng/Model/Binary.h"
|
|
|
|
using namespace llvm;
|
|
|
|
using BasicBlockRangesMap = std::map<MetaAddress, MetaAddress>;
|
|
using BasicBlockRangesVector = std::vector<std::pair<MetaAddress, MetaAddress>>;
|
|
using CFGVector = decltype(model::Function::CFG);
|
|
|
|
namespace model {
|
|
|
|
BasicBlockRangesVector Function::basicBlockRanges() const {
|
|
|
|
BasicBlockRangesVector Result;
|
|
for (const model::BasicBlock &BB : CFG) {
|
|
Result.emplace_back(BB.Start, BB.End);
|
|
}
|
|
return Result;
|
|
}
|
|
|
|
} // namespace model
|
|
|
|
namespace model {
|
|
|
|
struct FunctionCFGNodeData {
|
|
FunctionCFGNodeData(MetaAddress Start) : Start(Start) {}
|
|
MetaAddress Start;
|
|
};
|
|
|
|
using FunctionCFGNode = ForwardNode<FunctionCFGNodeData>;
|
|
|
|
struct FunctionCFG : public GenericGraph<FunctionCFGNode> {
|
|
public:
|
|
FunctionCFG(MetaAddress Entry) : Entry(Entry) {}
|
|
|
|
public:
|
|
MetaAddress entry() const { return Entry; }
|
|
FunctionCFGNode *entryNode() const { return Map.at(Entry); }
|
|
|
|
public:
|
|
FunctionCFGNode *get(MetaAddress MA) {
|
|
FunctionCFGNode *Result = nullptr;
|
|
auto It = Map.find(MA);
|
|
if (It == Map.end()) {
|
|
Result = addNode(MA);
|
|
Map[MA] = Result;
|
|
} else {
|
|
Result = It->second;
|
|
}
|
|
|
|
return Result;
|
|
}
|
|
|
|
bool allNodesAreReachable() const {
|
|
if (Map.size() == 0)
|
|
return true;
|
|
|
|
// Ensure all the nodes are reachable from the entry node
|
|
df_iterator_default_set<FunctionCFGNode *> Visited;
|
|
for (auto &Ignore : depth_first_ext(entryNode(), Visited))
|
|
;
|
|
return Visited.size() == size();
|
|
}
|
|
|
|
bool hasOnlyInvalidExits() const {
|
|
for (auto &[Address, Node] : Map)
|
|
if (Address.isValid() and not Node->hasSuccessors())
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
MetaAddress Entry;
|
|
std::map<MetaAddress, FunctionCFGNode *> Map;
|
|
};
|
|
|
|
bool Function::verifyCFG() const {
|
|
using namespace FunctionEdgeType;
|
|
|
|
yaml::Output YAMLOutput(llvm::errs());
|
|
YAMLOutput << *const_cast<Function *>(this);
|
|
|
|
// Populate graph
|
|
FunctionCFG Graph(Entry);
|
|
for (const BasicBlock &Block : CFG) {
|
|
auto *Source = Graph.get(Block.Start);
|
|
|
|
for (const FunctionEdge &Edge : Block.Successors) {
|
|
switch (Edge.Type) {
|
|
case DirectBranch:
|
|
case FakeFunctionCall:
|
|
case FakeFunctionReturn:
|
|
case Return:
|
|
case BrokenReturn:
|
|
case IndirectTailCall:
|
|
case LongJmp:
|
|
case Unreachable:
|
|
Source->addSuccessor(Graph.get(Edge.Destination));
|
|
break;
|
|
|
|
case FunctionCall:
|
|
case IndirectCall:
|
|
Source->addSuccessor(Graph.get(Block.End));
|
|
break;
|
|
|
|
case Killer:
|
|
Source->addSuccessor(Graph.get(MetaAddress::invalid()));
|
|
break;
|
|
|
|
case Invalid:
|
|
revng_abort();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
{
|
|
raw_os_ostream Output(dbg);
|
|
WriteGraph(Output, &Graph);
|
|
}
|
|
|
|
// Ensure all the nodes are reachable from the entry node
|
|
revng_assert(Graph.allNodesAreReachable());
|
|
|
|
// Ensure the only node with no successors is invalid
|
|
revng_assert(Graph.hasOnlyInvalidExits());
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace model
|
|
|
|
template<>
|
|
struct llvm::DOTGraphTraits<model::FunctionCFG *>
|
|
: public DefaultDOTGraphTraits {
|
|
DOTGraphTraits(bool simple = false) : DefaultDOTGraphTraits(simple) {}
|
|
|
|
static std::string
|
|
getNodeLabel(const model::FunctionCFGNode *Node, const model::FunctionCFG *) {
|
|
return Node->Start.toString();
|
|
}
|
|
|
|
static std::string getNodeAttributes(const model::FunctionCFGNode *Node,
|
|
const model::FunctionCFG *Graph) {
|
|
if (Node->Start == Graph->entry()) {
|
|
return "shape=box,peripheries=2";
|
|
}
|
|
|
|
return "";
|
|
}
|
|
};
|