Instruction.get_callees()

Returns metadata on all calls in the Instruction.

get_callees() → Dict

Query Example

from glider import *

def query():
    instructions = Instructions().exec(3,182)
    results = []
    
    for inst in instructions: 
        print(inst.get_callees())

    return instructions

Example Output

Last updated