Instructions.with_callee_function_name_prefix()

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

with_callee_function_name_prefix(prefix: str, sensitivity: bool = True) → Instructions

Query Example

from glider import *

def query():
  return (
    Instructions()
    .with_callee_function_name_prefix("upgrade")
    .exec(1)
  )

Output Example

Last updated