Home
last modified time | relevance | path

Searched refs:aspace (Results 1 – 19 of 19) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/
H A Dprogspace.c63 struct address_space *aspace; in new_address_space() local
65 aspace = XZALLOC (struct address_space); in new_address_space()
68 return aspace; in new_address_space()
83 return program_spaces->aspace; in maybe_new_address_space()
92 xfree (aspace); in free_address_space()
98 return aspace->num; in address_space_num()
122 pspace->aspace = aspace; in add_program_space()
152 free_address_space (pspace->aspace); in release_program_space()
446 pspace->aspace = aspace; in update_address_spaces()
451 free_address_space (pspace->aspace); in update_address_spaces()
[all …]
H A Dinferior.c796 struct address_space *aspace; in add_inferior_with_spaces() local
804 aspace = maybe_new_address_space (); in add_inferior_with_spaces()
805 pspace = add_program_space (aspace); in add_inferior_with_spaces()
808 inf->aspace = pspace->aspace; in add_inferior_with_spaces()
944 struct address_space *aspace; in clone_inferior_command() local
951 aspace = maybe_new_address_space (); in clone_inferior_command()
952 pspace = add_program_space (aspace); in clone_inferior_command()
955 inf->aspace = pspace->aspace; in clone_inferior_command()
996 current_inferior_->aspace = current_program_space->aspace; in initialize_inferiors()
H A Dprogspace.h165 struct address_space *aspace; member
236 extern struct program_space *add_program_space (struct address_space *aspace);
281 extern int address_space_num (struct address_space *aspace);
H A Dregcache.c191 struct address_space *aspace; member
212 regcache_xmalloc_1 (struct gdbarch *gdbarch, struct address_space *aspace, in regcache_xmalloc_1() argument
237 regcache->aspace = aspace; in regcache_xmalloc_1()
243 regcache_xmalloc (struct gdbarch *gdbarch, struct address_space *aspace) in regcache_xmalloc() argument
245 return regcache_xmalloc_1 (gdbarch, aspace, 1); in regcache_xmalloc()
281 return regcache->aspace; in get_regcache_aspace()
454 struct address_space *aspace) in get_thread_arch_aspace_regcache() argument
464 new_regcache = regcache_xmalloc_1 (gdbarch, aspace, 0); in get_thread_arch_aspace_regcache()
478 struct address_space *aspace; in get_thread_arch_regcache() local
486 aspace = (ptid_equal (null_ptid, ptid) in get_thread_arch_regcache()
[all …]
H A Dinfrun.c670 struct address_space *aspace; in handle_vfork_child_exec_or_exit() local
704 aspace = inf->aspace; in handle_vfork_child_exec_or_exit()
705 inf->aspace = NULL; in handle_vfork_child_exec_or_exit()
728 inf->aspace = aspace; in handle_vfork_child_exec_or_exit()
737 inf->aspace = inf->pspace->aspace; in handle_vfork_child_exec_or_exit()
768 inf->aspace = NULL; in handle_vfork_child_exec_or_exit()
776 inf->aspace = pspace->aspace; in handle_vfork_child_exec_or_exit()
917 inf->aspace = pspace->aspace; in follow_exec()
2142 struct address_space *aspace; in proceed() local
2927 struct address_space *aspace; in adjust_pc_after_break() local
[all …]
H A Dframe.c77 struct address_space *aspace; member
787 struct address_space *aspace = get_frame_address_space (this_frame); in frame_save_as_regcache() local
789 aspace); in frame_save_as_regcache()
1241 frame->aspace = get_regcache_aspace (regcache); in create_sentinel_frame()
1487 fi->aspace = fi->next->aspace; in create_new_frame()
1788 prev_frame->aspace = this_frame->aspace; in get_prev_frame_raw()
2252 return frame->aspace; in get_frame_address_space()
H A Dbreakpoint.c178 struct address_space *aspace,
3944 aspace, pc)) in software_breakpoint_inserted_here_p()
3980 if (loc->pspace->aspace == aspace && loc->inserted) in hardware_watchpoint_inserted_in_range()
6673 && loc1->pspace->aspace == loc2->pspace->aspace in watchpoint_locations_match()
6718 aspace, addr) in breakpoint_location_address_match()
6722 aspace, addr))); in breakpoint_location_address_match()
9961 struct address_space *aspace, in breakpoint_hit_ranged_breakpoint() argument
9970 bl->length, aspace, bp_addr); in breakpoint_hit_ranged_breakpoint()
12850 struct address_space *aspace, in base_breakpoint_breakpoint_hit() argument
13027 aspace, bp_addr)) in bkpt_breakpoint_hit()
[all …]
H A Dbreakpoint.h533 struct address_space *aspace,
888 extern bpstat bpstat_stop_status (struct address_space *aspace,
1552 extern int pc_at_non_inline_function (struct address_space *aspace,
H A Drecord-full.c1254 struct address_space *aspace; in record_full_wait_1() local
1263 aspace = get_regcache_aspace (regcache); in record_full_wait_1()
1269 else if (breakpoint_inserted_here_p (aspace, tmp_pc)) in record_full_wait_1()
1273 if (software_breakpoint_inserted_here_p (aspace, tmp_pc)) in record_full_wait_1()
1335 struct address_space *aspace = get_regcache_aspace (regcache); in record_full_wait_1() local
1349 if (breakpoint_inserted_here_p (aspace, tmp_pc)) in record_full_wait_1()
1360 && software_breakpoint_inserted_here_p (aspace, tmp_pc)) in record_full_wait_1()
1430 if (breakpoint_inserted_here_p (aspace, tmp_pc)) in record_full_wait_1()
1443 && software_breakpoint_inserted_here_p (aspace, in record_full_wait_1()
H A Dregcache.h37 struct address_space *aspace);
H A Dinf-ptrace.c69 child_inf->aspace = parent_inf->aspace; in inf_ptrace_follow_fork()
H A Dinferior.h432 struct address_space *aspace; member
H A Dinfcall.c1036 struct address_space *aspace = get_regcache_aspace (stop_registers); in call_function_by_hand() local
1037 struct regcache *retbuf = regcache_xmalloc (gdbarch, aspace); in call_function_by_hand()
H A Dbreak-catch-sig.c178 struct address_space *aspace, in signal_catchpoint_breakpoint_hit() argument
H A Dtarget.c3243 struct address_space *aspace; in target_thread_address_space() local
3251 aspace = t->to_thread_address_space (t, ptid); in target_thread_address_space()
3252 gdb_assert (aspace); in target_thread_address_space()
3258 address_space_num (aspace)); in target_thread_address_space()
3259 return aspace; in target_thread_address_space()
3266 if (inf == NULL || inf->aspace == NULL) in target_thread_address_space()
3272 return inf->aspace; in target_thread_address_space()
H A Dremote.c1480 inf->aspace = maybe_new_address_space (); in remote_add_inferior()
/dragonfly/gnu/usr.bin/gdb/kgdb/
H A Dtrgt.c165 inf8->aspace = pspace->aspace; in kgdb_trgt_open()
/dragonfly/contrib/gdb-7/gdb/tui/
H A Dtui-disasm.c262 && breakpoint_here_p (current_program_space->aspace, in tui_set_disassem_content()
/dragonfly/share/dict/
H A Dweb214274 aspace