Skip to content

Commit f43bb5c

Browse files
committed
---
yaml --- r: 244735 b: refs/heads/tensorflow c: d6501e2 h: refs/heads/master i: 244733: d100247 244731: f088faf 244727: 948cd7f 244719: 26b5c73 244703: 1d266ff 244671: 1ed4227 244607: 09a6826 244479: e7b660c 244223: 8926594 243711: 6072ae5
1 parent 6752947 commit f43bb5c

File tree

28 files changed

+79
-233
lines changed

28 files changed

+79
-233
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-04-25-a: 22f738a831d43aff2b9c9773bcb65
819819
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2018-05-08-a: 7d98cc16689baba5c8a3b90a9329bdcc1a12b4e9
820820
refs/heads/cherr42: a566ad54b073c2c56ac0a705d0a5bed9743135a5
821821
"refs/heads/codable_test_comment_fix": fc8f6824f7f347e1e8db55bff62db385c5728b5a
822-
refs/heads/tensorflow: b0389af92e1168dc56c4dfdf47b5071fa2f961c0
822+
refs/heads/tensorflow: d6501e2e902e8abd2df857cb411236401b707261
823823
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-11-a: 8126fd7a652e2f70ad6d76505239e34fb2ef3e1a
824824
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-12-a: b3fd3dd84df6717f2e2e9df58c6d7e99fed57086
825825
refs/tags/swift-4.1-DEVELOPMENT-SNAPSHOT-2018-05-13-a: 71135119579039dc321c5f65d870050fe36efda2

