1 /* Target-vector operations for controlling Mac applications, for GDB.
2 Copyright (C) 1995 Free Software Foundation, Inc.
3 Written by Stan Shebs. Contributed by Cygnus Support.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without eve nthe implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* Note that because all the available Mac compilers are ANSI or very
23 close, and this is a native-only file, the code may be purely ANSI. */
26 #include "frame.h" /* required by inferior.h */
33 #include <sys/types.h>
36 #include "gdb_string.h"
37 #include "gdbthread.h"
40 #include <Processes.h>
42 /* We call the functions "child_..." rather than "mac_..." so no one
43 is tempted to try to link this with other native-only code. */
45 /* Forward declaration */
47 extern struct target_ops child_ops
;
49 static void child_stop (void);
52 child_fetch_inferior_registers (int r
)
56 for (r
= 0; r
< NUM_REGS
; r
++)
57 child_fetch_inferior_registers (r
);
61 supply_register (r
, 0);
66 child_store_inferior_registers (int r
)
70 for (r
= 0; r
< NUM_REGS
; r
++)
71 child_store_inferior_registers (r
);
75 read_register_gen (r
, 0);
80 child_wait (int pid
, struct target_waitstatus
*ourstatus
)
84 /* Attach to process PID, then initialize for debugging it. */
87 child_attach (char *args
, int from_tty
)
89 ProcessSerialNumber psn
;
90 ProcessInfoRec inforec
;
98 error_no_arg ("process-id to attach");
102 psn
.highLongOfPSN
= 0;
103 psn
.lowLongOfPSN
= pid
;
105 inforec
.processInfoLength
= sizeof (ProcessInfoRec
);
106 inforec
.processName
= name
;
107 inforec
.processAppSpec
= fsspec
;
109 if (GetProcessInformation (&psn
, &inforec
) == noErr
)
113 exec_file
= (char *) get_exec_file (0);
116 printf_unfiltered ("Attaching to program `%s', %s\n", exec_file
,
117 target_pid_to_str (pid
));
119 printf_unfiltered ("Attaching to %s\n", target_pid_to_str (pid
));
121 gdb_flush (gdb_stdout
);
123 /* Do we need to do anything special? */
126 push_target (&child_ops
);
131 child_detach (char *args
, int from_tty
)
137 exec_file
= get_exec_file (0);
140 printf_unfiltered ("Detaching from program: %s %s\n", exec_file
,
141 target_pid_to_str (inferior_pid
));
142 gdb_flush (gdb_stdout
);
145 unpush_target (&child_ops
);
148 /* Print status information about what we're accessing. */
151 child_files_info (struct target_ops
*ignore
)
153 printf_unfiltered ("\tUsing the running image of %s %s.\n",
154 attach_flag
? "attached" : "child", target_pid_to_str (inferior_pid
));
159 child_open (char *arg
, int from_tty
)
161 error ("Use the \"run\" command to start a Mac application.");
164 /* Start an inferior Mac program and sets inferior_pid to its pid.
165 EXEC_FILE is the file to run.
166 ALLARGS is a string containing the arguments to the program.
167 ENV is the environment vector to pass. Errors reported with error(). */
170 child_create_inferior (char *exec_file
, char *allargs
, char **env
)
172 LaunchParamBlockRec launchparms
;
178 error ("No executable specified, use `target exec'.\n");
181 launchparms
.launchBlockID
= extendedBlock
;
182 launchparms
.launchEPBLength
= extendedBlockLen
;
183 launchparms
.launchFileFlags
= 0;
184 launchparms
.launchControlFlags
= launchContinue
| launchNoFileFlags
;
187 strcpy (fsspec
.name
+ 1, exec_file
);
188 fsspec
.name
[0] = strlen (exec_file
);
189 launchparms
.launchAppSpec
= &fsspec
;
190 launchparms
.launchAppParameters
= nil
;
192 launch_err
= LaunchApplication (&launchparms
);
194 if (launch_err
== 999 /*memFullErr */ )
196 error ("Not enough memory to launch %s\n", exec_file
);
198 else if (launch_err
!= noErr
)
200 error ("Error launching %s, code %d\n", exec_file
, launch_err
);
203 inferior_pid
= launchparms
.launchProcessSN
.lowLongOfPSN
;
204 /* FIXME be sure that high long of PSN is 0 */
206 push_target (&child_ops
);
207 init_wait_for_inferior ();
208 clear_proceed_status ();
210 /* proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0); */
214 child_mourn_inferior (void)
216 unpush_target (&child_ops
);
217 generic_mourn_inferior ();
226 child_xfer_memory (CORE_ADDR memaddr
, char *myaddr
, int len
,
227 int write
, struct target_ops
*target
)
231 for (i
= 0; i
< len
; ++i
)
235 ((char *) memaddr
)[i
] = myaddr
[i
];
239 myaddr
[i
] = ((char *) memaddr
)[i
];
246 child_kill_inferior (void)
251 child_resume (int pid
, int step
, enum target_signal signal
)
256 child_prepare_to_store (void)
258 /* Do nothing, since we can store individual regs */
273 info_proc (char *args
, int from_tty
)
275 ProcessSerialNumber psn
;
276 ProcessInfoRec inforec
;
281 /* Eventually use args, but not right now. */
283 psn
.highLongOfPSN
= 0;
284 psn
.lowLongOfPSN
= kNoProcess
;
286 inforec
.processInfoLength
= sizeof (ProcessInfoRec
);
287 inforec
.processName
= name
;
288 inforec
.processAppSpec
= fsspec
;
290 printf_filtered ("Process Name Sgnt Type PSN Loc Size FreeMem Time\n");
292 while (GetNextProcess (&psn
) == noErr
)
294 if (GetProcessInformation (&psn
, &inforec
) == noErr
)
296 name
[name
[0] + 1] = '\0';
297 printf_filtered ("%-32.32s", name
+ 1);
298 code
= inforec
.processSignature
;
299 printf_filtered (" %c%c%c%c",
304 code
= inforec
.processType
;
305 printf_filtered (" %c%c%c%c",
310 if (psn
.highLongOfPSN
== 0)
311 printf_filtered (" %9d", psn
.lowLongOfPSN
);
313 printf_filtered (" %9d,%9d\n",
314 psn
.highLongOfPSN
, psn
.lowLongOfPSN
);
315 printf_filtered (" 0x%x", inforec
.processLocation
);
316 printf_filtered (" %9d", inforec
.processSize
);
317 printf_filtered (" %9d", inforec
.processFreeMem
);
318 printf_filtered (" %9d", inforec
.processActiveTime
);
319 printf_filtered ("\n");
324 struct target_ops child_ops
;
327 init_child_ops (void)
329 child_ops
.to_shortname
= "mac";
330 child_ops
.to_longname
= "MacOS application";
331 child_ops
.to_doc
= "MacOS application (started by the \"run\" command).";
332 child_ops
.to_open
= child_open
;
333 child_ops
.to_close
= child_close
;
334 child_ops
.to_attach
= child_attach
;
335 child_ops
.to_post_attach
= NULL
;
336 child_ops
.to_require_attach
= NULL
; /* to_require_attach */
337 child_ops
.to_detach
= child_detach
;
338 child_ops
.to_require_detach
= NULL
; /* to_require_detach */
339 child_ops
.to_resume
= child_resume
;
340 child_ops
.to_wait
= child_wait
;
341 child_ops
.to_post_wait
= NULL
; /* to_post_wait */
342 child_ops
.to_fetch_registers
= child_fetch_inferior_registers
;
343 child_ops
.to_store_registers
= child_store_inferior_registers
;
344 child_ops
.to_prepare_to_store
= child_prepare_to_store
;
345 child_ops
.to_xfer_memory
= child_xfer_memory
;
346 child_ops
.to_files_info
= child_files_info
;
347 child_ops
.to_insert_breakpoint
= memory_insert_breakpoint
;
348 child_ops
.to_remove_breakpoint
= memory_remove_breakpoint
;
349 child_ops
.to_terminal_init
= 0;
350 child_ops
.to_terminal_inferior
= 0;
351 child_ops
.to_terminal_ours_for_output
= 0;
352 child_ops
.to_terminal_ours
= 0;
353 child_ops
.to_terminal_info
= 0;
354 child_ops
.to_kill
= child_kill_inferior
;
355 child_ops
.to_load
= 0;
356 child_ops
.to_lookup_symbol
= 0;
357 child_ops
.to_create_inferior
= child_create_inferior
;
358 child_ops
.to_post_startup_inferior
= NULL
; /* to_post_startup_inferior */
359 child_ops
.to_acknowledge_created_inferior
= NULL
; /* to_acknowledge_created_inferior */
360 child_ops
.to_clone_and_follow_inferior
= NULL
; /* to_clone_and_follow_inferior */
361 child_ops
.to_post_follow_inferior_by_clone
= NULL
; /* to_post_follow_inferior_by_clone */
362 child_ops
.to_insert_fork_catchpoint
= NULL
;
363 child_ops
.to_remove_fork_catchpoint
= NULL
;
364 child_ops
.to_insert_vfork_catchpoint
= NULL
;
365 child_ops
.to_remove_vfork_catchpoint
= NULL
;
366 child_ops
.to_has_forked
= NULL
; /* to_has_forked */
367 child_ops
.to_has_vforked
= NULL
; /* to_has_vforked */
368 child_ops
.to_can_follow_vfork_prior_to_exec
= NULL
;
369 child_ops
.to_post_follow_vfork
= NULL
; /* to_post_follow_vfork */
370 child_ops
.to_insert_exec_catchpoint
= NULL
;
371 child_ops
.to_remove_exec_catchpoint
= NULL
;
372 child_ops
.to_has_execd
= NULL
;
373 child_ops
.to_reported_exec_events_per_exec_call
= NULL
;
374 child_ops
.to_has_exited
= NULL
;
375 child_ops
.to_mourn_inferior
= child_mourn_inferior
;
376 child_ops
.to_can_run
= child_can_run
;
377 child_ops
.to_notice_signals
= 0;
378 child_ops
.to_thread_alive
= 0;
379 child_ops
.to_stop
= child_stop
;
380 child_ops
.to_pid_to_exec_file
= NULL
; /* to_pid_to_exec_file */
381 child_ops
.to_core_file_to_sym_file
= NULL
;
382 child_ops
.to_stratum
= process_stratum
;
383 child_ops
.DONT_USE
= 0;
384 child_ops
.to_has_all_memory
= 1;
385 child_ops
.to_has_memory
= 1;
386 child_ops
.to_has_stack
= 1;
387 child_ops
.to_has_registers
= 1;
388 child_ops
.to_has_execution
= 1;
389 child_ops
.to_sections
= 0;
390 child_ops
.to_sections_end
= 0;
391 child_ops
.to_magic
= OPS_MAGIC
;
395 _initialize_mac_nat (void)
399 add_info ("proc", info_proc
,
400 "Show information about processes.");