Home
last modified time | relevance | path

Searched refs:alt_name (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DDumpRegisterValue.cpp41 } else if (reg_info->alt_name) { in DumpRegisterValue()
42 s->Printf(fmt.c_str(), reg_info->alt_name); in DumpRegisterValue()
50 if (reg_info->alt_name) { in DumpRegisterValue()
51 s->Printf(fmt.c_str(), reg_info->alt_name); in DumpRegisterValue()
DValueObjectRegister.cpp164 else if (reg_info->alt_name) in ConstructObject()
165 m_name.SetCString(reg_info->alt_name); in ConstructObject()
DValueObject.cpp306 else if (reg_info->alt_name) in GetLocationAsCStringImpl()
307 m_location_str = reg_info->alt_name; in GetLocationAsCStringImpl()
DDisassembler.cpp1245 op.m_register == ConstString(info.alt_name))); in MatchRegOp()
/freebsd-12-stable/contrib/nvi/common/
Dscreen.c64 if (orig->alt_name != NULL && in screen_init()
65 (sp->alt_name = strdup(orig->alt_name)) == NULL) in screen_init()
168 free(sp->alt_name); in screen_end()
Dscreen.h98 char *alt_name; /* Ex/vi: alternate file name. */ member
Dexf.c1470 free(sp->alt_name);
1472 sp->alt_name = NULL;
1473 else if ((sp->alt_name = strdup(name)) == NULL)
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteRegisterContext.cpp996 ConstString alt_name; in HardcodeARMRegisters() local
999 if (g_register_infos[i].alt_name && g_register_infos[i].alt_name[0]) in HardcodeARMRegisters()
1000 alt_name.SetCString(g_register_infos[i].alt_name); in HardcodeARMRegisters()
1003 AddRegister(g_register_infos[i], name, alt_name, gpr_reg_set); in HardcodeARMRegisters()
1005 AddRegister(g_register_infos[i], name, alt_name, sfp_reg_set); in HardcodeARMRegisters()
1007 AddRegister(g_register_infos[i], name, alt_name, vfp_reg_set); in HardcodeARMRegisters()
1044 ConstString alt_name; in HardcodeARMRegisters() local
1058 AddRegister(g_comp_register_infos[i], name, alt_name, in HardcodeARMRegisters()
DGDBRemoteCommunicationServerLLGS.cpp1774 if (reg_info->alt_name && reg_info->alt_name[0]) { in Handle_qRegisterInfo()
1776 response.PutCString(reg_info->alt_name); in Handle_qRegisterInfo()
2869 if (reg_info->alt_name && reg_info->alt_name[0]) in BuildTargetXml()
2870 response.Printf("altname=\"%s\" ", reg_info->alt_name); in BuildTargetXml()
DProcessGDBRemote.cpp477 ConstString alt_name; in BuildDynamicRegisterInfo() local
506 alt_name.SetString(value); in BuildDynamicRegisterInfo()
590 m_register_info_sp->AddRegister(reg_info, reg_name, alt_name, set_name); in BuildDynamicRegisterInfo()
4366 ConstString alt_name; in ParseRegisters() local
4394 &reg_name, &alt_name, &set_name, &value_regs, in ParseRegisters()
4417 alt_name.SetString(value); in ParseRegisters()
4527 dyn_reg_info.AddRegister(reg_info, reg_name, alt_name, set_name); in ParseRegisters()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/
Dlldb-private-types.h37 const char *alt_name; member
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterContextDummy.cpp46 m_pc_reg_info.alt_name = "pc"; in RegisterContextDummy()
DRegisterContextHistory.cpp47 m_pc_reg_info.alt_name = "pc"; in RegisterContextHistory()
DDynamicRegisterInfo.cpp115 reg_info.alt_name = alt_name_val.GetCString(); in SetRegisterInfo()
406 reg_info.alt_name = reg_alt_name.AsCString(nullptr); in AddRegister()
772 if (m_regs[i].alt_name) in Dump()
773 s.Printf(", alt-name = %s", m_regs[i].alt_name); in Dump()
/freebsd-12-stable/contrib/binutils/gas/config/
Dobj-coff.c1021 char *alt_name; in weak_name2altname() local
1023 alt_name = xmalloc (sizeof (weak_altprefix) + strlen (name)); in weak_name2altname()
1024 strcpy (alt_name, weak_altprefix); in weak_name2altname()
1025 return strcat (alt_name, name); in weak_name2altname()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DABI.cpp59 const char *reg_alt_name = register_info_array[i].alt_name; in GetRegisterInfoByName()
DRegisterContext.cpp62 reg_name.equals_insensitive(reg_info->alt_name)) in GetRegisterInfoByName()
/freebsd-12-stable/contrib/nvi/ex/
Dex_read.c231 name = sp->alt_name; in ex_read()
Dex_argv.c403 if ((t = sp->alt_name) == NULL) { in argv_fexp()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBFrame.cpp642 (reg_info->alt_name && in FindValue()
643 strcasecmp(reg_info->alt_name, name) == 0))) { in FindValue()
962 (reg_info->alt_name && in FindRegister()
963 strcasecmp(reg_info->alt_name, name) == 0))) { in FindRegister()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
DNativeRegisterContext.cpp64 reg_name.equals_insensitive(reg_info->alt_name)) in GetRegisterInfoByName()
/freebsd-12-stable/contrib/nvi/vi/
Dv_ex.c179 if ((name = sp->alt_name) == NULL) { in v_switch()
/freebsd-12-stable/crypto/heimdal/lib/hx509/
Dcert.c1859 int name, alt_name, same; in match_tree() local
1863 name = alt_name = same = *match = 0; in match_tree()
1894 ret = match_alt_name(&t->val[i].base, c, &same, &alt_name); in match_tree()
1896 if (name && (!same || alt_name)) in match_tree()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DCommandCompletions.cpp611 reg_info->alt_name); in Registers()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
DEmulateInstructionMIPS64.cpp640 reg_info.alt_name = GetRegisterName(reg_num, true); in GetRegisterInfo()

12