mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
add 3 methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20667 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -106,6 +106,8 @@ public:
|
|||||||
typedef GlobalSetTy::const_iterator global_iterator;
|
typedef GlobalSetTy::const_iterator global_iterator;
|
||||||
global_iterator global_begin() const { return GlobalSet.begin(); }
|
global_iterator global_begin() const { return GlobalSet.begin(); }
|
||||||
global_iterator global_end() const { return GlobalSet.end(); }
|
global_iterator global_end() const { return GlobalSet.end(); }
|
||||||
|
unsigned global_size() const { return GlobalSet.size(); }
|
||||||
|
unsigned global_count(GlobalValue *GV) const { return GlobalSet.count(GV); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -399,6 +401,12 @@ public:
|
|||||||
/// graph to nodes in this graph.
|
/// graph to nodes in this graph.
|
||||||
void computeGGToGMapping(InvNodeMapTy &InvNodeMap);
|
void computeGGToGMapping(InvNodeMapTy &InvNodeMap);
|
||||||
|
|
||||||
|
/// computeCalleeCallerMapping - Given a call from a function in the current
|
||||||
|
/// graph to the 'Callee' function (which lives in 'CalleeGraph'), compute the
|
||||||
|
/// mapping of nodes from the callee to nodes in the caller.
|
||||||
|
void computeCalleeCallerMapping(DSCallSite CS, const Function &Callee,
|
||||||
|
DSGraph &CalleeGraph, NodeMapTy &NodeMap);
|
||||||
|
|
||||||
/// cloneInto - Clone the specified DSGraph into the current graph. The
|
/// cloneInto - Clone the specified DSGraph into the current graph. The
|
||||||
/// translated ScalarMap for the old function is filled into the OldValMap
|
/// translated ScalarMap for the old function is filled into the OldValMap
|
||||||
/// member, and the translated ReturnNodes map is returned into ReturnNodes.
|
/// member, and the translated ReturnNodes map is returned into ReturnNodes.
|
||||||
|
Reference in New Issue
Block a user