Instructions.with_callee_function_name()

Adds a filter to get Instructions that call a function with the given name.

with_callee_function_name(name: str, sensitivity: bool = True) → Instructions

Query Example

from glider import *

def query():
  return (
    Instructions()
    .with_callee_function_name("assert", sensitivity=False)
    .exec(1)
  )

Output Example

Last updated