Commit Graph

4003 Commits

Author SHA1 Message Date
Azoy
0342756060 move to cast instead of dyn_cast
we've already established that the member is a constructordecl
2018-12-01 18:54:46 -06:00
Azoy
a2dafc3d26 Remove _getBool 2018-12-01 18:51:25 -06:00
John McCall
95297f6988 Don't map Bool back to ObjCBool for SIL types in unbridged contexts.
When the Clang importer imports the components of a C function pointer
type, it generally translates foreign types into their native equivalents,
just for the convenience of Swift code working with those functions.
However, this translation must be unambiguously reversible, so (among
other things) it cannot do this when the native type is also a valid
foreign type.  Specifically, this means that the Clang importer cannot
import ObjCBool as Swift.Bool in these positions because Swift.Bool
corresponds directly to the C type _Bool.

SIL type lowering manually reverses the type-import process using
a combination of duplicated logic and an abstraction pattern which
includes information about the original Clang type that was imported.
This abstraction pattern is generally able to tell SIL type lowering
exactly what type to reverse to.  However, @convention(c) function
types may appear in positions from which it is impossible to recover
the original Clang function type; therefore the reversal must be
faithful to the proper rules.  To do this we must propagate
bridgeability just as the imported would.

This reversal system is absolutely crazy, and we should really just
- record an unbridged function type for imported declarations and
- record an unbridged function type and Clang function type for
  @convention (c) function types whenever we create them.
But for now, it's what we've got.

rdar://43656704
2018-11-30 15:23:00 -05:00
Suyash Srijan
5587edf13e [silgen] fix brace indentation (again) 2018-11-26 21:59:55 +00:00
Suyash Srijan
59a5d71931 [silgen] run git-clang-format to fix all indentation issues 2018-11-26 21:57:44 +00:00
Suyash Srijan
ce40755849 [silgen] fix brace indent 2018-11-26 21:56:14 +00:00
Suyash Srijan
4a26a746db [silgen] fix indentation 2018-11-26 21:54:47 +00:00
Suyash Srijan
3b8128ccf9 [silgen] Move diagnostic note creation to SILGenStmt 2018-11-26 21:50:31 +00:00
Suyash Srijan
174092aa8c Merge branch 'master' into fix/SR-8435 2018-11-26 19:36:51 +00:00
Suyash Srijan
4f39e3b588 [silgen] [ast] adds param name to diagnostics 2018-11-26 18:32:06 +00:00
Suyash Srijan
f2491398ea [silgen] check if the body is not null before accessing it 2018-11-19 22:58:12 +00:00
Suyash Srijan
01fa184fcb [silgen] emit a diagnostic note only if the body is not empty 2018-11-18 19:26:45 +00:00
David Zarzycki
fef48a52e7 Merge pull request #20649 from davezarzycki/fix_Wdefaulted-function-deleted-warnings
[Misc] NFC: Fix -Wdefaulted-function-deleted warnings
2018-11-18 11:40:00 -05:00
David Zarzycki
bf7f91b834 [Misc] NFC: Fix -Wdefaulted-function-deleted warnings 2018-11-17 08:30:59 -05:00
John McCall
49ba9c59d1 Allow Error to conform to itself.
Most of the foundation for this was laid in earlier patches.
2018-11-17 02:51:45 -05:00
Slava Pestov
b570a5de87 Remove -enable-key-path-resilience staging flag 2018-11-16 23:18:37 -05:00
Slava Pestov
0e1b62dcad SILGen: Don't emit or reference property descriptors for overrides
We want removing a property override to be a resilient change, so
keypaths should not reference them, preferring to reference the
base declaration instead.
2018-11-16 23:18:30 -05:00
Slava Pestov
0a8ee10621 AST: Refactor AbstractStorageDecl::getAccessStrategy() for keypath resilience
Instead of passing in a DeclContext, which we don't have when emitting a keypath
accessor, pass in a ModuleDecl and ResilienceExpansion.

