MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / process_disasm

Method process_disasm

python/renderlayer.py:359–375  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

357 misc_lines = []
358
359 def process_disasm():
360 nonlocal disasm_lines
361
362 if len(disasm_lines) > 0:
363 disasm_lines = self.apply_to_block(last_block, disasm_lines)
364 func = block_lines[0].function
365 block = block_lines[0].block
366 for block_line in disasm_lines:
367 new_block_lines.append(
368 LinearDisassemblyLine(
369 LinearDisassemblyLineType.CodeDisassemblyLineType,
370 func,
371 block,
372 block_line
373 )
374 )
375 disasm_lines = []
376
377 def process_misc():
378 nonlocal misc_lines

Callers

nothing calls this directly

Calls 3

apply_to_blockMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected