Mono:Lua:mono getJitInfo

From Cheat Engine
Jump to navigation Jump to search

function mono_getJitInfo(address) : table

Returns a table with the properties given the address of code in memory.

method - integer
the method id
code_size - integer
length of code in bytes
code_start - integer
address where method code begins
jitinfo - integer
?? address of the jitinfo ??

Function Parameters

Parameter Type Description
address integer The address in memory with in a method.


Examples

In Lua Engine form

While attached to Cuphead.

Input:

return mono_getJitInfo(getAddress('PlayerStatsManager:TakeDamage'))

Output:

:table
[
   method = 284818304
   code_size = 395
   code_start = 432511608
   jitinfo = 631989424
]


See also

Related Functions