| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | ArchSpecTest.cpp | 107 EXPECT_EQ(ArchSpec::eCore_arm_armv7f, AS.GetCore()); in TEST() 115 EXPECT_EQ(ArchSpec::eCore_ppc_ppc970, AS.GetCore()); in TEST() 125 EXPECT_EQ(ArchSpec::eCore_x86_32_i686, AS.GetCore()); in TEST() 148 EXPECT_EQ(ArchSpec::eCore_x86_64_x86_64, B.GetCore()); in TEST() 155 EXPECT_EQ(ArchSpec::eCore_x86_64_x86_64, A.GetCore()); in TEST() 230 EXPECT_EQ(ArchSpec::eCore_arm_generic, A.GetCore()); in TEST() 231 EXPECT_EQ(ArchSpec::eCore_arm_armv8l, B.GetCore()); in TEST() 248 EXPECT_EQ(ArchSpec::eCore_arm_armv8l, A.GetCore()); in TEST() 273 ASSERT_EQ(A.GetCore(), ArchSpec::eCore_uknownMach64); in TEST()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | FuncUnwinders.cpp | 255 if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 && in GetEHFrameAugmentedUnwindPlan() 256 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 && in GetEHFrameAugmentedUnwindPlan() 257 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) { in GetEHFrameAugmentedUnwindPlan() 296 if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 && in GetDebugFrameAugmentedUnwindPlan() 297 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 && in GetDebugFrameAugmentedUnwindPlan() 298 target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) { in GetDebugFrameAugmentedUnwindPlan()
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | ArchSpec.cpp | 822 if (other.GetCore() != eCore_uknownMach64) in MergeFrom() 835 other.GetCore() != ArchSpec::eCore_arm_generic) { in MergeFrom() 836 m_core = other.GetCore(); in MergeFrom() 974 !cores_match(GetCore(), rhs.GetCore(), true, exact_match)) in IsEqualTo() 1398 const ArchSpec::Core lhs_core = lhs.GetCore(); in operator <() 1399 const ArchSpec::Core rhs_core = rhs.GetCore(); in operator <() 1405 return lhs.GetCore() == rhs.GetCore(); in operator ==() 1452 if (GetCore() == ArchSpec::Core::eCore_arm_armv7m || in IsAlwaysThumbInstructions() 1455 GetCore() == ArchSpec::Core::eCore_thumbv7m || in IsAlwaysThumbInstructions() 1456 GetCore() == ArchSpec::Core::eCore_thumbv7em || in IsAlwaysThumbInstructions() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/ |
| H A D | ThreadElfCore.cpp | 250 switch (arch.GetCore()) { in GetSize() 319 switch (arch.GetCore()) { in GetSize() 387 switch (arch.GetCore()) { in GetSize()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformRemoteAppleTV.cpp | 140 const ArchSpec::Core system_core = system_arch.GetCore(); in GetSupportedArchitectures()
|
| H A D | PlatformRemoteAppleWatch.cpp | 151 const ArchSpec::Core system_core = system_arch.GetCore(); in GetSupportedArchitectures()
|
| H A D | PlatformMacOSX.cpp | 181 if (module_spec.GetArchitecture().GetCore() == in GetSharedModule()
|
| H A D | PlatformAppleSimulator.cpp | 403 module_spec.GetArchitecture().GetCore() == in ResolveExecutable() 404 resolved_module_spec.GetArchitecture().GetCore()) { in ResolveExecutable()
|
| H A D | PlatformDarwin.cpp | 488 if (host_arch.GetCore() == ArchSpec::eCore_x86_64_x86_64h) { in x86GetSupportedArchitectures() 606 const ArchSpec::Core system_core = system_arch.GetCore(); in ARMGetSupportedArchitectures()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | RegisterContextFreeBSD_mips64.cpp | 172 assert(m_target_arch.GetCore() == ArchSpec::eCore_mips64); in GetRegisterInfo()
|
| H A D | StopInfoMachException.cpp | 98 arch.GetCore() == ArchSpec::eCore_arm_arm64e; in DeterminePtrauthFailure()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | ArchSpec.h | 434 Core GetCore() const { return m_core; } in GetCore() function
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | ProcessLaunchInfo.cpp | 300 GetArchitecture().GetCore() != in ConvertArgumentsForLaunchingInShell()
|
| /llvm-project-15.0.7/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 119 ArchSpec::Core core = process->GetTarget().GetArchitecture().GetCore(); in ReadJITEntry()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/mach-core/ |
| H A D | ProcessMachCore.cpp | 559 if (arch.GetCore() == ArchSpec::eCore_x86_32_i486) { in DoLoadCore()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABIMacOSX_arm.cpp | 1429 const ArchSpec::Core system_core = arch.GetCore(); in IsArmv7kProcess()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS64/ |
| H A D | EmulateInstructionMIPS64.cpp | 94 switch (arch.GetCore()) { in EmulateInstructionMIPS64()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Disassembler/LLVMC/ |
| H A D | DisassemblerLLVMC.cpp | 1457 switch (arch.GetCore()) { in DisassemblerLLVMC()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Instruction/MIPS/ |
| H A D | EmulateInstructionMIPS.cpp | 94 switch (arch.GetCore()) { in EmulateInstructionMIPS()
|
| /llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/ |
| H A D | Host.mm | 229 arch_spec.GetCore() != ArchSpec::eCore_x86_64_x86_64h)
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 1797 ArchSpec::Core core = GetTarget().GetArchitecture().GetCore(); in SetThreadStopInfo()
|