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

1234567891011>>

/freebsd-11.0-release/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.0-release/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.0-release/contrib/llvm/tools/lldb/source/Target/
H A DUnwindAssembly.cpp19 UnwindAssembly::FindPlugin (const ArchSpec &arch) argument
27 UnwindAssemblySP assembly_profiler_ap (create_callback (arch));
34 UnwindAssembly::UnwindAssembly (const ArchSpec &arch) : argument
35 m_arch (arch)
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp96 ArchSpec arch = process->GetArchitecture(); local
99 switch (arch.GetTriple().getOS())
103 switch (arch.GetMachine())
106 reg_interface = new RegisterContextFreeBSD_arm64(arch);
109 reg_interface = new RegisterContextFreeBSD_arm(arch);
112 reg_interface = new RegisterContextFreeBSD_powerpc32(arch);
115 reg_interface = new RegisterContextFreeBSD_powerpc64(arch);
118 reg_interface = new RegisterContextFreeBSD_mips64(arch);
121 reg_interface = new RegisterContextFreeBSD_i386(arch);
124 reg_interface = new RegisterContextFreeBSD_x86_64(arch);
215 Parse(DataExtractor &data, ArchSpec &arch) argument
238 Parse(DataExtractor &data, ArchSpec &arch) argument
[all...]
H A DThreadElfCore.h64 Parse(lldb_private::DataExtractor &data, lldb_private::ArchSpec &arch);
67 GetSize(lldb_private::ArchSpec &arch) argument
69 switch(arch.GetCore())
98 Parse(lldb_private::DataExtractor &data, lldb_private::ArchSpec &arch);
101 GetSize(lldb_private::ArchSpec &arch) argument
103 switch(arch.GetCore())
/freebsd-11.0-release/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.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupArchitecture.cpp33 { LLDB_OPT_SET_1 , false, "arch" , 'a', OptionParser::eRequiredArgument, nullptr, nullptr, 0, eArgTypeArchitecture , "Specify the architecture for the target."},
49 OptionGroupArchitecture::GetArchitecture (Platform *platform, ArchSpec &arch) argument
52 arch.Clear();
54 arch.SetTriple(m_arch_str.c_str(), platform);
55 return arch.IsValid();
/freebsd-11.0-release/contrib/bmake/
H A Dmachine.sh34 # Great! Solaris keeps moving arch(1)
49 arch=`Which arch /usr/bin:/usr/ucb:$PATH`
50 MACHINE_ARCH=`$arch -s`;
60 arch=`Which arch /usr/bin:/usr/ucb:$PATH`
61 test "$arch" && machine_arch=`$arch`
92 arch*) echo $MACHINE_ARCH;;
H A Darch.c1 /* $NetBSD: arch.c,v 1.69 2016/04/06 09:57:00 gson Exp $ */
72 static char rcsid[] = "$NetBSD: arch.c,v 1.69 2016/04/06 09:57:00 gson Exp $";
77 static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94";
79 __RCSID("$NetBSD: arch.c,v 1.69 2016/04/06 09:57:00 gson 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);
789 ArchSVR4Entry(Arch *ar, char *name, size_t size, FILE *arch) argument
897 FILE * arch; /* Stream to archive */ local
1040 FILE * arch; /* Stream open to archive, positioned properly */ local
1085 FILE * arch; /* Stream open to archive */ local
[all...]
/freebsd-11.0-release/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.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSymbols.h47 const ArchSpec *arch);
/freebsd-11.0-release/sys/boot/
H A DMakefile13 .include <bsd.arch.inc.mk>
/freebsd-11.0-release/sys/arm/include/
H A Dminidump.h50 uint32_t arch; member in struct:minidumphdr
/freebsd-11.0-release/sys/xen/interface/io/
H A Dprotocols.h39 # error arch fixup needed here
/freebsd-11.0-release/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.0-release/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...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DUnwindAssembly.h25 FindPlugin (const ArchSpec &arch);
51 UnwindAssembly (const ArchSpec &arch);
H A DProcessInfo.h34 const ArchSpec &arch,
110 SetArchitecture (const ArchSpec& arch) argument
112 m_arch = arch;
/freebsd-11.0-release/contrib/ofed/libibverbs/examples/
H A Ddevice_list.c40 #include <infiniband/arch.h>
/freebsd-11.0-release/contrib/ntp/html/hints/
H A Dsolaris.xtra.patchfreq42 arch=`echo utsname+404?s | adb $kernel | cut -d: -f2`
44 if [ ! $arch = "sun4u" ]; then
/freebsd-11.0-release/contrib/binutils/ld/
H A Dldfile.h60 (const char *arch, struct lang_input_statement_struct *,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.h30 const lldb_private::ArchSpec &arch);
36 const lldb_private::ArchSpec &arch);
45 Finalize (const lldb_private::ArchSpec &arch);

Completed in 362 milliseconds

1234567891011>>