Searched refs:arch (Results 1 - 25 of 432) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DUnwindAssembly.cpp17 UnwindAssemblySP UnwindAssembly::FindPlugin(const ArchSpec &arch) { argument
24 UnwindAssemblySP assembly_profiler_up(create_callback(arch));
31 UnwindAssembly::UnwindAssembly(const ArchSpec &arch) : m_arch(arch) {} argument
/freebsd-13-stable/sys/crypto/openssl/arm/
H A Daesv8-armx.S7 .arch armv7-a @ don't confuse not-so-latest binutils with argv8 :-)
/freebsd-13-stable/tools/tools/release/
H A Dchk_dokern.sh_and_drivers.conf31 arch=`dirname $f`
34 egrep -qw "^((pseudo-)?device|options)[[:space:]]+$x" ../sys/${arch}/conf/GENERIC || \
35 echo $x not found in $arch/GENERIC
36 sed -e'/"SMALL"/,/^else$/d' ${arch}/dokern.sh | \
38 echo "duplicate $x found in ${arch}/dokern.sh"
44 arch=`dirname $f`
50 ../sys/${arch}/conf/GENERIC || \
51 echo $x not found in $arch/GENERIC
52 grep -qw ^$x ${arch}/drivers.conf && \
53 echo "duplicate $x found in ${arch}/driver
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.nested_neg.ksh21 arch=$(uname -m)
23 if [[ "$arch" == "sparc64" ]]; then
H A Dtst.libraries.ksh20 arch=$(uname -m)
22 if [[ "$arch" == "sparc64" ]]; then
/freebsd-13-stable/contrib/byacc/package/debian/
H A Drules12 PACKAGES.arch = byacc btyacc
49 config: config-arch
50 build: build-arch
51 install: install-arch
52 binary: binary-arch
54 config-arch: $(PACKAGES.arch:%=config-%-stamp)
55 build-arch: $(PACKAGES.arch:%=build-%-stamp)
56 install-arch
[all...]
/freebsd-13-stable/contrib/mandoc/
H A Darch.c1 /* $Id: arch.c,v 1.15 2019/05/21 07:52:00 schwarze Exp $ */
24 arch_valid(const char *arch, enum mandoc_os os) argument
51 if (strcmp(*arch_p, arch) == 0)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DArchitectureSet.cpp43 for (auto arch : *this) {
44 result.append(std::string(getArchitectureName(arch)));
54 for (auto arch : *this) {
55 if (arch == AK_unknown)
57 archs.emplace_back(arch);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp82 ArchSpec arch = process->GetArchitecture(); local
85 switch (arch.GetTriple().getOS()) {
87 switch (arch.GetMachine()) {
91 reg_interface = new RegisterInfoPOSIX_arm(arch);
94 reg_interface = new RegisterContextFreeBSD_powerpc32(arch);
97 reg_interface = new RegisterContextFreeBSD_powerpc64(arch);
100 reg_interface = new RegisterContextFreeBSD_mips64(arch);
103 reg_interface = new RegisterContextFreeBSD_i386(arch);
106 reg_interface = new RegisterContextFreeBSD_x86_64(arch);
115 switch (arch
256 GetSize(const lldb_private::ArchSpec &arch) argument
282 Parse(const DataExtractor &data, const ArchSpec &arch) argument
330 GetSize(const lldb_private::ArchSpec &arch) argument
351 Parse(const DataExtractor &data, const ArchSpec &arch) argument
404 GetSize(const lldb_private::ArchSpec &arch) argument
419 Parse(const DataExtractor &data, const ArchSpec &arch) argument
[all...]
/freebsd-13-stable/share/doc/legal/
H A DMakefile11 .include <bsd.arch.inc.mk>
/freebsd-13-stable/contrib/bmake/
H A Dmachine.sh34 # Great! Solaris keeps moving arch(1)
55 arch=`Which arch /usr/bin:/usr/ucb:$PATH`
56 MACHINE_ARCH=`$arch -s`;
66 arch=`Which arch /usr/bin:/usr/ucb:$PATH`
67 test "$arch" && machine_arch=`$arch`
98 arch*) echo $MACHINE_ARCH;;
/freebsd-13-stable/sys/contrib/openzfs/scripts/
H A Ddkms.postbuild7 a) arch=$OPTARG ;;
16 if [ -z "${arch}" ] || [ -z "${kver}" ] || [ -z "${pkgname}" ] || \
18 echo "Usage: $PROG -a <arch> -k <kver> -n <pkgname>" \
25 "${tree}/${pkgname}/${pkgver}/${kver}/${arch}/"
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp42 PlatformSP PlatformOpenBSD::CreateInstance(bool force, const ArchSpec *arch) { argument
44 LLDB_LOG(log, "force = {0}, arch=({1}, {2})", force,
45 arch ? arch->GetArchitectureName() : "<null>",
46 arch ? arch->GetTriple().getTriple() : "<null>");
49 if (!create && arch && arch->IsValid()) {
50 const llvm::Triple &triple = arch->GetTriple();
60 create = !arch
128 GetSupportedArchitectureAtIndex(uint32_t idx, ArchSpec &arch) argument
204 GetMmapArgumentList(const ArchSpec &arch, addr_t addr, addr_t length, unsigned prot, unsigned flags, addr_t fd, addr_t offset) argument
[all...]
H A DPlatformOpenBSD.h28 static lldb::PlatformSP CreateInstance(bool force, const ArchSpec *arch);
45 bool GetSupportedArchitectureAtIndex(uint32_t idx, ArchSpec &arch) override;
51 MmapArgList GetMmapArgumentList(const ArchSpec &arch, lldb::addr_t addr,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupArchitecture.cpp21 {LLDB_OPT_SET_1, false, "arch", 'a', OptionParser::eRequiredArgument,
31 ArchSpec &arch) {
32 arch = Platform::GetAugmentedArchSpec(platform, m_arch_str);
33 return arch.IsValid();
30 GetArchitecture(Platform *platform, ArchSpec &arch) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.h42 static std::unique_ptr<Architecture> Create(const ArchSpec &arch);
43 ArchitectureMips(const ArchSpec &arch) : m_arch(arch) {} argument
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_007_pos.ksh68 for arch in "i386" "sparc"; do
69 log_must cp $tst_dir/${arch}.orig_history.txt $import_dir
70 orig_cmds_f=$import_dir/${arch}.orig_history.txt
72 orig_cmds_f1=$import_dir/${arch}.orig_history_1.txt
75 log_must cp $tst_dir/${arch}.migratedpool.DAT.Z $import_dir
76 log_must uncompress -f $import_dir/${arch}.migratedpool.DAT.Z
/freebsd-13-stable/tests/sys/cddl/zfs/tests/history/
H A Dhistory_007_pos.ksh86 for arch in "i386" "sparc"; do
87 log_must $CP $tst_dir/${arch}.orig_history.txt $import_dir
88 orig_cmds_f=$import_dir/${arch}.orig_history.txt
90 orig_cmds_f1=$import_dir/${arch}.orig_history_1.txt
93 log_must $CP $tst_dir/${arch}.migratedpool.DAT.Z $import_dir
94 log_must $UNCOMPRESS $import_dir/${arch}.migratedpool.DAT.Z
/freebsd-13-stable/contrib/llvm-project/lld/lib/Core/
H A DReader.cpp71 Reference::KindArch arch,
73 KindEntry entry = { ns, arch, array };
79 Reference::KindArch &arch,
86 arch = entry.arch;
95 Reference::KindArch arch,
101 if (entry.arch != arch)
70 addKindTable(Reference::KindNamespace ns, Reference::KindArch arch, const KindStrings array[]) argument
77 referenceKindFromString(StringRef inputStr, Reference::KindNamespace &ns, Reference::KindArch &arch, Reference::KindValue &value) const argument
94 referenceKindToString(Reference::KindNamespace ns, Reference::KindArch arch, Reference::KindValue value, StringRef &str) const argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp44 PlatformSP PlatformFreeBSD::CreateInstance(bool force, const ArchSpec *arch) { argument
46 LLDB_LOG(log, "force = {0}, arch=({1}, {2})", force,
47 arch ? arch->GetArchitectureName() : "<null>",
48 arch ? arch->GetTriple().getTriple() : "<null>");
51 if (!create && arch && arch->IsValid()) {
52 const llvm::Triple &triple = arch->GetTriple();
62 create = !arch
130 GetSupportedArchitectureAtIndex(uint32_t idx, ArchSpec &arch) argument
308 GetMmapArgumentList(const ArchSpec &arch, addr_t addr, addr_t length, unsigned prot, unsigned flags, addr_t fd, addr_t offset) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.h20 EmulateInstructionPPC64(const ArchSpec &arch);
30 static EmulateInstruction *CreateInstance(const ArchSpec &arch,
51 bool SetTargetTriple(const ArchSpec &arch) override;
61 bool TestEmulation(Stream *out_stream, ArchSpec &arch,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp42 PlatformSP PlatformNetBSD::CreateInstance(bool force, const ArchSpec *arch) { argument
44 LLDB_LOG(log, "force = {0}, arch=({1}, {2})", force,
45 arch ? arch->GetArchitectureName() : "<null>",
46 arch ? arch->GetTriple().getTriple() : "<null>");
49 if (!create && arch && arch->IsValid()) {
50 const llvm::Triple &triple = arch->GetTriple();
123 ArchSpec &arch) {
122 GetSupportedArchitectureAtIndex(uint32_t idx, ArchSpec &arch) argument
353 GetMmapArgumentList(const ArchSpec &arch, addr_t addr, addr_t length, unsigned prot, unsigned flags, addr_t fd, addr_t offset) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A D__clang_openmp_device_functions.h18 device = {arch(nvptx, nvptx64)}, implementation = {extension(match_any)})
/freebsd-13-stable/sys/arm/include/
H A Dminidump.h52 uint32_t arch; member in struct:minidumphdr
/freebsd-13-stable/sys/xen/interface/io/
H A Dprotocols.h39 # error arch fixup needed here

Completed in 245 milliseconds

1234567891011>>