blob: 7d4d9a29729f33360e03648848fb2b116e3eada5 [file] [log] [blame]
Greg Clayton576d8832011-03-22 04:00:09 +00001//===-- GDBRemoteCommunicationClient.h --------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef liblldb_GDBRemoteCommunicationClient_h_
11#define liblldb_GDBRemoteCommunicationClient_h_
12
13// C Includes
14// C++ Includes
Greg Claytonadc00cb2011-05-20 23:38:13 +000015#include <vector>
16
Greg Clayton576d8832011-03-22 04:00:09 +000017// Other libraries and framework includes
18// Project includes
19#include "lldb/Core/ArchSpec.h"
Greg Clayton46fb5582011-11-18 07:03:08 +000020#include "lldb/Target/Process.h"
Greg Clayton576d8832011-03-22 04:00:09 +000021
22#include "GDBRemoteCommunication.h"
23
Greg Clayton8b82f082011-04-12 05:54:46 +000024typedef enum
25{
26 eBreakpointSoftware = 0,
27 eBreakpointHardware,
28 eWatchpointWrite,
29 eWatchpointRead,
30 eWatchpointReadWrite
31} GDBStoppointType;
32
Greg Clayton576d8832011-03-22 04:00:09 +000033class GDBRemoteCommunicationClient : public GDBRemoteCommunication
34{
35public:
36 //------------------------------------------------------------------
37 // Constructors and Destructors
38 //------------------------------------------------------------------
Greg Clayton8b82f082011-04-12 05:54:46 +000039 GDBRemoteCommunicationClient(bool is_platform);
Greg Clayton576d8832011-03-22 04:00:09 +000040
Greg Clayton576d8832011-03-22 04:00:09 +000041 ~GDBRemoteCommunicationClient();
42
Greg Clayton1cb64962011-03-24 04:28:38 +000043 //------------------------------------------------------------------
44 // After connecting, send the handshake to the server to make sure
45 // we are communicating with it.
46 //------------------------------------------------------------------
47 bool
48 HandshakeWithServer (lldb_private::Error *error_ptr);
49
Greg Clayton576d8832011-03-22 04:00:09 +000050 size_t
51 SendPacketAndWaitForResponse (const char *send_payload,
52 StringExtractorGDBRemote &response,
53 bool send_async);
54
55 size_t
56 SendPacketAndWaitForResponse (const char *send_payload,
57 size_t send_length,
58 StringExtractorGDBRemote &response,
59 bool send_async);
60
61 lldb::StateType
62 SendContinuePacketAndWaitForResponse (ProcessGDBRemote *process,
63 const char *packet_payload,
64 size_t packet_length,
65 StringExtractorGDBRemote &response);
66
Greg Claytonfbb76342013-11-20 21:07:01 +000067 bool
Greg Clayton576d8832011-03-22 04:00:09 +000068 GetThreadSuffixSupported ();
69
Greg Clayton1cb64962011-03-24 04:28:38 +000070 void
71 QueryNoAckModeSupported ();
Greg Clayton576d8832011-03-22 04:00:09 +000072
Greg Clayton44633992012-04-10 03:22:03 +000073 void
74 GetListThreadsInStopReplySupported ();
75
Greg Clayton576d8832011-03-22 04:00:09 +000076 bool
77 SendAsyncSignal (int signo);
78
79 bool
80 SendInterrupt (lldb_private::Mutex::Locker &locker,
81 uint32_t seconds_to_wait_for_stop,
Greg Clayton576d8832011-03-22 04:00:09 +000082 bool &timed_out);
83
84 lldb::pid_t
85 GetCurrentProcessID ();
86
87 bool
88 GetLaunchSuccess (std::string &error_str);
89
Greg Clayton8b82f082011-04-12 05:54:46 +000090 uint16_t
Daniel Maleae0f8f572013-08-26 23:57:52 +000091 LaunchGDBserverAndGetPort (lldb::pid_t &pid);
92
93 bool
94 KillSpawnedProcess (lldb::pid_t pid);
Greg Clayton8b82f082011-04-12 05:54:46 +000095
Greg Clayton576d8832011-03-22 04:00:09 +000096 //------------------------------------------------------------------
97 /// Sends a GDB remote protocol 'A' packet that delivers program
98 /// arguments to the remote server.
99 ///
100 /// @param[in] argv
101 /// A NULL terminated array of const C strings to use as the
102 /// arguments.
103 ///
104 /// @return
105 /// Zero if the response was "OK", a positive value if the
106 /// the response was "Exx" where xx are two hex digits, or
107 /// -1 if the call is unsupported or any other unexpected
108 /// response was received.
109 //------------------------------------------------------------------
110 int
Greg Claytonfbb76342013-11-20 21:07:01 +0000111 SendArgumentsPacket (const lldb_private::ProcessLaunchInfo &launch_info);
Greg Clayton576d8832011-03-22 04:00:09 +0000112
113 //------------------------------------------------------------------
114 /// Sends a "QEnvironment:NAME=VALUE" packet that will build up the
115 /// environment that will get used when launching an application
116 /// in conjunction with the 'A' packet. This function can be called
117 /// multiple times in a row in order to pass on the desired
118 /// environment that the inferior should be launched with.
119 ///
120 /// @param[in] name_equal_value
121 /// A NULL terminated C string that contains a single environment
122 /// in the format "NAME=VALUE".
123 ///
124 /// @return
125 /// Zero if the response was "OK", a positive value if the
126 /// the response was "Exx" where xx are two hex digits, or
127 /// -1 if the call is unsupported or any other unexpected
128 /// response was received.
129 //------------------------------------------------------------------
130 int
131 SendEnvironmentPacket (char const *name_equal_value);
132
Greg Claytonc4103b32011-05-08 04:53:50 +0000133 int
134 SendLaunchArchPacket (const char *arch);
Greg Clayton576d8832011-03-22 04:00:09 +0000135 //------------------------------------------------------------------
136 /// Sends a "vAttach:PID" where PID is in hex.
137 ///
138 /// @param[in] pid
139 /// A process ID for the remote gdb server to attach to.
140 ///
141 /// @param[out] response
142 /// The response received from the gdb server. If the return
143 /// value is zero, \a response will contain a stop reply
144 /// packet.
145 ///
146 /// @return
147 /// Zero if the attach was successful, or an error indicating
148 /// an error code.
149 //------------------------------------------------------------------
150 int
151 SendAttach (lldb::pid_t pid,
152 StringExtractorGDBRemote& response);
153
154
155 //------------------------------------------------------------------
156 /// Sets the path to use for stdin/out/err for a process
157 /// that will be launched with the 'A' packet.
158 ///
159 /// @param[in] path
160 /// The path to use for stdin/out/err
161 ///
162 /// @return
163 /// Zero if the for success, or an error code for failure.
164 //------------------------------------------------------------------
165 int
166 SetSTDIN (char const *path);
167 int
168 SetSTDOUT (char const *path);
169 int
170 SetSTDERR (char const *path);
171
172 //------------------------------------------------------------------
173 /// Sets the disable ASLR flag to \a enable for a process that will
174 /// be launched with the 'A' packet.
175 ///
176 /// @param[in] enable
177 /// A boolean value indicating wether to disable ASLR or not.
178 ///
179 /// @return
180 /// Zero if the for success, or an error code for failure.
181 //------------------------------------------------------------------
182 int
183 SetDisableASLR (bool enable);
184
185 //------------------------------------------------------------------
186 /// Sets the working directory to \a path for a process that will
Greg Claytonfbb76342013-11-20 21:07:01 +0000187 /// be launched with the 'A' packet for non platform based
188 /// connections. If this packet is sent to a GDB server that
189 /// implements the platform, it will change the current working
190 /// directory for the platform process.
Greg Clayton576d8832011-03-22 04:00:09 +0000191 ///
192 /// @param[in] path
193 /// The path to a directory to use when launching our processs
194 ///
195 /// @return
196 /// Zero if the for success, or an error code for failure.
197 //------------------------------------------------------------------
198 int
199 SetWorkingDir (char const *path);
200
Greg Claytonfbb76342013-11-20 21:07:01 +0000201 //------------------------------------------------------------------
202 /// Gets the current working directory of a remote platform GDB
203 /// server.
204 ///
205 /// @param[out] cwd
206 /// The current working directory on the remote platform.
207 ///
208 /// @return
209 /// Boolean for success
210 //------------------------------------------------------------------
211 bool
212 GetWorkingDir (std::string &cwd);
213
Greg Clayton576d8832011-03-22 04:00:09 +0000214 lldb::addr_t
215 AllocateMemory (size_t size, uint32_t permissions);
216
217 bool
218 DeallocateMemory (lldb::addr_t addr);
219
Jim Inghamacff8952013-05-02 00:27:30 +0000220 lldb_private::Error
221 Detach (bool keep_stopped);
Greg Clayton37a0a242012-04-11 00:24:49 +0000222
Greg Clayton46fb5582011-11-18 07:03:08 +0000223 lldb_private::Error
224 GetMemoryRegionInfo (lldb::addr_t addr,
225 lldb_private::MemoryRegionInfo &range_info);
226
Johnny Chen64637202012-05-23 21:09:52 +0000227 lldb_private::Error
228 GetWatchpointSupportInfo (uint32_t &num);
229
Enrico Granataf04a2192012-07-13 23:18:48 +0000230 lldb_private::Error
231 GetWatchpointSupportInfo (uint32_t &num, bool& after);
232
233 lldb_private::Error
234 GetWatchpointsTriggerAfterInstruction (bool &after);
235
Greg Clayton576d8832011-03-22 04:00:09 +0000236 const lldb_private::ArchSpec &
237 GetHostArchitecture ();
Greg Clayton9ac6d2d2013-10-25 18:13:17 +0000238
239 uint32_t
240 GetHostDefaultPacketTimeout();
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000241
242 const lldb_private::ArchSpec &
243 GetProcessArchitecture ();
244
Greg Clayton576d8832011-03-22 04:00:09 +0000245 bool
246 GetVContSupported (char flavor);
247
Jim Inghamcd16df92012-07-20 21:37:13 +0000248 bool
Sean Callananb1de1142013-09-04 23:24:15 +0000249 GetpPacketSupported (lldb::tid_t tid);
Hafiz Abid Qadeer9a78cdf2013-08-29 09:09:45 +0000250
251 bool
Jim Inghamcd16df92012-07-20 21:37:13 +0000252 GetVAttachOrWaitSupported ();
253
Jim Ingham279ceec2012-07-25 21:12:43 +0000254 bool
255 GetSyncThreadStateSupported();
256
Greg Clayton576d8832011-03-22 04:00:09 +0000257 void
258 ResetDiscoverableSettings();
259
260 bool
Greg Clayton9b1e1cd2011-04-04 18:18:57 +0000261 GetHostInfo (bool force = false);
Greg Clayton576d8832011-03-22 04:00:09 +0000262
263 bool
Greg Clayton1cb64962011-03-24 04:28:38 +0000264 GetOSVersion (uint32_t &major,
265 uint32_t &minor,
266 uint32_t &update);
267
268 bool
269 GetOSBuildString (std::string &s);
270
271 bool
272 GetOSKernelDescription (std::string &s);
273
274 lldb_private::ArchSpec
275 GetSystemArchitecture ();
276
277 bool
278 GetHostname (std::string &s);
279
Greg Clayton37a0a242012-04-11 00:24:49 +0000280 lldb::addr_t
281 GetShlibInfoAddr();
282
Greg Clayton1cb64962011-03-24 04:28:38 +0000283 bool
Greg Clayton576d8832011-03-22 04:00:09 +0000284 GetSupportsThreadSuffix ();
285
286 bool
Greg Clayton32e0a752011-03-30 18:16:51 +0000287 GetProcessInfo (lldb::pid_t pid,
Greg Clayton8b82f082011-04-12 05:54:46 +0000288 lldb_private::ProcessInstanceInfo &process_info);
Greg Clayton32e0a752011-03-30 18:16:51 +0000289
290 uint32_t
Greg Clayton8b82f082011-04-12 05:54:46 +0000291 FindProcesses (const lldb_private::ProcessInstanceInfoMatch &process_match_info,
292 lldb_private::ProcessInstanceInfoList &process_infos);
Greg Clayton32e0a752011-03-30 18:16:51 +0000293
294 bool
295 GetUserName (uint32_t uid, std::string &name);
296
297 bool
298 GetGroupName (uint32_t gid, std::string &name);
299
300 bool
Greg Clayton576d8832011-03-22 04:00:09 +0000301 HasFullVContSupport ()
302 {
303 return GetVContSupported ('A');
304 }
305
306 bool
307 HasAnyVContSupport ()
308 {
309 return GetVContSupported ('a');
310 }
311
Greg Clayton8b82f082011-04-12 05:54:46 +0000312 bool
313 GetStopReply (StringExtractorGDBRemote &response);
314
315 bool
Greg Claytonf402f782012-10-13 02:11:55 +0000316 GetThreadStopInfo (lldb::tid_t tid,
Greg Clayton8b82f082011-04-12 05:54:46 +0000317 StringExtractorGDBRemote &response);
318
319 bool
320 SupportsGDBStoppointPacket (GDBStoppointType type)
321 {
322 switch (type)
323 {
324 case eBreakpointSoftware: return m_supports_z0;
325 case eBreakpointHardware: return m_supports_z1;
326 case eWatchpointWrite: return m_supports_z2;
327 case eWatchpointRead: return m_supports_z3;
328 case eWatchpointReadWrite: return m_supports_z4;
Greg Clayton8b82f082011-04-12 05:54:46 +0000329 }
330 return false;
331 }
332 uint8_t
333 SendGDBStoppointTypePacket (GDBStoppointType type, // Type of breakpoint or watchpoint
334 bool insert, // Insert or remove?
335 lldb::addr_t addr, // Address of breakpoint or watchpoint
336 uint32_t length); // Byte Size of breakpoint or watchpoint
337
Greg Clayton9b1e1cd2011-04-04 18:18:57 +0000338 void
339 TestPacketSpeed (const uint32_t num_packets);
340
341 // This packet is for testing the speed of the interface only. Both
342 // the client and server need to support it, but this allows us to
343 // measure the packet speed without any other work being done on the
344 // other end and avoids any of that work affecting the packet send
345 // and response times.
346 bool
347 SendSpeedTestPacket (uint32_t send_size,
348 uint32_t recv_size);
Greg Clayton8b82f082011-04-12 05:54:46 +0000349
350 bool
Jason Molendae9ca4af2013-02-23 02:04:45 +0000351 SetCurrentThread (uint64_t tid);
Greg Clayton8b82f082011-04-12 05:54:46 +0000352
353 bool
Jason Molendae9ca4af2013-02-23 02:04:45 +0000354 SetCurrentThreadForRun (uint64_t tid);
Greg Clayton8b82f082011-04-12 05:54:46 +0000355
Greg Clayton2a48f522011-05-14 01:50:35 +0000356 lldb_private::LazyBool
Jim Ingham372787f2012-04-07 00:00:41 +0000357 SupportsAllocDeallocMemory () // const
Greg Clayton2a48f522011-05-14 01:50:35 +0000358 {
Jim Ingham372787f2012-04-07 00:00:41 +0000359 // Uncomment this to have lldb pretend the debug server doesn't respond to alloc/dealloc memory packets.
360 // m_supports_alloc_dealloc_memory = lldb_private::eLazyBoolNo;
Greg Clayton70b57652011-05-15 01:25:55 +0000361 return m_supports_alloc_dealloc_memory;
Greg Clayton2a48f522011-05-14 01:50:35 +0000362 }
363
Greg Claytonadc00cb2011-05-20 23:38:13 +0000364 size_t
365 GetCurrentThreadIDs (std::vector<lldb::tid_t> &thread_ids,
366 bool &sequence_mutex_unavailable);
367
Greg Clayton2687cd12012-03-29 01:55:41 +0000368 bool
369 GetInterruptWasSent () const
370 {
371 return m_interrupt_sent;
372 }
Han Ming Ong4b6459f2013-01-18 23:11:53 +0000373
Greg Claytonfbb76342013-11-20 21:07:01 +0000374 lldb::user_id_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000375 OpenFile (const lldb_private::FileSpec& file_spec,
376 uint32_t flags,
377 mode_t mode,
378 lldb_private::Error &error);
379
Greg Claytonfbb76342013-11-20 21:07:01 +0000380 bool
Daniel Maleae0f8f572013-08-26 23:57:52 +0000381 CloseFile (lldb::user_id_t fd,
382 lldb_private::Error &error);
383
Greg Claytonfbb76342013-11-20 21:07:01 +0000384 lldb::user_id_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000385 GetFileSize (const lldb_private::FileSpec& file_spec);
386
Greg Claytonfbb76342013-11-20 21:07:01 +0000387 lldb_private::Error
388 GetFilePermissions(const char *path, uint32_t &file_permissions);
Daniel Maleae0f8f572013-08-26 23:57:52 +0000389
Greg Claytonfbb76342013-11-20 21:07:01 +0000390 lldb_private::Error
391 SetFilePermissions(const char *path, uint32_t file_permissions);
392
393 uint64_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000394 ReadFile (lldb::user_id_t fd,
395 uint64_t offset,
396 void *dst,
397 uint64_t dst_len,
398 lldb_private::Error &error);
399
Greg Claytonfbb76342013-11-20 21:07:01 +0000400 uint64_t
Daniel Maleae0f8f572013-08-26 23:57:52 +0000401 WriteFile (lldb::user_id_t fd,
402 uint64_t offset,
403 const void* src,
404 uint64_t src_len,
405 lldb_private::Error &error);
406
Greg Claytonfbb76342013-11-20 21:07:01 +0000407 lldb_private::Error
408 CreateSymlink (const char *src,
409 const char *dst);
Daniel Maleae0f8f572013-08-26 23:57:52 +0000410
Greg Claytonfbb76342013-11-20 21:07:01 +0000411 lldb_private::Error
412 Unlink (const char *path);
413
414 lldb_private::Error
415 MakeDirectory (const char *path,
416 uint32_t mode);
417
418 bool
Daniel Maleae0f8f572013-08-26 23:57:52 +0000419 GetFileExists (const lldb_private::FileSpec& file_spec);
420
Greg Claytonfbb76342013-11-20 21:07:01 +0000421 lldb_private::Error
Daniel Maleae0f8f572013-08-26 23:57:52 +0000422 RunShellCommand (const char *command, // Shouldn't be NULL
423 const char *working_dir, // Pass NULL to use the current working directory
424 int *status_ptr, // Pass NULL if you don't want the process exit status
425 int *signo_ptr, // Pass NULL if you don't want the signal that caused the process to exit
426 std::string *command_output, // Pass NULL if you don't want the command output
427 uint32_t timeout_sec); // Timeout in seconds to wait for shell program to finish
428
Greg Claytonfbb76342013-11-20 21:07:01 +0000429 bool
Daniel Maleae0f8f572013-08-26 23:57:52 +0000430 CalculateMD5 (const lldb_private::FileSpec& file_spec,
431 uint64_t &high,
432 uint64_t &low);
433
Han Ming Ong4b6459f2013-01-18 23:11:53 +0000434 std::string
435 HarmonizeThreadIdsForProfileData (ProcessGDBRemote *process,
436 StringExtractorGDBRemote &inputStringExtractor);
Daniel Maleae0f8f572013-08-26 23:57:52 +0000437
Greg Claytonf74cf862013-11-13 23:28:31 +0000438 bool
439 ReadRegister(lldb::tid_t tid,
440 uint32_t reg_num,
441 StringExtractorGDBRemote &response);
442
443 bool
444 ReadAllRegisters (lldb::tid_t tid,
445 StringExtractorGDBRemote &response);
446
447 bool
448 SaveRegisterState (lldb::tid_t tid, uint32_t &save_id);
449
450 bool
451 RestoreRegisterState (lldb::tid_t tid, uint32_t save_id);
452
Greg Clayton576d8832011-03-22 04:00:09 +0000453protected:
454
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000455 bool
456 GetCurrentProcessInfo ();
457
Greg Clayton576d8832011-03-22 04:00:09 +0000458 //------------------------------------------------------------------
459 // Classes that inherit from GDBRemoteCommunicationClient can see and modify these
460 //------------------------------------------------------------------
Greg Claytone0d378b2011-03-24 21:19:54 +0000461 lldb_private::LazyBool m_supports_not_sending_acks;
462 lldb_private::LazyBool m_supports_thread_suffix;
Greg Clayton44633992012-04-10 03:22:03 +0000463 lldb_private::LazyBool m_supports_threads_in_stop_reply;
Greg Claytone0d378b2011-03-24 21:19:54 +0000464 lldb_private::LazyBool m_supports_vCont_all;
465 lldb_private::LazyBool m_supports_vCont_any;
466 lldb_private::LazyBool m_supports_vCont_c;
467 lldb_private::LazyBool m_supports_vCont_C;
468 lldb_private::LazyBool m_supports_vCont_s;
469 lldb_private::LazyBool m_supports_vCont_S;
Greg Clayton32e0a752011-03-30 18:16:51 +0000470 lldb_private::LazyBool m_qHostInfo_is_valid;
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000471 lldb_private::LazyBool m_qProcessInfo_is_valid;
Greg Clayton70b57652011-05-15 01:25:55 +0000472 lldb_private::LazyBool m_supports_alloc_dealloc_memory;
Greg Clayton46fb5582011-11-18 07:03:08 +0000473 lldb_private::LazyBool m_supports_memory_region_info;
Johnny Chen64637202012-05-23 21:09:52 +0000474 lldb_private::LazyBool m_supports_watchpoint_support_info;
Jim Inghamacff8952013-05-02 00:27:30 +0000475 lldb_private::LazyBool m_supports_detach_stay_stopped;
Enrico Granataf04a2192012-07-13 23:18:48 +0000476 lldb_private::LazyBool m_watchpoints_trigger_after_instruction;
Jim Inghamcd16df92012-07-20 21:37:13 +0000477 lldb_private::LazyBool m_attach_or_wait_reply;
Jim Ingham279ceec2012-07-25 21:12:43 +0000478 lldb_private::LazyBool m_prepare_for_reg_writing_reply;
Hafiz Abid Qadeer9a78cdf2013-08-29 09:09:45 +0000479 lldb_private::LazyBool m_supports_p;
Greg Claytonf74cf862013-11-13 23:28:31 +0000480 lldb_private::LazyBool m_supports_QSaveRegisterState;
Jim Inghamcd16df92012-07-20 21:37:13 +0000481
Greg Clayton8b82f082011-04-12 05:54:46 +0000482 bool
483 m_supports_qProcessInfoPID:1,
484 m_supports_qfProcessInfo:1,
485 m_supports_qUserName:1,
486 m_supports_qGroupName:1,
487 m_supports_qThreadStopInfo:1,
488 m_supports_z0:1,
489 m_supports_z1:1,
490 m_supports_z2:1,
491 m_supports_z3:1,
Greg Clayton89600582013-10-10 17:53:50 +0000492 m_supports_z4:1,
493 m_supports_QEnvironment:1,
494 m_supports_QEnvironmentHexEncoded:1;
Greg Clayton2a48f522011-05-14 01:50:35 +0000495
Greg Clayton8b82f082011-04-12 05:54:46 +0000496
497 lldb::tid_t m_curr_tid; // Current gdb remote protocol thread index for all other operations
498 lldb::tid_t m_curr_tid_run; // Current gdb remote protocol thread index for continue, step, etc
499
Greg Clayton576d8832011-03-22 04:00:09 +0000500
Johnny Chen64637202012-05-23 21:09:52 +0000501 uint32_t m_num_supported_hardware_watchpoints;
502
Greg Clayton576d8832011-03-22 04:00:09 +0000503 // If we need to send a packet while the target is running, the m_async_XXX
504 // member variables take care of making this happen.
505 lldb_private::Mutex m_async_mutex;
506 lldb_private::Predicate<bool> m_async_packet_predicate;
507 std::string m_async_packet;
508 StringExtractorGDBRemote m_async_response;
509 int m_async_signal; // We were asked to deliver a signal to the inferior process.
Greg Clayton2687cd12012-03-29 01:55:41 +0000510 bool m_interrupt_sent;
Han Ming Ong4b6459f2013-01-18 23:11:53 +0000511 std::string m_partial_profile_data;
512 std::map<uint64_t, uint32_t> m_thread_id_to_used_usec_map;
Greg Clayton576d8832011-03-22 04:00:09 +0000513
Greg Claytond314e812011-03-23 00:09:55 +0000514 lldb_private::ArchSpec m_host_arch;
Jason Molendaf17b5ac2012-12-19 02:54:03 +0000515 lldb_private::ArchSpec m_process_arch;
Greg Clayton1cb64962011-03-24 04:28:38 +0000516 uint32_t m_os_version_major;
517 uint32_t m_os_version_minor;
518 uint32_t m_os_version_update;
519 std::string m_os_build;
520 std::string m_os_kernel;
521 std::string m_hostname;
Greg Clayton9ac6d2d2013-10-25 18:13:17 +0000522 uint32_t m_default_packet_timeout;
Greg Clayton576d8832011-03-22 04:00:09 +0000523
Greg Clayton32e0a752011-03-30 18:16:51 +0000524 bool
525 DecodeProcessInfoResponse (StringExtractorGDBRemote &response,
Greg Clayton8b82f082011-04-12 05:54:46 +0000526 lldb_private::ProcessInstanceInfo &process_info);
Greg Clayton576d8832011-03-22 04:00:09 +0000527private:
528 //------------------------------------------------------------------
529 // For GDBRemoteCommunicationClient only
530 //------------------------------------------------------------------
531 DISALLOW_COPY_AND_ASSIGN (GDBRemoteCommunicationClient);
532};
533
534#endif // liblldb_GDBRemoteCommunicationClient_h_