Instructions.with_callee_function_name_suffix()

Adds a filter to get instructions that call a function whose name has the given suffix.

with_callee_function_name_suffix(suffix: str, sensitivity: bool = True) → Instructions

Query Example

from glider import *

def query():
  return (
    Instructions()
    .with_callee_function_name_suffix("dao", sensitivity=False)
    .exec(2,10)
  )

Output Example

Last updated