branches/tensorflow/lib/SILOptimizer/Transforms/PerformanceInliner.cpp

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
#define DEBUG_TYPE "sil-inliner"
1414
#include "swift/AST/Module.h"
15-
#include "swift/SIL/MemAccessUtils.h"
1615
#include "swift/SIL/OptimizationRemark.h"
1716
#include "swift/SILOptimizer/Analysis/SideEffectAnalysis.h"
1817
#include "swift/SILOptimizer/PassManager/Passes.h"
@@ -101,11 +100,6 @@ class SILPerformanceInliner {
101100
/// specialization for a call.
102101
GenericSpecializationBenefit = RemovedCallBenefit + 300,
103102

104-
/// The benefit of inlining an exclusivity-containing callee.
105-
/// The exclusivity needs to be: dynamic,
106-
/// has no nested conflict and addresses known storage
107-
ExclusivityBenefit = RemovedCallBenefit + 300,
108-
109103
/// The benefit of inlining class methods with -Osize.
110104
/// We only inline very small class methods with -Osize.
111105
OSizeClassMethodBenefit = 5,
@@ -114,8 +108,8 @@ class SILPerformanceInliner {
114108
/// increasing the code size.
115109
TrivialFunctionThreshold = 18,
116110

117-
/// Configuration for the "soft" caller block limit. When changing, make
118-
/// sure you update BlockLimitMaxIntNumerator.
111+
/// Configuration for the "soft" caller block limit. When changing, make sure
112+
/// you update BlockLimitMaxIntNumerator.
119113
BlockLimitDenominator = 3000,
120114

121115
/// Computations with BlockLimitDenominator will overflow with numerators
@@ -304,18 +298,9 @@ bool SILPerformanceInliner::isProfitableToInline(
304298
SILBasicBlock *CalleeEntry = &Callee->front();
305299
DominanceOrder domOrder(CalleeEntry, DT, Callee->size());
306300

307-
// We don't want to blow up code-size
308-
// We will only inline if *ALL* dynamic accesses are
309-
// known and have no nested conflict
310-
bool AllAccessesBeneficialToInline = true;
311-
312301
// Calculate the inlining cost of the callee.
313302
int CalleeCost = 0;
314303
int Benefit = 0;
315-
// We don’t know if we want to update the benefit with
316-
// the exclusivity heuristic or not. We can *only* do that
317-
// if AllAccessesBeneficialToInline is true
318-
int ExclusivityBenefitWeight = 0;
319304

320305
SubstitutionMap CalleeSubstMap = AI.getSubstitutionMap();
321306

@@ -407,21 +392,6 @@ bool SILPerformanceInliner::isProfitableToInline(
407392
} else if (auto *BI = dyn_cast<BuiltinInst>(&I)) {
408393
if (BI->getBuiltinInfo().ID == BuiltinValueKind::OnFastPath)
409394
BlockW.updateBenefit(Benefit, FastPathBuiltinBenefit);
410-
} else if (auto *BAI = dyn_cast<BeginAccessInst>(&I)) {
411-
if (BAI->getEnforcement() == SILAccessEnforcement::Dynamic) {
412-
// The access is dynamic and has no nested conflict
413-
// See if the storage location is considered by
414-
// access enforcement optimizations
415-
AccessedStorage storage =
416-
findAccessedStorageNonNested(BAI->getSource());
417-
if (BAI->hasNoNestedConflict() &&
418-
(storage.isUniquelyIdentified() ||
419-
storage.getKind() == AccessedStorage::Class)) {
420-
BlockW.updateBenefit(ExclusivityBenefitWeight, ExclusivityBenefit);
421-
} else {
422-
AllAccessesBeneficialToInline = false;
423-
}
424-
}
425395
}
426396
}
427397
// Don't count costs in blocks which are dead after inlining.
@@ -437,10 +407,6 @@ bool SILPerformanceInliner::isProfitableToInline(
437407
}
438408
}
439409

440-
if (AllAccessesBeneficialToInline) {
441-
Benefit = std::max(Benefit, ExclusivityBenefitWeight);
442-
}
443-
444410
if (AI.getFunction()->isThunk()) {
445411
// Only inline trivial functions into thunks (which will not increase the
446412
// code size).

branches/tensorflow/stdlib/public/SDK/ARKit/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ add_swift_library(swiftARKit ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK_OVE
77
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
88
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
99
TARGET_SDKS IOS IOS_SIMULATOR
10-
SWIFT_MODULE_DEPENDS_IOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreImage CoreMedia Dispatch Foundation GLKit ObjectiveC QuartzCore SceneKit simd SpriteKit UIKit # auto-updated
10+
SWIFT_MODULE_DEPENDS_IOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreMedia Dispatch Foundation GLKit ObjectiveC QuartzCore SceneKit simd SpriteKit UIKit # auto-updated
1111
FRAMEWORK_DEPENDS_WEAK ARKit
1212

1313
DEPLOYMENT_VERSION_IOS ${SWIFTLIB_DEPLOYMENT_VERSION_ARKIT_IOS}

branches/tensorflow/stdlib/public/SDK/AVFoundation/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ add_swift_library(swiftAVFoundation ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_
1313
TARGET_SDKS OSX IOS IOS_SIMULATOR TVOS TVOS_SIMULATOR
1414
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
1515
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
16-
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreAudio CoreData CoreGraphics CoreImage CoreMedia Dispatch Foundation IOKit ObjectiveC QuartzCore simd XPC # auto-updated
16+
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreAudio CoreData CoreGraphics CoreMedia Dispatch Foundation IOKit ObjectiveC QuartzCore simd XPC # auto-updated
1717
SWIFT_MODULE_DEPENDS_IOS Darwin CoreAudio CoreGraphics CoreMedia Dispatch Foundation ObjectiveC QuartzCore simd # auto-updated
1818
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreAudio CoreGraphics CoreMedia Dispatch Foundation ObjectiveC QuartzCore simd # auto-updated
1919
FRAMEWORK_DEPENDS AVFoundation

branches/tensorflow/stdlib/public/SDK/AppKit/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ add_swift_library(swiftAppKit ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK_OV
1212
SWIFT_COMPILE_FLAGS ${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS} -swift-version 4
1313
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
1414
TARGET_SDKS OSX
15-
SWIFT_MODULE_DEPENDS_OSX Darwin CoreData CoreGraphics CoreImage Dispatch Foundation IOKit ObjectiveC QuartzCore XPC # auto-updated
15+
SWIFT_MODULE_DEPENDS_OSX Darwin CoreData CoreGraphics Dispatch Foundation IOKit ObjectiveC QuartzCore XPC # auto-updated
1616
FRAMEWORK_DEPENDS AppKit
1717

1818
DEPLOYMENT_VERSION_OSX ${SWIFTLIB_DEPLOYMENT_VERSION_APPKIT_OSX}

branches/tensorflow/stdlib/public/SDK/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if(SWIFT_BUILD_STATIC_SDK_OVERLAY)
88
list(APPEND SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES STATIC)
99
endif()
1010

11-
set(all_overlays "Accelerate;AppKit;ARKit;AssetsLibrary;AVFoundation;CallKit;CloudKit;Contacts;CoreAudio;CoreData;CoreFoundation;CoreGraphics;CoreImage;CoreLocation;CoreMedia;CryptoTokenKit;Dispatch;Foundation;GameplayKit;GLKit;HomeKit;IOKit;Intents;MapKit;MediaPlayer;Metal;MetalKit;ModelIO;NaturalLanguage;Network;ObjectiveC;OpenCL;os;Photos;QuartzCore;SafariServices;SceneKit;simd;SpriteKit;UIKit;Vision;WatchKit;XCTest;XPC")
11+
set(all_overlays "Accelerate;AppKit;ARKit;AssetsLibrary;AVFoundation;CallKit;CloudKit;Contacts;CoreAudio;CoreData;CoreFoundation;CoreGraphics;CoreLocation;CoreMedia;CryptoTokenKit;Dispatch;Foundation;GameplayKit;GLKit;HomeKit;IOKit;Intents;MapKit;MediaPlayer;Metal;MetalKit;ModelIO;NaturalLanguage;Network;ObjectiveC;OpenCL;os;Photos;QuartzCore;SafariServices;SceneKit;simd;SpriteKit;UIKit;Vision;WatchKit;XCTest;XPC")
1212

1313
if(DEFINED SWIFT_OVERLAY_TARGETS)
1414
set(overlays_to_build ${SWIFT_OVERLAY_TARGETS})

branches/tensorflow/stdlib/public/SDK/CoreImage/CMakeLists.txt

Lines changed: 0 additions & 19 deletions
This file was deleted.

branches/tensorflow/stdlib/public/SDK/CoreImage/CoreImage.swift

Lines changed: 0 additions & 60 deletions
This file was deleted.

branches/tensorflow/stdlib/public/SDK/CoreMedia/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ add_swift_library(swiftCoreMedia ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK
88
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
99
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
1010
TARGET_SDKS OSX IOS IOS_SIMULATOR TVOS TVOS_SIMULATOR
11-
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreAudio CoreData CoreGraphics CoreImage Dispatch Foundation IOKit Metal ObjectiveC QuartzCore XPC # auto-updated
11+
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreAudio CoreData CoreGraphics Dispatch Foundation IOKit Metal ObjectiveC QuartzCore XPC # auto-updated
1212
SWIFT_MODULE_DEPENDS_IOS Darwin CoreAudio CoreGraphics Dispatch Foundation Metal ObjectiveC # auto-updated
1313
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreAudio CoreGraphics Dispatch Foundation Metal ObjectiveC # auto-updated
1414
FRAMEWORK_DEPENDS CoreMedia

branches/tensorflow/stdlib/public/SDK/GLKit/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ add_swift_library(swiftGLKit ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK_OVE
77
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
88
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
99
TARGET_SDKS OSX IOS IOS_SIMULATOR TVOS TVOS_SIMULATOR
10-
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreFoundation CoreGraphics CoreImage Dispatch Foundation IOKit ModelIO ObjectiveC QuartzCore simd XPC # auto-updated
11-
SWIFT_MODULE_DEPENDS_IOS Darwin CoreFoundation CoreGraphics CoreImage Dispatch Foundation ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
10+
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreFoundation CoreGraphics Dispatch Foundation IOKit ModelIO ObjectiveC QuartzCore simd XPC # auto-updated
11+
SWIFT_MODULE_DEPENDS_IOS Darwin CoreFoundation CoreGraphics Dispatch Foundation ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
1212
os
13-
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreFoundation CoreGraphics CoreImage Dispatch Foundation ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
13+
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreFoundation CoreGraphics Dispatch Foundation ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
1414
FRAMEWORK_DEPENDS GLKit
1515

1616
DEPLOYMENT_VERSION_OSX ${SWIFTLIB_DEPLOYMENT_VERSION_GLKIT_OSX}

branches/tensorflow/stdlib/public/SDK/GameplayKit/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ add_swift_library(swiftGameplayKit ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_S
77
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
88
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
99
TARGET_SDKS OSX IOS IOS_SIMULATOR TVOS TVOS_SIMULATOR
10-
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreGraphics CoreImage Dispatch Foundation GLKit IOKit ObjectiveC QuartzCore SceneKit simd SpriteKit XPC # auto-updated
11-
SWIFT_MODULE_DEPENDS_IOS Darwin CoreAudio CoreGraphics CoreImage CoreMedia Dispatch Foundation GLKit ObjectiveC os QuartzCore SceneKit simd SpriteKit UIKit # auto-updated
12-
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreGraphics CoreImage Dispatch Foundation GLKit ObjectiveC QuartzCore SceneKit simd SpriteKit UIKit # auto-updated
10+
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreGraphics Dispatch Foundation GLKit IOKit ObjectiveC QuartzCore SceneKit simd SpriteKit XPC # auto-updated
11+
SWIFT_MODULE_DEPENDS_IOS Darwin CoreAudio CoreGraphics CoreMedia Dispatch Foundation GLKit ObjectiveC os QuartzCore SceneKit simd SpriteKit UIKit # auto-updated
12+
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreGraphics Dispatch Foundation GLKit ObjectiveC QuartzCore SceneKit simd SpriteKit UIKit # auto-updated
1313
FRAMEWORK_DEPENDS_WEAK GameplayKit
1414

1515
DEPLOYMENT_VERSION_OSX ${SWIFTLIB_DEPLOYMENT_VERSION_GAMEPLAYKIT_OSX}

branches/tensorflow/stdlib/public/SDK/HomeKit/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ add_swift_library(swiftHomeKit ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK_O
77
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
88
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
99
TARGET_SDKS IOS IOS_SIMULATOR TVOS TVOS_SIMULATOR WATCHOS WATCHOS_SIMULATOR
10-
SWIFT_MODULE_DEPENDS_IOS Darwin CoreFoundation CoreGraphics CoreImage Dispatch Foundation ObjectiveC QuartzCore UIKit os # auto-updated
11-
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreFoundation CoreGraphics CoreImage Dispatch Foundation ObjectiveC QuartzCore UIKit # auto-updated
10+
SWIFT_MODULE_DEPENDS_IOS Darwin CoreFoundation CoreGraphics Dispatch Foundation ObjectiveC QuartzCore UIKit os # auto-updated
11+
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreFoundation CoreGraphics Dispatch Foundation ObjectiveC QuartzCore UIKit # auto-updated
1212
SWIFT_MODULE_DEPENDS_WATCHOS Darwin CoreFoundation CoreGraphics Dispatch Foundation ObjectiveC # auto-updated
1313
UIKit # required in some configurations but not found by tool
1414
FRAMEWORK_DEPENDS_WEAK HomeKit

branches/tensorflow/stdlib/public/SDK/MapKit/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ add_swift_library(swiftMapKit ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK_OV
66

77
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
88
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
9-
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreGraphics CoreImage CoreLocation Dispatch Foundation IOKit ObjectiveC QuartzCore XPC # auto-updated
10-
SWIFT_MODULE_DEPENDS_IOS Darwin CoreGraphics CoreImage CoreLocation Dispatch Foundation ObjectiveC os QuartzCore UIKit # auto-updated
11-
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreGraphics CoreImage CoreLocation Dispatch Foundation ObjectiveC QuartzCore UIKit # auto-updated
9+
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreGraphics CoreLocation Dispatch Foundation IOKit ObjectiveC QuartzCore XPC # auto-updated
10+
SWIFT_MODULE_DEPENDS_IOS Darwin CoreGraphics CoreLocation Dispatch Foundation ObjectiveC os QuartzCore UIKit # auto-updated
11+
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreGraphics CoreLocation Dispatch Foundation ObjectiveC QuartzCore UIKit # auto-updated
1212
SWIFT_MODULE_DEPENDS_WATCHOS Darwin CoreGraphics CoreLocation Dispatch Foundation ObjectiveC # auto-updated
1313
UIKit # required in some configurations but not found by tool
1414
FRAMEWORK_DEPENDS MapKit

branches/tensorflow/stdlib/public/SDK/MediaPlayer/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ add_swift_library(swiftMediaPlayer ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_S
88
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
99
TARGET_SDKS IOS IOS_SIMULATOR
1010

11-
SWIFT_MODULE_DEPENDS_IOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreImage CoreMedia Dispatch Foundation Metal ObjectiveC QuartzCore simd UIKit os CoreData # auto-updated
11+
SWIFT_MODULE_DEPENDS_IOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreMedia Dispatch Foundation Metal ObjectiveC QuartzCore simd UIKit os CoreData # auto-updated
1212
FRAMEWORK_DEPENDS_WEAK MediaPlayer
1313

1414
DEPLOYMENT_VERSION_IOS ${SWIFTLIB_DEPLOYMENT_VERSION_MEDIAPLAYER_IOS}

branches/tensorflow/stdlib/public/SDK/MetalKit/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ add_swift_library(swiftMetalKit ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK_
77
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
88
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
99
TARGET_SDKS OSX IOS IOS_SIMULATOR TVOS TVOS_SIMULATOR
10-
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreFoundation CoreGraphics CoreImage Dispatch Foundation IOKit Metal ModelIO ObjectiveC QuartzCore simd XPC # auto-updated
11-
SWIFT_MODULE_DEPENDS_IOS Darwin CoreFoundation CoreGraphics CoreImage Dispatch Foundation Metal ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
12-
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreFoundation CoreGraphics CoreImage Dispatch Foundation Metal ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
10+
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit CoreData CoreFoundation CoreGraphics Dispatch Foundation IOKit Metal ModelIO ObjectiveC QuartzCore simd XPC # auto-updated
11+
SWIFT_MODULE_DEPENDS_IOS Darwin CoreFoundation CoreGraphics Dispatch Foundation Metal ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
12+
SWIFT_MODULE_DEPENDS_TVOS Darwin CoreFoundation CoreGraphics Dispatch Foundation Metal ModelIO ObjectiveC QuartzCore simd UIKit # auto-updated
1313

1414
FRAMEWORK_DEPENDS_WEAK MetalKit
1515
FRAMEWORK_DEPENDS_WEAK Metal

branches/tensorflow/stdlib/public/SDK/Photos/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ add_swift_library(swiftPhotos ${SWIFT_SDK_OVERLAY_LIBRARY_BUILD_TYPES} IS_SDK_OV
88
SWIFT_COMPILE_FLAGS "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
99
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
1010
TARGET_SDKS IOS IOS_SIMULATOR TVOS TVOS_SIMULATOR OSX
11-
SWIFT_MODULE_DEPENDS_IOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreData CoreImage CoreLocation CoreMedia Dispatch Foundation ObjectiveC QuartzCore simd UIKit os # auto-updated
12-
SWIFT_MODULE_DEPENDS_TVOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreData CoreImage CoreLocation CoreMedia Dispatch Foundation ObjectiveC QuartzCore simd UIKit # auto-updated
13-
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit AVFoundation CoreAudio CoreFoundation CoreData CoreGraphics CoreImage CoreLocation CoreMedia Dispatch Foundation ObjectiveC QuartzCore # auto-updated
11+
SWIFT_MODULE_DEPENDS_IOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreData CoreLocation CoreMedia Dispatch Foundation ObjectiveC QuartzCore simd UIKit os # auto-updated
12+
SWIFT_MODULE_DEPENDS_TVOS Darwin AVFoundation CoreAudio CoreFoundation CoreGraphics CoreData CoreLocation CoreMedia Dispatch Foundation ObjectiveC QuartzCore simd UIKit # auto-updated
13+
SWIFT_MODULE_DEPENDS_OSX Darwin AppKit AVFoundation CoreAudio CoreFoundation CoreData CoreGraphics CoreLocation CoreMedia Dispatch Foundation ObjectiveC QuartzCore # auto-updated
1414

1515
FRAMEWORK_DEPENDS Photos
1616

0 commit comments

Comments
 (0)