Searched refs:arch (Results 276 - 300 of 411) sorted by relevance

<<11121314151617

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DArchSpec.cpp688 ParseMachCPUDashSubtypeTriple (const char *triple_cstr, ArchSpec &arch) argument
702 if (arch.SetArchitecture (eArchTypeMachO, cpu, sub))
711 arch.GetTriple().setVendorName(vendor_str);
717 arch.GetTriple().setOSName(vendor_os.substr(vendor_start_pos));
721 arch.GetTriple().setOSName(vendor_os.substr(vendor_start_pos, dash_pos - vendor_start_pos));
794 // If we got an arch only, then default the vendor, os, environment
908 // Fall back onto setting the machine type if the arch by name failed...
H A DModule.cpp238 const ArchSpec& arch,
244 m_arch (arch),
1308 // unknown. But since the matching arch might already be more specific
1696 const ArchSpec &arch = module_ref.GetArchitecture(); local
1697 if (arch.IsValid())
1699 if (!m_arch.IsCompatibleMatch(arch))
237 Module(const FileSpec& file_spec, const ArchSpec& arch, const ConstString *object_name, lldb::offset_t object_offset, const TimeValue *object_mod_time_ptr) argument
H A DFormatEntity.cpp152 ENTRY ( "arch" , TargetArch , CString ),
1312 ArchSpec arch (target.GetArchitecture ());
1313 llvm::Triple::OSType ostype = arch.IsValid() ? arch.GetTriple().getOS() : llvm::Triple::UnknownOS;
1483 const ArchSpec &arch = target->GetArchitecture (); local
1484 if (arch.IsValid())
1486 s.PutCString (arch.GetArchitectureName());
/freebsd-11.0-release/contrib/gperf/
H A Dconfigure1170 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
1286 /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
1287 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
/freebsd-11.0-release/contrib/gperf/doc/
H A Dconfigure1173 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
1289 /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
1290 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
/freebsd-11.0-release/contrib/binutils/bfd/
H A Decoff.c196 enum bfd_architecture arch;
204 arch = bfd_arch_mips;
211 arch = bfd_arch_mips;
218 arch = bfd_arch_mips;
223 arch = bfd_arch_alpha;
228 arch = bfd_arch_obscure;
233 return bfd_default_set_arch_mach (abfd, arch, mach);
1862 enum bfd_architecture arch,
1865 bfd_default_set_arch_mach (abfd, arch, machine);
1866 return arch
195 enum bfd_architecture arch; local
1854 _bfd_ecoff_set_arch_mach(bfd *abfd, enum bfd_architecture arch, unsigned long machine) argument
[all...]
/freebsd-11.0-release/contrib/binutils/opcodes/
H A DMakefile.am469 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) $(archfile) $(opcfile) \
486 $(MAKE) run-cgen arch=ip2k prefix=ip2k options= \
492 $(MAKE) run-cgen arch=m32c prefix=m32c options= \
517 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst \
524 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= \
530 $(MAKE) run-cgen arch=frv prefix=frv options= \
536 $(MAKE) run-cgen arch=mep prefix=mep options= \
542 $(MAKE) run-cgen arch=mt prefix=mt options= \
549 $(MAKE) run-cgen arch=openrisc prefix=openrisc options= \
557 $(MAKE) run-cgen arch
[all...]
H A DMakefile.in1017 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) $(archfile) $(opcfile) \
1034 $(MAKE) run-cgen arch=ip2k prefix=ip2k options= \
1040 $(MAKE) run-cgen arch=m32c prefix=m32c options= \
1064 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst \
1071 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= \
1077 $(MAKE) run-cgen arch=frv prefix=frv options= \
1083 $(MAKE) run-cgen arch=mep prefix=mep options= \
1089 $(MAKE) run-cgen arch=mt prefix=mt options= \
1096 $(MAKE) run-cgen arch=openrisc prefix=openrisc options= \
1104 $(MAKE) run-cgen arch
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h138 const ArchSpec &arch,
140 ProcessInfo (name, arch, pid),
3114 /// @param[in] arch
3126 GetModuleSpec(const FileSpec& module_file_spec, const ArchSpec& arch, ModuleSpec &module_spec);
137 ProcessInstanceInfo(const char *name, const ArchSpec &arch, lldb::pid_t pid) argument
H A DTarget.h70 SetDefaultArchitecture (const ArchSpec& arch);
668 SetDefaultArchitecture (const ArchSpec &arch);
1596 /// Construct with optional file and arch.
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/
H A DABIMacOSX_arm64.cpp217 ABIMacOSX_arm64::CreateInstance (const ArchSpec &arch) argument
220 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch();
221 const llvm::Triple::VendorType vendor_type = arch.GetTriple().getVendor();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/
H A DABISysV_arm64.cpp213 ABISysV_arm64::CreateInstance (const ArchSpec &arch) argument
216 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch();
217 const llvm::Triple::VendorType vendor_type = arch.GetTriple().getVendor();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp2015 ArchSpec arch; local
2016 GetArchitecture(arch);
2127 if (arch.IsValid())
2129 if (arch.GetMachine() == llvm::Triple::arm)
2158 else if (arch.GetMachine() == llvm::Triple::aarch64)
2182 if (arch.GetMachine() == llvm::Triple::arm)
2214 const llvm::Triple::ArchType llvm_arch = arch.GetMachine();
3206 ObjectFileELF::GetArchitecture (ArchSpec &arch) argument
3238 arch = m_arch_spec;
/freebsd-11.0-release/contrib/sqlite3/
H A Ddepcomp652 -arch)
/freebsd-11.0-release/contrib/ofed/libmlx4/src/
H A Dmlx4.h40 #include <infiniband/arch.h>
/freebsd-11.0-release/contrib/openpam/
H A Ddepcomp652 -arch)
/freebsd-11.0-release/contrib/mdocml/
H A Dmdoc_html.c357 if (meta->arch)
358 bufcat_fmt(h, " (%s)", meta->arch);
487 if (NULL == meta->arch)
491 meta->vol, meta->arch);
/freebsd-11.0-release/contrib/gdb/gdb/
H A Ddwarf2loc.c209 struct gdbarch *arch = get_frame_arch (frame); local
/freebsd-11.0-release/contrib/file/
H A Ddepcomp652 -arch)
/freebsd-11.0-release/crypto/openssl/crypto/bn/asm/
H A Darmv4-gf2m.pl210 .arch armv7-a
/freebsd-11.0-release/contrib/ntp/sntp/libevent/build-aux/
H A Ddepcomp652 -arch)
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpoint.cpp130 Breakpoint::RemoveInvalidLocations (const ArchSpec &arch) argument
132 m_locations.RemoveInvalidLocations(arch);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/
H A DABISysV_mips64.cpp142 ABISysV_mips64::CreateInstance (const ArchSpec &arch) argument
145 const llvm::Triple::ArchType arch_type = arch.GetTriple().getArch();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/
H A DABISysV_ppc.cpp179 ABISysV_ppc::CreateInstance (const ArchSpec &arch) argument
182 if (arch.GetTriple().getArch() == llvm::Triple::ppc)
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/
H A DABISysV_ppc64.cpp180 ABISysV_ppc64::CreateInstance (const ArchSpec &arch) argument
183 if (arch.GetTriple().getArch() == llvm::Triple::ppc64)

Completed in 523 milliseconds

<<11121314151617