Home
last modified time | relevance | path

Searched refs:reg_info_p (Results 1 – 6 of 6) sorted by relevance

/NextBSD/contrib/gcc/
HDregs.h68 typedef reg_info *reg_info_p; typedef
70 DEF_VEC_P(reg_info_p);
71 DEF_VEC_ALLOC_P(reg_info_p,heap);
73 extern VEC(reg_info_p,heap) *reg_n_info;
77 #define REG_N_REFS(N) (VEC_index (reg_info_p, reg_n_info, N)->refs)
81 #define REG_FREQ(N) (VEC_index (reg_info_p, reg_n_info, N)->freq)
105 #define REG_N_SETS(N) (VEC_index (reg_info_p, reg_n_info, N)->sets)
113 #define REG_N_DEATHS(N) (VEC_index (reg_info_p, reg_n_info, N)->deaths)
133 (VEC_index (reg_info_p, reg_n_info, N)->calls_crossed)
139 (VEC_index (reg_info_p, reg_n_info, N)->throw_calls_crossed)
[all …]
HDregclass.c2179 reg_n_info = VEC_alloc (reg_info_p, heap, regno_allocated); in allocate_reg_info()
2180 VEC_safe_grow (reg_info_p, heap, reg_n_info, regno_allocated); in allocate_reg_info()
2181 memset (VEC_address (reg_info_p, reg_n_info), 0, in allocate_reg_info()
2182 sizeof (reg_info_p) * regno_allocated); in allocate_reg_info()
2188 size_t old_length = VEC_length (reg_info_p, reg_n_info); in allocate_reg_info()
2191 reg_info_p *addr; in allocate_reg_info()
2192 VEC_safe_grow (reg_info_p, heap, reg_n_info, regno_allocated); in allocate_reg_info()
2193 addr = VEC_address (reg_info_p, reg_n_info); in allocate_reg_info()
2195 sizeof (reg_info_p) * (regno_allocated - old_length)); in allocate_reg_info()
2199 VEC_truncate (reg_info_p, reg_n_info, regno_allocated); in allocate_reg_info()
[all …]
HDbasic-block.h464 (VEC_index (reg_info_p, reg_n_info, N)->basic_block)
HDflow.c185 VEC(reg_info_p,heap) *reg_n_info;
HDChangeLog-20067242 VEC(reg_info_p,heap) *.
7245 * regs.h (reg_info_p): New.
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDGDBRemoteCommunicationServerLLGS.cpp570 … const RegisterInfo *const reg_info_p = reg_ctx_sp->GetRegisterInfoAtIndex (*reg_num_p); in SendStopReplyPacketForThread() local
571 if (reg_info_p == nullptr) in SendStopReplyPacketForThread()
576 else if (reg_info_p->value_regs == nullptr) in SendStopReplyPacketForThread()
580 Error error = reg_ctx_sp->ReadRegister (reg_info_p, reg_value); in SendStopReplyPacketForThread()
584 … WriteRegisterValueInHexFixedWidth(response, reg_ctx_sp, *reg_info_p, &reg_value); in SendStopReplyPacketForThread()
590 …d to read register '%s' index %" PRIu32 ": %s", __FUNCTION__, reg_info_p->name ? reg_info_p->name … in SendStopReplyPacketForThread()