Write a new decimal value '123' to the current thread register 'rax'.
+
+
+ (gdb) p $rax = 123
+
+
+ (lldb) register write rax 123
+
+
+
+
Skip 8 bytes ahead of the current program counter (instruction pointer). Note that we use backticks to evaluate an expression and insert the scalar result in LLDB.
+
+
+ (gdb) jump *$pc+8
+
+
+ (lldb) register write pc `$pc+8`
+
+
+
Show the general purpose registers for the current thread formatted as signed decimal. LLDB tries to use
the same format characters as printf(3) when possible. Type "help format" to see the full list of format specifiers.