Lines Matching refs:to
11 ## How to Debug Trusty in the Emulator
26 You should now be connected to QEMU and stopped just before the bootloader has
27 started. Add breakpoints now. You can add breakpoints to the kernel and to TAs
34 low thanks to ASLR. But LLDB will lose track of processes when syscalls are
35 made. You'll need to add breakpoints after each syscall if you want to step
54 SS_ERR("fatal: unable to initialize proxy endpoint (%d)\n", rc);
65 In the above snippet, if you have a breakpoint on the call to
67 lose track of the process. You'll need to add another breakpoint on the line
68 below, `if (rc < 0) {` to catch the process again.
70 Our debugger support depends entirely on ASLR to work. This means builds without
71 ASLR can not be debugged with LLDB. You may get kernel breakpoints to work. But
72 TAs are going to overlap in virtual address space, so our pure program counter
73 breakpointing is going to get messy. We only have ASLR in 64-bit builds, so
78 ## How to Debug Trusty on a Phone