| /src/external/gpl3/gdb/dist/sim/common/ |
| nrun.c | 65 int sigrc = 0; local 153 sim_stop_reason (sd, &reason, &sigrc); 156 (sigrc == sim_signal_to_host (sd, SIM_SIGINT))) 161 (sigrc == sim_signal_to_host (sd, SIM_SIGTRAP))) || 179 sim_resume (sd, 0, sigrc); 181 sim_stop_reason (sd, &reason, &sigrc); 184 (sigrc == sim_signal_to_host (sd, SIM_SIGINT))) 199 /* If reason is sim_exited, then sigrc holds the exit code which we want 200 to return. If reason is sim_stopped or sim_signalled, then sigrc holds 209 if (sigrc != 0 [all...] |
| sim-engine.h | 36 int sigrc; member in struct:_sim_engine 54 /* Get/set the run state of CPU to REASON/SIGRC. 55 REASON/SIGRC are the values returned by sim_stop_reason. */ 56 void sim_engine_get_run_state (SIM_DESC sd, enum sim_stop *reason, int *sigrc); 57 void sim_engine_set_run_state (SIM_DESC sd, enum sim_stop reason, int sigrc); 68 int sigrc) ATTRIBUTE_NORETURN;
|
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| nrun.c | 65 int sigrc = 0; local 153 sim_stop_reason (sd, &reason, &sigrc); 156 (sigrc == sim_signal_to_host (sd, SIM_SIGINT))) 161 (sigrc == sim_signal_to_host (sd, SIM_SIGTRAP))) || 179 sim_resume (sd, 0, sigrc); 181 sim_stop_reason (sd, &reason, &sigrc); 184 (sigrc == sim_signal_to_host (sd, SIM_SIGINT))) 199 /* If reason is sim_exited, then sigrc holds the exit code which we want 200 to return. If reason is sim_stopped or sim_signalled, then sigrc holds 209 if (sigrc != 0 [all...] |
| sim-engine.h | 36 int sigrc; member in struct:_sim_engine 54 /* Get/set the run state of CPU to REASON/SIGRC. 55 REASON/SIGRC are the values returned by sim_stop_reason. */ 56 void sim_engine_get_run_state (SIM_DESC sd, enum sim_stop *reason, int *sigrc); 57 void sim_engine_set_run_state (SIM_DESC sd, enum sim_stop reason, int sigrc); 68 int sigrc) ATTRIBUTE_NORETURN;
|
| /src/external/gpl3/gdb/dist/sim/bfin/ |
| dv-bfin_cec.c | 324 #define excp_to_sim_halt(reason, sigrc) \ 325 sim_engine_halt (CPU_STATE (cpu), cpu, NULL, PCREG, reason, sigrc) 330 int sigrc = -1; local 402 sigrc = SIM_SIGTRAP; 406 sigrc = SIM_SIGILL; 411 sigrc = SIM_SIGBUS; 416 sigrc = SIM_SIGSEGV; 422 sigrc = SIM_SIGILL; 426 if (sigrc != -1) 427 excp_to_sim_halt (sim_stopped, sigrc); [all...] |
| /src/external/gpl3/gdb.old/dist/sim/bfin/ |
| dv-bfin_cec.c | 324 #define excp_to_sim_halt(reason, sigrc) \ 325 sim_engine_halt (CPU_STATE (cpu), cpu, NULL, PCREG, reason, sigrc) 330 int sigrc = -1; local 402 sigrc = SIM_SIGTRAP; 406 sigrc = SIM_SIGILL; 411 sigrc = SIM_SIGBUS; 416 sigrc = SIM_SIGSEGV; 422 sigrc = SIM_SIGILL; 426 if (sigrc != -1) 427 excp_to_sim_halt (sim_stopped, sigrc); [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| remote-sim.c | 939 int sigrc = 0; local 977 sim_stop_reason (sim_data->gdbsim_desc, &reason, &sigrc); 982 status->set_exited (sigrc); 985 switch (sigrc) 993 status->set_stopped ((gdb_signal) sigrc); 998 status->set_signalled ((gdb_signal) sigrc);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| remote-sim.c | 939 int sigrc = 0; local 977 sim_stop_reason (sim_data->gdbsim_desc, &reason, &sigrc); 982 status->set_exited (sigrc); 985 switch (sigrc) 993 status->set_stopped ((gdb_signal) sigrc); 998 status->set_signalled ((gdb_signal) sigrc);
|