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

Method llil

rust/src/disassembly.rs:1061–1069  ·  view source on GitHub ↗
(
        &self,
    )

Source from the content-addressed store, hash-verified

1059 }
1060
1061 pub fn llil<M: FunctionMutability, F: FunctionForm>(
1062 &self,
1063 ) -> Ref<LowLevelILFunction<CoreArchitecture, M, F>> {
1064 let arch = self.arch();
1065 let result =
1066 unsafe { BNGetDisassemblyTextRendererLowLevelILFunction(self.handle.as_ptr()) };
1067 assert!(!result.is_null());
1068 unsafe { LowLevelILFunction::ref_from_raw(arch.handle(), result) }
1069 }
1070
1071 pub fn mlil(&self) -> Ref<MediumLevelILFunction> {
1072 let result =

Callers

nothing calls this directly

Calls 2

archMethod · 0.45
handleMethod · 0.45

Tested by

no test coverage detected