Keypaths now work well enough in inlinable contexts that we can check in an
end-to-end resilience test.
2018-11-16 23:18:30 -05:00
Slava Pestov
9d1c8eb9b4 SILGen: Use resilient access pattern for keypaths referenced from inlinable functions
Even if we're in the same module, we have to take the resilience
expansion into account, so plumb it through.
2018-11-16 23:18:30 -05:00
Slava Pestov
34e5325fd9 SILGen: Simplify emitKeyPathComponentForDecl() a bit 2018-11-16 23:18:30 -05:00
Slava Pestov
bc119d0d6d SILGen: Emit inlinable keypath thunks from inlinable contexts
It's still not resilient because we emit direct references to stored
properties, but its progress.
2018-11-16 23:18:30 -05:00
Suyash Srijan
b7df15c30d [silgen] emit diagnostic (note) about unreachable function body 2018-11-17 01:35:59 +00:00
Mark Lacey
018498fb2f Merge pull request #16942 from bjhomer/bjhomer/optional-try-flattening
Flatten nested optionals resulting from try? and optional sub-expressions
2018-11-16 11:14:05 -08:00
Suyash Srijan
2b04c10d5a Merge branch 'master' into fix/SR-8435 2018-11-16 14:14:52 +00:00
Slava Pestov
14a3a5d5a9 SILGen: Fix corner case when emitting switch over value needing reabstraction
This also exposed a bug where we use a lowered type as an AST type and
crash when emitting the '@unknown case' block. This block is unreachable
when switching over non-enum values, but its emitted anyway.

Fixes <https://bugs.swift.org/browse/SR-9159>, <rdar://problem/45962466>.
2018-11-16 00:06:32 -05:00
Slava Pestov
e07dcb6889 Merge pull request #20562 from slavapestov/evolution-symbol-diff
Evolution: Compare symbols before and after
2018-11-15 20:54:54 -05:00
Suyash Srijan
54616ec089 [silgen] Removes whitespace 2018-11-16 01:34:55 +00:00
Suyash Srijan
0d02829342 [silgen] move unreachable code emission to void emitProlog() 2018-11-16 01:31:35 +00:00
Suyash Srijan
f632e0bd46 [silgen] Update prolog code to emit unreachable if a func param is uninhabited 2018-11-15 22:41:53 +00:00
John McCall
5553224fd4 Support the explicit representation of self-conformances.
Big, but actually NFC because we're never actually creating them.
2018-11-15 16:42:03 -05:00
Slava Pestov
a5a4aaf59e SILGen: The storage of a resilient global variable does not need to be public
Part of <rdar://problem/40432647>.
2018-11-15 14:55:44 -05:00
John McCall
a4ea4d1756 Tolerate scalars when opening a non-opaque existential l-value component.
rdar://45956703
2018-11-12 15:36:56 -05:00
John McCall
44e0f44040 Merge pull request #20493 from rjmccall/keypath-compiler-abi
Change the compiler ABI of keypaths.
2018-11-10 14:18:44 -05:00
John McCall
3e5165d1ab Change the compiler ABI of keypaths.
Previously, the stdlib provided:

- getters for AnyKeyPath and PartialKeyPath, which have remained;

- a getter for KeyPath, which still exists alongside a new read
  coroutine; and

- a pair of owned mutable addressors that provided modify-like behavior
  for WritableKeyPath and ReferenceWritableKeyPath, which have been
  replaced with modify coroutines and augmented with dedicated setters.

SILGen then uses the most efficient accessor available for the access
it's been asked to do: for example, if it's been asked to produce a
borrowed r-value, it uses the read accessor.

Providing a broad spectrum of accessor functions here seems acceptable
because the code-size hit is fixed-size: we don't need to generate
extra code per storage declaration to support more alternatives for
key paths.

Note that this is just the compiler ABI; the implementation is still
basically what it was.  That means the implementation of the setters
and the read accessor is pretty far from optimal.  But we can improve
the implementation later; we can't improve the ABI.

