Can I set a breakpoint by lldb which can observe LDR operation from a certain address

When I’m trying to track the parameters in a long function, i need to find when and which register load the parameter from a certain address.

Can i set a breakpoint when some register make a operation of ldr from this address?

watchpoint set expression -w read – 0x1882000

   -w <watch-type> ( --watch <watch-type> )
        Specify the type of watching to perform.
        Values: read | write | read_write

Thx :smile:

I’ll try it.