Static Flow Graph

CFG class is a container to look at the flow graph starting from a given address.

    // Allocate a cfg container from the start of a function with handle rtn
    CFG cfg = CFG_Alloc( RTN_Address(rtn));

    // Get the bbl that the container was initialized with
    BBL bbl = CFG_BblHead(cfg);

    // Find the fallthrough path of this bbl 
    EDG edg = BBL_FindSuccEdg(bbl, EDG_TYPE_FALSE);

Generated on Tue Jan 16 00:09:08 2007 for Pin by  doxygen 1.4.6