|
Add a dependency between two functions. When the third parameter is true,
we only update the temporary graph, and when it is false, we update the
call graph.
-
caller
:
Addr
-
callee
:
Addr
-
isTemp
:
bool
|
|
Confirm the temporary dependencies by shifting the dependencies to the
call graph. This function returns the confirmed callers.
-
callee
:
Addr
-
Returns:
Addr array
|
|
Get the immediate **confirmed** caller functions of the given callee from
the call graph, but excluding the recursive calls.
-
callee
:
Addr
-
Returns:
Addr array
|
|
Return an array of sets of mutually recurive nodes in the temporary
dependence graph.
-
Returns:
Addr array seq
|
|
Remove call edges (successors) from the given function from both the
temporary and regular call graphs.
-
entryAddr
:
Addr
|
|
Remove a function from the call graph and return the immediate callers'
addresses of the function excluding the recursive calls.
-
callee
:
Addr
-
Returns:
Addr array
|
|
Remove a function from the temporary graph and return the immediate
callers' addresses of the function excluding the recursive calls.
-
callee
:
Addr
-
Returns:
Addr array
|