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

1234567891011>>

/freebsd-11-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-11-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-11-stable/usr.bin/xlint/
H A DMakefile.inc8 .if exists(${.CURDIR}/../arch/${MACHINE_ARCH})
9 CFLAGS+= -I${.CURDIR}/../arch/${MACHINE_ARCH}
11 CFLAGS+= -I${.CURDIR}/../arch/${MACHINE_CPUARCH}
/freebsd-11-stable/contrib/binutils/bfd/
H A Dcpu-spu.c27 BFD_ASSERT (a->arch == bfd_arch_spu);
28 switch (b->arch)
H A Darchures.c72 . bfd_arch_unknown, {* File arch not known. *}
417 . enum bfd_architecture arch;
423 . The default arch should be the first entry for an arch so that
424 . all the entries for that arch can be accessed via <<next>>. *}
702 if (((ubfd = abfd) && ubfd->arch_info->arch == bfd_arch_unknown)
703 || ((ubfd = bbfd) && ubfd->arch_info->arch == bfd_arch_unknown))
764 (bfd *abfd, enum bfd_architecture arch, unsigned long mach);
768 to @var{arch} and @var{mach}. Find the correct
775 enum bfd_architecture arch,
774 bfd_default_set_arch_mach(bfd *abfd, enum bfd_architecture arch, unsigned long mach) argument
909 enum bfd_architecture arch; local
1145 bfd_lookup_arch(enum bfd_architecture arch, unsigned long machine) argument
1179 bfd_printable_arch_mach(enum bfd_architecture arch, unsigned long machine) argument
1224 bfd_arch_mach_octets_per_byte(enum bfd_architecture arch, unsigned long mach) argument
[all...]
H A Dgen-aout.c34 char *target = "unknown", *arch = "unknown"; local
83 arch = "vax";
86 arch = "m68k";
88 if (arch[0] == '1')
92 arch = "unknown";
94 printf("#define DEFAULT_ARCH bfd_arch_%s\n\n", arch);
H A Dcpu-rs6000.c38 BFD_ASSERT (a->arch == bfd_arch_rs6000);
39 switch (b->arch)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DArchitectureSet.cpp42 for (auto arch : *this) {
43 result.append(getArchitectureName(arch));
53 for (auto arch : *this) {
54 if (arch == AK_unknown)
56 archs.emplace_back(arch);
/freebsd-11-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()) {
89 reg_interface = new RegisterInfoPOSIX_arm64(arch);
92 reg_interface = new RegisterInfoPOSIX_arm(arch);
95 reg_interface = new RegisterContextFreeBSD_powerpc32(arch);
98 reg_interface = new RegisterContextFreeBSD_powerpc64(arch);
101 reg_interface = new RegisterContextFreeBSD_mips64(arch);
104 reg_interface = new RegisterContextFreeBSD_i386(arch);
107 reg_interface = new RegisterContextFreeBSD_x86_64(arch);
261 GetSize(const lldb_private::ArchSpec &arch) argument
287 Parse(const DataExtractor &data, const ArchSpec &arch) argument
335 GetSize(const lldb_private::ArchSpec &arch) argument
356 Parse(const DataExtractor &data, const ArchSpec &arch) argument
409 GetSize(const lldb_private::ArchSpec &arch) argument
424 Parse(const DataExtractor &data, const ArchSpec &arch) argument
[all...]
H A DThreadElfCore.h24 // This is the layout in the x86-64 arch.
57 const lldb_private::ArchSpec &arch);
64 static size_t GetSize(const lldb_private::ArchSpec &arch);
78 const lldb_private::ArchSpec &arch);
85 static size_t GetSize(const lldb_private::ArchSpec &arch);
92 // This is the layout in the x86-64 arch case.
113 const lldb_private::ArchSpec &arch);
120 static size_t GetSize(const lldb_private::ArchSpec &arch);
/freebsd-11-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;;
H A Darch.c1 /* $NetBSD: arch.c,v 1.70 2017/04/16 20:49:09 riastradh Exp $ */
72 static char rcsid[] = "$NetBSD: arch.c,v 1.70 2017/04/16 20:49:09 riastradh Exp $";
77 static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94";
79 __RCSID("$NetBSD: arch.c,v 1.70 2017/04/16 20:49:09 riastradh Exp $");
85 * arch.c --
219 # define ARMAG "!<arch>\n"
576 FILE * arch; /* Stream to archive */ local
632 arch = ArchFindMember(archive, member, &sarh, "r");
634 if (arch == NULL) {
637 fclose(arch);
791 ArchSVR4Entry(Arch *ar, char *name, size_t size, FILE *arch) argument
899 FILE * arch; /* Stream to archive */ local
1055 FILE * arch; /* Stream open to archive, positioned properly */ local
1100 FILE * arch; /* Stream open to archive */ local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp40 PlatformSP PlatformOpenBSD::CreateInstance(bool force, const ArchSpec *arch) { argument
42 LLDB_LOG(log, "force = {0}, arch=({1}, {2})", force,
43 arch ? arch->GetArchitectureName() : "<null>",
44 arch ? arch->GetTriple().getTriple() : "<null>");
47 if (!create && arch && arch->IsValid()) {
48 const llvm::Triple &triple = arch->GetTriple();
58 create = !arch
126 GetSupportedArchitectureAtIndex(uint32_t idx, ArchSpec &arch) argument
202 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-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.h43 static std::unique_ptr<Architecture> Create(const ArchSpec &arch);
44 ArchitectureMips(const ArchSpec &arch) : m_arch(arch) {} argument
/freebsd-11-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-11-stable/contrib/gdb/gdb/
H A Dnto-tdep.c71 nto_map_arch_to_cputype (const char *arch) argument
73 if (!strcmp (arch, "i386") || !strcmp (arch, "x86"))
75 if (!strcmp (arch, "rs6000") || !strcmp (arch, "powerpc"))
77 if (!strcmp (arch, "mips"))
79 if (!strcmp (arch, "arm"))
81 if (!strcmp (arch, "sh"))
90 const char *arch; local
97 arch
126 const char *arch; local
[all...]
/freebsd-11-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-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp42 PlatformSP PlatformFreeBSD::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
306 GetMmapArgumentList(const ArchSpec &arch, addr_t addr, addr_t length, unsigned prot, unsigned flags, addr_t fd, addr_t offset) argument
[all...]
/freebsd-11-stable/sys/arm/include/
H A Dminidump.h50 uint32_t arch; member in struct:minidumphdr
/freebsd-11-stable/sys/xen/interface/io/
H A Dprotocols.h39 # error arch fixup needed here
/freebsd-11-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-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp40 PlatformSP PlatformNetBSD::CreateInstance(bool force, const ArchSpec *arch) { argument
42 LLDB_LOG(log, "force = {0}, arch=({1}, {2})", force,
43 arch ? arch->GetArchitectureName() : "<null>",
44 arch ? arch->GetTriple().getTriple() : "<null>");
47 if (!create && arch && arch->IsValid()) {
48 const llvm::Triple &triple = arch->GetTriple();
121 ArchSpec &arch) {
120 GetSupportedArchitectureAtIndex(uint32_t idx, ArchSpec &arch) argument
351 GetMmapArgumentList(const ArchSpec &arch, addr_t addr, addr_t length, unsigned prot, unsigned flags, addr_t fd, addr_t offset) argument
[all...]
/freebsd-11-stable/contrib/gcc/config/i386/
H A Ddriver-i386.c52 with either "arch" or "tune" as argument depending on if -march=native
75 bool arch; local
80 arch = strcmp (argv[0], "arch") == 0;
81 if (!arch && strcmp (argv[0], "tune"))
155 if (arch)
199 if (arch)
294 bool arch; local
299 arch = strcmp (argv[0], "arch")
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dar.c152 map_over_members (bfd *arch, void (*function)(bfd *), char **files, int count)
159 for (head = arch->archive_next; head; head = head->archive_next)
178 for (head = arch->archive_next; head; head = head->archive_next)
189 (!FILENAME_CMP (normalize (*files, arch), head->filename)))
592 bfd *arch;
630 arch = open_inarch (inarch_filename,
636 map_over_members (arch, print_descr, files, file_count);
640 map_over_members (arch, print_contents, files, file_count);
644 map_over_members (arch, extract_file, files, file_count);
649 delete_members (arch, file
150 map_over_members(bfd *arch, void (*function)(bfd *), char **files, int count) argument
589 bfd *arch; local
686 bfd *arch; local
1014 delete_members(bfd *arch, char **files_to_delete) argument
1085 move_members(bfd *arch, char **files_to_move) argument
1130 replace_members(bfd *arch, char **files_to_move, bfd_boolean quick) argument
1207 bfd *arch; local
[all...]

Completed in 170 milliseconds

1234567891011>>