Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp1505 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1506 if (arch_flags & ArchSpec::eMIPSAse_msa) in DisassemblerLLVMC()
1508 if (arch_flags & ArchSpec::eMIPSAse_dsp) in DisassemblerLLVMC()
1510 if (arch_flags & ArchSpec::eMIPSAse_dspr2) in DisassemblerLLVMC()
1523 uint32_t arch_flags = arch.GetFlags(); in DisassemblerLLVMC() local
1524 if (arch_flags & ArchSpec::eRISCV_rvc) in DisassemblerLLVMC()
1526 if (arch_flags & ArchSpec::eRISCV_rve) in DisassemblerLLVMC()
1528 if ((arch_flags & ArchSpec::eRISCV_float_abi_single) == in DisassemblerLLVMC()
1531 if ((arch_flags & ArchSpec::eRISCV_float_abi_double) == in DisassemblerLLVMC()
1534 if ((arch_flags & ArchSpec::eRISCV_float_abi_quad) == in DisassemblerLLVMC()
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Dpdp11.c688 enum machine_type arch_flags; in NAME() local
690 arch_flags = M_UNKNOWN; in NAME()
700 arch_flags = M_SPARC; in NAME()
702 arch_flags = M_SPARCLET; in NAME()
708 case 0: arch_flags = M_68010; break; in NAME()
709 case bfd_mach_m68000: arch_flags = M_UNKNOWN; *unknown = FALSE; break; in NAME()
710 case bfd_mach_m68010: arch_flags = M_68010; break; in NAME()
711 case bfd_mach_m68020: arch_flags = M_68020; break; in NAME()
712 default: arch_flags = M_UNKNOWN; break; in NAME()
720 arch_flags = M_386; in NAME()
[all …]
H A Daout-tic30.c761 enum machine_type arch_flags; in tic30_aout_machine_type() local
763 arch_flags = M_UNKNOWN; in tic30_aout_machine_type()
772 arch_flags = M_UNKNOWN; in tic30_aout_machine_type()
774 if (arch_flags != M_UNKNOWN) in tic30_aout_machine_type()
776 return arch_flags; in tic30_aout_machine_type()
H A Daoutx.h697 enum machine_type arch_flags; in NAME() local
699 arch_flags = M_UNKNOWN; in NAME()
715 arch_flags = M_SPARC; in NAME()
717 arch_flags = M_SPARCLET; in NAME()
723 case 0: arch_flags = M_68010; break; in NAME()
724 case bfd_mach_m68000: arch_flags = M_UNKNOWN; *unknown = FALSE; break; in NAME()
725 case bfd_mach_m68010: arch_flags = M_68010; break; in NAME()
726 case bfd_mach_m68020: arch_flags = M_68020; break; in NAME()
727 default: arch_flags = M_UNKNOWN; break; in NAME()
735 arch_flags = M_386; in NAME()
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Dpdp11.c929 enum machine_type arch_flags; variable
931 arch_flags = M_UNKNOWN;
941 arch_flags = M_SPARC;
943 arch_flags = M_SPARCLET;
949 case 0: arch_flags = M_68010; break;
950 case bfd_mach_m68000: arch_flags = M_UNKNOWN; *unknown = FALSE; break;
951 case bfd_mach_m68010: arch_flags = M_68010; break;
952 case bfd_mach_m68020: arch_flags = M_68020; break;
953 default: arch_flags = M_UNKNOWN; break;
961 arch_flags = M_386;
[all …]
H A Daoutx.h732 enum machine_type arch_flags; variable
734 arch_flags = M_UNKNOWN;
745 arch_flags = M_SPARC;
747 arch_flags = M_SPARCLET;
753 case 0: arch_flags = M_68010; break;
754 case bfd_mach_m68000: arch_flags = M_UNKNOWN; *unknown = FALSE; break;
755 case bfd_mach_m68010: arch_flags = M_68010; break;
756 case bfd_mach_m68020: arch_flags = M_68020; break;
757 default: arch_flags = M_UNKNOWN; break;
765 arch_flags = M_386;
[all …]
H A Daout-tic30.c809 enum machine_type arch_flags; local
811 arch_flags = M_UNKNOWN;
820 arch_flags = M_UNKNOWN;
822 if (arch_flags != M_UNKNOWN)
824 return arch_flags;
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1471 uint32_t arch_flags = arch_spec.GetFlags(); in GetSectionHeaderInfo() local
1479 arch_flags |= data.GetU32(&offset); in GetSectionHeaderInfo()
1485 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_ANY; in GetSectionHeaderInfo()
1488 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_DOUBLE; in GetSectionHeaderInfo()
1491 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_SINGLE; in GetSectionHeaderInfo()
1494 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_SOFT; in GetSectionHeaderInfo()
1497 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_OLD_64; in GetSectionHeaderInfo()
1500 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_XX; in GetSectionHeaderInfo()
1503 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_64; in GetSectionHeaderInfo()
1506 arch_flags |= lldb_private::ArchSpec::eMIPS_ABI_FP_64A; in GetSectionHeaderInfo()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()