reffindrange/findrefrange/refrange

Find references to a certain range of values.

参数

arg1 Start of the range (will be included in the results when found).

[arg2] End of range (will be included in the results when found). When not specified the first argument will be used.

[arg3] Address of/inside a memory page to look in. When not specified CIP will be used.

[arg4] The size of the data to search in.

结果

$result 变量被设置为找到的引用的数量。

备注

引用视图的内容可以在脚本中用 ref.addr 表达式函数进行迭代。

i = 0 loop: addr = ref.addr(i) log "reference {d:i} = {p:addr}" i++ cmp i, ref.count() jne loop