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

Function check_function

arch/riscv/src/liftcheck.rs:401–409  ·  view source on GitHub ↗
(func: &Function)

Source from the content-addressed store, hash-verified

399}
400
401pub fn check_function(func: &Function) {
402 if let Ok(llil) = func.lifted_il() {
403 for block in &llil.basic_blocks() {
404 for inst in &*block {
405 check_instruction(&inst);
406 }
407 }
408 }
409}
410
411use rayon::prelude::*;
412use std::thread;

Callers 1

Calls 3

check_instructionFunction · 0.85
lifted_ilMethod · 0.45
basic_blocksMethod · 0.45

Tested by

no test coverage detected