You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: text/0000-unsized-rvalues.md
+9-8
Original file line number
Diff line number
Diff line change
@@ -35,14 +35,15 @@ But today you have to use a hack, such as taking a `Box<FnBox<()>>`.
35
35
## Unsized Rvalues - language
36
36
37
37
Remove the rule that requires all locals and rvalues to have a sized type. Instead, require the following:
38
-
a) The following expressions must always return a Sized type:
39
-
a1) Function calls, method calls, operator expressions
38
+
39
+
1. The following expressions must always return a Sized type:
40
+
1. Function calls, method calls, operator expressions
40
41
- implementing unsized return values for function calls would require the *called function* to do the alloca in our stack frame.
41
-
a2) ADT expressions
42
+
2. ADT expressions
42
43
- see alternatives
43
-
a3) cast expressions
44
+
3. cast expressions
44
45
- this seems like an implementation simplicity thing. These can only be trivial casts.
45
-
b) The RHS of assignment expressions must always have a Sized type.
46
+
2. The RHS of assignment expressions must always have a Sized type.
46
47
- Assigning an unsized type is impossible because we don't know how much memory is available at the destination. This applies to ExprAssign assignments and not to StmtLet let-statements.
47
48
48
49
This also allows passing unsized values to functions, with the ABI being as if a `&move` pointer was passed (a `(by-move-data, extra)` pair). This also means that methods taking `self` by value are object-safe, though vtable shims are sometimes needed to translate the ABI (as the callee-side intentionally does not pass `extra` to the fn in the vtable, no vtable shim is needed if the vtable function already takes its argument indirectly).
0 commit comments