| /llvm-project-15.0.7/lldb/source/Host/macosx/cfcpp/ |
| H A D | CFCBundle.cpp | 44 CFBundleRef bundle = get(); in GetPath() local 45 if (bundle) { in GetPath() 58 CFBundleRef bundle = get(); in GetIdentifier() local 59 if (bundle != NULL) in GetIdentifier() 60 return ::CFBundleGetIdentifier(bundle); in GetIdentifier() 65 CFBundleRef bundle = get(); in GetValueForInfoDictionaryKey() local 66 if (bundle != NULL) in GetValueForInfoDictionaryKey() 67 return ::CFBundleGetValueForInfoDictionaryKey(bundle, key); in GetValueForInfoDictionaryKey() 72 CFBundleRef bundle = get(); in CopyExecutableURL() local 73 if (bundle != NULL) in CopyExecutableURL() [all …]
|
| /llvm-project-15.0.7/lld/test/MachO/ |
| H A D | bundle-loader.s | 10 # RUN: %lld -lSystem -bundle -bundle_loader %t/main -o %t/bundle.bundle %t/3.o %t/mylib.dylib 11 ## Check bundle.bundle to ensure the `my_func` symbol is from executable 12 # RUN: llvm-nm -m %t/bundle.bundle | FileCheck %s --check-prefix BUNDLE 14 # RUN: llvm-objdump --macho --lazy-bind %t/bundle.bundle | FileCheck %s --check-prefix BUNDLE-OBJ 18 # RUN: %lld -lSystem -bundle -bundle_loader %t/main -o %t/bundle2.bundle %t/3.o %t/2.o 19 ## Check bundle.bundle to ensure the `my_func` symbol is not from executable 20 # RUN: llvm-nm -m %t/bundle2.bundle | FileCheck %s --check-prefix BUNDLE2 23 # Test that bundle_loader can only be used with MachO bundle output. 24 # RUN: not %lld -lSystem -bundle_loader %t/main -o %t/bundle3.bundle 2>&1 | FileCheck %s --check-pr… 25 # ERROR: -bundle_loader can only be used with MachO bundle output
|
| H A D | install-name.s | 10 # RUN: %no-fatal-warnings-lld --warn-dylib-install-name -bundle -o %t.bundle %t.o \ 12 # RUN: llvm-objdump --macho --all-headers %t.bundle \ 15 # RUN: %lld -bundle -o %t.bundle %t.o -install_name foo 2>&1 16 # RUN: llvm-objdump --macho --all-headers %t.bundle \ 19 # RUN: %lld -bundle --warn-dylib-install-name --no-warn-dylib-install-name \ 20 # RUN: -o %t.bundle %t.o -install_name foo 2>&1 21 # RUN: llvm-objdump --macho --all-headers %t.bundle \
|
| H A D | load-commands.s | 6 # RUN: %lld -bundle -o %t/bundle %t/test.o 37 # RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=NDYLIB 41 ## Check for the presence / absence of load commands for the bundle. 42 # RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=COMMON 43 # RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=BUNDLE 47 # RUN: llvm-objdump --macho --all-headers %t/bundle | FileCheck %s --check-prefix=NBUNDLE
|
| H A D | adhoc-codesign.s | 13 …s, arm64-ios-simulator) x (default, -adhoc_codesign, -no_adhoc-codesign) x (execute, dylib, bundle) 19 # RUN: %lld -arch x86_64 -bundle -o %t/out %t/foo-x86_64-macos.o 26 # RUN: %lld -arch x86_64 -bundle -adhoc_codesign -o %t/out %t/foo-x86_64-macos.o 33 # RUN: %lld -arch x86_64 -bundle -no_adhoc_codesign -o %t/out %t/foo-x86_64-macos.o 41 # RUN: %lld -arch arm64 -bundle -o %t/out %t/foo-arm64-macos.o 48 # RUN: %lld -arch arm64 -bundle -adhoc_codesign -o %t/out %t/foo-arm64-macos.o 55 # RUN: %lld -arch arm64 -bundle -no_adhoc_codesign -o %t/out %t/foo-arm64-macos.o 63 # RUN: %no-arg-lld -arch arm64 -platform_version ios-simulator 14.0 15.0 -bundle -o %t/out %t/foo-… 70 # RUN: %no-arg-lld -arch arm64 -platform_version ios-simulator 14.0 15.0 -bundle -adhoc_codesign -… 77 # RUN: %no-arg-lld -arch arm64 -platform_version ios-simulator 14.0 15.0 -bundle -no_adhoc_codesig…
|
| H A D | mark-dead-strippable-dylib.s | 10 # RUN: %no-fatal-warnings-lld -bundle -o %t.bundle %t.o \ 13 # RUN: llvm-objdump --macho --private-header %t.bundle \
|
| H A D | flat-namespace-interposable.s | 13 # RUN: %lld -lSystem -bundle -flat_namespace -o %t/foo.bundle %t/foo.o 18 # RUN: llvm-objdump --macho --bind --lazy-bind --weak-bind %t/foo.bundle | \
|
| H A D | load-command-sequence.s | 7 # RUN: %lld -bundle -o %t/bundle %t/test.o -lSystem 13 # RUN: llvm-objdump --macho --all-headers %t/bundle | \
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/ |
| H A D | CFBundle.cpp | 57 CFBundleRef bundle = get(); in GetIdentifier() local 58 if (bundle != NULL) in GetIdentifier() 59 return ::CFBundleGetIdentifier(bundle); in GetIdentifier() 64 CFBundleRef bundle = get(); in CopyExecutableURL() local 65 if (bundle != NULL) in CopyExecutableURL() 66 return CFBundleCopyExecutableURL(bundle); in CopyExecutableURL()
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Darwin/ |
| H A D | address-range-limit.mm | 3 …angxx_asan %s -Wno-deprecated-declarations -flat_namespace -bundle -undefined suppress -o %t.bundle 18 std::string path = std::string(argv[0]) + ".bundle"; 22 fprintf(stderr, "Could not load bundle.\n"); 26 NSModule handle = NSLinkModule(im, "a.bundle", 0); 28 fprintf(stderr, "Could not load bundle.\n");
|
| /llvm-project-15.0.7/lldb/test/API/macosx/find-dsym/bundle-with-dot-in-filename/ |
| H A D | Makefile | 1 EXE := find-bundle-with-dots-in-fn 8 $(CC) $(CFLAGS) -dynamiclib -o com.apple.sbd $(SRCDIR)/bundle.c 16 $(CC) $(CFLAGS) -o find-bundle-with-dots-in-fn $(SRCDIR)/main.c 19 …ple.sbd.dSYM com.apple.sbd.xpc com.apple.sbd.xpc.dSYM find-bundle-with-dots-in-fn find-bundle-with…
|
| /llvm-project-15.0.7/clang/test/Driver/ |
| H A D | hip-device-compile.hip | 5 // the output should not be bundled, except --gpu-bundle-output 10 // RUN: -o a.bc -x hip --cuda-gpu-arch=gfx900 --no-gpu-bundle-output \ 18 // RUN: -o a.bc -x hip --cuda-gpu-arch=gfx900 --no-gpu-bundle-output \ 21 // RUN: %S/Inputs/hip_multiple_inputs/a.cu --gpu-bundle-output \ 26 // RUN: -o a.ll -x hip --cuda-gpu-arch=gfx900 --no-gpu-bundle-output \ 34 // RUN: -o a.ll -x hip --cuda-gpu-arch=gfx900 --no-gpu-bundle-output \ 37 // RUN: %S/Inputs/hip_multiple_inputs/a.cu --gpu-bundle-output \ 42 // RUN: -o a.s -x hip --cuda-gpu-arch=gfx900 --no-gpu-bundle-output \ 53 // RUN: %S/Inputs/hip_multiple_inputs/a.cu --gpu-bundle-output \ 84 // the output should be bundled except --no-gpu-bundle-output is [all …]
|
| H A D | hip-output-file-name.hip | 13 // is used to bundle the final output. 40 // Output bundled PPE for two GPUs for device only compilation with --gpu-bundle-output. 42 // RUN: --cuda-gpu-arch=gfx803 --cuda-gpu-arch=gfx900 %s --gpu-bundle-output \ 45 // Output unbundled PPE for two GPUs for device only compilation with --no-gpu-bundle-output. 47 // RUN: --cuda-gpu-arch=gfx803 --cuda-gpu-arch=gfx900 %s --no-gpu-bundle-output \ 72 // Output bundled PPE for two GPUs for device only compilation with --gpu-bundle-output. 74 // RUN: --cuda-gpu-arch=gfx803 --cuda-gpu-arch=gfx900 --gpu-bundle-output %s \
|
| H A D | hip-link-bc-to-bc.hip | 22 // RUN: touch %T/bundle.bc 26 // RUN: %T/bundle.bc -L%T -lhipbundle \ 29 …ost-x86_64-unknown-linux-gnu,hip-amdgcn-amd-amdhsa-gfx906" "-input={{.*}}bundle.bc" "-output=[[HOS… 34 // ARCHIVE: "{{.*}}llvm-link" "-o" "bundle-hip-amdgcn-amd-amdhsa-gfx906.bc" "[[DEV2]]" "[[AR]]"
|
| H A D | hip-code-object-version.hip | 3 // Check bundle ID for code object v2. 19 // Check bundle ID for code object v3. 41 // Check bundle ID for code object version 4. 52 // Check bundle ID for code object version 5. 63 // Check bundle ID for code object version default
|
| /llvm-project-15.0.7/lldb/test/API/macosx/find-dsym/deep-bundle/ |
| H A D | Makefile | 1 EXE := deep-bundle 21 $(CC) $(CFLAGS) -o deep-bundle $(SRCDIR)/main.c -F. -framework MyFramework 24 …rm -rf a.out a.out.dSYM deep-bundle deep-bundle.dSYM MyFramework.framework MyFramework.framework.d…
|
| /llvm-project-15.0.7/llvm/test/Verifier/ |
| H A D | ptrauth-operand-bundles.ll | 11 ; CHECK: Ptrauth bundle key operand must be an i32 constant 15 ; CHECK: Ptrauth bundle key operand must be an i32 constant 19 ; CHECK: Ptrauth bundle discriminator operand must be an i64 23 ; CHECK: Direct call cannot have a ptrauth bundle
|
| /llvm-project-15.0.7/llvm/utils/textmate/ |
| H A D | README | 1 This directory contains a "bundle" for doing syntax highlighting of TableGen 3 by the TextMate "C" bundle. Currently, keywords, comments, and strings are 6 To install this bundle, copy it to the per user area:
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-rc/Inputs/ |
| H A D | memoryflags-stringtable.rc | 1 // Flags set on the first stringtable of a bundle gets set 17 // Flags set on a later stringtable as part of an earlier bundle 24 // While the same flag on a new bundle does have effect.
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | ClangOffloadBundler.rst | 27 A bundled code object may also be used to bundle just the offloaded code 73 concatenated with comments that have a magic string and bundle entry ID in 124 .. _clang-bundle-entry-id: 130 :ref:`clang-bundled-code-object-layout`) has a bundle entry ID that indicates 137 <bundle-entry-id> ::== <offload-kind> "-" <target-triple> [ "-" <target-id> ] 158 ``clang-offload-bundler`` is used to bundle code objects as 183 Each entry of a bundled code object must have a different bundle entry ID. There 202 It is also used as part of the bundle entry ID to identify the code object. See 203 :ref:`clang-bundle-entry-id`. 271 utility and contains a collection of bundled device binaries where each bundle [all …]
|
| /llvm-project-15.0.7/llvm/tools/dsymutil/ |
| H A D | CFBundle.cpp | 95 if (CFBundleRef bundle = get()) in GetIdentifier() local 96 return ::CFBundleGetIdentifier(bundle); in GetIdentifier() 102 if (CFBundleRef bundle = get()) in GetValueForInfoDictionaryKey() local 103 return ::CFBundleGetValueForInfoDictionaryKey(bundle, key); in GetValueForInfoDictionaryKey()
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/clang-tools-extra/clangd/xpc/framework/ |
| H A D | BUILD.gn | 5 # bundle and the clangd.xpc bundle within it in a single action. 11 # clangd.xpc bundle 81 # .framework bundle symlinks:
|
| /llvm-project-15.0.7/lldb/cmake/modules/ |
| H A D | LLDBFramework.cmake | 5 # Configure liblldb as a framework bundle 48 # Affects the layout of the framework bundle (default is macOS layout). 62 # Apart from this one, CMake creates all required symlinks in the framework bundle. 71 # At configuration time, collect headers for the framework bundle and copy them 99 # At build time, copy the staged headers into the framework bundle (and do
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/ |
| H A D | errors.test | 8 ERR1: error: {{.*}}.dSYM: no objects found in dSYM bundle 10 ERR2: error: {{.*}}.dSYM: expected directory 'Contents/Resources/DWARF' in dSYM bundle
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/ |
| H A D | nacl-mask.s | 26 # bundle. 63 # bundle. 131 # bundle. 188 # next bundle. 197 # check that 2 additional nops are inserted, to align it to the next bundle. 226 # Test that call + branch delay is aligned at bundle end. Test that mask is
|