Home
last modified time | relevance | path

Searched refs:IsGPR (Results 1 – 23 of 23) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextPOSIX_arm.h50 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_loongarch64.h49 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_riscv64.h49 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_ppc64le.h63 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_mips64.h68 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_s390x.h62 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_loongarch64.cpp74 bool RegisterContextPOSIX_loongarch64::IsGPR(unsigned int reg) { in IsGPR() function in RegisterContextPOSIX_loongarch64
H A DRegisterContextPOSIX_riscv64.cpp74 bool RegisterContextPOSIX_riscv64::IsGPR(unsigned int reg) { in IsGPR() function in RegisterContextPOSIX_riscv64
H A DRegisterContextPOSIX_arm.cpp28 bool RegisterContextPOSIX_arm::IsGPR(unsigned reg) { in IsGPR() function in RegisterContextPOSIX_arm
H A DRegisterContextPOSIX_arm64.h50 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_arm64.cpp28 bool RegisterContextPOSIX_arm64::IsGPR(unsigned reg) { in IsGPR() function in RegisterContextPOSIX_arm64
H A DRegisterContextPOSIX_mips64.cpp29 bool RegisterContextPOSIX_mips64::IsGPR(unsigned reg) { in IsGPR() function in RegisterContextPOSIX_mips64
H A DRegisterContextPOSIX_powerpc.h181 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_s390x.cpp72 bool RegisterContextPOSIX_s390x::IsGPR(unsigned reg) { in IsGPR() function in RegisterContextPOSIX_s390x
H A DRegisterContextPOSIX_powerpc.cpp79 bool RegisterContextPOSIX_powerpc::IsGPR(unsigned reg) { in IsGPR() function in RegisterContextPOSIX_powerpc
H A DRegisterContextPOSIX_x86.h167 bool IsGPR(unsigned reg);
H A DRegisterContextPOSIX_ppc64le.cpp98 bool RegisterContextPOSIX_ppc64le::IsGPR(unsigned reg) { in IsGPR() function in RegisterContextPOSIX_ppc64le
H A DRegisterContextPOSIX_x86.cpp376 bool RegisterContextPOSIX_x86::IsGPR(unsigned reg) { in IsGPR() function in RegisterContextPOSIX_x86
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_mips64.cpp57 if (IsGPR(reg_info->kinds[lldb::eRegisterKindLLDB])) { in ReadRegister()
H A DRegisterContextPOSIXCore_s390x.cpp58 if (IsGPR(reg)) { in ReadRegister()
H A DRegisterContextPOSIXCore_riscv64.cpp64 if (IsGPR(reg_info->kinds[lldb::eRegisterKindLLDB])) { in ReadRegister()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp3769 bool IsGPR = (DstRegClassID == Mips::GPR32RegClassID) || in expandMem16Inst() local
3772 if (!IsLoad || !IsGPR || (BaseReg == DstReg)) { in expandMem16Inst()
3896 bool IsGPR = (DstRegClassID == Mips::GPR32RegClassID) || in expandMem9Inst() local
3899 if (!IsLoad || !IsGPR || (BaseReg == DstReg)) { in expandMem9Inst()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp3304 bool IsGPR = in select() local
3306 if (LoadMI && IsGPR) { in select()
3315 if (IsGPR && SrcSize == 32 && DstSize == 64) { in select()