Home
last modified time | relevance | path

Searched refs:machp (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/sim/common/
Dsim-model.c79 const SIM_MACH * const *machp; in model_option_handler() local
88 for (machp = STATE_MACHS(sd); *machp != NULL; ++machp) in model_option_handler()
91 MACH_NAME (*machp)); in model_option_handler()
92 for (model = MACH_MODELS (*machp); MODEL_NAME (model) != NULL; in model_option_handler()
152 const SIM_MACH * const *machp; in sim_model_lookup() local
158 for (machp = STATE_MACHS (sd); *machp != NULL; ++machp) in sim_model_lookup()
160 for (model = MACH_MODELS (*machp); MODEL_NAME (model) != NULL; ++model) in sim_model_lookup()
175 const SIM_MACH * const *machp; in sim_mach_lookup() local
180 for (machp = STATE_MACHS (sd); *machp != NULL; ++machp) in sim_mach_lookup()
182 if (strcmp (MACH_NAME (*machp), name) == 0) in sim_mach_lookup()
[all …]
Dcgen-utils.c107 const SIM_MACH * const *machp; in cgen_cpu_max_extra_bytes() local
112 for (machp = STATE_MACHS (sd); *machp != NULL; ++machp) in cgen_cpu_max_extra_bytes()
114 int size = IMP_PROPS_SIM_CPU_SIZE (MACH_IMP_PROPS (*machp)); in cgen_cpu_max_extra_bytes()
DChangeLog-202196 * sim-model.c (model_option_handler): Make machp const.