reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
  307             GetArchitecture().GetCore() !=
tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
 1548     const ArchSpec::Core system_core = arch.GetCore();
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
 1136   switch (arch.GetCore()) {
tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
   92   switch (arch.GetCore()) {
tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
   92   switch (arch.GetCore()) {
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  118   ArchSpec::Core core = process->GetTarget().GetArchitecture().GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
  486   if (host_arch.GetCore() == ArchSpec::eCore_x86_64_x86_64h) {
  543   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp
  307     if (module_spec.GetArchitecture().GetCore() ==
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.cpp
  141   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleTV.cpp
  144   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.cpp
  155   const ArchSpec::Core system_core = system_arch.GetCore();
tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
  110   assert(m_target_arch.GetCore() == ArchSpec::eCore_mips64);
tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
  267   switch (arch.GetCore()) {
  336   switch (arch.GetCore()) {
  404   switch (arch.GetCore()) {
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1889                 ArchSpec::Core core = GetTarget().GetArchitecture().GetCore();
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  494   if (arch.GetCore() == ArchSpec::eCore_x86_32_i486) {
tools/lldb/source/Symbol/FuncUnwinders.cpp
  253   if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 &&
  254       target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 &&
  255       target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) {
  294   if (target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_32_i386 &&
  295       target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64 &&
  296       target.GetArchitecture().GetCore() != ArchSpec::eCore_x86_64_x86_64h) {
tools/lldb/source/Utility/ArchSpec.cpp
  866     if (other.GetCore() != eCore_uknownMach64)
  878       IsCompatibleMatch(other) && GetCore() == ArchSpec::eCore_arm_generic &&
  879       other.GetCore() != ArchSpec::eCore_arm_generic) {
  880     m_core = other.GetCore();
 1014   const ArchSpec::Core lhs_core = GetCore();
 1015   const ArchSpec::Core rhs_core = rhs.GetCore();
 1388   const ArchSpec::Core lhs_core = lhs.GetCore();
 1389   const ArchSpec::Core rhs_core = rhs.GetCore();
 1395   return lhs.GetCore() == rhs.GetCore();
 1395   return lhs.GetCore() == rhs.GetCore();
 1446     if (GetCore() == ArchSpec::Core::eCore_arm_armv7m ||
 1447         GetCore() == ArchSpec::Core::eCore_arm_armv7em ||
 1448         GetCore() == ArchSpec::Core::eCore_arm_armv6m ||
 1449         GetCore() == ArchSpec::Core::eCore_thumbv7m ||
 1450         GetCore() == ArchSpec::Core::eCore_thumbv7em ||
 1451         GetCore() == ArchSpec::Core::eCore_thumbv6m) {
tools/lldb/unittests/Utility/ArchSpecTest.cpp
  106   EXPECT_EQ(ArchSpec::eCore_arm_armv7f, AS.GetCore());
  114   EXPECT_EQ(ArchSpec::eCore_ppc_ppc970, AS.GetCore());
  124   EXPECT_EQ(ArchSpec::eCore_x86_32_i686, AS.GetCore());
  147     EXPECT_EQ(ArchSpec::eCore_x86_64_x86_64, B.GetCore());
  154     EXPECT_EQ(ArchSpec::eCore_x86_64_x86_64, A.GetCore());
  237   ASSERT_EQ(A.GetCore(), ArchSpec::eCore_uknownMach64);