Home
last modified time | relevance | path

Searched full:darwin (Results 1 – 25 of 833) sorted by relevance

12345678910>>...34

/openbsd-src/gnu/gcc/gcc/config/rs6000/
H A Dt-darwin1 LIB2FUNCS_EXTRA = $(srcdir)/config/rs6000/darwin-tramp.asm \
3 $(srcdir)/config/darwin-64.c \
4 $(srcdir)/config/rs6000/darwin-ldouble.c \
5 $(srcdir)/config/rs6000/darwin-world.asm
8 $(srcdir)/config/rs6000/darwin-fpsave.asm \
9 $(srcdir)/config/rs6000/darwin-vecsave.asm
23 # Export the _xlq* symbols from darwin-ldouble.c.
26 SHLIB_VERPFX = $(srcdir)/config/rs6000/darwin-libgcc
28 LIB2ADDEH += $(srcdir)/config/rs6000/darwin-fallback.c
30 darwin-fpsave.o: $(srcdir)/config/rs6000/darwin-asm.h
[all …]
H A Ddarwin.h1 /* Target definitions for PowerPC running Darwin (Mac OS X).
24 #define TARGET_VERSION fprintf (stderr, " (Darwin/PowerPC)");
26 /* The "Darwin ABI" is mostly like AIX, but with some key differences. */
55 /* Translate config/rs6000/darwin.opt to config/darwin.h. */
72 /* The Darwin ABI always includes AltiVec, can't be (validly) turned \
100 /* Make -m64 imply -maltivec. Darwin's 64-bit ABI includes \
133 /* Darwin has 128-bit long double support in libc in 10.4 and later.
228 Currently on Darwin, always use inline stores. */
233 /* Darwin uses a function call if everything needs to be saved/restored. */
275 /* Not really used for Darwin? */
[all …]
H A Dhost-ppc64-darwin.c1 /* ppc64-darwin host-specific hook definitions.
26 #include "config/host-darwin.h"
28 /* Darwin doesn't do anything special for ppc64 hosts; this file exists just
29 to include config/host-darwin.h. */
H A Dx-darwin1 host-ppc-darwin.o : $(srcdir)/config/rs6000/host-darwin.c \
3 config/host-darwin.h $(DIAGNOSTIC_H)
H A Dx-darwin641 host-ppc64-darwin.o : $(srcdir)/config/rs6000/host-ppc64-darwin.c \
3 config/host-darwin.h $(DIAGNOSTIC_H)
/openbsd-src/gnu/gcc/gcc/config/
H A Dt-darwin1 darwin.o: $(srcdir)/config/darwin.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
4 reload.h function.h $(GGC_H) langhooks.h $(TARGET_H) $(TM_P_H) gt-darwin.h \
5 config/darwin-sections.def
6 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/config/darwin.c
8 darwin-c.o: $(srcdir)/config/darwin-c.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
11 …$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/config/darwin-c.c $(PREPROCESSOR_DEFI…
13 gt-darwin.h : s-gtype ; @true
18 $(T)crt3$(objext): $(srcdir)/config/darwin-crt3.c $(GCC_PASSES) \
22 -c $(srcdir)/config/darwin-crt3.c -o $(T)crt3$(objext)
24 # Use unwind-dw2-fde-darwin
[all …]
H A Ddarwin.h1 /* Target definitions for Darwin (Mac OS X) systems.
28 running Darwin, which is the kernel for Mac OS X. Darwin is
35 the only supported Darwin targets are PowerPC and x86. */
37 /* One of Darwin's NeXT legacies is the Mach-O format, which is partly
73 pre-installed on Darwin systems. */
104 in gcc/config/{i386,rs6000}/darwin.h, should contain any additional
214 them to darwin_cpp_builtins in darwin-c.c. */
224 /* In general, random Darwin linker flags should go into LINK_SPEC
340 because in a future version of Darwin the EH frame information may
379 /* The native Darwin linker doesn't necessarily place files in the order
[all …]
H A Dx-darwin1 host-darwin.o : $(srcdir)/config/host-darwin.c $(CONFIG_H) $(SYSTEM_H) \
2 coretypes.h toplev.h config/host-darwin.h
/openbsd-src/gnu/usr.bin/gcc/gcc/config/
H A Dt-darwin1 darwin.o: $(srcdir)/config/darwin.c $(CONFIG_H) $(SYSTEM_H) $(RTL_BASE_H) \
4 function.h $(GGC_H) $(TM_P_H) gt-darwin.h
7 darwin-c.o: $(srcdir)/config/darwin-c.c $(CONFIG_H) $(SYSTEM_H) \
11 gt-darwin.h : s-gtype ; @true
14 $(T)crt2$(objext): $(srcdir)/config/darwin-crt2.c $(GCC_PASSES) \
17 -c $(srcdir)/config/darwin-crt2.c -o $(T)crt2$(objext)
19 # Use unwind-dw2-fde-darwin
20 LIB2ADDEH = $(srcdir)/unwind-dw2.c $(srcdir)/unwind-dw2-fde-darwin.c \
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/llvm/tools/llvm-libtool-darwin/
H A DBUILD.gn6 deps = [ ":llvm-libtool-darwin" ]
7 source = "llvm-libtool-darwin"
12 # //:llvm-libtool-darwin depends on this symlink target, see comment in
15 deps = [ ":llvm-libtool-darwin" ]
21 executable("llvm-libtool-darwin") {
28 sources = [ "llvm-libtool-darwin.cpp" ]
/openbsd-src/gnu/llvm/clang/lib/Driver/ToolChains/
H A DDarwin.h1 //===--- Darwin.h - Darwin ToolChain Implementations ------------*- C++ -*-===//
29 namespace darwin {
52 : MachOTool("darwin::Assembler", "assembler", TC) {} in Assembler()
70 Linker(const ToolChain &TC) : MachOTool("darwin::Linker", "linker", TC) {} in Linker()
84 : MachOTool("darwin::StaticLibTool", "static-lib-linker", TC) {} in StaticLibTool()
97 Lipo(const ToolChain &TC) : MachOTool("darwin::Lipo", "lipo", TC) {} in Lipo()
110 : MachOTool("darwin::Dsymutil", "dsymutil", TC) {} in Dsymutil()
124 : MachOTool("darwin::VerifyDebug", "dwarfdump", TC) {} in VerifyDebug()
133 } // end namespace darwin
146 mutable std::unique_ptr<tools::darwin::Lipo> Lipo;
[all …]
H A DDarwin.cpp1 //===--- Darwin.cpp - Darwin Tool and ToolChain Implementations -*- C++ -*-===//
9 #include "Darwin.h"
41 llvm::Triple::ArchType darwin::getArchTypeForMachOArchName(StringRef Str) { in getArchTypeForMachOArchName()
43 // archs which Darwin doesn't use. in getArchTypeForMachOArchName()
51 // This code must be kept in sync with Clang's Darwin specific argument in getArchTypeForMachOArchName()
77 void darwin::setTripleTypeForMachOArchName(llvm::Triple &T, StringRef Str) { in setTripleTypeForMachOArchName()
92 void darwin::Assembler::ConstructJob(Compilation &C, const JobAction &JA, in ConstructJob()
111 // If -fno-integrated-as is used add -Q to the darwin assembler driver to make in ConstructJob()
113 // Applicable to darwin11+ and Xcode 4+. darwin<10 lacked integrated-as. in ConstructJob()
160 void darwin::MachOTool::anchor() {} in anchor()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Config-Perl-V/t/
H A D25_plv5162.t62 archname => "darwin-thread-multi-2level",
68 …myuname => "darwin jackson.apple.com 13.0 darwin kernel version 13.0.0: tue jul 30 20:52:2…
130 osname=darwin, osvers=13.0, archname=darwin-thread-multi-2level
131 …uname='darwin jackson.apple.com 13.0 darwin kernel version 13.0.0: tue jul 30 20:52:22 pdt 2013; r…
171 Built under darwin
179 /Library/Perl/5.16/darwin-thread-multi-2level
181 /Network/Library/Perl/5.16/darwin-thread-multi-2level
183 /Library/Perl/Updates/5.16.2/darwin-thread-multi-2level
185 /System/Library/Perl/5.16/darwin-thread-multi-2level
187 /System/Library/Perl/Extras/5.16/darwin-thread-multi-2level
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-libtool-darwin.rst1 llvm-libtool-darwin - LLVM tool for creating libraries for Darwin
4 .. program:: llvm-libtool-darwin
9 :program:`llvm-libtool-darwin` [*options*] *<input files>*
14 :program:`llvm-libtool-darwin` is a tool for creating static and dynamic
15 libraries for Darwin.
22 :program:`llvm-libtool-darwin` supports the following options:
98 :program:`llvm-libtool-darwin` exits with a non-zero exit code if there is an error.
H A Dllvm-size.rst51 Mach-O files in ``darwin`` format.
56 options are ``berkeley`` (the default), ``sysv`` and ``darwin``.
103 ``darwin`` format only affects Mach-O input files. If an input of a different
105 format. When producing ``darwin`` format, the tool displays information about
110 $ llvm-size --format=darwin macho.obj macho2.obj
130 Equivalent to :option:`--format` with a value of ``darwin``.
/openbsd-src/gnu/usr.bin/gcc/gcc/config/rs6000/
H A Ddarwin.h1 /* Target definitions for PowerPC running Darwin (Mac OS X).
23 #define TARGET_VERSION fprintf (stderr, " (Darwin/PowerPC)");
25 /* The "Darwin ABI" is mostly like AIX, but with some key differences. */
41 /* The Darwin ABI always includes AltiVec, can't be (validly) turned
91 Currently on Darwin, always use inline stores. */
115 /* Not really used for Darwin? */
177 /* Since Darwin doesn't do TOCs, stub this out. */
182 consistency with other Darwin architectures. */
213 /* Darwin word-aligns FP doubles but doubleword-aligns 64-bit ints. */
220 /* Darwin increases natural record alignment to doubleword if the first
[all …]
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Dhost-i386-darwin.c1 /* i386-darwin host-specific hook definitions.
26 #include "config/host-darwin.h"
28 /* Darwin doesn't do anything special for x86 hosts; this file exists just
29 to include config/host-darwin.h. */
H A Dx-darwin1 host-i386-darwin.o : $(srcdir)/config/i386/host-i386-darwin.c \
3 config/host-darwin.h
H A Ddarwin.h1 /* Target definitions for x86 running Darwin.
26 #define TARGET_VERSION fprintf (stderr, " (i686 Darwin)");
88 /* Use the following macro for any Darwin/x86-specific command-line option
93 /* The Darwin assembler mostly follows AT&T syntax. */
172 /* Darwin profiling -- call mcount. */
190 /* Darwin on x86_64 uses dwarf-2 by default. */
194 /* Darwin uses the standard DWARF register numbers but the default
/openbsd-src/gnu/llvm/lldb/tools/darwin-debug/
H A Ddarwin-debug.cpp1 //===-- darwin-debug.cpp ----------------------------------------*- C++ -*-===//
9 // Darwin launch helper
15 // Although it uses posix_spawn(), it uses Darwin specific posix spawn
20 // Since it uses darwin specific flags this code should not be compiled
59 " darwin-debug -- posix spawn a process that is stopped at the entry " in usage()
64 " darwin-debug --unix-socket=<SOCKET> [--arch=<ARCH>] " in usage()
69 " darwin-debug will exec itself into a child process <PROGRAM> that " in usage()
73 " darwin specific posix_spawn flags that allows exec only (no fork), " in usage()
87 " darwin-debug --arch=i386 -- /bin/ls -al /tmp\n"); in usage()
110 // Here we are using a darwin specific feature that allows us to exec only in posix_spawn_for_debug()
[all …]
/openbsd-src/gnu/usr.bin/texinfo/intl/
H A Dconfig.charset34 # ASCII, ANSI_X3.4-1968 glibc solaris freebsd darwin
35 # ISO-8859-1 Y glibc aix hpux irix osf solaris freebsd darwin
36 # ISO-8859-2 Y glibc aix hpux irix osf solaris freebsd darwin
38 # ISO-8859-4 Y osf solaris freebsd darwin
39 # ISO-8859-5 Y glibc aix hpux irix osf solaris freebsd darwin
47 # KOI8-R Y glibc solaris freebsd darwin
48 # KOI8-U Y glibc freebsd darwin
61 # CP866 freebsd darwin dos
74 # CP1251 glibc solaris darwin woe32
81 # GB2312 Y glibc aix hpux irix solaris freebsd darwin
[all …]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbplatform.py11 windows, linux, macosx, darwin, ios, tvos, watchos, bridgeos, darwin_all, \
22 darwin: ["darwin"],
27 darwin_all: ["macosx", "darwin"] + __darwin_embedded + __darwin_simulators,
/openbsd-src/gnu/llvm/llvm/tools/llvm-libtool-darwin/
H A DCMakeLists.txt11 add_llvm_tool(llvm-libtool-darwin
12 llvm-libtool-darwin.cpp
16 add_llvm_tool_symlink(libtool llvm-libtool-darwin)
/openbsd-src/gnu/usr.bin/perl/hints/
H A Ddarwin.sh2 # Darwin (Mac OS) hints
16 # Pretend that Darwin doesn't know about those system calls in Tiger
17 # (10.4/darwin 8) and earlier [perl #24122]
73 archname='darwin';
104 # At least on Darwin 1.3.x:
182 # From http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/mk/platform/Darwin.mk
276 # Perl bundles do not expect two-level namespace, added in Darwin 1.4.
277 # But starting from perl 5.8.1/Darwin 7 the default is the two-level.
347 # macOS 10.12 (darwin 16.0.0) deprecated syscall().
364 # Darwin'
[all...]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/i386/
H A Ddarwin.h1 /* Target definitions for x86 running Darwin.
26 #define TARGET_VERSION fprintf (stderr, " (i386 Darwin)");
44 /* The Darwin assembler mostly follows AT&T syntax. */
80 /* Darwin as doesn't do ".quad". */
109 /* Darwin profiling -- call mcount. */

12345678910>>...34