Home
last modified time | relevance | path

Searched refs:cpu_subtype (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/
H A DDNBArch.cpp38 bool DNBArchProtocol::SetArchitecture(uint32_t cpu_type, uint32_t cpu_subtype) { in SetArchitecture() argument
40 g_current_cpu_subtype = cpu_subtype; in SetArchitecture()
45 cpu_type, cpu_subtype, result); in SetArchitecture()
H A DDNBArch.h55 static bool SetArchitecture(uint32_t cpu_type, uint32_t cpu_subtype = 0);
/openbsd-src/gnu/llvm/lldb/source/Host/macosx/objcxx/
H A DHost.mm1144 cpu_type_t cpu_subtype = arch_spec.GetMachOCPUSubType();
1149 cpu_subtype != 0 &&
1150 cpu_subtype != static_cast<cpu_subtype_t>(UINT32_MAX) &&
1151 cpu_subtype != CPU_SUBTYPE_X86_64_H;
1161 &attr, 1, &cpu_type, &cpu_subtype, &ocount),
1166 "cpu_type = {1:x}, cpu_subtype = {1:x}, count => {2} )",
1167 error, cpu_type, cpu_subtype, ocount);
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DArchSpec.h293 uint32_t cpu_subtype);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1255 const uint32_t cpu_subtype = proc_arch.GetMachOCPUSubType(); in CreateProcessInfoResponse_DebugServerStyle() local
1256 if (cpu_subtype != 0) in CreateProcessInfoResponse_DebugServerStyle()
1257 response.Printf("cpusubtype:%" PRIx32 ";", cpu_subtype); in CreateProcessInfoResponse_DebugServerStyle()
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h102 const char *path, cpu_type_t cpu_type, cpu_subtype_t cpu_subtype,
H A DMachProcess.mm3370 const char *path, cpu_type_t cpu_type, cpu_subtype_t cpu_subtype,
3420 if (cpu_subtype != 0) {
3428 &attr, 1, &cpu_type, &cpu_subtype, &ocount));
3433 "0x%8.8x, cpu_subtype = 0x%8.8x, count => %llu )",
3434 cpu_type, cpu_subtype, (uint64_t)ocount);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp773 const uint32_t cpu_subtype = packet.GetU32(&offset); in DumpPacket() local
775 cpu_mask, cpu_type, cpu_subtype); in DumpPacket()
/openbsd-src/gnu/llvm/llvm/lib/TargetParser/
H A DHost.cpp1308 switch (hostInfo.cpu_subtype) { in getHostCPUName()