The coroutine accessors have to be implemented in C++ and used via
hand-rolled declarations in SILGen because it's not currently possible
to declare independent coroutine accessors in Swift.
2018-11-10 02:08:04 -05:00
John McCall
731da3b991 [NFC] Improve some SILGen functions for working with begin_apply. 2018-11-10 02:08:04 -05:00
John McCall
4504065070 Tweak the emission of _ = X to not emit a temporary. 2018-11-10 02:08:04 -05:00
Slava Pestov
c7338d06ca AST: Remove owning addressors 2018-11-09 20:49:44 -05:00
John McCall
e741147d70 Merge pull request #20459 from rjmccall/key-path-lvalue-emission
Always use the l-value logic for emitting key path applications
2018-11-09 12:08:27 -05:00
Jordan Rose
a9beecce1f [ParseableInterface] Don't bother computing default witness tables (#20437)
These are only used within the original module today, so we can skip
filling them in.
2018-11-09 08:29:15 -08:00
John McCall
c0285a744c Always use the l-value logic for emitting key path applications.
Not NFC because it also fixes an evaluation order bug (and reorders
some less-important stuff): the key-path expression needs to be
evaluated immediately during formal evaluation and cannot be delayed
until start-of-access.
2018-11-09 02:42:17 -05:00
swift-ci
4fb4cb058d Merge pull request #19618 from apple/marcrasi-static-assert 2018-11-08 21:33:35 -08:00
Arnold Schwaighofer
a952514c5f Merge pull request #20421 from aschwaighofer/fix_use_after_free
Fix a use-after-free error I introduced
2018-11-08 05:01:21 -08:00
John McCall
1aeae263f1 Merge pull request #20403 from rjmccall/borrowed-attr-read-accessor
Add a @_borrowed attribute to force the use of an opaque read accessor
2018-11-08 00:13:50 -05:00
Arnold Schwaighofer
9b889e72ea Fix a use-after-free error I introduced
rdar://45894044
2018-11-07 19:31:45 -08:00
Marc Rasi
bf18697b4f parsing, typechecking, and SILGen for #assert
`#assert` is a new static assertion statement that will let us write
tests for the new constant evaluation infrastructure that we are working
on. `#assert` works by lowering to a `Builtin.poundAssert` SIL
instruction. The constant evaluation infrastructure will look for these
SIL instructions, const-evaluate their conditions, and emit errors if
the conditions are non-constant or false.

This commit implements parsing, typechecking and SILGen for `#assert`.
2018-11-07 16:34:17 -08:00
John McCall
e01573dfdb Add a @_borrowed attribute to force the use of an opaque read accessor.
This is strawman syntax pending a proposal; I pitched some ideas here:
  https://forums.swift.org/t/value-ownership-when-reading-from-a-storage-declaration/15076
2018-11-07 18:27:32 -05:00
Slava Pestov
564695d9bf AST: Remove DeclContext::isExtensionContext()
It's identical in every way to isa<ExtensionDecl>(), so
make code less confusing by only having one way of doing
that check.
2018-11-07 17:34:56 -05:00
Arnold Schwaighofer
44b3a47e56 Merge pull request #20333 from aschwaighofer/dynamic_function_replacement
Dynamic function replacement
2018-11-07 13:08:46 -08:00
BJ Homer
df6be36457 Add backwards-compatible behavior for swift-version < 5 2018-11-06 23:31:02 -07:00
BJ Homer
3ae807d4bf Make 'try?' flatten optional chaining like optional-chaining does.
If the sub-expression of the 'try?' is optional, the result will be the same level of optional-ness.
If the sub-expression is non-optional, the result is optional.

Thus, the following lines all end up with the same type of 'Int?'
 - let x = try? 3 as Int
 - let x = try? 3 as? Int
 - let x = try? 3 as Int?
2018-11-06 23:31:02 -07:00