Skip to content

Commit f3afb9c

Browse files
committed
Revert "Resolve merge conflicts for github main -> next automerger."
This reverts commit d3c7f02.
1 parent a688cd4 commit f3afb9c

File tree

324 files changed

+3753
-8902
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

324 files changed

+3753
-8902
lines changed

CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,6 @@ option(SWIFT_BUILD_RUNTIME_WITH_HOST_COMPILER
250250
"Use the host compiler and not the internal clang to build the swift runtime"
251251
FALSE)
252252

253-
option(SWIFT_RUN_TESTS_WITH_HOST_COMPILER
254-
"Run tests against the host compiler and not the just built swift"
255-
FALSE)
256-
257253
set(SWIFT_SDKS "" CACHE STRING
258254
"If non-empty, limits building target binaries only to specified SDKs (despite other SDKs being available)")
259255

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
| **Ubuntu 18.04** | x86_64 | [![Build Status](https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-18_04/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-18_04)|[![Build Status](https://ci.swift.org/job/oss-swift-package-linux-ubuntu-18_04/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-linux-ubuntu-18_04)|
1111
| **Ubuntu 20.04** | x86_64 | [![Build Status](https://ci.swift.org/job/oss-swift-package-ubuntu-20_04/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-ubuntu-20_04)|[![Build Status](https://ci.swift.org/job/oss-swift-package-ubuntu-20_04/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-ubuntu-20_04)|
1212
| **CentOS 8** | x86_64 | [![Build Status](https://ci.swift.org/job/oss-swift-package-centos-8/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-centos-8)|[![Build Status](https://ci.swift.org/job/oss-swift-package-centos-8/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-centos-8)|
13-
| **CentOS 7** | x86_64 | [![Build Status](https://ci.swift.org/job/oss-swift-package-centos-7/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-centos-7)|[![Build Status](https://ci.swift.org/job/oss-swift-package-centos-7/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-centos-7)|
1413
| **Amazon Linux 2** | x86_64 | [![Build Status](https://ci.swift.org/job/oss-swift-package-amazon-linux-2/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-amazon-linux-2)|[![Build Status](https://ci.swift.org/job/oss-swift-package-amazon-linux-2/lastCompletedBuild/badge/icon)](https://ci.swift.org/job/oss-swift-package-amazon-linux-2)|
1514

1615
**Swift Community-Hosted CI Platforms**
@@ -27,6 +26,13 @@
2726
|**[Windows 2019 (VS 2017)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_windows_2019.json)** | x86_64 | [![Build Status](https://ci-external.swift.org/job/oss-swift-windows-x86_64/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-windows-x86_64)|
2827
|**[Windows 2019 (VS 2019)](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_windows_2019_VS2019.json)** | x86_64 | [![Build Status](https://ci-external.swift.org/job/oss-swift-windows-x86_64-vs2019/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-windows-x86_64-vs2019)|
2928

29+
**Swift TensorFlow Community-Hosted CI Platforms**
30+
31+
| **OS** | **Architecture** | **Build** |
32+
|---|:---:|:---:|
33+
|**[Ubuntu 18.04](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_ubuntu_18_04_tensorflow.json)** | x86_64 |[![Build Status](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-18.04-tensorflow/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-RA-linux-ubuntu-18.04-tensorflow)|
34+
|**[macOS 10.13](https://github.com/apple/swift-community-hosted-continuous-integration/blob/master/nodes/x86_64_macos_high_sierra_tensorflow.json)** | x86_64 |[![Build Status](https://ci-external.swift.org/job/oss-swift-RA-macOS-tensorflow/lastCompletedBuild/badge/icon)](https://ci-external.swift.org/job/oss-swift-RA-macOS-tensorflow)|
35+
3036
## Welcome to Swift
3137

3238
Swift is a high-performance system programming language. It has a clean

docs/Lexicon.md

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,6 @@ and the combination of module path + access path is an "import path".)
6767

6868
See `ImportPath` and the types nested inside it for more on this.
6969

70-
## access pattern
71-
72-
Defines how some particular storage (a property or a subscript) is accessed.
73-
For example, when accessing a property `let y = a.x`, the compiler could potentially
74-
use `get` accessor or the `_read` accessor. Similarly, for a modification like
75-
`a.x += 1`, the compiler could use `get` + `set` or it could use `_modify`.
76-
77-
The access pattern can differ for call-sites which can/cannot see the underlying
78-
implementation. Clients which cannot see the underlying implementation are said
79-
to use the conservative access pattern.
80-
8170
## archetype
8271

8372
A placeholder for a generic parameter or an associated type within a
@@ -487,38 +476,6 @@ See [mandatory passes](#mandatory-passes--mandatory-optimizations).
487476
An implicit representation change that occurs when a value is used with
488477
a different [abstraction pattern](#abstraction-pattern) from its current representation.
489478

490-
## realization
491-
492-
The process of initializing an ObjC class for use by the ObjC runtime.
493-
This consists of allocating runtime tracking data, fixing up method lists
494-
and attaching categories.
495-
496-
This is distinct from the initialization performed by `+initialize`, which
497-
happens only when the first message (other than `+load`) is sent to the class.
498-
499-
The order of operations is: realization, followed by `+load` (if present),
500-
followed by `+initialize`. There are few cases where these can happen
501-
at different times.
502-
503-
- Common case (no `+load` or special attributes): Realization is lazy and
504-
happens when the first message is sent to a class. After that, `+initialize`
505-
is run.
506-
- If the class has a `+load` method: `+load`, as the name suggests, runs at
507-
load time; it is the ObjC equivalent of a static initializer in C++. For
508-
such a class, realization eagerly happens at load time before `+load` runs.
509-
(Fun aside: C++ static initializers run after `+load`.) `+initialize` still
510-
runs lazily on the first message.
511-
- If the class is marked [`@_objc_non_lazy_realization`](/docs/ReferenceGuides/UnderscoredAttributes.md#_objc_non_lazy_realization):
512-
Realization happens at load time. `+initialize` still runs lazily on the first
513-
message.
514-
515-
It's possible to create a class that is realized but not initialized by
516-
using a runtime function like `objc_getClass` before the class has been used.
517-
518-
See also: Mike Ash's blog post on
519-
[Objective-C Class Loading and Initialization](https://www.mikeash.com/pyblog/friday-qa-2009-05-22-objective-c-class-loading-and-initialization.html),
520-
which covers `+load` and `+initialize` in more detail.
521-
522479
## refutable pattern
523480

524481
A pattern that may not always match. These include patterns such as:

docs/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,6 @@ documentation, please create a thread on the Swift forums under the
177177
<!-- NOTE: Outdated -->
178178
- [Lexicon.md](/docs/Lexicon.md):
179179
Canonical reference for terminology used throughout the project.
180-
- [UnderscoredAttributes.md](/docs/ReferenceGuides/UnderscoredAttributes.md):
181-
Documents semantics for underscored (unstable) attributes.
182180

183181
### ABI
184182

0 commit comments

Comments
 (0)