Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1504 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1505 if (arch_flags & ArchSpec::eMIPSAse_msa) in DisassemblerLLVMC()
1507 if (arch_flags & ArchSpec::eMIPSAse_dsp) in DisassemblerLLVMC()
1509 if (arch_flags & ArchSpec::eMIPSAse_dspr2) in DisassemblerLLVMC()
1522 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1523 if (arch_flags & ArchSpec::eRISCV_rvc) in DisassemblerLLVMC()
1525 if (arch_flags & ArchSpec::eRISCV_rve) in DisassemblerLLVMC()
1533 if ((arch_flags & ArchSpec::eRISCV_float_abi_quad) == in DisassemblerLLVMC()
1559 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1560 if (arch_flags & ArchSpec::eMIPSAse_mips16) in DisassemblerLLVMC()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1454 uint32_t arch_flags = arch_spec.GetFlags(); in GetSectionHeaderInfo() local
1462 arch_flags |= data.GetU32(&offset); in GetSectionHeaderInfo()
1483 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_XX; in GetSectionHeaderInfo()
1486 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_64; in GetSectionHeaderInfo()
1497 arch_flags |= lldb_private::ArchSpec::eMIPSABI_O32; in GetSectionHeaderInfo()
1500 arch_flags |= lldb_private::ArchSpec::eMIPSABI_O64; in GetSectionHeaderInfo()
1503 arch_flags |= lldb_private::ArchSpec::eMIPSABI_EABI32; in GetSectionHeaderInfo()
1506 arch_flags |= lldb_private::ArchSpec::eMIPSABI_EABI64; in GetSectionHeaderInfo()
1511 arch_flags |= lldb_private::ArchSpec::eMIPSABI_N64; in GetSectionHeaderInfo()
1513 arch_flags |= lldb_private::ArchSpec::eMIPSABI_N32; in GetSectionHeaderInfo()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp141 uint32_t arch_flags = arch.GetFlags(); in EmulateInstructionMIPS64() local
142 if (arch_flags & ArchSpec::eMIPSAse_msa) in EmulateInstructionMIPS64()
144 if (arch_flags & ArchSpec::eMIPSAse_dsp) in EmulateInstructionMIPS64()
146 if (arch_flags & ArchSpec::eMIPSAse_dspr2) in EmulateInstructionMIPS64()
148 if (arch_flags & ArchSpec::eMIPSAse_mips16) in EmulateInstructionMIPS64()
150 if (arch_flags & ArchSpec::eMIPSAse_micromips) in EmulateInstructionMIPS64()
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp141 uint32_t arch_flags = arch.GetFlags(); in EmulateInstructionMIPS() local
142 if (arch_flags & ArchSpec::eMIPSAse_msa) in EmulateInstructionMIPS()
144 if (arch_flags & ArchSpec::eMIPSAse_dsp) in EmulateInstructionMIPS()
146 if (arch_flags & ArchSpec::eMIPSAse_dspr2) in EmulateInstructionMIPS()
170 if (arch_flags & ArchSpec::eMIPSAse_mips16) in EmulateInstructionMIPS()
172 else if (arch_flags & ArchSpec::eMIPSAse_micromips) in EmulateInstructionMIPS()