Esempio n. 1
0
def setup_body_addrs():
    for f in stack_logic.get_functions_with_tag("ASM"):
        for n in functions[f].nodes:
            if is_addr(n):
                body_addrs[n] = f
                # just in case there aren't any
    body_addrs["Loaded"] = True
Esempio n. 2
0
def setup_body_addrs():
    for f in stack_logic.get_functions_with_tag('ASM'):
        count = 0
        for n in functions[f].nodes:
            if is_addr(n):
                body_addrs[n] = f
                count += 1
        fun_addrs_counts[f] = count
    # just in case there aren't any
    body_addrs['Loaded'] = True
Esempio n. 3
0
def all_asm_functions():
    ss = stack_logic.get_functions_with_tag('ASM')
    return [s for s in ss if not stack_logic.is_instruction(s)]
Esempio n. 4
0
def all_asm_functions():
    ss = stack_logic.get_functions_with_tag("ASM")
    return [s for s in ss if not s.startswith("instruction'") if not s.startswith("impl'")]
Esempio n. 5
0
def all_asm_functions ():
    return stack_logic.get_functions_with_tag ('ASM')