HomeSort by: relevance | last modified time | path
    Searched refs:sd (Results 1 - 25 of 812) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb/dist/sim/common/
sim-info.c 30 sim_info (SIM_DESC sd, bool verbose)
32 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
33 sim_module_info (sd, verbose || STATE_VERBOSE_P (sd));
sim-close.c 34 # define SIM_CLOSE_HOOK(sd, quitting)
38 sim_close (SIM_DESC sd, int quitting)
40 SIM_CLOSE_HOOK (sd, quitting);
45 cgen_cpu_close (CPU_CPU_DESC (STATE_CPU (sd, 0)));
49 sim_module_uninstall (sd);
53 sim_io_shutdown (sd);
56 sim_cpu_free_all (sd);
59 sim_state_free (sd);
sim-stop.c 30 control_c_simulation (SIM_DESC sd,
33 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
34 sim_engine_halt (sd, NULL, NULL, NULL_CIA, sim_stopped, SIM_SIGINT);
38 sim_stop (SIM_DESC sd)
40 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
41 sim_events_schedule_after_signal (sd,
44 sd /*data*/);
sim-base.h 97 # define STATE_CPU(sd, n) ((sd)->cpu[n])
99 # define STATE_CPU(sd, n) ((sd)->cpu[0])
104 #define STATE_MY_NAME(sd) ((sd)->my_name)
108 #define STATE_OPEN_KIND(sd) ((sd)->open_kind)
112 #define STATE_CALLBACK(sd) ((sd)->callback
    [all...]
sim-command.c 32 sim_do_command (SIM_DESC sd, const char *cmd)
34 if (sim_args_command (sd, cmd) != SIM_RC_OK)
35 sim_io_eprintf (sd, "Unknown sim command: \"%s\". Try \"sim help\".\n",
sim-hload.c 34 sim_load (SIM_DESC sd, const char *prog_name, struct bfd *prog_bfd, int from_tty)
38 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
39 if (sim_analyze_program (sd, prog_name, prog_bfd) != SIM_RC_OK)
41 SIM_ASSERT (STATE_PROG_BFD (sd) != NULL);
48 result_bfd = sim_load_file (sd, STATE_MY_NAME (sd),
49 STATE_CALLBACK (sd),
51 STATE_PROG_BFD (sd),
52 STATE_OPEN_KIND (sd) == SIM_OPEN_DEBUG,
53 STATE_LOAD_AT_LMA_P (sd),
    [all...]
sim-io.h 35 int sim_io_init (SIM_DESC sd);
37 int sim_io_shutdown (SIM_DESC sd);
39 int sim_io_unlink (SIM_DESC sd, const char *);
41 int64_t sim_io_time (SIM_DESC sd);
43 int sim_io_system (SIM_DESC sd, const char *);
45 int sim_io_rename (SIM_DESC sd, const char *, const char *);
47 int sim_io_write_stdout (SIM_DESC sd, const char *, int);
49 void sim_io_flush_stdout (SIM_DESC sd);
51 int sim_io_write_stderr (SIM_DESC sd, const char *, int);
53 void sim_io_flush_stderr (SIM_DESC sd);
    [all...]
sim-io.c 52 sim_io_init (SIM_DESC sd)
54 return STATE_CALLBACK (sd)->init (STATE_CALLBACK (sd));
59 sim_io_shutdown (SIM_DESC sd)
61 return STATE_CALLBACK (sd)->shutdown (STATE_CALLBACK (sd));
66 sim_io_unlink (SIM_DESC sd,
69 return STATE_CALLBACK (sd)->unlink (STATE_CALLBACK (sd), f1);
74 sim_io_time (SIM_DESC sd)
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/common/
sim-info.c 30 sim_info (SIM_DESC sd, bool verbose)
32 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
33 sim_module_info (sd, verbose || STATE_VERBOSE_P (sd));
sim-close.c 34 # define SIM_CLOSE_HOOK(sd, quitting)
38 sim_close (SIM_DESC sd, int quitting)
40 SIM_CLOSE_HOOK (sd, quitting);
45 cgen_cpu_close (CPU_CPU_DESC (STATE_CPU (sd, 0)));
49 sim_module_uninstall (sd);
53 sim_io_shutdown (sd);
56 sim_cpu_free_all (sd);
59 sim_state_free (sd);
sim-stop.c 30 control_c_simulation (SIM_DESC sd,
33 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
34 sim_engine_halt (sd, NULL, NULL, NULL_CIA, sim_stopped, SIM_SIGINT);
38 sim_stop (SIM_DESC sd)
40 ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
41 sim_events_schedule_after_signal (sd,
44 sd /*data*/);
sim-base.h 97 # define STATE_CPU(sd, n) ((sd)->cpu[n])
99 # define STATE_CPU(sd, n) ((sd)->cpu[0])
104 #define STATE_MY_NAME(sd) ((sd)->my_name)
108 #define STATE_OPEN_KIND(sd) ((sd)->open_kind)
112 #define STATE_CALLBACK(sd) ((sd)->callback
    [all...]
sim-command.c 32 sim_do_command (SIM_DESC sd, const char *cmd)
34 if (sim_args_command (sd, cmd) != SIM_RC_OK)
35 sim_io_eprintf (sd, "Unknown sim command: \"%s\". Try \"sim help\".\n",
sim-hload.c 34 sim_load (SIM_DESC sd, const char *prog_name, struct bfd *prog_bfd, int from_tty)
38 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
39 if (sim_analyze_program (sd, prog_name, prog_bfd) != SIM_RC_OK)
41 SIM_ASSERT (STATE_PROG_BFD (sd) != NULL);
48 result_bfd = sim_load_file (sd, STATE_MY_NAME (sd),
49 STATE_CALLBACK (sd),
51 STATE_PROG_BFD (sd),
52 STATE_OPEN_KIND (sd) == SIM_OPEN_DEBUG,
53 STATE_LOAD_AT_LMA_P (sd),
    [all...]
sim-io.h 35 int sim_io_init (SIM_DESC sd);
37 int sim_io_shutdown (SIM_DESC sd);
39 int sim_io_unlink (SIM_DESC sd, const char *);
41 int64_t sim_io_time (SIM_DESC sd);
43 int sim_io_system (SIM_DESC sd, const char *);
45 int sim_io_rename (SIM_DESC sd, const char *, const char *);
47 int sim_io_write_stdout (SIM_DESC sd, const char *, int);
49 void sim_io_flush_stdout (SIM_DESC sd);
51 int sim_io_write_stderr (SIM_DESC sd, const char *, int);
53 void sim_io_flush_stderr (SIM_DESC sd);
    [all...]
sim-io.c 52 sim_io_init (SIM_DESC sd)
54 return STATE_CALLBACK (sd)->init (STATE_CALLBACK (sd));
59 sim_io_shutdown (SIM_DESC sd)
61 return STATE_CALLBACK (sd)->shutdown (STATE_CALLBACK (sd));
66 sim_io_unlink (SIM_DESC sd,
69 return STATE_CALLBACK (sd)->unlink (STATE_CALLBACK (sd), f1);
74 sim_io_time (SIM_DESC sd)
    [all...]
  /src/sys/dev/ic/
smc93cx6var.h 81 #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)->sd_regsize == 4)
    [all...]
smc93cx6.c 88 #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)
121 temp = sd->sd_MS ^ sd->sd_CS;
122 SEEPROM_OUTB(sd, temp ^ sd->sd_CK);
123 CLOCK_PULSE(sd, sd->sd_RDY)
    [all...]
  /src/external/gpl3/gdb/dist/sim/bpf/
bpf-sim.h 31 #define BPF_SIM_STATE(sd) ((struct bpf_sim_state *) STATE_ARCH_DATA (sd))
  /src/external/gpl3/gdb.old/dist/sim/bpf/
bpf-sim.h 31 #define BPF_SIM_STATE(sd) ((struct bpf_sim_state *) STATE_ARCH_DATA (sd))
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_tag_mismatch_riscv64.S 87 sd x31, 248(sp)
88 sd x30, 240(sp)
89 sd x29, 232(sp)
90 sd x28, 224(sp)
91 sd x27, 216(sp)
92 sd x26, 208(sp)
93 sd x25, 200(sp)
94 sd x24, 192(sp)
95 sd x23, 184(sp)
96 sd x22, 176(sp
    [all...]
  /src/external/gpl3/gdb/dist/sim/riscv/
interp.c 35 sim_engine_run (SIM_DESC sd,
42 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
44 cpu = STATE_CPU (sd, 0);
49 if (sim_events_tick (sd))
50 sim_events_process (sd);
56 free_state (SIM_DESC sd)
58 if (STATE_MODULES (sd) != NULL)
59 sim_module_uninstall (sd);
60 sim_cpu_free_all (sd);
61 sim_state_free (sd);
70 SIM_DESC sd = sim_state_alloc_extra (kind, callback, local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/riscv/
interp.c 35 sim_engine_run (SIM_DESC sd,
42 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
44 cpu = STATE_CPU (sd, 0);
49 if (sim_events_tick (sd))
50 sim_events_process (sd);
56 free_state (SIM_DESC sd)
58 if (STATE_MODULES (sd) != NULL)
59 sim_module_uninstall (sd);
60 sim_cpu_free_all (sd);
61 sim_state_free (sd);
70 SIM_DESC sd = sim_state_alloc_extra (kind, callback, local
    [all...]
  /src/external/gpl3/gdb/dist/sim/example-synacor/
interp.c 44 sim_engine_run (SIM_DESC sd,
51 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
53 cpu = STATE_CPU (sd, 0);
58 if (sim_events_tick (sd))
59 sim_events_process (sd);
74 free_state (SIM_DESC sd)
76 if (STATE_MODULES (sd) != NULL)
77 sim_module_uninstall (sd);
78 sim_cpu_free_all (sd);
79 sim_state_free (sd);
86 SIM_DESC sd = sim_state_alloc (kind, callback); local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/example-synacor/
interp.c 44 sim_engine_run (SIM_DESC sd,
51 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
53 cpu = STATE_CPU (sd, 0);
58 if (sim_events_tick (sd))
59 sim_events_process (sd);
74 free_state (SIM_DESC sd)
76 if (STATE_MODULES (sd) != NULL)
77 sim_module_uninstall (sd);
78 sim_cpu_free_all (sd);
79 sim_state_free (sd);
86 SIM_DESC sd = sim_state_alloc (kind, callback); local
    [all...]

Completed in 39 milliseconds

1 2 3 4 5 6 7 8 91011>>