Home
last modified time | relevance | path

Searched refs:arch_flags (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/
H A DABISysV_riscv.h64 lldb_private::Flags arch_flags = arch.GetFlags(); in CallFrameAddressIsValid() local
65 if (arch_flags.Test(lldb_private::ArchSpec::eRISCV_rve)) in CallFrameAddressIsValid()
79 lldb_private::Flags arch_flags(arch.GetFlags()); in CodeAddressIsValid()
80 if (!arch_flags.Test(lldb_private::ArchSpec::eRISCV_rvc) && (pc & 2)) in CodeAddressIsValid()
H A DABISysV_riscv.cpp704 uint32_t arch_flags = arch.GetFlags(); in RegisterIsCalleeSaved() local
707 bool is_hw_fp = (arch_flags & ArchSpec::eRISCV_float_abi_mask) != 0; in RegisterIsCalleeSaved()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp137 uint32_t arch_flags = m_arch.GetFlags(); in GetInstructionAtAddress() local
138 bool IsMips16 = arch_flags & ArchSpec::eMIPSAse_mips16; in GetInstructionAtAddress()
139 bool IsMicromips = arch_flags & ArchSpec::eMIPSAse_micromips; in GetInstructionAtAddress()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1546 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1547 if (arch_flags & ArchSpec::eMIPSAse_msa) in DisassemblerLLVMC()
1549 if (arch_flags & ArchSpec::eMIPSAse_dsp) in DisassemblerLLVMC()
1551 if (arch_flags & ArchSpec::eMIPSAse_dspr2) in DisassemblerLLVMC()
1564 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1565 if (arch_flags & ArchSpec::eRISCV_rvc) in DisassemblerLLVMC()
1567 if (arch_flags & ArchSpec::eRISCV_rve) in DisassemblerLLVMC()
1575 if ((arch_flags & ArchSpec::eRISCV_float_abi_quad) == in DisassemblerLLVMC()
1603 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1604 if (arch_flags & ArchSpec::eMIPSAse_mips16) in DisassemblerLLVMC()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1493 uint32_t arch_flags = arch_spec.GetFlags(); in GetSectionHeaderInfo() local
1501 arch_flags |= data.GetU32(&offset); in GetSectionHeaderInfo()
1522 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_XX; in GetSectionHeaderInfo()
1525 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_64; in GetSectionHeaderInfo()
1536 arch_flags |= lldb_private::ArchSpec::eMIPSABI_O32; in GetSectionHeaderInfo()
1539 arch_flags |= lldb_private::ArchSpec::eMIPSABI_O64; in GetSectionHeaderInfo()
1542 arch_flags |= lldb_private::ArchSpec::eMIPSABI_EABI32; in GetSectionHeaderInfo()
1545 arch_flags |= lldb_private::ArchSpec::eMIPSABI_EABI64; in GetSectionHeaderInfo()
1550 arch_flags |= lldb_private::ArchSpec::eMIPSABI_N64; in GetSectionHeaderInfo()
1552 arch_flags |= lldb_private::ArchSpec::eMIPSABI_N32; in GetSectionHeaderInfo()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp142 uint32_t arch_flags = arch.GetFlags(); in EmulateInstructionMIPS64() local
143 if (arch_flags & ArchSpec::eMIPSAse_msa) in EmulateInstructionMIPS64()
145 if (arch_flags & ArchSpec::eMIPSAse_dsp) in EmulateInstructionMIPS64()
147 if (arch_flags & ArchSpec::eMIPSAse_dspr2) in EmulateInstructionMIPS64()
149 if (arch_flags & ArchSpec::eMIPSAse_mips16) in EmulateInstructionMIPS64()
151 if (arch_flags & ArchSpec::eMIPSAse_micromips) in EmulateInstructionMIPS64()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp142 uint32_t arch_flags = arch.GetFlags(); in EmulateInstructionMIPS() local
143 if (arch_flags & ArchSpec::eMIPSAse_msa) in EmulateInstructionMIPS()
145 if (arch_flags & ArchSpec::eMIPSAse_dsp) in EmulateInstructionMIPS()
147 if (arch_flags & ArchSpec::eMIPSAse_dspr2) in EmulateInstructionMIPS()
171 if (arch_flags & ArchSpec::eMIPSAse_mips16) in EmulateInstructionMIPS()
173 else if (arch_flags & ArchSpec::eMIPSAse_micromips) in EmulateInstructionMIPS()