/llvm-project/clang/include/clang/Basic/ |
H A D | ObjCRuntime.h | 45 iOS, enumerator 89 case iOS: return true; in isNonFragile() 131 case iOS: in isGNUFamily() 156 case iOS: return true; in allowsARC() 174 case iOS: return getVersion() >= VersionTuple(5); in hasNativeARC() 207 case iOS: in shouldUseARCFunctionsForRetainRelease() 249 case iOS: in shouldUseRuntimeFunctionsForAlloc() 271 case iOS: in shouldUseRuntimeFunctionForCombinedAllocInit() 287 case iOS: in hasOptimizedSetter() 318 case iOS: return getVersion() >= VersionTuple(9); in hasSubscripting() [all …]
|
H A D | TargetCXXABI.h | 92 case iOS: in isSupportedCXXABI() 172 case iOS: in areMemberFunctionsAligned() 249 case iOS: // old iOS compilers did not follow this rule in canKeyFunctionBeInline() 288 case iOS: in getTailPaddingUseRules()
|
H A D | TargetCXXABI.def | 52 /// The iOS ABI is a partial implementation of the ARM ABI. 54 /// in the compilers that iOS was launched with. 56 /// Essentially, the iOS ABI includes the ARM changes to: 61 ITANIUM_CXXABI(iOS, "ios") 63 /// The iOS 64-bit and macOS 64-bit ARM ABI follows ARM's published 64-bit 67 /// WatchOS is a modernisation of the iOS ABI, which roughly means it's
|
/llvm-project/clang/test/SemaObjC/ |
H A D | property-deprecated-warning.m | 11 …rtialPtarget' has been marked as being introduced in iOS 5.0 here, but the deployment target is iO… 26 …rtialTarget:' has been marked as being introduced in iOS 5.0 here, but the deployment target is iO… 42 …l_dep_target' has been marked as being introduced in iOS 5.0 here, but the deployment target is iO… 43 …_dep_target:' has been marked as being introduced in iOS 5.0 here, but the deployment target is iO… 54 …elf dep_target]]; // expected-warning {{'dep_target' is deprecated: first deprecated in iOS 3.0}} \ 55 … // expected-warning {{'setDep_target:' is deprecated: first deprecated in iOS 3.0}} 60 …p_target' is only available on iOS 5.0 or newer}} expected-warning@+2 {{'setPartial_dep_target:' i… 78 … setTarget: (id)0]; // expected-warning {{'setTarget:' is deprecated: first deprecated in iOS 3.0}} 79 …elf dep_target]]; // expected-warning {{'dep_target' is deprecated: first deprecated in iOS 3.0}} \ 80 … // expected-warning {{'setDep_target:' is deprecated: first deprecated in iOS 3.0}} [all …]
|
H A D | override-opt-prop-availability.m | 27 …13.0))); // expected-warning 2 {{method introduced after the protocol method it implements on iOS}} 29 …ed-warning {{method deprecated before the protocol method it implements on iOS (12.0 vs. 10.0)}} e… 33 …ios, unavailable))); // expected-warning {{method cannot be unavailable on iOS when the protocol m… 39 …int i = x.myProp; // expected-warning {{'myProp' is only available on iOS 13.0 or newer}} expect… 40 …x.myProp = i; // expected-warning {{'setMyProp:' is only available on iOS 13.0 or newer}} ex… 41 int i2 = x.depProp; // expected-warning {{'depProp' is deprecated: first deprecated in iOS 10.0}} 42 int i3 = x.obsProp; // expected-error {{'obsProp' is unavailable: obsoleted in iOS 10.0}} 46 …int i = x.myProp; // expected-warning {{'myProp' is only available on iOS 12.0 or newer}} expected…
|
H A D | unguarded-availability-category-protocol-use.m | 17 @interface B (Cat) <Prot> // expected-error {{'Prot' is unavailable: not available on iOS}}
|
H A D | unguarded-availability-new.m | 102 …// expected-warning@-6 {{'new_int' is only available on iOS 12 or newer}} expected-note@-6 {{annot… 126 // expected-warning@-6 {{'currentlyAvailable' is only available on iOS 11 or newer}} 142 // expected-warning@-6 {{'willBeAvailabile' is only available on iOS 12 or newer}}
|
/llvm-project/compiler-rt/lib/builtins/Darwin-excludes/ |
H A D | README.TXT | 8 supported target OS. Meaning if minimum deployment target is iOS 6, all builtins 10 that this is per-architecture. Since iOS 6 doesn't support arm64, when supporting 11 iOS 6, the minimum deployment target for arm64 binaries is iOS 7.
|
/llvm-project/lld/test/MachO/invalid/ |
H A D | incompatible-arch.s | 15 # RUN: not %no-arg-lld -dylib -arch arm64 -platform_version iOS 9.0 11.0 \ 17 # DYLIB-PLAT: {{.*}}out.dylib has platform macOS, which is different from target platform iOS 27 # RUN: not %no-arg-lld %t/test_x86.o -lSystem -arch x86_64 -platform_version iOS 10.0 15.0 \ 29 # OBJ-PLAT: {{.*}}test_x86.o has platform macOS, which is different from target platform iOS 46 # CROSS-SIM: {{.*}}test_x86_ios.o has platform iOS, which is different from target platform watchOS… 49 # CROSS-SIM2: {{.*}}test_x86_ios_sim.o has platform iOS Simulator, which is different from target p…
|
/llvm-project/llvm/unittests/ExecutionEngine/Orc/ |
H A D | MachOPlatformTest.cpp | 27 auto iOS = MachOPlatform::HeaderOptions::BuildVersionOpts::fromTriple( in TEST() local 29 EXPECT_TRUE(iOS); in TEST() 30 EXPECT_EQ(iOS->Platform, MachO::PLATFORM_IOS); in TEST()
|
/llvm-project/clang/test/Sema/ |
H A D | attr-availability-ios.c | 5 void f2(int) __attribute__((availability(iOS,introduced=2.0,deprecated=3.0))); // expected-note {{'… 11 void f6(int) __attribute__((availability(iOS,introduced=2.0)));
|
H A D | attr-availability-visionos.c | 25 if (__builtin_available(iOS 16.1, *)) in use2()
|
H A D | attr-availability-iosmac-infer-from-macos.c | 11 __attribute__((availability(iOS, introduced = 11.0)));
|
/llvm-project/clang/test/Index/ |
H A D | complete-available.m | 7 if (__builtin_available(iOS 8, *)) { 13 // CHECK: {TypedText iOS} (40)
|
/llvm-project/clang/lib/Basic/ |
H A D | ObjCRuntime.cpp | 36 case ObjCRuntime::iOS: out << "ios"; break; in operator <<() 69 kind = ObjCRuntime::iOS; in tryParse()
|
/llvm-project/lldb/docs/use/ |
H A D | links.rst | 60 iOS apps.
|
/llvm-project/compiler-rt/test/tsan/ |
H A D | CMakeLists.txt | 71 # iOS and iOS simulator test suites 74 # variable to select which iOS device or simulator to use, e.g.:
|
/llvm-project/compiler-rt/test/asan/ |
H A D | CMakeLists.txt | 86 # iOS and iOS simulator test suites 89 # variable to select which iOS device or simulator to use, e.g.:
|
/llvm-project/llvm/test/Object/ARM/ |
H A D | macho-data-in-code.test | 1 RUN: llvm-objdump --triple=thumbv7-apple-iOS -d %p/../Inputs/macho-data-in-code.macho-thumbv7 --mac…
|
/llvm-project/compiler-rt/cmake/ |
H A D | base-config-ix.cmake | 157 # which doesn't come with the iOS SDK. 161 message(WARNING "iOS SDK not found! Building compiler-rt without iOS support.") 164 option(COMPILER_RT_ENABLE_IOS "Enable building for iOS" ${COMPILER_RT_ENABLE_IOS_DEFAULT})
|
/llvm-project/llvm/test/CodeGen/ARM/ |
H A D | none-macho.ll | 60 ; need the 2 register-save areas employed by iOS. 83 ; *vfp variants used for ARMv6 iOS.
|
/llvm-project/compiler-rt/test/builtins/ |
H A D | CMakeLists.txt | 111 # TODO: Add support for running tests on iOS and iOS simulator.
|
/llvm-project/lldb/source/Utility/ |
H A D | LLDBAssert.cpp | 41 if (__builtin_available(macos 10.12, iOS 10, tvOS 10, watchOS 3, *)) { in lldb_assert()
|
/llvm-project/lld/test/MachO/ |
H A D | platform-version.s | 25 # RUN: -platform_version iOS 1 2.a \ 64 # RUN: -platform_version iOS 14.0 15.0 \
|
/llvm-project/lldb/docs/ |
H A D | index.rst | 14 Objective-C and C++ on the desktop and iOS devices and simulator. 73 * iOS, tvOS, and watchOS simulator debugging on i386, x86_64 and AArch64 74 * iOS, tvOS, and watchOS device debugging on ARM and AArch64
|