Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / docs / lldb-gdb-remote.txt
blob58269e4c2b688ba829c3f86f2817312dd80d41c7
1 LLDB has added new GDB server packets to better support multi-threaded and
2 remote debugging. Why? Normally you need to start the correct GDB and the
3 correct GDB server when debugging. If you have mismatch, then things go wrong
4 very quickly. LLDB makes extensive use of the GDB remote protocol and we
5 wanted to make sure that the experience was a bit more dynamic where we can
6 discover information about a remote target without having to know anything up
7 front. We also ran into performance issues with the existing GDB remote
8 protocol that can be overcome when using a reliable communications layer.
9 Some packets improve performance, others allow for remote process launching
10 (if you have an OS), and others allow us to dynamically figure out what
11 registers a thread might have. Again with GDB, both sides pre-agree on how the
12 registers will look (how many, their register number,name and offsets). We
13 prefer to be able to dynamically determine what kind of architecture, OS and
14 vendor we are debugging, as well as how things are laid out when it comes to
15 the thread register contexts. Below are the details on the new packets we have
16 added above and beyond the standard GDB remote protocol packets.
18 //----------------------------------------------------------------------
19 // "QStartNoAckMode"
21 // BRIEF
22 //  Try to enable no ACK mode to skip sending ACKs and NACKs.
24 // PRIORITY TO IMPLEMENT
25 //  High. Any GDB remote server that can implement this should if the
26 //  connection is reliable. This improves packet throughput and increases
27 //  the performance of the connection.
28 //----------------------------------------------------------------------
29 Having to send an ACK/NACK after every packet slows things down a bit, so we
30 have a way to disable ACK packets to minimize the traffic for reliable
31 communication interfaces (like sockets). Below GDB or LLDB will send this
32 packet to try and disable ACKs. All lines that start with "send packet: " are
33 from GDB/LLDB, and all lines that start with "read packet: " are from the GDB
34 remote server:
36 send packet: $QStartNoAckMode#b0
37 read packet: +
38 read packet: $OK#9a
39 send packet: +
43 //----------------------------------------------------------------------
44 // "A" - launch args packet
46 // BRIEF
47 //  Launch a program using the supplied arguments
49 // PRIORITY TO IMPLEMENT
50 //  Low. Only needed if the remote target wants to launch a target after
51 //  making a connection to a GDB server that isn't already connected to
52 //  an inferior process.
53 //----------------------------------------------------------------------
55 We have added support for the "set program arguments" packet where we can
56 start a connection to a remote server and then later supply the path to the
57 executable and the arguments to use when executing:
59 GDB remote docs for this:
61 set program arguments(reserved) Aarglen,argnum,arg,...
63 Where A is followed by the length in bytes of the hex encoded argument,
64 followed by an argument integer, and followed by the ASCII characters
65 converted into hex bytes foreach arg
67 send packet: $A98,0,2f566f6c756d65732f776f726b2f67636c6179746f6e2f446f63756d656e74732f7372632f6174746163682f612e6f7574#00
68 read packet: $OK#00
70 The above packet helps when you have remote debugging abilities where you
71 could launch a process on a remote host, this isn't needed for bare board
72 debugging.
74 //----------------------------------------------------------------------
75 // "QEnvironment:NAME=VALUE"
77 // BRIEF
78 //  Setup the environment up for a new child process that will soon be
79 //  launched using the "A" packet.
81 // NB: key/value pairs are sent as-is so gdb-remote protocol meta characters
82 //     (e.g. '#' or '$') are not acceptable.  If any non-printable or
83 //     metacharacters are present in the strings, QEnvironmentHexEncoded
84 //     should be used instead if it is available.  If you don't want to
85 //     scan the environment strings before sending, prefer
86 //     the QEnvironmentHexEncoded packet over QEnvironment, if it is
87 //     available.
89 // PRIORITY TO IMPLEMENT
90 //  Low. Only needed if the remote target wants to launch a target after
91 //  making a connection to a GDB server that isn't already connected to
92 //  an inferior process.
93 //----------------------------------------------------------------------
95 Both GDB and LLDB support passing down environment variables. Is it ok to
96 respond with a "$#00" (unimplemented):
98 send packet: $QEnvironment:ACK_COLOR_FILENAME=bold yellow#00
99 read packet: $OK#00
101 This packet can be sent one or more times _prior_ to sending a "A" packet.
103 //----------------------------------------------------------------------
104 // "QEnvironmentHexEncoded:HEX-ENCODING(NAME=VALUE)"
106 // BRIEF
107 //  Setup the environment up for a new child process that will soon be
108 //  launched using the "A" packet.
110 // The only difference between this packet and QEnvironment is that the
111 // environment key-value pair is ascii hex encoded for transmission.
112 // This allows values with gdb-remote metacharacters like '#' to be sent.
114 // PRIORITY TO IMPLEMENT
115 //  Low. Only needed if the remote target wants to launch a target after
116 //  making a connection to a GDB server that isn't already connected to
117 //  an inferior process.
118 //----------------------------------------------------------------------
120 Both GDB and LLDB support passing down environment variables. Is it ok to
121 respond with a "$#00" (unimplemented):
123 send packet: $QEnvironment:41434b5f434f4c4f525f46494c454e414d453d626f6c642379656c6c6f77#00
124 read packet: $OK#00
126 This packet can be sent one or more times _prior_ to sending a "A" packet.
128 //----------------------------------------------------------------------
129 // "QEnableErrorStrings"
131 // BRIEF
132 //  This packet enables reporting of Error strings in remote packet
133 //  replies from the server to client. If the server supports this
134 //  feature, it should send an OK response. The client can expect the
135 //  following error replies if this feature is enabled in the server ->
137 //  EXX;AAAAAAAAA
139 //  where AAAAAAAAA will be a hex encoded ASCII string.
140 //  XX is hex encoded byte number.
142 //  It must be noted that even if the client has enabled reporting
143 //  strings in error replies, it must not expect error strings to all
144 //  error replies.
146 // PRIORITY TO IMPLEMENT
147 //  Low. Only needed if the remote target wants to provide strings that
148 //  are human readable along with an error code.
149 //----------------------------------------------------------------------
151 send packet: $QEnableErrorStrings
152 read packet: $OK#00
154 //----------------------------------------------------------------------
155 // "QSetSTDIN:<ascii-hex-path>"
156 // "QSetSTDOUT:<ascii-hex-path>"
157 // "QSetSTDERR:<ascii-hex-path>"
159 // BRIEF
160 //  Setup where STDIN, STDOUT, and STDERR go prior to sending an "A"
161 //  packet.
163 // PRIORITY TO IMPLEMENT
164 //  Low. Only needed if the remote target wants to launch a target after
165 //  making a connection to a GDB server that isn't already connected to
166 //  an inferior process.
167 //----------------------------------------------------------------------
169 When launching a program through the GDB remote protocol with the "A" packet,
170 you might also want to specify where stdin/out/err go:
172 QSetSTDIN:<ascii-hex-path>
173 QSetSTDOUT:<ascii-hex-path>
174 QSetSTDERR:<ascii-hex-path>
176 These packets must be sent  _prior_ to sending a "A" packet.
178 //----------------------------------------------------------------------
179 // "QSetWorkingDir:<ascii-hex-path>"
181 // BRIEF
182 //  Set the working directory prior to sending an "A" packet.
184 // PRIORITY TO IMPLEMENT
185 //  Low. Only needed if the remote target wants to launch a target after
186 //  making a connection to a GDB server that isn't already connected to
187 //  an inferior process.
188 //----------------------------------------------------------------------
190 Or specify the working directory:
192 QSetWorkingDir:<ascii-hex-path>
194 This packet must be sent  _prior_ to sending a "A" packet.
196 //----------------------------------------------------------------------
197 // "QSetDisableASLR:<bool>"
199 // BRIEF
200 //  Enable or disable ASLR on the next "A" packet.
202 // PRIORITY TO IMPLEMENT
203 //  Low. Only needed if the remote target wants to launch a target after
204 //  making a connection to a GDB server that isn't already connected to
205 //  an inferior process and if the target supports disabling ASLR
206 //  (Address space layout randomization).
207 //----------------------------------------------------------------------
209 Or control if ASLR is enabled/disabled:
211 send packet: QSetDisableASLR:1
212 read packet: OK
214 send packet: QSetDisableASLR:0
215 read packet: OK
217 This packet must be sent  _prior_ to sending a "A" packet.
219 //----------------------------------------------------------------------
220 // QListThreadsInStopReply
222 // BRIEF
223 //  Enable the threads: and thread-pcs: data in the question-mark packet
224 //  ("T packet") responses when the stub reports that a program has
225 //  stopped executing.
227 // PRIORITY TO IMPLEMENT
228 //  Performance.  This is a performance benefit to lldb if the thread id's
229 //  and thread pc values are provided to lldb in the T stop packet -- if
230 //  they are not provided to lldb, lldb will likely need to send one to
231 //  two packets per thread to fetch the data at every private stop.
232 //----------------------------------------------------------------------
234 send packet: QListThreadsInStopReply
235 read packet: OK
237 //----------------------------------------------------------------------
238 // jLLDBTraceSupported
240 // BRIEF
241 //  Get the processor tracing type supported by the gdb-server for the current
242 //  inferior. Responses might be different depending on the architecture and
243 //  capabilities of the underlying OS.
245 //  OUTPUT SCHEMA
246 //   {
247 //     "name": <string>,
248 //         Tracing technology name, e.g. intel-pt, arm-etm.
249 //     "description": <string>,
250 //         Description for this technology.
251 //   }
253 //   If no tracing technology is supported for the inferior, or no process is
254 //   running, then an error message is returned.
256 // NOTE
257 //  This packet is used by Trace plug-ins (see lldb_private::Trace.h) to
258 //  do live tracing. Specifically, the name of the plug-in should match the name
259 //  of the tracing technology returned by this packet.
260 //----------------------------------------------------------------------
262 send packet: jLLDBTraceSupported
263 read packet: {"name":<name>, "description":<description>}/E<error code>;AAAAAAAAA
265 //----------------------------------------------------------------------
266 // jLLDBTraceStart
268 // BRIEF
269 //  Start tracing a process or its threads using a provided tracing technology.
270 //  The input and output are specified as JSON objects. In case of success, an OK
271 //  response is returned, or an error otherwise.
273 // PROCESS TRACING
274 //  This traces existing and future threads of the current process. An error is
275 //  returned if the process is already being traced.
277 // THREAD TRACING
278 //  This traces specific threads.
280 // INPUT SCHEMA
281 //  {
282 //    "type": <string>,
283 //        Tracing technology name, e.g. intel-pt, arm-etm.
285 //    /* thread tracing only */
286 //    "tids"?: [<decimal integer>],
287 //        Individual threads to trace.
289 //    ... other parameters specific to the provided tracing type
290 //  }
292 // NOTES
293 //  - If "tids" is not provided, then the operation is "process tracing",
294 //    otherwise it's "thread tracing".
295 //  - Each tracing technology can have different levels of support for "thread
296 //    tracing" and "process tracing".
298 // INTEL-PT
299 //  intel-pt supports both "thread tracing" and "process tracing".
301 //  "Process tracing" is implemented in two different ways. If the
302 //  "perCpuTracing" option is false, then each thread is traced individually
303 //  but managed by the same "process trace" instance. This means that the
304 //  amount of trace buffers used is proportional to the number of running
305 //  threads. This is the recommended option unless the number of threads is
306 //  huge. If "perCpuTracing" is true, then each cpu core is traced invidually
307 //  instead of each thread, which uses a fixed number of trace buffers, but
308 //  might result in less data available for less frequent threads. See
309 //  "perCpuTracing" below for more information.
311 //  Each actual intel pt trace buffer, either from "process tracing" or "thread
312 //  tracing", is stored in an in-memory circular buffer, which keeps the most
313 //  recent data.
315 //  Additional params in the input schema:
316 //   {
317 //     "iptTraceSize": <decimal integer>,
318 //         Size in bytes used by each individual per-thread or per-cpu trace
319 //         buffer. It must be a power of 2 greater than or equal to 4096 (2^12)
320 //         bytes.
322 //     "enableTsc": <boolean>,
323 //         Whether to enable TSC timestamps or not. This is supported on
324 //         all devices that support intel-pt. A TSC timestamp is generated along
325 //         with PSB (synchronization) packets, whose frequency can be configured
326 //         with the "psbPeriod" parameter.
328 //     "psbPeriod"?: <Optional decimal integer>,
329 //         This value defines the period in which PSB packets will be generated.
330 //         A PSB packet is a synchronization packet that contains a TSC
331 //         timestamp and the current absolute instruction pointer.
333 //         This parameter can only be used if
335 //             /sys/bus/event_source/devices/intel_pt/caps/psb_cyc
337 //         is 1. Otherwise, the PSB period will be defined by the processor.
339 //         If supported, valid values for this period can be found in
341 //             /sys/bus/event_source/devices/intel_pt/caps/psb_periods
343 //         which contains a hexadecimal number, whose bits represent valid
344 //         values e.g. if bit 2 is set, then value 2 is valid.
346 //         The psb_period value is converted to the approximate number of
347 //         raw trace bytes between PSB packets as:
349 //             2 ^ (value + 11)
351 //          e.g. value 3 means 16KiB between PSB packets. Defaults to
352 //          0 if supported.
354 //     /* process tracing only */
355 //     "perCpuTracing": <boolean>
356 //         Instead of having an individual trace buffer per thread, this option
357 //         triggers the collection on a per cpu core basis. This effectively
358 //         traces the entire activity on all cores. At decoding time, in order
359 //         to correctly associate a decoded instruction with a thread, the
360 //         context switch trace of each core is needed, as well as a record per
361 //         cpu indicating which thread was running on each core when tracing
362 //         started. These secondary traces are correlated with the intel-pt
363 //         trace by comparing TSC timestamps.
365 //         This option forces the capture of TSC timestamps (see "enableTsc").
367 //         Note: This option can't be used simulatenously with any other trace
368 //         sessions because of its system-wide nature.
370 //     /* process tracing only */
371 //     "processBufferSizeLimit": <decimal integer>,
372 //         Maximum total buffer size per process in bytes.
373 //         This limit applies to the sum of the sizes of all thread or cpu core
374 //         buffers for the current process, excluding the ones started with
375 //         "thread tracing".
377 //         If "perCpuTracing" is false, whenever a thread is attempted to be
378 //         traced due to "process tracing" and the limit would be reached, the
379 //         process is stopped with a "tracing" reason along with a meaningful
380 //         description, so that the user can retrace the process if needed.
382 //         If "perCpuTracing" is true, then starting the system-wide trace
383 //         session fails if all the individual per-cpu trace buffers require
384 //         in total more memory that the limit impossed by this parameter.
385 //   }
387 //  Notes:
388 //   - Modifying the parameters of an existing trace is not supported. The user
389 //     needs to stop the trace and start a new one.
390 //   - If "process tracing" is attempted and there are individual threads
391 //     already being traced with "thread tracing", these traces are left
392 //     unaffected and the threads not traced twice.
393 //   - If "thread tracing" is attempted on a thread already being traced with
394 //     either "thread tracing" or "process tracing", it fails.
395 //----------------------------------------------------------------------
397 Process tracing:
398 send packet: jLLDBTraceStart:{"type":<type>,...other params}]
399 read packet: OK/E<error code>;AAAAAAAAA
401 Thread tracing:
402 send packet: jLLDBTraceStart:{"type":<type>,"tids":<tids>,...other params}]
403 read packet: OK/E<error code>;AAAAAAAAA
405 //----------------------------------------------------------------------
406 // jLLDBTraceStop
408 // BRIEF
409 //  Stop tracing a process or its threads using a provided tracing technology.
410 //  The input and output are specified as JSON objects. In case of success, an OK
411 //  response is returned, or an error otherwise.
413 // PROCESS TRACE STOPPING
414 //  Stopping a process trace stops the active traces initiated with
415 //  "thread tracing".
417 // THREAD TRACE STOPPING
418 //  This is a best effort request, which tries to stop as many traces as
419 //  possible.
421 // INPUT SCHEMA
422 //  The schema for the input is
424 //  {
425 //    "type": <string>
426 //       Tracing technology name, e.g. intel-pt, arm-etm.
428 //    /* thread trace stopping only */
429 //    "tids":  [<decimal integer>]
430 //       Individual thread traces to stop.
431 //  }
433 // NOTES
434 //  - If "tids" is not provided, then the operation is "process trace stopping".
436 // INTEL PT
437 //  Stopping a specific thread trace started with "process tracing" is allowed.
438 //----------------------------------------------------------------------
440 Process trace stopping:
441 send packet: jLLDBTraceStop:{"type":<type>}]
442 read packet: OK/E<error code>;AAAAAAAAA
444 Thread trace stopping:
445 send packet: jLLDBTraceStop:{"type":<type>,"tids":<tids>}]
446 read packet: OK/E<error code>;AAAAAAAAA
448 //----------------------------------------------------------------------
449 // jLLDBTraceGetState
451 // BRIEF
452 //  Get the current state of the process and its threads being traced by
453 //  a given trace technology. The response is a JSON object with custom
454 //  information depending on the trace technology. In case of errors, an
455 //  error message is returned.
457 // INPUT SCHEMA
458 //  {
459 //     "type": <string>
460 //        Tracing technology name, e.g. intel-pt, arm-etm.
461 //  }
463 // OUTPUT SCHEMA
464 //  {
465 //    "tracedThreads": [{
466 //      "tid": <decimal integer>,
467 //      "binaryData": [
468 //        {
469 //          "kind": <string>,
470 //              Identifier for some binary data related to this thread to
471 //              fetch with the jLLDBTraceGetBinaryData packet.
472 //          "size": <decimal integer>,
473 //              Size in bytes of this thread data.
474 //        },
475 //      ]
476 //    }],
477 //    "processBinaryData": [
478 //      {
479 //        "kind": <string>,
480 //            Identifier for some binary data related to this process to
481 //            fetch with the jLLDBTraceGetBinaryData packet.
482 //        "size": <decimal integer>,
483 //            Size in bytes of this thread data.
484 //      },
485 //    ],
486 //    "cpus"?: [
487 //      "id": <decimal integer>,
488 //          Identifier for this CPU logical core.
489 //      "binaryData": [
490 //        {
491 //          "kind": <string>,
492 //              Identifier for some binary data related to this thread to
493 //              fetch with the jLLDBTraceGetBinaryData packet.
494 //          "size": <decimal integer>,
495 //              Size in bytes of this cpu core data.
496 //        },
497 //      ]
498 //    ],
499 //    "warnings"?: [<string>],
500 //        Non-fatal messages useful for troubleshooting.
502 //    ... other attributes specific to the given tracing technology
503 //  }
505 // NOTES
506 //   - "traceThreads" includes all thread traced by both "process tracing" and
507 //     "thread tracing".
509 // INTEL PT
511 //  If per-cpu process tracing is enabled, "tracedThreads" will contain all
512 //  the threads of the process without any trace buffers. Besides that, the
513 //  "cpus" field will also be returned with per cpu core trace buffers.
514 //  A side effect of per-cpu tracing is that all the threads of unrelated
515 //  processes will also be traced, thus polluting the tracing data.
517 //  Binary data kinds:
518 //    - iptTrace: trace buffer for a thread or a cpu.
519 //    - perfContextSwitchTrace: context switch trace for a cpu generated by
520 //                              perf_event_open.
521 //    - procfsCpuInfo: contents of the /proc/cpuinfo file.
523 //  Additional attributes:
524 //    tscPerfZeroConversion:
526 //    This field allows converting Intel processor's TSC values to nanoseconds.
527 //    It is available through the Linux perf_event API when cap_user_time and cap_user_time_zero
528 //    are set.
529 //    See the documentation of time_zero in
530 //    https://man7.org/linux/man-pages/man2/perf_event_open.2.html for more information about
531 //    the calculation and the meaning of the values in the schema below.
533 //    Schema for this field:
535 //    "tscPerfZeroConversion": {
536 //      "timeMult": <decimal integer>,
537 //      "timeShift": <decimal integer>,
538 //      "timeZero": <decimal integer>,
539 //    }
540 //----------------------------------------------------------------------
542 send packet: jLLDBTraceGetState:{"type":<type>}]
543 read packet: {...object}/E<error code>;AAAAAAAAA
545 //----------------------------------------------------------------------
546 // jLLDBTraceGetBinaryData
548 // BRIEF
549 //  Get binary data given a trace technology and a data identifier.
550 //  The input is specified as a JSON object and the response has the same format
551 //  as the "binary memory read" (aka "x") packet. In case of failures, an error
552 //  message is returned.
554 // SCHEMA
555 //  The schema for the input is
557 //  {
558 //   "type": <string>,
559 //       Tracing technology name, e.g. intel-pt, arm-etm.
560 //   "kind": <string>,
561 //       Identifier for the data.
562 //   "cpuId": <Optional decimal>,
563 //       Core id in decimal if the data belongs to a CPU core.
564 //   "tid"?: <Optional decimal>,
565 //       Tid in decimal if the data belongs to a thread.
566 //  }
567 //----------------------------------------------------------------------
569 send packet: jLLDBTraceGetBinaryData:{"type":<type>,"kind":<query>,"tid":<tid>,"offset":<offset>,"size":<size>}]
570 read packet: <binary data>/E<error code>;AAAAAAAAA
572 //----------------------------------------------------------------------
573 // "qRegisterInfo<hex-reg-id>"
575 // BRIEF
576 //  Discover register information from the remote GDB server.
578 // PRIORITY TO IMPLEMENT
579 //  High. Any target that can self describe its registers, should do so.
580 //  This means if new registers are ever added to a remote target, they
581 //  will get picked up automatically, and allows registers to change
582 //  depending on the actual CPU type that is used.
584 //  NB: qRegisterInfo is deprecated in favor of the standard gdb remote
585 //  serial protocol register description method, 
586 //  "qXfer:features:read:target.xml".
587 //  If qXfer:features:read:target.xml is supported, qRegisterInfo does
588 //  not need to be implemented.  The target.xml format is used by most
589 //  gdb RSP stubs whereas qRegisterInfo was an lldb-only design.
590 //  qRegisterInfo requires one packet per register and can have undesirable
591 //  performance costs at the start of a debug session, whereas target.xml
592 //  may be able to describe all registers in a single packet.
593 //----------------------------------------------------------------------
595 With LLDB, for register information, remote GDB servers can add
596 support for the "qRegisterInfoN" packet where "N" is a zero based
597 base16 register number that must start at zero and increase by one
598 for each register that is supported.  The response is done in typical
599 GDB remote fashion where a series of "KEY:VALUE;" pairs are returned.
600 An example for the x86_64 registers is included below:
602 send packet: $qRegisterInfo0#00
603 read packet: $name:rax;bitsize:64;offset:0;encoding:uint;format:hex;set:General Purpose Registers;gcc:0;dwarf:0;#00
604 send packet: $qRegisterInfo1#00
605 read packet: $name:rbx;bitsize:64;offset:8;encoding:uint;format:hex;set:General Purpose Registers;gcc:3;dwarf:3;#00
606 send packet: $qRegisterInfo2#00
607 read packet: $name:rcx;bitsize:64;offset:16;encoding:uint;format:hex;set:General Purpose Registers;gcc:2;dwarf:2;#00
608 send packet: $qRegisterInfo3#00
609 read packet: $name:rdx;bitsize:64;offset:24;encoding:uint;format:hex;set:General Purpose Registers;gcc:1;dwarf:1;#00
610 send packet: $qRegisterInfo4#00
611 read packet: $name:rdi;bitsize:64;offset:32;encoding:uint;format:hex;set:General Purpose Registers;gcc:5;dwarf:5;#00
612 send packet: $qRegisterInfo5#00
613 read packet: $name:rsi;bitsize:64;offset:40;encoding:uint;format:hex;set:General Purpose Registers;gcc:4;dwarf:4;#00
614 send packet: $qRegisterInfo6#00
615 read packet: $name:rbp;alt-name:fp;bitsize:64;offset:48;encoding:uint;format:hex;set:General Purpose Registers;gcc:6;dwarf:6;generic:fp;#00
616 send packet: $qRegisterInfo7#00
617 read packet: $name:rsp;alt-name:sp;bitsize:64;offset:56;encoding:uint;format:hex;set:General Purpose Registers;gcc:7;dwarf:7;generic:sp;#00
618 send packet: $qRegisterInfo8#00
619 read packet: $name:r8;bitsize:64;offset:64;encoding:uint;format:hex;set:General Purpose Registers;gcc:8;dwarf:8;#00
620 send packet: $qRegisterInfo9#00
621 read packet: $name:r9;bitsize:64;offset:72;encoding:uint;format:hex;set:General Purpose Registers;gcc:9;dwarf:9;#00
622 send packet: $qRegisterInfoa#00
623 read packet: $name:r10;bitsize:64;offset:80;encoding:uint;format:hex;set:General Purpose Registers;gcc:10;dwarf:10;#00
624 send packet: $qRegisterInfob#00
625 read packet: $name:r11;bitsize:64;offset:88;encoding:uint;format:hex;set:General Purpose Registers;gcc:11;dwarf:11;#00
626 send packet: $qRegisterInfoc#00
627 read packet: $name:r12;bitsize:64;offset:96;encoding:uint;format:hex;set:General Purpose Registers;gcc:12;dwarf:12;#00
628 send packet: $qRegisterInfod#00
629 read packet: $name:r13;bitsize:64;offset:104;encoding:uint;format:hex;set:General Purpose Registers;gcc:13;dwarf:13;#00
630 send packet: $qRegisterInfoe#00
631 read packet: $name:r14;bitsize:64;offset:112;encoding:uint;format:hex;set:General Purpose Registers;gcc:14;dwarf:14;#00
632 send packet: $qRegisterInfof#00
633 read packet: $name:r15;bitsize:64;offset:120;encoding:uint;format:hex;set:General Purpose Registers;gcc:15;dwarf:15;#00
634 send packet: $qRegisterInfo10#00
635 read packet: $name:rip;alt-name:pc;bitsize:64;offset:128;encoding:uint;format:hex;set:General Purpose Registers;gcc:16;dwarf:16;generic:pc;#00
636 send packet: $qRegisterInfo11#00
637 read packet: $name:rflags;alt-name:flags;bitsize:64;offset:136;encoding:uint;format:hex;set:General Purpose Registers;#00
638 send packet: $qRegisterInfo12#00
639 read packet: $name:cs;bitsize:64;offset:144;encoding:uint;format:hex;set:General Purpose Registers;#00
640 send packet: $qRegisterInfo13#00
641 read packet: $name:fs;bitsize:64;offset:152;encoding:uint;format:hex;set:General Purpose Registers;#00
642 send packet: $qRegisterInfo14#00
643 read packet: $name:gs;bitsize:64;offset:160;encoding:uint;format:hex;set:General Purpose Registers;#00
644 send packet: $qRegisterInfo15#00
645 read packet: $name:fctrl;bitsize:16;offset:176;encoding:uint;format:hex;set:Floating Point Registers;#00
646 send packet: $qRegisterInfo16#00
647 read packet: $name:fstat;bitsize:16;offset:178;encoding:uint;format:hex;set:Floating Point Registers;#00
648 send packet: $qRegisterInfo17#00
649 read packet: $name:ftag;bitsize:8;offset:180;encoding:uint;format:hex;set:Floating Point Registers;#00
650 send packet: $qRegisterInfo18#00
651 read packet: $name:fop;bitsize:16;offset:182;encoding:uint;format:hex;set:Floating Point Registers;#00
652 send packet: $qRegisterInfo19#00
653 read packet: $name:fioff;bitsize:32;offset:184;encoding:uint;format:hex;set:Floating Point Registers;#00
654 send packet: $qRegisterInfo1a#00
655 read packet: $name:fiseg;bitsize:16;offset:188;encoding:uint;format:hex;set:Floating Point Registers;#00
656 send packet: $qRegisterInfo1b#00
657 read packet: $name:fooff;bitsize:32;offset:192;encoding:uint;format:hex;set:Floating Point Registers;#00
658 send packet: $qRegisterInfo1c#00
659 read packet: $name:foseg;bitsize:16;offset:196;encoding:uint;format:hex;set:Floating Point Registers;#00
660 send packet: $qRegisterInfo1d#00
661 read packet: $name:mxcsr;bitsize:32;offset:200;encoding:uint;format:hex;set:Floating Point Registers;#00
662 send packet: $qRegisterInfo1e#00
663 read packet: $name:mxcsrmask;bitsize:32;offset:204;encoding:uint;format:hex;set:Floating Point Registers;#00
664 send packet: $qRegisterInfo1f#00
665 read packet: $name:stmm0;bitsize:80;offset:208;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:33;dwarf:33;#00
666 send packet: $qRegisterInfo20#00
667 read packet: $name:stmm1;bitsize:80;offset:224;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:34;dwarf:34;#00
668 send packet: $qRegisterInfo21#00
669 read packet: $name:stmm2;bitsize:80;offset:240;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:35;dwarf:35;#00
670 send packet: $qRegisterInfo22#00
671 read packet: $name:stmm3;bitsize:80;offset:256;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:36;dwarf:36;#00
672 send packet: $qRegisterInfo23#00
673 read packet: $name:stmm4;bitsize:80;offset:272;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:37;dwarf:37;#00
674 send packet: $qRegisterInfo24#00
675 read packet: $name:stmm5;bitsize:80;offset:288;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:38;dwarf:38;#00
676 send packet: $qRegisterInfo25#00
677 read packet: $name:stmm6;bitsize:80;offset:304;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:39;dwarf:39;#00
678 send packet: $qRegisterInfo26#00
679 read packet: $name:stmm7;bitsize:80;offset:320;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:40;dwarf:40;#00
680 send packet: $qRegisterInfo27#00
681 read packet: $name:xmm0;bitsize:128;offset:336;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:17;dwarf:17;#00
682 send packet: $qRegisterInfo28#00
683 read packet: $name:xmm1;bitsize:128;offset:352;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:18;dwarf:18;#00
684 send packet: $qRegisterInfo29#00
685 read packet: $name:xmm2;bitsize:128;offset:368;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:19;dwarf:19;#00
686 send packet: $qRegisterInfo2a#00
687 read packet: $name:xmm3;bitsize:128;offset:384;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:20;dwarf:20;#00
688 send packet: $qRegisterInfo2b#00
689 read packet: $name:xmm4;bitsize:128;offset:400;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:21;dwarf:21;#00
690 send packet: $qRegisterInfo2c#00
691 read packet: $name:xmm5;bitsize:128;offset:416;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:22;dwarf:22;#00
692 send packet: $qRegisterInfo2d#00
693 read packet: $name:xmm6;bitsize:128;offset:432;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:23;dwarf:23;#00
694 send packet: $qRegisterInfo2e#00
695 read packet: $name:xmm7;bitsize:128;offset:448;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:24;dwarf:24;#00
696 send packet: $qRegisterInfo2f#00
697 read packet: $name:xmm8;bitsize:128;offset:464;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:25;dwarf:25;#00
698 send packet: $qRegisterInfo30#00
699 read packet: $name:xmm9;bitsize:128;offset:480;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:26;dwarf:26;#00
700 send packet: $qRegisterInfo31#00
701 read packet: $name:xmm10;bitsize:128;offset:496;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:27;dwarf:27;#00
702 send packet: $qRegisterInfo32#00
703 read packet: $name:xmm11;bitsize:128;offset:512;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:28;dwarf:28;#00
704 send packet: $qRegisterInfo33#00
705 read packet: $name:xmm12;bitsize:128;offset:528;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:29;dwarf:29;#00
706 send packet: $qRegisterInfo34#00
707 read packet: $name:xmm13;bitsize:128;offset:544;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:30;dwarf:30;#00
708 send packet: $qRegisterInfo35#00
709 read packet: $name:xmm14;bitsize:128;offset:560;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:31;dwarf:31;#00
710 send packet: $qRegisterInfo36#00
711 read packet: $name:xmm15;bitsize:128;offset:576;encoding:vector;format:vector-uint8;set:Floating Point Registers;gcc:32;dwarf:32;#00
712 send packet: $qRegisterInfo37#00
713 read packet: $name:trapno;bitsize:32;offset:696;encoding:uint;format:hex;set:Exception State Registers;#00
714 send packet: $qRegisterInfo38#00
715 read packet: $name:err;bitsize:32;offset:700;encoding:uint;format:hex;set:Exception State Registers;#00
716 send packet: $qRegisterInfo39#00
717 read packet: $name:faultvaddr;bitsize:64;offset:704;encoding:uint;format:hex;set:Exception State Registers;#00
718 send packet: $qRegisterInfo3a#00
719 read packet: $E45#00
721 As we see above we keep making subsequent calls to the remote server to
722 discover all registers by increasing the number appended to qRegisterInfo and
723 we get a response back that is a series of "key=value;" strings.
725 The offset: fields should not leave a gap anywhere in the g/G packet -- the
726 register values should be appended one after another.  For instance, if the
727 register context for a thread looks like
729 struct rctx {
730     uint32_t gpr1;  // offset 0
731     uint32_t gpr2;  // offset 4
732     uint32_t gpr3;  // offset 8
733     uint64_t fp1;   // offset 16
736 You may end up with a 4-byte gap between gpr3 and fp1 on architectures
737 that align values like this.  The correct offset: value for fp1 is 12 -
738 in the g/G packet fp1 will immediately follow gpr3, even though the
739 in-memory thread structure has an empty 4 bytes for alignment between
740 these two registers.
742 The keys and values are detailed below:
744 Key         Value
745 ==========  ================================================================
746 name        The primary register name as a string ("rbp" for example)
748 alt-name    An alternate name for a register as a string ("fp" for example for
749             the above "rbp")
751 bitsize     Size in bits of a register (32, 64, etc).  Base 10.
753 offset      The offset within the "g" and "G" packet of the register data for
754             this register.  This is the byte offset once the data has been
755             transformed into binary, not the character offset into the g/G
756             packet.  Base 10.
758 encoding    The encoding type of the register which must be one of:
760                  uint (unsigned integer)
761                  sint (signed integer)
762                  ieee754 (IEEE 754 float)
763                  vector (vector register)
765 format      The preferred format for display of this register. The value must
766             be one of:
768                 binary
769                 decimal
770                 hex
771                 float
772                 vector-sint8
773                 vector-uint8
774                 vector-sint16
775                 vector-uint16
776                 vector-sint32
777                 vector-uint32
778                 vector-float32
779                 vector-uint128
781 set         The register set name as a string that this register belongs to.
783 gcc         The GCC compiler registers number for this register (used for
784             EH frame and other compiler information that is encoded in the
785             executable files). The supplied number will be decoded like a
786             string passed to strtoul() with a base of zero, so the number
787             can be decimal, or hex if it is prefixed with "0x".
789             NOTE: If the compiler doesn't have a register number for this
790             register, this key/value pair should be omitted.
792 dwarf       The DWARF register number for this register that is used for this
793             register in the debug information. The supplied number will be decoded
794             like a string passed to strtoul() with a base of zero, so the number
795             can be decimal, or hex if it is prefixed with "0x".
797             NOTE: If the compiler doesn't have a register number for this
798             register, this key/value pair should be omitted.
800 generic     If the register is a generic register that most CPUs have, classify
801             it correctly so the debugger knows. Valid values are one of:
802              pc  (a program counter register. for example "name=eip;" (i386),
803                   "name=rip;" (x86_64), "name=r15;" (32 bit arm) would
804                   include a "generic=pc;" key value pair)
805              sp  (a stack pointer register. for example "name=esp;" (i386),
806                   "name=rsp;" (x86_64), "name=r13;" (32 bit arm) would
807                   include a "generic=sp;" key value pair)
808              fp  (a frame pointer register. for example "name=ebp;" (i386),
809                    "name=rbp;" (x86_64), "name=r7;" (32 bit arm with macosx
810                    ABI) would include a "generic=fp;" key value pair)
811              ra  (a return address register. for example "name=lr;" (32 bit ARM)
812                   would include a "generic=ra;" key value pair)
813              flags  (a CPU flags register. for example "name=eflags;" (i386),
814                   "name=rflags;" (x86_64), "name=cpsr;" (32 bit ARM)
815                   would include a "generic=flags;" key value pair)
816              arg1 - arg8 (specified for registers that contain function
817                       arguments when the argument fits into a register)
819 container-regs
820             The value for this key is a comma separated list of raw hex (optional
821             leading "0x") register numbers.
823             This specifies that this register is contained in other concrete
824             register values. For example "eax" is in the lower 32 bits of the
825             "rax" register value for x86_64, so "eax" could specify that it is
826             contained in "rax" by specifying the register number for "rax" (whose
827             register number is 0x00)
829             "container-regs:00;"
831             If a register is comprised of one or more registers, like "d0" is ARM
832             which is a 64 bit register, it might be made up of "s0" and "s1". If
833             the register number for "s0" is 0x20, and the register number of "s1"
834             is "0x21", the "container-regs" key/value pair would be:
836             "container-regs:20,21;"
838             This is handy for defining what GDB used to call "pseudo" registers.
839             These registers are never requested by LLDB via the register read
840             or write packets, the container registers will be requested on behalf
841             of this register.
843 invalidate-regs
844             The value for this key is a comma separated list of raw hex (optional
845             leading "0x") register numbers.
847             This specifies which register values should be invalidated when this
848             register is modified. For example if modifying "eax" would cause "rax",
849             "eax", "ax", "ah", and "al" to be modified where rax is 0x0, eax is 0x15,
850             ax is 0x25, ah is 0x35, and al is 0x39, the "invalidate-regs" key/value
851             pair would be:
853             "invalidate-regs:0,15,25,35,39;"
855             If there is a single register that gets invalidated, then omit the comma
856             and just list a single register:
858             "invalidate-regs:0;"
860             This is handy when modifying a specific register can cause other
861             register values to change. For example, when debugging an ARM target,
862             modifying the CPSR register can cause the r8 - r14 and cpsr value to
863             change depending on if the mode has changed.
865 //----------------------------------------------------------------------
866 // "qPlatform_shell"
868 // BRIEF
869 //  Run a command in a shell on the connected remote machine.
871 // PRIORITY TO IMPLEMENT
872 //  High. This command allows LLDB clients to run arbitrary shell
873 //  commands on a remote host.
875 /----------------------------------------------------------------------
877 The request consists of the command to be executed encoded in ASCII characters
878 converted into hex bytes.
880 The response to this packet consists of the letter F followed by the return code,
881 followed by the signal number (or 0 if no signal was delivered), and escaped bytes
882 of captured program output.
884 Below is an example communication from a client sending an "ls -la" command:
886 send packet: $qPlatform_shell:6c73202d6c61,00000002#ec
887 read packet: $F,00000000,00000000,total 4736
888 drwxrwxr-x 16 username groupname    4096 Aug 15 21:36 .
889 drwxr-xr-x 17 username groupname    4096 Aug 10 16:39 ..
890 -rw-rw-r--  1 username groupname   73875 Aug 12 16:46 notes.txt
891 drwxrwxr-x  5 username groupname    4096 Aug 15 21:36 source.cpp
892 -rw-r--r--  1 username groupname    2792 Aug 12 16:46 a.out
893 -rw-r--r--  1 username groupname    3190 Aug 12 16:46 Makefile
895 //----------------------------------------------------------------------
896 // "qPlatform_mkdir"
898 // BRIEF
899 //  Creates a new directory on the connected remote machine.
901 // PRIORITY TO IMPLEMENT
902 //  Low. This command allows LLDB clients to create new directories on
903 //  a remote host.
905 /----------------------------------------------------------------------
907 Request:
908     qPlatform_mkdir:<hex-file-mode>,<ascii-hex-path>
910 Reply:
911     F<mkdir-return-code>
912         mkdir called successfully and returned with the given return code
913     Exx
914         An error occurred
916 //----------------------------------------------------------------------
917 // "qPlatform_chmod"
919 // BRIEF
920 //  Change the permissions of a file on the connected remote machine.
922 // PRIORITY TO IMPLEMENT
923 //  Low. This command allows LLDB clients to change the permissions of
924 //  a file on the remote host.
926 /----------------------------------------------------------------------
928 Request:
929     qPlatform_chmod:<hex-file-mode>,<ascii-hex-path>
931 Reply:
932     F<chmod-return-code>
933         chmod called successfully and returned with the given return code
934     Exx
935         An error occurred
937 //----------------------------------------------------------------------
938 // "qHostInfo"
940 // BRIEF
941 //  Get information about the host we are remotely connected to.
943 // PRIORITY TO IMPLEMENT
944 //  High. This packet is usually very easy to implement and can help
945 //  LLDB select the correct plug-ins for the job based on the target
946 //  triple information that is supplied.
947 //----------------------------------------------------------------------
949 LLDB supports a host info call that gets all sorts of details of the system
950 that is being debugged:
952 send packet: $qHostInfo#00
953 read packet: $cputype:16777223;cpusubtype:3;ostype:darwin;vendor:apple;endian:little;ptrsize:8;#00
955 Key value pairs are one of:
957 cputype: is a number that is the mach-o CPU type that is being debugged (base 10)
958 cpusubtype: is a number that is the mach-o CPU subtype type that is being debugged (base 10)
959 triple: a string for the target triple (x86_64-apple-macosx) that can be used to specify arch + vendor + os in one entry
960 vendor: a string for the vendor (apple), not needed if "triple" is specified
961 ostype: a string for the OS being debugged (macosx, linux, freebsd, ios, watchos), not needed if "triple" is specified
962 endian: is one of "little", "big", or "pdp"
963 ptrsize: an unsigned number that represents how big pointers are in bytes on the debug target
964 hostname: the hostname of the host that is running the GDB server if available
965 os_build: a string for the OS build for the remote host as a string value
966 os_kernel: a string describing the kernel version
967 os_version: a version string that represents the current OS version (10.8.2)
968 watchpoint_exceptions_received: one of "before" or "after" to specify if a watchpoint is triggered before or after the pc when it stops
969 default_packet_timeout: an unsigned number that specifies the default timeout in seconds
970 distribution_id: optional. For linux, specifies distribution id (e.g. ubuntu, fedora, etc.)
971 osmajor: optional, specifies the major version number of the OS (e.g. for macOS 10.12.2, it would be 10)
972 osminor: optional, specifies the minor version number of the OS (e.g. for macOS 10.12.2, it would be 12)
973 ospatch: optional, specifies the patch level number of the OS (e.g. for macOS 10.12.2, it would be 2)
974 vm-page-size: optional, specifies the target system VM page size, base 10.
975            Needed for the "dirty-pages:" list in the qMemoryRegionInfo
976            packet, where a list of dirty pages is sent from the remote
977            stub.  This page size tells lldb how large each dirty page is.
978 addressing_bits: optional, specifies how many bits in addresses are
979                  significant for addressing, base 10.  If bits 38..0
980                  in a 64-bit pointer are significant for addressing,
981                  then the value is 39.  This is needed on e.g. AArch64
982                  v8.3 ABIs that use pointer authentication, so lldb
983                  knows which bits to clear/set to get the actual
984                  addresses.
985 low_mem_addressing_bits: optional, specifies how many bits in 
986      addresses in low memory are significant for addressing, base 10.  
987      AArch64 can have different page table setups for low and high
988      memory, and therefore a different number of bits used for addressing.
989 high_mem_addressing_bits: optional, specifies how many bits in 
990      addresses in high memory are significant for addressing, base 10.  
991      AArch64 can have different page table setups for low and high
992      memory, and therefore a different number of bits used for addressing.
994 //----------------------------------------------------------------------
995 // "qGDBServerVersion"
997 // BRIEF
998 //  Get version information about this implementation of the gdb-remote
999 //  protocol.
1001 // PRIORITY TO IMPLEMENT
1002 //  High. This packet is usually very easy to implement and can help
1003 //  LLDB to work around bugs in a server's implementation when they
1004 //  are found.
1005 //----------------------------------------------------------------------
1007 The goal of this packet is to provide enough information about an
1008 implementation of the gdb-remote-protocol server that lldb can
1009 work around implementation problems that are discovered after the
1010 version has been released/deployed.  The name and version number
1011 should be sufficiently unique that lldb can unambiguously identify
1012 the origin of the program (for instance, debugserver from lldb) and
1013 the version/submission number/patch level of the program - whatever
1014 is appropriate for your server implementation.
1016 The packet follows the key-value pair model, semicolon separated.
1018 send packet: $qGDBServerVersion#00
1019 read packet: $name:debugserver;version:310.2;#00
1021 Other clients may find other key-value pairs to be useful for identifying
1022 a gdb stub.  Patch level, release name, build number may all be keys that
1023 better describe your implementation's version.
1024 Suggested key names:
1026   name   : the name of your remote server - "debugserver" is the lldb standard
1027            implementation
1029   version : identifies the version number of this server
1031   patch_level : the patch level of this server
1033   release_name : the name of this release, if your project uses names
1035   build_number : if you use a build system with increasing build numbers,
1036                  this may be the right key name for your server
1038   major_version : major version number
1039   minor_version : minor version number
1041 //----------------------------------------------------------------------
1042 // "qProcessInfo"
1044 // BRIEF
1045 //  Get information about the process we are currently debugging.
1047 // PRIORITY TO IMPLEMENT
1048 //  Medium.  On systems which can launch multiple different architecture processes,
1049 //  the qHostInfo may not disambiguate sufficiently to know what kind of
1050 //  process is being debugged.
1051 //  e.g. on a 64-bit x86 Mac system both 32-bit and 64-bit user processes are possible,
1052 //  and with Mach-O universal files, the executable file may contain both 32- and
1053 //  64-bit slices so it may be impossible to know until you're attached to a real
1054 //  process to know what you're working with.
1056 //  All numeric fields return base-16 numbers without any "0x" prefix.
1057 //----------------------------------------------------------------------
1059 An i386 process:
1061 send packet: $qProcessInfo#00
1062 read packet: $pid:42a8;parent-pid:42bf;real-uid:ecf;real-gid:b;effective-uid:ecf;effective-gid:b;cputype:7;cpusubtype:3;ostype:macosx;vendor:apple;endian:little;ptrsize:4;#00
1064 An x86_64 process:
1066 send packet: $qProcessInfo#00
1067 read packet: $pid:d22c;parent-pid:d34d;real-uid:ecf;real-gid:b;effective-uid:ecf;effective-gid:b;cputype:1000007;cpusubtype:3;ostype:macosx;vendor:apple;endian:little;ptrsize:8;#00
1069 Key value pairs include:
1071 pid: the process id
1072 parent-pid: the process of the parent process (often debugserver will become the parent when attaching)
1073 real-uid: the real user id of the process
1074 real-gid: the real group id of the process
1075 effective-uid: the effective user id of the process
1076 effective-gid: the effective group id of the process
1077 cputype: the Mach-O CPU type of the process  (base 16)
1078 cpusubtype: the Mach-O CPU subtype of the process  (base 16)
1079 ostype: is a string the represents the OS being debugged (darwin, linux, freebsd)
1080 vendor: is a string that represents the vendor (apple)
1081 endian: is one of "little", "big", or "pdp"
1082 ptrsize: is a number that represents how big pointers are in bytes
1084 main-binary-uuid: is the UUID of a firmware type binary that the gdb stub knows about
1085 main-binary-address: is the load address of the firmware type binary
1086 main-binary-slide: is the slide of the firmware type binary, if address isn't known
1088 binary-addresses: A comma-separated list of binary load addresses base16.  
1089                   lldb will parse the binaries in memory to get UUIDs, then
1090                   try to find the binaries & debug info by UUID.  Intended for
1091                   use with a small number of firmware type binaries where the 
1092                   search for binary/debug info may be expensive.
1094 //----------------------------------------------------------------------
1095 // "qShlibInfoAddr"
1097 // BRIEF
1098 //  Get an address where the dynamic linker stores information about
1099 //  where shared libraries are loaded.
1101 // PRIORITY TO IMPLEMENT
1102 //  High if you have a dynamic loader plug-in in LLDB for your target
1103 //  triple (see the "qHostInfo" packet) that can use this information.
1104 //  Many times address load randomization can make it hard to detect
1105 //  where the dynamic loader binary and data structures are located and
1106 //  some platforms know, or can find out where this information is.
1108 //  Low if you have a debug target where all object and symbol files
1109 //  contain static load addresses.
1110 //----------------------------------------------------------------------
1112 LLDB and GDB both support the "qShlibInfoAddr" packet which is a hint to each
1113 debugger as to where to find the dynamic loader information. For darwin
1114 binaries that run in user land this is the address of the "all_image_infos"
1115 structure in the "/usr/lib/dyld" executable, or the result of a TASK_DYLD_INFO
1116 call. The result is returned as big endian hex bytes that are the address
1117 value:
1119 send packet: $qShlibInfoAddr#00
1120 read packet: $7fff5fc40040#00
1124 //----------------------------------------------------------------------
1125 // "qThreadStopInfo<tid>"
1127 // BRIEF
1128 //  Get information about why a thread, whose ID is "<tid>", is stopped.
1130 // PRIORITY TO IMPLEMENT
1131 //  High if you need to support multi-threaded or multi-core debugging.
1132 //  Many times one thread will hit a breakpoint and while the debugger
1133 //  is in the process of suspending the other threads, other threads
1134 //  will also hit a breakpoint. This packet allows LLDB to know why all
1135 //  threads (live system debug) / cores (JTAG) in your program have
1136 //  stopped and allows LLDB to display and control your program
1137 //  correctly.
1138 //----------------------------------------------------------------------
1140 LLDB tries to use the "qThreadStopInfo" packet which is formatted as
1141 "qThreadStopInfo%x" where %x is the hex thread ID. This requests information
1142 about why a thread is stopped. The response is the same as the stop reply
1143 packets and tells us what happened to the other threads. The standard GDB
1144 remote packets love to think that there is only _one_ reason that _one_ thread
1145 stops at a time. This allows us to see why all threads stopped and allows us
1146 to implement better multi-threaded debugging support.
1148 //----------------------------------------------------------------------
1149 // "QThreadSuffixSupported"
1151 // BRIEF
1152 //  Try to enable thread suffix support for the 'g', 'G', 'p', and 'P'
1153 //  packets.
1155 // PRIORITY TO IMPLEMENT
1156 //  High. Adding a thread suffix allows us to read and write registers
1157 //  more efficiently and stops us from having to select a thread with
1158 //  one packet and then read registers with a second packet. It also
1159 //  makes sure that no errors can occur where the debugger thinks it
1160 //  already has a thread selected (see the "Hg" packet from the standard
1161 //  GDB remote protocol documentation) yet the remote GDB server actually
1162 //  has another thread selected.
1163 //----------------------------------------------------------------------
1165 When reading thread registers, you currently need to set the current
1166 thread, then read the registers. This is kind of cumbersome, so we added the
1167 ability to query if the remote GDB server supports adding a "thread:<tid>;"
1168 suffix to all packets that request information for a thread. To test if the
1169 remote GDB server supports this feature:
1171 send packet: $QThreadSuffixSupported#00
1172 read packet: OK
1174 If "OK" is returned, then the 'g', 'G', 'p' and 'P' packets can accept a
1175 thread suffix. So to send a 'g' packet (read all register values):
1177 send packet: $g;thread:<tid>;#00
1178 read packet: ....
1180 send packet: $G;thread:<tid>;#00
1181 read packet: ....
1183 send packet: $p1a;thread:<tid>;#00
1184 read packet: ....
1186 send packet: $P1a=1234abcd;thread:<tid>;#00
1187 read packet: ....
1190 otherwise, without this you would need to always send two packets:
1192 send packet: $Hg<tid>#00
1193 read packet: ....
1194 send packet: $g#00
1195 read packet: ....
1197 We also added support for allocating and deallocating memory. We use this to
1198 allocate memory so we can run JITed code.
1200 //----------------------------------------------------------------------
1201 // "_M<size>,<permissions>"
1203 // BRIEF
1204 //  Allocate memory on the remote target with the specified size and
1205 //  permissions.
1207 // PRIORITY TO IMPLEMENT
1208 //  High if you want LLDB to be able to JIT code and run that code. JIT
1209 //  code also needs data which is also allocated and tracked.
1211 //  Low if you don't support running JIT'ed code.
1212 //----------------------------------------------------------------------
1214 The allocate memory packet starts with "_M<size>,<permissions>". It returns a
1215 raw big endian address value, or "" for unimplemented, or "EXX" for an error
1216 code. The packet is formatted as:
1218 char packet[256];
1219 int packet_len;
1220 packet_len = ::snprintf (
1221     packet,
1222     sizeof(packet),
1223     "_M%zx,%s%s%s",
1224     (size_t)size,
1225     permissions & lldb::ePermissionsReadable ? "r" : "",
1226     permissions & lldb::ePermissionsWritable ? "w" : "",
1227     permissions & lldb::ePermissionsExecutable ? "x" : "");
1229 You request a size and give the permissions. This packet does NOT need to be
1230 implemented if you don't want to support running JITed code. The return value
1231 is just the address of the newly allocated memory as raw big endian hex bytes.
1233 //----------------------------------------------------------------------
1234 // "_m<addr>"
1236 // BRIEF
1237 //  Deallocate memory that was previously allocated using an allocate
1238 //  memory pack.
1240 // PRIORITY TO IMPLEMENT
1241 //  High if you want LLDB to be able to JIT code and run that code. JIT
1242 //  code also needs data which is also allocated and tracked.
1244 //  Low if you don't support running JIT'ed code.
1245 //----------------------------------------------------------------------
1247 The deallocate memory packet is "_m<addr>" where you pass in the address you
1248 got back from a previous call to the allocate memory packet. It returns "OK"
1249 if the memory was successfully deallocated, or "EXX" for an error, or "" if
1250 not supported.
1252 //----------------------------------------------------------------------
1253 // "qMemoryRegionInfo:<addr>"
1255 // BRIEF
1256 //  Get information about the address range that contains "<addr>"
1258 // PRIORITY TO IMPLEMENT
1259 //  Medium. This is nice to have, but it isn't necessary. It helps LLDB
1260 //  do stack unwinding when we branch into memory that isn't executable.
1261 //  If we can detect that the code we are stopped in isn't executable,
1262 //  then we can recover registers for stack frames above the current
1263 //  frame. Otherwise we must assume we are in some JIT'ed code (not JIT
1264 //  code that LLDB has made) and assume that no registers are available
1265 //  in higher stack frames.
1266 //----------------------------------------------------------------------
1268 We added a way to get information for a memory region. The packet is:
1270     qMemoryRegionInfo:<addr>
1272 Where <addr> is a big endian hex address. The response is returned in a series
1273 of tuples like the data returned in a stop reply packet. The currently valid
1274 tuples to return are:
1276     start:<start-addr>; // <start-addr> is a big endian hex address that is
1277                         // the start address of the range that contains <addr>
1279     size:<size>;    // <size> is a big endian hex byte size of the address
1280                     // of the range that contains <addr>
1282     permissions:<permissions>;  // <permissions> is a string that contains one
1283                                 // or more of the characters from "rwx"
1285     name:<name>; // <name> is a hex encoded string that contains the name of
1286                  // the memory region mapped at the given address. In case of
1287                  // regions backed by a file it have to be the absolute path of
1288                  // the file while for anonymous regions it have to be the name
1289                  // associated to the region if that is available.
1291     flags:<flags-string>; // where <flags-string> is a space separated string
1292                           // of flag names. Currently the only supported flag
1293                           // is "mt" for AArch64 memory tagging. lldb will
1294                           // ignore any other flags in this field.
1296     type:[<type>][,<type>]; // memory types that apply to this region, e.g.
1297                  // "stack" for stack memory.
1299     error:<ascii-byte-error-string>; // where <ascii-byte-error-string> is
1300                                      // a hex encoded string value that
1301                                      // contains an error string
1303     dirty-pages:[<hexaddr>][,<hexaddr]; // A list of memory pages within this
1304                  // region that are "dirty" -- they have been modified.
1305                  // Page addresses are in base16.  The size of a page can
1306                  // be found from the qHostInfo's page-size key-value.
1307                  //
1308                  // If the stub supports identifying dirty pages within a
1309                  // memory region, this key should always be present for all
1310                  // qMemoryRegionInfo replies.  This key with no pages
1311                  // listed ("dirty-pages:;") indicates no dirty pages in
1312                  // this memory region.  The *absence* of this key means
1313                  // that this stub cannot determine dirty pages.
1315 If the address requested is not in a mapped region (e.g. we've jumped through
1316 a NULL pointer and are at 0x0) currently lldb expects to get back the size
1317 of the unmapped region -- that is, the distance to the next valid region.
1318 For instance, with a macOS process which has nothing mapped in the first
1319 4GB of its address space, if we're asking about address 0x2,
1321   qMemoryRegionInfo:2
1322   start:2;size:fffffffe;
1324 The lack of 'permissions:' indicates that none of read/write/execute are valid
1325 for this region.
1327 //----------------------------------------------------------------------
1328 // "x" - Binary memory read
1330 // Like the 'm' (read) and 'M' (write) packets, this is a partner to the
1331 // 'X' (write binary data) packet, 'x'.
1333 // It is called like
1335 // xADDRESS,LENGTH
1337 // where both ADDRESS and LENGTH are big-endian base 16 values.
1339 // To test if this packet is available, send a addr/len of 0:
1341 // x0,0
1343 // and you will get an "OK" response.
1345 // The reply will be the data requested in 8-bit binary data format.
1346 // The standard quoting is applied to the payload -- characters
1347 //   }  #  $  *
1348 // will all be escaped with '}' (0x7d) character and then XOR'ed with 0x20.
1350 // A typical use to read 512 bytes at 0x1000 would look like
1352 // x0x1000,0x200
1354 // The "0x" prefixes are optional - like most of the gdb-remote packets,
1355 // omitting them will work fine; these numbers are always base 16.
1357 // The length of the payload is not provided.  A reliable, 8-bit clean,
1358 // transport layer is assumed.
1359 //----------------------------------------------------------------------
1361 //----------------------------------------------------------------------
1362 // Detach and stay stopped:
1364 // We extended the "D" packet to specify that the monitor should keep the
1365 // target suspended on detach.  The normal behavior is to resume execution
1366 // on detach.  We will send:
1368 //  qSupportsDetachAndStayStopped:
1370 // to query whether the monitor supports the extended detach, and if it does,
1371 // when we want the monitor to detach but not resume the target, we will
1372 // send:
1374 //   D1
1376 // In any case, if we want the normal detach behavior we will just send:
1378 //   D
1379 //----------------------------------------------------------------------
1381 //----------------------------------------------------------------------
1382 // QSaveRegisterState
1383 // QSaveRegisterState;thread:XXXX;
1385 // BRIEF
1386 //  The QSaveRegisterState packet tells the remote debugserver to save
1387 //  all registers and return a non-zero unique integer ID that
1388 //  represents these save registers. If thread suffixes are enabled the
1389 //  second form of this packet is used, otherwise the first form is
1390 //  used. This packet is called prior to executing an expression, so
1391 //  the remote GDB server should do anything it needs to in order to
1392 //  ensure the registers that are saved are correct. On macOS this
1393 //  involves calling "thread_abort_safely(mach_port_t thread)" to
1394 //  ensure we get the correct registers for a thread in case it is
1395 //  currently having code run on its behalf in the kernel.
1397 // RESPONSE
1398 //  unsigned - The save_id result is a non-zero unsigned integer value
1399 //             that can be passed back to the GDB server using a
1400 //             QRestoreRegisterState packet to restore the registers
1401 //             one time.
1402 //  "EXX" - or an error code in the form of EXX where XX is a
1403 //  hex error code.
1405 // PRIORITY TO IMPLEMENT
1406 //  Low, this is mostly a convenience packet to avoid having to send all
1407 //  registers via a g packet. It should only be implemented if support
1408 //  for the QRestoreRegisterState is added.
1409 //----------------------------------------------------------------------
1411 //----------------------------------------------------------------------
1412 // QRestoreRegisterState:<save_id>
1413 // QRestoreRegisterState:<save_id>;thread:XXXX;
1415 // BRIEF
1416 //  The QRestoreRegisterState packet tells the remote debugserver to
1417 //  restore all registers using the "save_id" which is an unsigned
1418 //  integer that was returned from a previous call to
1419 //  QSaveRegisterState. The restoration process can only be done once
1420 //  as the data backing the register state will be freed upon the
1421 //  completion of the QRestoreRegisterState command.
1423 //  If thread suffixes are enabled the second form of this packet is
1424 //  used, otherwise the first form is used.
1426 // RESPONSE
1427 //  "OK" - if all registers were successfully restored
1428 //  "EXX" - for any errors
1430 // PRIORITY TO IMPLEMENT
1431 //  Low, this is mostly a convenience packet to avoid having to send all
1432 //  registers via a g packet. It should only be implemented if support
1433 //  for the QSaveRegisterState is added.
1434 //----------------------------------------------------------------------
1436 //----------------------------------------------------------------------
1437 // qFileLoadAddress:<file_path>
1439 // BRIEF
1440 //  Get the load address of a memory mapped file.
1441 //  The load address is defined as the address of the first memory
1442 //  region what contains data mapped from the specified file.
1444 // RESPONSE
1445 //  <unsigned-hex64> - Load address of the file in big endian encoding
1446 //  "E01" - the requested file isn't loaded
1447 //  "EXX" - for any other errors
1449 // PRIORITY TO IMPLEMENT
1450 //  Low, required if dynamic linker don't fill in the load address of
1451 //  some object file in the rendezvous data structure.
1452 //----------------------------------------------------------------------
1454 //----------------------------------------------------------------------
1455 // qModuleInfo:<module_path>;<arch triple>
1457 // BRIEF
1458 //  Get information for a module by given module path and architecture.
1460 // RESPONSE
1461 //  "(uuid|md5):...;triple:...;file_offset:...;file_size...;"
1462 //  "EXX" - for any errors
1464 // PRIORITY TO IMPLEMENT
1465 //  Optional, required if dynamic loader cannot fetch module's information like
1466 //  UUID directly from inferior's memory.
1467 //----------------------------------------------------------------------
1469 //----------------------------------------------------------------------
1470 // jModulesInfo:[{"file":"...",triple:"..."}, ...]
1472 // BRIEF
1473 //  Get information for a list of modules by given module path and
1474 //  architecture.
1476 // RESPONSE
1477 //  A JSON array of dictionaries containing the following keys: uuid,
1478 //  triple, file_path, file_offset, file_size. The meaning of the fields
1479 //  is the same as in the qModuleInfo packet. The server signals the
1480 //  failure to retrieve the module info for a file by ommiting the
1481 //  corresponding array entry from the response. The server may also
1482 //  include entries the client did not ask for, if it has reason to
1483 //  the modules will be interesting to the client.
1485 // PRIORITY TO IMPLEMENT
1486 //  Optional. If not implemented, qModuleInfo packet will be used, which
1487 //  may be slower if the target contains a large number of modules and
1488 //  the communication link has a non-negligible latency.
1489 //----------------------------------------------------------------------
1491 //----------------------------------------------------------------------
1492 // Stop reply packet extensions
1494 // BRIEF
1495 //  This section describes some of the additional information you can
1496 //  specify in stop reply packets that help LLDB to know more detailed
1497 //  information about your threads.
1499 // DESCRIPTION
1500 //  Standard GDB remote stop reply packets are reply packets sent in
1501 //  response to a packet  that made the program run. They come in the
1502 //  following forms:
1504 //  "SAA"
1505 //  "S" means signal and "AA" is a hex signal number that describes why
1506 //  the thread or stopped. It doesn't specify which thread, so the "T"
1507 //  packet is recommended to use instead of the "S" packet.
1509 //  "TAAkey1:value1;key2:value2;..."
1510 //  "T" means a thread stopped due to a unix signal where "AA" is a hex
1511 //  signal number that describes why the program stopped. This is
1512 //  followed by a series of key/value pairs:
1513 //      - If key is a hex number, it is a register number and value is
1514 //        the hex value of the register in debuggee endian byte order.
1515 //      - If key == "thread", then the value is the big endian hex
1516 //        thread-id of the stopped thread.
1517 //      - If key == "core", then value is a hex number of the core on
1518 //        which the stop was detected.
1519 //      - If key == "watch" or key == "rwatch" or key == "awatch", then
1520 //        value is the data address in big endian hex
1521 //      - If key == "library", then value is ignore and "qXfer:libraries:read"
1522 //        packets should be used to detect any newly loaded shared libraries
1524 //  "WAA"
1525 //  "W" means the process exited and "AA" is the exit status.
1527 //  "XAA"
1528 //  "X" means the process exited and "AA" is signal that caused the program
1529 //  to exit.
1531 //  "O<ascii-hex-string>"
1532 //  "O" means STDOUT has data that was written to its console and is
1533 //  being delivered to the debugger. This packet happens asynchronously
1534 //  and the debugger is expected to continue to wait for another stop reply
1535 //  packet.
1537 // LLDB EXTENSIONS
1539 //  We have extended the "T" packet to be able to also understand the
1540 //  following keys and values:
1542 //  KEY           VALUE     DESCRIPTION
1543 //  ===========   ========  ================================================
1544 //  "metype"      unsigned  mach exception type (the value of the EXC_XXX enumerations)
1545 //                          as an unsigned integer. For targets with mach
1546 //                          kernels only.
1548 //  "mecount"     unsigned  mach exception data count as an unsigned integer
1549 //                          For targets with mach kernels only.
1551 //  "medata"      unsigned  There should be "mecount" of these and it is the data
1552 //                          that goes along with a mach exception (as an unsigned
1553 //                          integer). For targets with mach kernels only.
1555 //  "name"        string    The name of the thread as a plain string. The string
1556 //                          must not contain an special packet characters or
1557 //                          contain a ':' or a ';'. Use "hexname" if the thread
1558 //                          name has special characters.
1560 //  "hexname"     ascii-hex An ASCII hex string that contains the name of the thread
1562 //  "qaddr"       hex       Big endian hex value that contains the libdispatch
1563 //                          queue address for the queue of the thread.
1565 //  "reason"      enum      The enumeration must be one of:
1566 //                          "trace" the program stopped after a single instruction
1567 //                              was executed on a core. Usually done when single
1568 //                              stepping past a breakpoint
1569 //                          "breakpoint" a breakpoint set using a 'z' packet was hit.
1570 //                          "trap" stopped due to user interruption
1571 //                          "signal" stopped due to an actual unix signal, not
1572 //                              just the debugger using a unix signal to keep
1573 //                              the GDB remote client happy.
1574 //                          "watchpoint". Can be used with of the 
1575 //                              "watch"/"rwatch"/"awatch" key value pairs.
1576 //                              Or can be used *instead* of those keys, 
1577 //                              with the specially formatted "description" field.
1578 //                          "exception" an exception stop reason. Use with
1579 //                              the "description" key/value pair to describe the
1580 //                              exceptional event the user should see as the stop
1581 //                              reason.
1582 //  "description" ascii-hex An ASCII hex string that contains a more descriptive
1583 //           reason that the thread stopped. This is only needed
1584 //           if none of the key/value pairs are enough to
1585 //           describe why something stopped.
1587 //           For "reason:watchpoint", "description" is an ascii-hex
1588 //           encoded string with between one and three base10 numbers,
1589 //           space separated.  The three numbers are
1590 //             1. watchpoint address.  This address should always be within
1591 //                a memory region lldb has a watchpoint on.  
1592 //                On architectures where the actual reported hit address may
1593 //                be outside the watchpoint that was triggered, the remote
1594 //                stub should determine which watchpoint was triggered and
1595 //                report an address from within its range.
1596 //             2. watchpoint hardware register index number.
1597 //             3. actual watchpoint trap address, which may be outside
1598 //                the range of any watched region of memory. On MIPS, an addr
1599 //                outside a watched range means lldb should disable the wp, 
1600 //                step, re-enable the wp and continue silently.
1602 //           On MIPS, the low 3 bits are masked so if a watchpoint is on 
1603 //           0x1004, a 2-byte write to 0x1000 will trigger the watchpoint 
1604 //           (a false positive hit), and lldb needs to disable the 
1605 //           watchpoint at 0x1004, inst-step, then re-enable the watchpoint
1606 //           and not make this a user visible event. The description here 
1607 //           would be "0x1004 0 0x1000". lldb needs a known watchpoint address
1608 //           in the first field, so it can disable it & step.
1610 //           On AArch64 we have a related issue, where you watch 4 bytes at 
1611 //           0x1004, an instruction does an 8-byte write starting at 
1612 //           0x1000 (a true watchpoint hit) and the hardware may report the 
1613 //           trap address as 0x1000 - before the watched memory region - 
1614 //           with the write extending into the watched region.  This can 
1615 //           be reported as "0x1004 0 0x1000".  lldb will use 0x1004 to 
1616 //           identify which Watchpoint was triggered, and can report 0x1000 
1617 //           to the user.  The behavior of silently stepping over the 
1618 //           watchpoint, with an 3rd field addr outside the range, is 
1619 //           restricted to MIPS.
1620 //           There may be false-positive watchpoint hits on AArch64 as well,
1621 //           in the SVE Streaming Mode, but that is less common (see ESR 
1622 //           register flag "WPF", "Watchpoint might be False-Positive") and
1623 //           not currently handled by lldb.
1624 //           
1625 //  "threads"     comma-sep-base16  A list of thread ids for all threads (including
1626 //                                  the thread that we're reporting as stopped) that
1627 //                                  are live in the process right now.  lldb may
1628 //                                  request that this be included in the T packet via
1629 //                                  the QListThreadsInStopReply packet earlier in
1630 //                                  the debug session.
1632 //                                  Example:
1633 //                                  threads:63387,633b2,63424,63462,63486;
1635 //  "thread-pcs"  comma-sep-base16  A list of pc values for all threads that currently
1636 //                                  exist in the process, including the thread that
1637 //                                  this T packet is reporting as stopped.
1638 //                                  This key-value pair will only be emitted when the
1639 //                                  "threads" key is already included in the T packet.
1640 //                                  The pc values correspond to the threads reported
1641 //                                  in the "threads" list.  The number of pcs in the
1642 //                                  "thread-pcs" list will be the same as the number of
1643 //                                  threads in the "threads" list.
1644 //                                  lldb may request that this be included in the T
1645 //                                  packet via the QListThreadsInStopReply packet
1646 //                                  earlier in the debug session.
1648 //                                  Example:
1649 //                                  thread-pcs:dec14,2cf872b0,2cf8681c,2d02d68c,2cf716a8;
1651 //  "addressing_bits" unsigned optional  Specifies how many bits in addresses 
1652 //                                       are significant for addressing, base 
1653 //                                       10.  If bits 38..0 in a 64-bit 
1654 //                                       pointer are significant for 
1655 //                                       addressing, then the value is 39.  
1656 //                                       This is needed on e.g. AArch64
1657 //                                       v8.3 ABIs that use pointer 
1658 //                                       authentication in the high bits.
1659 //                                       This value is normally sent in the
1660 //                                       qHostInfo packet response, and if the
1661 //                                       value cannot change during the process
1662 //                                       lifetime, it does not need to be 
1663 //                                       duplicated here in the stop packet.
1664 //                                       For a firmware environment with early
1665 //                                       start code that may be changing the
1666 //                                       page table setup, a dynamically set
1667 //                                       value may be needed.
1668 //  "low_mem_addressing_bits" unsigned optional, specifies how many bits in 
1669 //                                       addresses in low memory are significant 
1670 //                                       for addressing, base 10.  AArch64 can 
1671 //                                       have different page table setups for low 
1672 //                                       and high memory, and therefore a different 
1673 //                                       number of bits used for addressing.
1674 //  "high_mem_addressing_bits" unsigned optional, specifies how many bits in 
1675 //                                       addresses in high memory are significant 
1676 //                                       for addressing, base 10.  AArch64 can have 
1677 //                                       different page table setups for low and 
1678 //                                       high memory, and therefore a different 
1679 //                                       number of bits used for addressing.
1681 // BEST PRACTICES:
1682 //  Since register values can be supplied with this packet, it is often useful
1683 //  to return the PC, SP, FP, LR (if any), and FLAGS registers so that separate
1684 //  packets don't need to be sent to read each of these registers from each
1685 //  thread.
1687 //  If a thread is stopped for no reason (like just because another thread
1688 //  stopped, or because when one core stops all cores should stop), use a
1689 //  "T" packet with "00" as the signal number and fill in as many key values
1690 //  and registers as possible.
1692 //  LLDB likes to know why a thread stopped since many thread control
1693 //  operations like stepping over a source line, actually are implemented
1694 //  by running the process multiple times. If a breakpoint is hit while
1695 //  trying to step over a source line and LLDB finds out that a breakpoint
1696 //  is hit in the "reason", we will know to stop trying to do the step
1697 //  over because something happened that should stop us from trying to
1698 //  do the step. If we are at a breakpoint and we disable the breakpoint
1699 //  at the current PC and do an instruction single step, knowing that
1700 //  we stopped due to a "trace" helps us know that we can continue
1701 //  running versus stopping due to a "breakpoint" (if we have two
1702 //  breakpoint instruction on consecutive instructions). So the more info
1703 //  we can get about the reason a thread stops, the better job LLDB can
1704 //  do when controlling your process. A typical GDB server behavior is
1705 //  to send a SIGTRAP for breakpoints _and_ also when instruction single
1706 //  stepping, in this case the debugger doesn't really know why we
1707 //  stopped and it can make it hard for the debugger to control your
1708 //  program correctly. What if a real SIGTRAP was delivered to a thread
1709 //  while we were trying to single step? We wouldn't know the difference
1710 //  with a standard GDB remote server and we could do the wrong thing.
1712 // PRIORITY TO IMPLEMENT
1713 //  High. Having the extra information in your stop reply packets makes
1714 //  your debug session more reliable and informative.
1715 //----------------------------------------------------------------------
1718 //----------------------------------------------------------------------
1719 // PLATFORM EXTENSION - for use as a GDB remote platform
1720 //----------------------------------------------------------------------
1721 // "qfProcessInfo"
1722 // "qsProcessInfo"
1724 // BRIEF
1725 //  Get the first process info (qfProcessInfo) or subsequent process
1726 //  info (qsProcessInfo) for one or more processes on the remote
1727 //  platform. The first call gets the first match and subsequent calls
1728 //  to qsProcessInfo gets the subsequent matches. Return an error EXX,
1729 //  where XX are two hex digits, when no more matches are available.
1731 // PRIORITY TO IMPLEMENT
1732 //  Required. The qfProcessInfo packet can be followed by a ':' and
1733 //  some key value pairs. The key value pairs in the command are:
1735 //  KEY           VALUE     DESCRIPTION
1736 //  ===========   ========  ================================================
1737 //  "name"        ascii-hex An ASCII hex string that contains the name of
1738 //                          the process that will be matched.
1739 //  "name_match"  enum      One of: "equals", "starts_with", "ends_with",
1740 //                          "contains" or "regex"
1741 //  "pid"         integer   A string value containing the decimal process ID
1742 //  "parent_pid"  integer   A string value containing the decimal parent
1743 //                          process ID
1744 //  "uid"         integer   A string value containing the decimal user ID
1745 //  "gid"         integer   A string value containing the decimal group ID
1746 //  "euid"        integer   A string value containing the decimal effective user ID
1747 //  "egid"        integer   A string value containing the decimal effective group ID
1748 //  "all_users"   bool      A boolean value that specifies if processes should
1749 //                          be listed for all users, not just the user that the
1750 //                          platform is running as
1751 //  "triple"      string    An ASCII triple string ("x86_64",
1752 //                          "x86_64-apple-macosx", "armv7-apple-ios")
1753 //  "args"        string    A string value containing the process arguments
1754 //                          separated by the character '-', where each argument is
1755 //                          hex-encoded. It includes argv[0].
1757 // The response consists of key/value pairs where the key is separated from the
1758 // values with colons and each pair is terminated with a semi colon. For a list
1759 // of the key/value pairs in the response see the "qProcessInfoPID" packet
1760 // documentation.
1762 // Sample packet/response:
1763 // send packet: $qfProcessInfo#00
1764 // read packet: $pid:60001;ppid:59948;uid:7746;gid:11;euid:7746;egid:11;name:6c6c6462;triple:x86_64-apple-macosx;#00
1765 // send packet: $qsProcessInfo#00
1766 // read packet: $pid:59992;ppid:192;uid:7746;gid:11;euid:7746;egid:11;name:6d64776f726b6572;triple:x86_64-apple-macosx;#00
1767 // send packet: $qsProcessInfo#00
1768 // read packet: $E04#00
1769 //----------------------------------------------------------------------
1772 //----------------------------------------------------------------------
1773 // PLATFORM EXTENSION - for use as a GDB remote platform
1774 //----------------------------------------------------------------------
1775 // "qLaunchGDBServer"
1777 // BRIEF
1778 //  Have the remote platform launch a GDB server.
1780 // PRIORITY TO IMPLEMENT
1781 //  Required. The qLaunchGDBServer packet must be followed by a ':' and
1782 //  some key value pairs. The key value pairs in the command are:
1784 //  KEY           VALUE     DESCRIPTION
1785 //  ===========   ========  ================================================
1786 //  "port"        integer   A string value containing the decimal port ID or
1787 //                          zero if the port should be bound and returned
1789 //  "host"        integer   The host that connections should be limited to
1790 //                          when the GDB server is connected to.
1792 // The response consists of key/value pairs where the key is separated from the
1793 // values with colons and each pair is terminated with a semi colon.
1795 // Sample packet/response:
1796 // send packet: $qLaunchGDBServer:port:0;host:lldb.apple.com;#00
1797 // read packet: $pid:60025;port:50776;#00
1799 // The "pid" key/value pair is only specified if the remote platform launched
1800 // a separate process for the GDB remote server and can be omitted if no
1801 // process was separately launched.
1803 // The "port" key/value pair in the response lets clients know what port number
1804 // to attach to in case zero was specified as the "port" in the sent command.
1805 //----------------------------------------------------------------------
1808 //----------------------------------------------------------------------
1809 // PLATFORM EXTENSION - for use as a GDB remote platform
1810 //----------------------------------------------------------------------
1811 // "qProcessInfoPID:PID"
1813 // BRIEF
1814 //  Have the remote platform get detailed information on a process by
1815 //  ID. PID is specified as a decimal integer.
1817 // PRIORITY TO IMPLEMENT
1818 //  Optional.
1820 // The response consists of key/value pairs where the key is separated from the
1821 // values with colons and each pair is terminated with a semi colon.
1823 // The key value pairs in the response are:
1825 //  KEY           VALUE     DESCRIPTION
1826 //  ===========   ========  ================================================
1827 //  "pid"         integer   Process ID as a decimal integer string
1828 //  "ppid"        integer   Parent process ID as a decimal integer string
1829 //  "uid"         integer   A string value containing the decimal user ID
1830 //  "gid"         integer   A string value containing the decimal group ID
1831 //  "euid"        integer   A string value containing the decimal effective user ID
1832 //  "egid"        integer   A string value containing the decimal effective group ID
1833 //  "name"        ascii-hex An ASCII hex string that contains the name of the process
1834 //  "triple"      string    A target triple ("x86_64-apple-macosx", "armv7-apple-ios")
1836 // Sample packet/response:
1837 // send packet: $qProcessInfoPID:60050#00
1838 // read packet: $pid:60050;ppid:59948;uid:7746;gid:11;euid:7746;egid:11;name:6c6c6462;triple:x86_64-apple-macosx;#00
1839 //----------------------------------------------------------------------
1841 //----------------------------------------------------------------------
1842 // "vAttachName"
1844 // BRIEF
1845 //  Same as vAttach, except instead of a "pid" you send a process name.
1847 // PRIORITY TO IMPLEMENT
1848 //  Low. Only needed for "process attach -n".  If the packet isn't supported
1849 //  then "process attach -n" will fail gracefully.  So you need only to support
1850 //  it if attaching to a process by name makes sense for your environment.
1851 //----------------------------------------------------------------------
1853 //----------------------------------------------------------------------
1854 // "vAttachWait"
1856 // BRIEF
1857 //  Same as vAttachName, except that the stub should wait for the next instance
1858 //  of a process by that name to be launched and attach to that.
1860 // PRIORITY TO IMPLEMENT
1861 //  Low. Only needed to support "process attach -w -n" which will fail
1862 //  gracefully if the packet is not supported.
1863 //----------------------------------------------------------------------
1865 //----------------------------------------------------------------------
1866 // "qAttachOrWaitSupported"
1868 // BRIEF
1869 //  This is a binary "is it supported" query.  Return OK if you support
1870 //  vAttachOrWait
1872 // PRIORITY TO IMPLEMENT
1873 //  Low. This is required if you support vAttachOrWait, otherwise no support
1874 //  is needed since the standard "I don't recognize this packet" response
1875 //  will do the right thing.
1876 //----------------------------------------------------------------------
1878 //----------------------------------------------------------------------
1879 // "vAttachOrWait"
1881 // BRIEF
1882 //  Same as vAttachWait, except that the stub will attach to a process
1883 //  by name if it exists, and if it does not, it will wait for a process
1884 //  of that name to appear and attach to it.
1886 // PRIORITY TO IMPLEMENT
1887 //  Low. Only needed to implement "process attach -w -i false -n".  If
1888 //  you don't implement it but do implement -n AND lldb can somehow get
1889 //  a process list from your device, it will fall back on scanning the
1890 //  process list, and sending vAttach or vAttachWait depending on
1891 //  whether the requested process exists already.  This is racy,
1892 //  however, so if you want to support this behavior it is better to
1893 //  support this packet.
1894 //----------------------------------------------------------------------
1896 //----------------------------------------------------------------------
1897 // "jThreadExtendedInfo"
1899 // BRIEF
1900 //  This packet, which takes its arguments as JSON and sends its reply as
1901 //  JSON, allows the gdb remote stub to provide additional information
1902 //  about a given thread.
1904 // PRIORITY TO IMPLEMENT
1905 //  Low.  This packet is only needed if the gdb remote stub wants to
1906 //  provide interesting additional information about a thread for the
1907 //  user.
1909 // This packet takes its arguments in JSON form ( http://www.json.org ).
1910 // At a minimum, a thread must be specified, for example:
1912 //  jThreadExtendedInfo:{"thread":612910}
1914 // Because this is a JSON string, the thread number is provided in base10.
1915 // Additional key-value pairs may be provided by lldb to the gdb remote
1916 // stub.  For instance, on some versions of macOS, lldb can read offset
1917 // information out of the system libraries.  Using those offsets, debugserver
1918 // is able to find the Thread Specific Address (TSD) for a thread and include
1919 // that in the return information.  So lldb will send these additional fields
1920 // like so:
1922 //   jThreadExtendedInfo:{"plo_pthread_tsd_base_address_offset":0,"plo_pthread_tsd_base_offset":224,"plo_pthread_tsd_entry_size":8,"thread":612910}
1924 // There are no requirements for what is included in the response.  A simple
1925 // reply on a OS X Yosemite / iOS 8 may include the pthread_t value, the
1926 // Thread Specific Data (TSD) address, the dispatch_queue_t value if the thread
1927 // is associated with a GCD queue, and the requested Quality of Service (QoS)
1928 // information about that thread.  For instance, a reply may look like:
1930 //  {"tsd_address":4371349728,"requested_qos":{"enum_value":33,"constant_name":"QOS_CLASS_USER_INTERACTIVE","printable_name":"User Interactive"},"pthread_t":4371349504,"dispatch_queue_t":140735087127872}
1932 // tsd_address, pthread_t, and dispatch_queue_t are all simple key-value pairs.
1933 // The JSON standard requires that numbers be expressed in base 10 - so all of
1934 // these are.  requested_qos is a dictionary with three key-value pairs in it -
1935 // so the UI layer may choose the form most appropriate for displaying to the user.
1937 // Sending JSON over gdb-remote protocol introduces some problems.  We may be
1938 // sending strings with arbitrary contents in them, including the '#', '$', and '*'
1939 // characters that have special meaning in gdb-remote protocol and cannot occur
1940 // in the middle of the string.  The standard solution for this would be to require
1941 // ascii-hex encoding of all strings, or ascii-hex encode the entire JSON payload.
1943 // Instead, the binary escaping convention is used for JSON data.  This convention
1944 // (e.g. used for the X packet) says that if '#', '$', '*', or '}' are to occur in
1945 // the payload, the character '}' (0x7d) is emitted, then the metacharacter is emitted
1946 // xor'ed by 0x20.  The '}' character occurs in every JSON payload at least once, and
1947 // '}' ^ 0x20 happens to be ']' so the raw packet characters for a request will look
1948 // like
1950 //  jThreadExtendedInfo:{"thread":612910}]
1952 // on the wire.
1953 //----------------------------------------------------------------------
1955 //----------------------------------------------------------------------
1956 // "QEnableCompression"
1958 // BRIEF
1959 //  This packet enables compression of the packets that the debug stub sends to lldb.
1960 //  If the debug stub can support compression, it indictes this in the reply of the
1961 //  "qSupported" packet.  e.g.
1962 //   LLDB SENDS:    qSupported:xmlRegisters=i386,arm,mips
1963 //   STUB REPLIES:  qXfer:features:read+;SupportedCompressions=lzfse,zlib-deflate,lz4,lzma;DefaultCompressionMinSize=384
1965 //  If lldb knows how to use any of these compression algorithms, it can ask that this
1966 //  compression mode be enabled.  It may optionally change the minimum packet size
1967 //  where compression is used.  Typically small packets do not benefit from compression,
1968 //  as well as compression headers -- compression is most beneficial with larger packets.
1970 //  QEnableCompression:type:zlib-deflate;
1971 //  or
1972 //  QEnableCompression:type:zlib-deflate;minsize:512;
1974 //  The debug stub should reply with an uncompressed "OK" packet to indicate that the
1975 //  request was accepted.  All further packets the stub sends will use this compression.
1977 //  Packets are compressed as the last step before they are sent from the stub, and
1978 //  decompressed as the first step after they are received.  The packet format in compressed
1979 //  mode becomes one of two:
1981 //   $N<uncompressed payload>#00
1983 //   $C<size of uncompressed payload in base10>:<compressed payload>#00
1985 //  Where "#00" is the actual checksum value if noack mode is not enabled.  The checksum
1986 //  value is for the "N<uncompressed payload>" or
1987 //  "C<size of uncompressed payload in base10>:<compressed payload>" bytes in the packet.
1989 //  The size of the uncompressed payload in base10 is provided because it will simplify
1990 //  decompression if the final buffer size needed is known ahead of time.
1992 //  Compression on low-latency connections is unlikely to be an improvement.  Particularly
1993 //  when the debug stub and lldb are running on the same host.  It should only be used
1994 //  for slow connections, and likely only for larger packets.
1996 //  Example compression algorithsm that may be used include
1998 //    zlib-deflate
1999 //       The raw DEFLATE format as described in IETF RFC 1951.  With the ZLIB library, you
2000 //       can compress to this format with an initialization like
2001 //           deflateInit2 (&stream, 5, Z_DEFLATED, -15, 8, Z_DEFAULT_STRATEGY)
2002 //       and you can decompress with an initialization like
2003 //           inflateInit2 (&stream, -15)
2005 //    lz4
2006 //       https://en.wikipedia.org/wiki/LZ4_(compression_algorithm)
2007 //       https://github.com/Cyan4973/lz4
2008 //       The libcompression APIs on darwin systems call this COMPRESSION_LZ4_RAW.
2010 //    lzfse
2011 //       Compression algorithm added in macOS 10.11, with open source C reference
2012 //       implementation on github.
2013 //       https://en.wikipedia.org/wiki/LZFSE
2014 //       https://github.com/lzfse/lzfse
2016 //    lzma
2017 //       libcompression implements "LZMA level 6", the default compression for the
2018 //       open source LZMA implementation.
2019 //----------------------------------------------------------------------
2021 //----------------------------------------------------------------------
2022 // "jGetLoadedDynamicLibrariesInfos"
2024 // BRIEF
2025 //  This packet asks the remote debug stub to send the details about libraries
2026 //  being added/removed from the process as a performance optimization.
2028 //  There are two ways this packet can be used.  Both return a dictionary of
2029 //  binary images formatted the same way.
2031 //  One requests information on all shared libraries:
2032 //       jGetLoadedDynamicLibrariesInfos:{"fetch_all_solibs":true}
2033 //  with an optional `"report_load_commands":false` which can be added, asking
2034 //  that only the dyld SPI information (load addresses, filenames) be returned.
2035 //  The default behavior is that debugserver scans the mach-o header and load 
2036 //  commands of each binary, and returns it in the JSON reply.
2038 //  And the second requests information about a list of shared libraries, given their load addresses:
2039 //       jGetLoadedDynamicLibrariesInfos:{"solib_addresses":[8382824135,3258302053,830202858503]}
2041 //  The second call is both a performance optimization (instead of having lldb read the mach-o header/load commands
2042 //  out of memory with generic read packets) but also adds additional information in the form of the
2043 //  filename of the shared libraries (which is not available in the mach-o header/load commands.)
2045 //  An example using the OS X 10.11 style call:
2047 //  LLDB SENDS: jGetLoadedDynamicLibrariesInfos:{"image_count":1,"image_list_address":140734800075128}
2048 //  STUB REPLIES: ${"images":[{"load_address":4294967296,"mod_date":0,"pathname":"/tmp/a.out","uuid":"02CF262C-ED6F-3965-9E14-63538B465CFF","mach_header":{"magic":4277009103,"cputype":16777223,"cpusubtype":18446744071562067971,"filetype":2},"segments":{"name":"__PAGEZERO","vmaddr":0,"vmsize":4294967296,"fileoff":0,"filesize":0,"maxprot":0},{"name":"__TEXT","vmaddr":4294967296,"vmsize":4096,"fileoff":0,"filesize":4096,"maxprot":7},{"name":"__LINKEDIT","vmaddr":4294971392,"vmsize":4096,"fileoff":4096,"filesize":152,"maxprot":7}}]}#00
2050 //  Or pretty-printed,
2052 //  STUB REPLIES: ${"images":
2053 //                  [
2054 //                      {"load_address":4294967296,
2055 //                       "mod_date":0,
2056 //                       "pathname":"/tmp/a.out",
2057 //                       "uuid":"02CF262C-ED6F-3965-9E14-63538B465CFF",
2058 //                       "mach_header":
2059 //                          {"magic":4277009103,
2060 //                           "cputype":16777223,
2061 //                           "cpusubtype":18446744071562067971,
2062 //                           "filetype":2
2063 //                           },
2064 //                       "segments":
2065 //                        [
2066 //                          {"name":"__PAGEZERO",
2067 //                           "vmaddr":0,
2068 //                           "vmsize":4294967296,
2069 //                           "fileoff":0,
2070 //                           "filesize":0,
2071 //                           "maxprot":0
2072 //                          },
2073 //                          {"name":"__TEXT",
2074 //                           "vmaddr":4294967296,
2075 //                           "vmsize":4096,
2076 //                           "fileoff":0,
2077 //                           "filesize":4096,
2078 //                           "maxprot":7
2079 //                          },
2080 //                          {"name":"__LINKEDIT",
2081 //                           "vmaddr":4294971392,
2082 //                           "vmsize":4096,
2083 //                           "fileoff":4096,
2084 //                           "filesize":152,
2085 //                           "maxprot":7
2086 //                          }
2087 //                        ]
2088 //                      }
2089 //                  ]
2090 //              }
2093 // This is similar to the qXfer:libraries:read packet, and it could
2094 // be argued that it should be merged into that packet.  A separate
2095 // packet was created primarily because lldb needs to specify the
2096 // number of images to be read and the address from which the initial
2097 // information is read.  Also the XML DTD would need to be extended
2098 // quite a bit to provide all the information that the DynamicLoaderMacOSX
2099 // would need to work correctly on this platform.
2101 // PRIORITY TO IMPLEMENT
2102 //  On OS X 10.11, iOS 9, tvOS 9, watchOS 2 and older: Low.  If this packet is absent,
2103 //  lldb will read the Mach-O headers/load commands out of memory.
2104 //  On macOS 10.12, iOS 10, tvOS 10, watchOS 3 and newer: High.  If this packet is absent,
2105 //  lldb will not know anything about shared libraries in the inferior, or where the main
2106 //  executable loaded.
2107 //----------------------------------------------------------------------
2109 //----------------------------------------------------------------------
2110 // "jThreadsInfo"
2112 // BRIEF
2113 //  Ask for the server for thread stop information of all threads.
2115 // PRIORITY TO IMPLEMENT
2116 //  Low. This is a performance optimization, which speeds up debugging by avoiding
2117 //  multiple round-trips for retrieving thread information. The information from this
2118 //  packet can be retrieved using a combination of qThreadStopInfo and m packets.
2119 //----------------------------------------------------------------------
2121 The data in this packet is very similar to the stop reply packets, but is packaged in
2122 JSON and uses JSON arrays where applicable. The JSON output looks like:
2123     [
2124       { "tid":1580681,
2125         "metype":6,
2126         "medata":[2,0],
2127         "reason":"exception",
2128         "qaddr":140735118423168,
2129         "registers": {
2130           "0":"8000000000000000",
2131           "1":"0000000000000000",
2132           "2":"20fabf5fff7f0000",
2133           "3":"e8f8bf5fff7f0000",
2134           "4":"0100000000000000",
2135           "5":"d8f8bf5fff7f0000",
2136           "6":"b0f8bf5fff7f0000",
2137           "7":"20f4bf5fff7f0000",
2138           "8":"8000000000000000",
2139           "9":"61a8db78a61500db",
2140           "10":"3200000000000000",
2141           "11":"4602000000000000",
2142           "12":"0000000000000000",
2143           "13":"0000000000000000",
2144           "14":"0000000000000000",
2145           "15":"0000000000000000",
2146           "16":"960b000001000000",
2147           "17":"0202000000000000",
2148           "18":"2b00000000000000",
2149           "19":"0000000000000000",
2150           "20":"0000000000000000"
2151         },
2152         "memory":[
2153           {"address":140734799804592,"bytes":"c8f8bf5fff7f0000c9a59e8cff7f0000"},
2154           {"address":140734799804616,"bytes":"00000000000000000100000000000000"}
2155         ]
2156       }
2157     ]
2159 It contains an array of dictionaries with all of the key value pairs that are
2160 normally in the stop reply packet, including the expedited registers. The registers are
2161 passed as hex-encoded JSON string in debuggee-endian byte order. Note that the register
2162 numbers are decimal numbers, unlike the stop-reply packet, where they are written in
2163 hex. The packet also contains expedited memory in the "memory" key.  This allows the
2164 server to expedite memory that the client is likely to use (e.g., areas around the
2165 stack pointer, which are needed for computing backtraces) and it reduces the packet
2166 count.
2168 On macOS with debugserver, we expedite the frame pointer backchain for a thread
2169 (up to 256 entries) by reading 2 pointers worth of bytes at the frame pointer (for
2170 the previous FP and PC), and follow the backchain. Most backtraces on macOS and
2171 iOS now don't require us to read any memory!
2173 //----------------------------------------------------------------------
2174 // "jGetSharedCacheInfo"
2176 // BRIEF
2177 //  This packet asks the remote debug stub to send the details about the inferior's
2178 //  shared cache. The shared cache is a collection of common libraries/frameworks that
2179 //  are mapped into every process at the same address on Darwin systems, and can be
2180 //  identified by a load address and UUID.
2183 //  LLDB SENDS: jGetSharedCacheInfo:{}
2184 //  STUB REPLIES: ${"shared_cache_base_address":140735683125248,"shared_cache_uuid":"DDB8D70C-C9A2-3561-B2C8-BE48A4F33F96","no_shared_cache":false,"shared_cache_private_cache":false]}#00
2186 // PRIORITY TO IMPLEMENT
2187 //  Low.  When both lldb and the inferior process are running on the same computer, and lldb
2188 //  and the inferior process have the same shared cache, lldb may (as an optimization) read
2189 //  the shared cache out of its own memory instead of using gdb-remote read packets to read
2190 //  them from the inferior process.
2191 //----------------------------------------------------------------------
2193 //----------------------------------------------------------------------
2194 // "qQueryGDBServer"
2196 // BRIEF
2197 //  Ask the platform for the list of gdbservers we have to connect
2199 // PRIORITY TO IMPLEMENT
2200 //  Low. The packet is required to support connecting to gdbserver started
2201 //  by the platform instance automatically.
2202 //----------------------------------------------------------------------
2204 If the remote platform automatically started one or more gdbserver instance (without
2205 lldb asking it) then it have to return the list of port number or socket name for
2206 each of them what can be used by lldb to connect to those instances.
2208 The data in this packet is a JSON array of JSON objects with the following keys:
2209 "port":        <the port number to connect>        (optional)
2210 "socket_name": <the name of the socket to connect> (optional)
2212 Example packet:
2214     { "port": 1234 },
2215     { "port": 5432 },
2216     { "socket_name": "foo" }
2219 //----------------------------------------------------------------------
2220 // "QSetDetachOnError"
2222 // BRIEF
2223 //  Sets what the server should do when the communication channel with LLDB
2224 //  goes down. Either kill the inferior process (0) or remove breakpoints and
2225 //  detach (1).
2227 // PRIORITY TO IMPLEMENT
2228 //  Low. Only required if the target wants to keep the inferior process alive
2229 //  when the communication channel goes down.
2230 //----------------------------------------------------------------------
2232 The data in this packet is a single a character, which should be '0' if the
2233 inferior process should be killed, or '1' if the server should remove all
2234 breakpoints and detach from the inferior.
2236 //----------------------------------------------------------------------
2237 // "jGetDyldProcessState"
2239 // BRIEF
2240 //  This packet fetches the process launch state, as reported by libdyld on
2241 //  Darwin systems, most importantly to indicate when the system libraries 
2242 //  have initialized sufficiently to safely call utility functions.
2245 //  LLDB SENDS: jGetDyldProcessState
2246 //  STUB REPLIES: {"process_state_value":48,"process_state string":"dyld_process_state_libSystem_initialized"}
2248 // PRIORITY TO IMPLEMENT
2249 //  Low. This packet is needed to prevent lldb's utility functions for
2250 //  scanning the Objective-C class list from running very early in 
2251 //  process startup.
2252 //----------------------------------------------------------------------