blob: 8a215cf452d3825dddbfd67b67b1ee35d33cd359 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- DNB.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// Created by Greg Clayton on 3/23/07.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef __DNB_h__
15#define __DNB_h__
16
17#include "DNBDefs.h"
18#include <mach/thread_info.h>
Greg Clayton7b0992d2013-04-18 22:45:39 +000019#include <string>
Chris Lattner30fdc8d2010-06-08 16:52:24 +000020
Jason Molendaa3329782014-03-29 18:54:20 +000021#define DNB_EXPORT __attribute__((visibility("default")))
22
23#ifndef CPU_TYPE_ARM64
24#define CPU_TYPE_ARM64 ((cpu_type_t) 12 | 0x01000000)
25#endif
26
Chris Lattner30fdc8d2010-06-08 16:52:24 +000027typedef bool (*DNBShouldCancelCallback) (void *);
28
Greg Clayton3af9ea52010-11-18 05:57:03 +000029void DNBInitialize ();
30void DNBTerminate ();
31
Greg Clayton3c144382010-12-01 22:45:40 +000032nub_bool_t DNBSetArchitecture (const char *arch);
33
Chris Lattner30fdc8d2010-06-08 16:52:24 +000034//----------------------------------------------------------------------
35// Process control
36//----------------------------------------------------------------------
Greg Clayton6779606a2011-01-22 23:43:18 +000037nub_process_t DNBProcessLaunch (const char *path,
38 char const *argv[],
39 const char *envp[],
40 const char *working_directory, // NULL => dont' change, non-NULL => set working directory for inferior to this
41 const char *stdin_path,
42 const char *stdout_path,
43 const char *stderr_path,
44 bool no_stdio,
45 nub_launch_flavor_t launch_flavor,
Jason Molendaa3329782014-03-29 18:54:20 +000046 int disable_aslr,
47 const char *event_data,
Greg Clayton6779606a2011-01-22 23:43:18 +000048 char *err_str,
Greg Claytonf74cf862013-11-13 23:28:31 +000049 size_t err_len);
Greg Clayton6779606a2011-01-22 23:43:18 +000050
Greg Claytonf74cf862013-11-13 23:28:31 +000051nub_process_t DNBProcessAttach (nub_process_t pid, struct timespec *timeout, char *err_str, size_t err_len);
52nub_process_t DNBProcessAttachByName (const char *name, struct timespec *timeout, char *err_str, size_t err_len);
53nub_process_t DNBProcessAttachWait (const char *wait_name, nub_launch_flavor_t launch_flavor, bool ignore_existing, struct timespec *timeout, useconds_t interval, char *err_str, size_t err_len, DNBShouldCancelCallback should_cancel = NULL, void *callback_data = NULL);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054// Resume a process with exact instructions on what to do with each thread:
55// - If no thread actions are supplied (actions is NULL or num_actions is zero),
56// then all threads are continued.
57// - If any thread actions are supplied, then each thread will do as it is told
58// by the action. A default actions for any threads that don't have an
59// explicit thread action can be made by making a thread action with a tid of
60// INVALID_NUB_THREAD. If there is no default action, those threads will
61// remain stopped.
Jason Molendaa3329782014-03-29 18:54:20 +000062nub_bool_t DNBProcessResume (nub_process_t pid, const DNBThreadResumeAction *actions, size_t num_actions) DNB_EXPORT;
63nub_bool_t DNBProcessHalt (nub_process_t pid) DNB_EXPORT;
64nub_bool_t DNBProcessDetach (nub_process_t pid) DNB_EXPORT;
65nub_bool_t DNBProcessSignal (nub_process_t pid, int signal) DNB_EXPORT;
66nub_bool_t DNBProcessKill (nub_process_t pid) DNB_EXPORT;
67nub_bool_t DNBProcessSendEvent (nub_process_t pid, const char *event) DNB_EXPORT;
68nub_size_t DNBProcessMemoryRead (nub_process_t pid, nub_addr_t addr, nub_size_t size, void *buf) DNB_EXPORT;
69nub_size_t DNBProcessMemoryWrite (nub_process_t pid, nub_addr_t addr, nub_size_t size, const void *buf) DNB_EXPORT;
70nub_addr_t DNBProcessMemoryAllocate (nub_process_t pid, nub_size_t size, uint32_t permissions) DNB_EXPORT;
71nub_bool_t DNBProcessMemoryDeallocate (nub_process_t pid, nub_addr_t addr) DNB_EXPORT;
72int DNBProcessMemoryRegionInfo (nub_process_t pid, nub_addr_t addr, DNBRegionInfo *region_info) DNB_EXPORT;
73std::string DNBProcessGetProfileData (nub_process_t pid, DNBProfileDataScanType scanType) DNB_EXPORT;
74nub_bool_t DNBProcessSetEnableAsyncProfiling (nub_process_t pid, nub_bool_t enable, uint64_t interval_usec, DNBProfileDataScanType scan_type) DNB_EXPORT;
Jason Molenda3dc85832011-11-09 08:03:56 +000075
Chris Lattner30fdc8d2010-06-08 16:52:24 +000076//----------------------------------------------------------------------
77// Process status
78//----------------------------------------------------------------------
Jason Molendaa3329782014-03-29 18:54:20 +000079nub_bool_t DNBProcessIsAlive (nub_process_t pid) DNB_EXPORT;
80nub_state_t DNBProcessGetState (nub_process_t pid) DNB_EXPORT;
81nub_bool_t DNBProcessGetExitStatus (nub_process_t pid, int *status) DNB_EXPORT;
82nub_bool_t DNBProcessSetExitStatus (nub_process_t pid, int status) DNB_EXPORT;
83const char * DNBProcessGetExitInfo (nub_process_t pid) DNB_EXPORT;
84nub_bool_t DNBProcessSetExitInfo (nub_process_t pid, const char *info) DNB_EXPORT;
85nub_size_t DNBProcessGetNumThreads (nub_process_t pid) DNB_EXPORT;
86nub_thread_t DNBProcessGetCurrentThread (nub_process_t pid) DNB_EXPORT;
87nub_thread_t DNBProcessGetCurrentThreadMachPort (nub_process_t pid) DNB_EXPORT;
88nub_thread_t DNBProcessSetCurrentThread (nub_process_t pid, nub_thread_t tid) DNB_EXPORT;
89nub_thread_t DNBProcessGetThreadAtIndex (nub_process_t pid, nub_size_t thread_idx) DNB_EXPORT;
90nub_bool_t DNBProcessSyncThreadState (nub_process_t pid, nub_thread_t tid) DNB_EXPORT;
91nub_addr_t DNBProcessGetSharedLibraryInfoAddress (nub_process_t pid) DNB_EXPORT;
92nub_bool_t DNBProcessSharedLibrariesUpdated (nub_process_t pid) DNB_EXPORT;
93nub_size_t DNBProcessGetSharedLibraryInfo (nub_process_t pid, nub_bool_t only_changed, DNBExecutableImageInfo **image_infos) DNB_EXPORT;
94nub_bool_t DNBProcessSetNameToAddressCallback (nub_process_t pid, DNBCallbackNameToAddress callback, void *baton) DNB_EXPORT;
95nub_bool_t DNBProcessSetSharedLibraryInfoCallback (nub_process_t pid, DNBCallbackCopyExecutableImageInfos callback, void *baton) DNB_EXPORT;
96nub_addr_t DNBProcessLookupAddress (nub_process_t pid, const char *name, const char *shlib) DNB_EXPORT;
97nub_size_t DNBProcessGetAvailableSTDOUT (nub_process_t pid, char *buf, nub_size_t buf_size) DNB_EXPORT;
98nub_size_t DNBProcessGetAvailableSTDERR (nub_process_t pid, char *buf, nub_size_t buf_size) DNB_EXPORT;
99nub_size_t DNBProcessGetAvailableProfileData (nub_process_t pid, char *buf, nub_size_t buf_size) DNB_EXPORT;
100nub_size_t DNBProcessGetStopCount (nub_process_t pid) DNB_EXPORT;
101uint32_t DNBProcessGetCPUType (nub_process_t pid) DNB_EXPORT;
Jason Molenda3dc85832011-11-09 08:03:56 +0000102
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000103//----------------------------------------------------------------------
104// Process executable and arguments
105//----------------------------------------------------------------------
Greg Claytonf74cf862013-11-13 23:28:31 +0000106const char * DNBProcessGetExecutablePath (nub_process_t pid);
107const char * DNBProcessGetArgumentAtIndex (nub_process_t pid, nub_size_t idx);
108nub_size_t DNBProcessGetArgumentCount (nub_process_t pid);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000109
110//----------------------------------------------------------------------
111// Process events
112//----------------------------------------------------------------------
Greg Claytonf74cf862013-11-13 23:28:31 +0000113nub_event_t DNBProcessWaitForEvents (nub_process_t pid, nub_event_t event_mask, bool wait_for_set, struct timespec* timeout);
114void DNBProcessResetEvents (nub_process_t pid, nub_event_t event_mask);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000115
116//----------------------------------------------------------------------
117// Thread functions
118//----------------------------------------------------------------------
Greg Claytonf74cf862013-11-13 23:28:31 +0000119const char * DNBThreadGetName (nub_process_t pid, nub_thread_t tid);
120nub_bool_t DNBThreadGetIdentifierInfo (nub_process_t pid, nub_thread_t tid, thread_identifier_info_data_t *ident_info);
121nub_state_t DNBThreadGetState (nub_process_t pid, nub_thread_t tid);
122nub_bool_t DNBThreadGetRegisterValueByID (nub_process_t pid, nub_thread_t tid, uint32_t set, uint32_t reg, DNBRegisterValue *value);
123nub_bool_t DNBThreadSetRegisterValueByID (nub_process_t pid, nub_thread_t tid, uint32_t set, uint32_t reg, const DNBRegisterValue *value);
124nub_size_t DNBThreadGetRegisterContext (nub_process_t pid, nub_thread_t tid, void *buf, size_t buf_len);
125nub_size_t DNBThreadSetRegisterContext (nub_process_t pid, nub_thread_t tid, const void *buf, size_t buf_len);
126uint32_t DNBThreadSaveRegisterState (nub_process_t pid, nub_thread_t tid);
127nub_bool_t DNBThreadRestoreRegisterState (nub_process_t pid, nub_thread_t tid, uint32_t save_id);
128nub_bool_t DNBThreadGetRegisterValueByName (nub_process_t pid, nub_thread_t tid, uint32_t set, const char *name, DNBRegisterValue *value);
129nub_bool_t DNBThreadGetStopReason (nub_process_t pid, nub_thread_t tid, DNBThreadStopInfo *stop_info);
130const char * DNBThreadGetInfo (nub_process_t pid, nub_thread_t tid);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000131//----------------------------------------------------------------------
132// Breakpoint functions
133//----------------------------------------------------------------------
Greg Claytonf74cf862013-11-13 23:28:31 +0000134nub_bool_t DNBBreakpointSet (nub_process_t pid, nub_addr_t addr, nub_size_t size, nub_bool_t hardware);
135nub_bool_t DNBBreakpointClear (nub_process_t pid, nub_addr_t addr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000136
137//----------------------------------------------------------------------
138// Watchpoint functions
139//----------------------------------------------------------------------
Greg Claytonf74cf862013-11-13 23:28:31 +0000140nub_bool_t DNBWatchpointSet (nub_process_t pid, nub_addr_t addr, nub_size_t size, uint32_t watch_flags, nub_bool_t hardware);
141nub_bool_t DNBWatchpointClear (nub_process_t pid, nub_addr_t addr);
142uint32_t DNBWatchpointGetNumSupportedHWP (nub_process_t pid);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000143
144const DNBRegisterSetInfo *
Greg Claytonf74cf862013-11-13 23:28:31 +0000145 DNBGetRegisterSetInfo (nub_size_t *num_reg_sets);
146nub_bool_t DNBGetRegisterInfoByName (const char *reg_name, DNBRegisterInfo* info);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000147
148//----------------------------------------------------------------------
149// Printf style formatting for printing values in the inferior memory
150// space and registers.
151//----------------------------------------------------------------------
Greg Claytonf74cf862013-11-13 23:28:31 +0000152nub_size_t DNBPrintf (nub_process_t pid, nub_thread_t tid, nub_addr_t addr, FILE *file, const char *format);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000153
154//----------------------------------------------------------------------
155// Other static nub information calls.
156//----------------------------------------------------------------------
Greg Claytonf74cf862013-11-13 23:28:31 +0000157const char * DNBStateAsString (nub_state_t state);
158nub_bool_t DNBResolveExecutablePath (const char *path, char *resolved_path, size_t resolved_path_size);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000159
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000160#endif