Searched refs:sd (Results 1 - 25 of 491) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/common/
H A Dsim-info.c28 sim_info (SIM_DESC sd, int verbose) argument
30 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
31 sim_module_info (sd, verbose || STATE_VERBOSE_P (sd));
H A Dsim-hload.c31 sim_load (sd, prog_name, prog_bfd, from_tty)
32 SIM_DESC sd;
39 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
40 if (sim_analyze_program (sd, prog_name, prog_bfd) != SIM_RC_OK)
42 SIM_ASSERT (STATE_PROG_BFD (sd) != NULL);
49 result_bfd = sim_load_file (sd, STATE_MY_NAME (sd),
50 STATE_CALLBACK (sd),
52 STATE_PROG_BFD (sd),
53 STATE_OPEN_KIND (sd)
[all...]
H A Dsim-stop.c27 control_c_simulation (SIM_DESC sd, argument
30 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
31 sim_engine_halt (sd, NULL, NULL, NULL_CIA, sim_stopped, SIM_SIGINT);
35 sim_stop (SIM_DESC sd) argument
37 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
38 sim_events_schedule_after_signal(sd,
41 sd /*data*/);
H A Dsim-io.h28 int sim_io_init (SIM_DESC sd);
30 int sim_io_shutdown (SIM_DESC sd);
32 int sim_io_unlink (SIM_DESC sd, const char *);
34 long sim_io_time (SIM_DESC sd, long *);
36 int sim_io_system (SIM_DESC sd, const char *);
38 int sim_io_rename (SIM_DESC sd, const char *, const char *);
40 int sim_io_write_stdout (SIM_DESC sd, const char *, int);
42 void sim_io_flush_stdout (SIM_DESC sd);
44 int sim_io_write_stderr (SIM_DESC sd, const char *, int);
46 void sim_io_flush_stderr (SIM_DESC sd);
[all...]
H A Dsim-io.c48 sim_io_init(SIM_DESC sd) argument
50 return STATE_CALLBACK (sd)->init (STATE_CALLBACK (sd));
55 sim_io_shutdown(SIM_DESC sd) argument
57 return STATE_CALLBACK (sd)->shutdown (STATE_CALLBACK (sd));
62 sim_io_unlink(SIM_DESC sd, argument
65 return STATE_CALLBACK (sd)->unlink (STATE_CALLBACK (sd), f1);
70 sim_io_time(SIM_DESC sd, argument
78 sim_io_system(SIM_DESC sd, const char *s) argument
85 sim_io_rename(SIM_DESC sd, const char *f1, const char *f2) argument
94 sim_io_write_stdout(SIM_DESC sd, const char *buf, int len) argument
114 sim_io_flush_stdout(SIM_DESC sd) argument
130 sim_io_write_stderr(SIM_DESC sd, const char *buf, int len) argument
150 sim_io_flush_stderr(SIM_DESC sd) argument
166 sim_io_write(SIM_DESC sd, int fd, const char *buf, int len) argument
176 sim_io_read_stdin(SIM_DESC sd, char *buf, int len) argument
196 sim_io_read(SIM_DESC sd, int fd, char *buf, int len) argument
205 sim_io_open(SIM_DESC sd, const char *name, int flags) argument
214 sim_io_lseek(SIM_DESC sd, int fd, long off, int way) argument
224 sim_io_isatty(SIM_DESC sd, int fd) argument
232 sim_io_get_errno(SIM_DESC sd) argument
239 sim_io_close(SIM_DESC sd, int fd) argument
247 sim_io_printf(SIM_DESC sd, const char *fmt, ...) argument
259 sim_io_vprintf(SIM_DESC sd, const char *fmt, va_list ap) argument
268 sim_io_eprintf(SIM_DESC sd, const char *fmt, ...) argument
280 sim_io_evprintf(SIM_DESC sd, const char *fmt, va_list ap) argument
289 sim_io_error(SIM_DESC sd, const char *fmt, ...) argument
312 sim_io_poll_quit(SIM_DESC sd) argument
340 sim_io_poll_read(SIM_DESC sd, int sim_io_fd, char *buf, int sizeof_buf) argument
392 sim_io_stat(SIM_DESC sd, const char *path, struct stat *buf) argument
398 sim_io_fstat(SIM_DESC sd, int fd, struct stat *buf) argument
[all...]
H A Dsim-base.h49 #define STATE_CPU(sd,n) ((sd)->cpu[n])
51 #define STATE_CPU(sd,n) ((sd)->cpu[0])
124 #define STATE_MY_NAME(sd) ((sd)->base.my_name)
128 #define STATE_OPEN_KIND(sd) ((sd)->base.open_kind)
132 #define STATE_CALLBACK(sd) ((sd)
[all...]
H A Dsim-hrw.c28 sim_read (SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length) argument
30 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
31 return sim_core_read_buffer (sd, NULL, read_map,
36 sim_write (SIM_DESC sd, SIM_ADDR mem, const unsigned char *buf, int length) argument
38 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
39 return sim_core_write_buffer (sd, NULL, write_map,
H A Dsim-reg.c31 sim_fetch_register (SIM_DESC sd, int rn, unsigned char *buf, int length) argument
33 SIM_CPU *cpu = STATE_CPU (sd, 0);
35 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
46 sim_store_register (SIM_DESC sd, int rn, unsigned char *buf, int length) argument
48 SIM_CPU *cpu = STATE_CPU (sd, 0);
50 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
H A Dsim-run.c30 sim_engine_run (SIM_DESC sd, argument
37 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
38 cpu = STATE_CPU (sd, 0);
43 cia = idecode_issue (sd, insn, cia);
45 if (sim_events_tick (sd))
48 sim_events_process (sd);
H A Dsim-engine.c31 sim_engine_get_run_state (SIM_DESC sd, enum sim_stop *reason, int *sigrc) argument
33 sim_engine *engine = STATE_ENGINE (sd);
34 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
44 sim_engine_set_run_state (SIM_DESC sd, enum sim_stop reason, int sigrc) argument
46 sim_engine *engine = STATE_ENGINE (sd);
47 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
55 sim_engine_halt (SIM_DESC sd, argument
62 sim_engine *engine = STATE_ENGINE (sd);
63 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
72 SIM_ENGINE_HALT_HOOK (sd, last_cp
92 sim_engine_restart(SIM_DESC sd, sim_cpu *last_cpu, sim_cpu *next_cpu, sim_cia cia) argument
115 sim_engine_vabort(SIM_DESC sd, sim_cpu *cpu, sim_cia cia, const char *fmt, va_list ap) argument
144 sim_engine_abort(SIM_DESC sd, sim_cpu *cpu, sim_cia cia, const char *fmt, ...) argument
161 sim_engine_last_cpu_nr(SIM_DESC sd) argument
171 sim_engine_next_cpu_nr(SIM_DESC sd) argument
181 sim_engine_nr_cpus(SIM_DESC sd) argument
193 sim_engine_init(SIM_DESC sd) argument
209 sim_engine_install(SIM_DESC sd) argument
[all...]
H A Dsim-resume.c27 has_stepped (SIM_DESC sd, argument
30 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
31 sim_engine_halt (sd, NULL, NULL, NULL_CIA, sim_stopped, SIM_SIGTRAP);
38 sim_resume (SIM_DESC sd, argument
42 sim_engine *engine = STATE_ENGINE (sd);
46 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
51 sim_events_deschedule (sd, engine->stepper);
55 engine->stepper = sim_events_schedule (sd, 1, has_stepped, sd);
57 sim_module_resume (sd);
[all...]
H A Dcgen-run.c41 #define SIM_ENGINE_PREFIX_HOOK(sd)
44 #define SIM_ENGINE_POSTFIX_HOOK(sd)
55 sim_resume (SIM_DESC sd, int step, int siggnal) argument
57 sim_engine *engine = STATE_ENGINE (sd);
61 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
66 sim_events_deschedule (sd, engine->stepper);
70 engine->stepper = sim_events_schedule (sd, 1, has_stepped, sd);
72 sim_module_resume (sd);
75 if (USING_SCACHE_P (sd))
152 has_stepped(SIM_DESC sd, void *data) argument
181 engine_run_1(SIM_DESC sd, int max_insns, int fast_p) argument
205 engine_run_n(SIM_DESC sd, int next_cpu_nr, int nr_cpus, int max_insns, int fast_p) argument
[all...]
H A Dsim-config.c130 sim_config_default (SIM_DESC sd) argument
135 STATE_ENVIRONMENT (sd) = ALL_ENVIRONMENT;
141 sim_config (SIM_DESC sd) argument
144 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
147 if (STATE_PROG_BFD (sd) == NULL
150 || (!bfd_little_endian (STATE_PROG_BFD (sd))
151 && !bfd_big_endian (STATE_PROG_BFD (sd))))
154 prefered_target_byte_order = (bfd_little_endian(STATE_PROG_BFD (sd))
168 sim_io_eprintf (sd, "host (%s) and configured (%s) byte order in conflict",
194 sim_io_eprintf (sd, "Targe
314 print_sim_config(SIM_DESC sd) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Dsmc93cx6var.h81 #define SEEPROM_INB(sd) \
82 (((sd)->sd_regsize == 4) \
83 ? bus_space_read_4((sd)->sd_tag, (sd)->sd_bsh, \
84 (sd)->sd_control_offset) \
85 : bus_space_read_1((sd)->sd_tag, (sd)->sd_bsh, \
86 (sd)->sd_control_offset))
88 #define SEEPROM_OUTB(sd, value) do { \
89 if ((sd)
[all...]
H A Dsmc93cx6.c88 #define CLOCK_PULSE(sd, rdy) do { \
97 while ((SEEPROM_STATUS_INB(sd) & rdy) == 0 && cpi-- > 0) { \
100 (void)SEEPROM_INB(sd); /* Clear clock */ \
108 read_seeprom(struct seeprom_descriptor *sd, u_int16_t *buf, bus_size_t start_addr, bus_size_t count) argument
121 temp = sd->sd_MS ^ sd->sd_CS;
122 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
123 CLOCK_PULSE(sd, sd
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/iq2000/
H A Dsim-if.c48 free_state (SIM_DESC sd)
50 if (STATE_MODULES (sd) != NULL)
51 sim_module_uninstall (sd);
52 sim_cpu_free_all (sd);
53 sim_state_free (sd);
67 SIM_DESC sd = sim_state_alloc (kind, callback);
70 if (sim_cpu_alloc_all (sd, 1, cgen_cpu_max_extra_bytes ()) != SIM_RC_OK)
72 free_state (sd);
79 SIM_CPU *current_cpu = STATE_CPU (sd, 0);
80 STATE_WATCHPOINTS (sd)
47 free_state(SIM_DESC sd) argument
66 SIM_DESC sd = sim_state_alloc (kind, callback); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/m68hc11/
H A Dinterp.c35 static void sim_get_info (SIM_DESC sd, char *cmd);
80 free_state (SIM_DESC sd) argument
82 if (STATE_MODULES (sd) != NULL)
83 sim_module_uninstall (sd);
85 sim_state_free (sd);
90 sim_get_info (SIM_DESC sd, char *cmd) argument
94 cpu = STATE_CPU (sd, 0);
102 arch = STATE_ARCHITECTURE (sd);
116 sim_io_eprintf (sd, "Device '%s' not found.\n", cmd);
117 sim_io_eprintf (sd, "Vali
136 sim_board_reset(SIM_DESC sd) argument
171 sim_hw_configure(SIM_DESC sd) argument
312 sim_get_bank_parameters(SIM_DESC sd, bfd* abfd) argument
366 sim_prepare_for_program(SIM_DESC sd, bfd* abfd) argument
425 SIM_DESC sd; local
492 sim_close(SIM_DESC sd, int quitting) argument
520 sim_engine_run(SIM_DESC sd, int next_cpu_nr, int nr_cpus, int siggnal) argument
542 sim_trace(SIM_DESC sd) argument
549 sim_info(SIM_DESC sd, int verbose) argument
571 sim_create_inferior(SIM_DESC sd, struct bfd *abfd, char **argv, char **env) argument
586 sim_fetch_register(SIM_DESC sd, int rn, unsigned char *memory, int length) argument
652 sim_store_register(SIM_DESC sd, int rn, unsigned char *memory, int length) argument
715 sim_do_command(SIM_DESC sd, char *cmd) argument
744 has_stepped(SIM_DESC sd, void *data) argument
755 sim_resume(SIM_DESC sd, int step, int siggnal) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/frv/
H A Dsim-if.c43 free_state (SIM_DESC sd)
45 if (STATE_MODULES (sd) != NULL)
46 sim_module_uninstall (sd);
47 sim_cpu_free_all (sd);
48 sim_state_free (sd);
63 SIM_DESC sd = sim_state_alloc (kind, callback);
66 if (sim_cpu_alloc_all (sd, 1, cgen_cpu_max_extra_bytes ()) != SIM_RC_OK)
68 free_state (sd);
75 SIM_CPU *current_cpu = STATE_CPU (sd, 0);
76 STATE_WATCHPOINTS (sd)
42 free_state(SIM_DESC sd) argument
62 SIM_DESC sd = sim_state_alloc (kind, callback); local
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/net/
H A Dgetservent_r.c59 _servent_open(struct servent_data *sd)
61 if (sd->flags & (_SV_CDB | _SV_PLAINFILE)) {
62 sd->flags |= _SV_FIRST;
66 free(sd->line);
67 sd->line = NULL;
68 free(sd->cdb_buf);
69 sd->cdb_buf = NULL;
70 sd->cdb_buf_len = 0;
71 free(sd->aliases);
72 sd
91 _servent_close(struct servent_data *sd) argument
109 _servent_getline(struct servent_data *sd) argument
131 _servent_parseline(struct servent_data *sd, struct servent *sp) argument
193 setservent_r(int f, struct servent_data *sd) argument
200 endservent_r(struct servent_data *sd) argument
214 getservent_r(struct servent *sp, struct servent_data *sd) argument
248 _servent_parsedb(struct servent_data *sd, struct servent *sp, const uint8_t *data, size_t len) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/sh64/
H A Dsim-if.c43 free_state (SIM_DESC sd)
45 if (STATE_MODULES (sd) != NULL)
46 sim_module_uninstall (sd);
47 sim_cpu_free_all (sd);
48 sim_state_free (sd);
62 SIM_DESC sd = sim_state_alloc (kind, callback);
65 if (sim_cpu_alloc_all (sd, 1, cgen_cpu_max_extra_bytes ()) != SIM_RC_OK)
67 free_state (sd);
74 SIM_CPU *current_cpu = STATE_CPU (sd, 0);
75 STATE_WATCHPOINTS (sd)
42 free_state(SIM_DESC sd) argument
61 SIM_DESC sd = sim_state_alloc (kind, callback); local
215 SIM_DESC sd = CPU_STATE (cpu); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D961031-1.c3 } sd; variable in typeref:struct:s
10 return sd;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D961031-1.c3 } sd; variable in typeref:struct:s
10 return sd;
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/m32r/
H A Dsim-if.c48 free_state (SIM_DESC sd)
50 if (STATE_MODULES (sd) != NULL)
51 sim_module_uninstall (sd);
52 sim_cpu_free_all (sd);
53 sim_state_free (sd);
65 SIM_DESC sd = sim_state_alloc (kind, callback);
70 if (sim_cpu_alloc_all (sd, 1, cgen_cpu_max_extra_bytes ()) != SIM_RC_OK)
72 free_state (sd);
79 SIM_CPU *current_cpu = STATE_CPU (sd, 0);
80 STATE_WATCHPOINTS (sd)
47 free_state(SIM_DESC sd) argument
64 SIM_DESC sd = sim_state_alloc (kind, callback); local
237 SIM_DESC sd = CPU_STATE (cpu); local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/mips/
H A Delf-rel28.s27 sd $4,%call_hi(bar)($4)
28 sd $4,%call_lo(bar)($4)
29 sd $4,%call16(bar)($4)
30 sd $4,%got_disp(bar)($4)
31 sd $4,%got_page(bar)($4)
32 sd $4,%got_ofst(bar)($4)
33 sd $4,%got_hi(bar)($4)
34 sd $4,%got_lo(bar)($4)
35 sd $4,%got(bar)($4)
36 sd
[all...]
/netbsd-6-1-5-RELEASE/external/apache2/mDNSResponder/usr.bin/
H A DMakefile3 SUBDIR= dns-sd

Completed in 277 milliseconds

1234567891011>>