Commit Graph

103403 Commits

Author SHA1 Message Date
Wesley Wiser
32e78ca2e3 Respond to CR feedback 2019-11-24 19:09:58 -05:00
Stefan Lankes
55ce5c09ff disable redzone 2019-11-24 23:40:32 +01:00
Matthew Jasper
294f7e4790 Handle non_exhaustive in borrow checking 2019-11-24 22:39:05 +00:00
Camille GILLOT
becfe5c153 Fix test. 2019-11-24 23:21:44 +01:00
Camille GILLOT
27513a21c4 Tidy. 2019-11-24 23:21:44 +01:00
Camille GILLOT
5098ba6a93 Move linking ouside the interface queries. 2019-11-24 23:21:43 +01:00
Camille GILLOT
266ede1bb3 Isolate compiler queries inside the Queries type. 2019-11-24 23:21:43 +01:00
bors
388ffd9df8 Auto merge of #66540 - nnethercote:SmallVec-Candidate-match_pairs, r=matthewjasper
Use a `SmallVec` for `Candidate::match_pairs`.

This is a small win for `encoding`.

r? @matthewjasper
2019-11-24 21:39:09 +00:00
Stefan Lankes
1475944bdc use nicer code style to pass tidy check 2019-11-24 22:36:50 +01:00
Mark Rousskov
66dce1114d Store ptr_width as u32 on Config
This removes the dependency on IntTy, UintTy from Session.
2019-11-24 16:32:07 -05:00
David Tolnay
fdcf854bb9
tidy: Accommodate rustfmt's preferred layout of stability attributes
Previously tidy would require that the `feature = "name_of_feature"`
part of the stability attribute was on the same line as the `#[stable(`
/ `#[unstable(` opening part of the attribute, and that `)]` was on the
same line as the last key-value pair.

That didn't work with rustfmt's preferred layout of long attributes,
which is like:

    #[unstable(
        feature = "c_variadic",
        reason = "the `c_variadic` feature has not been properly tested on \
                  all supported platforms",
        issue = "44930"
    )]
2019-11-24 12:52:50 -08:00
Stefan Lankes
28c6ef83c6 introduce a target to build the kernel HermitCore
- the target avoids the usage of SSE & AVX within the kernel
2019-11-24 21:05:32 +01:00
Matt Ickstadt
01d01ce3ca Add hardware floating point features to aarch64-pc-windows-msvc 2019-11-24 13:39:03 -06:00
Aaron Hill
df3f33870a
Update for ConstKind refactor 2019-11-24 14:37:24 -05:00
Aaron Hill
cec7d944ba
Add example and extra documentation 2019-11-24 14:37:24 -05:00
Aaron Hill
542383f65b
Fix missing character
Co-Authored-By: varkor <github@varkor.com>
2019-11-24 14:37:24 -05:00
Aaron Hill
850e3e6d4d
bug!() on const inference variable in opaque type
Add some tests to verify that this case is never hit
2019-11-24 14:37:24 -05:00
Aaron Hill
a59b7eabe6
Also fix lifetimes and consts in opaque types 2019-11-24 14:37:24 -05:00
Aaron Hill
6b47cbaee6
Improve error message when opaque type is not fully constrained 2019-11-24 14:37:24 -05:00
Aaron Hill
4b57d2228b
Fix opaque types resulting from projections in function signature
When we normalize the types in a function signature, we may end up
resolving a projection to an opaque type (e.g. `Self::MyType` when
we have `type MyType = impl SomeTrait`). When the projection is
resolved, we will instantiate the generic parameters into fresh
inference variables.

While we do want to normalize projections to opaque types, we don't want
to replace the explicit generic parameters (e.g. `T` in `impl
MyTrait<T>`) with inference variables. We want the opaque type in the
function signature to be eligible to be a defining use of that opaque
type - adding inference variables prevents this, since the opaque type
substs now appears to refer to some specific type, rather than a generic
type.

To resolve this issue, we inspect the opaque types in the function
signature after normalization. Any inference variables in the substs are
replaced with the corresponding generic parameter in the identity substs
(e.g. `T` in `impl MyTrait<T>`). Note that normalization is the only way
that we can end up with inference variables in opaque substs in a
function signature - users have no way of getting inference variables
into a function signature.

Note that all of this refers to the opaque type (ty::Opaque) and its
subst - *not* to the underlying type.

Fixes #59342
2019-11-24 14:37:23 -05:00
bors
412f43ac5b Auto merge of #66647 - petrochenkov:nosynt, r=Centril
rustc_plugin: Remove support for syntactic plugins

This part of the plugin interface was successfully replaced by token-based procedural macros in theory and in practice.

cc https://github.com/rust-lang/rust/issues/29597
cc https://github.com/rust-lang/rust/pull/64675
r? @Centril
2019-11-24 18:16:43 +00:00
Matthew Jasper
f4efc5de8a Add tests for raw_ref_op 2019-11-24 18:06:13 +00:00
Matthew Jasper
064bed0f31 Parse and feature gate raw address of expressions 2019-11-24 18:06:13 +00:00
Matthew Jasper
a8efd31f2b Add raw address of expressions to the AST and HIR 2019-11-24 18:06:13 +00:00
Paul Dicker
23c5e584e0 Use as_mut_ptr instead of casts 2019-11-24 16:49:50 +01:00
Emmanuel Gil Peyrot
be18a22765 Add missing main() and return value 2019-11-24 15:31:44 +01:00
Emmanuel Gil Peyrot
cdfb5cb4bf Add missing semicolons and question marks 2019-11-24 15:31:43 +01:00
Janusz Marcinkiewicz
6f70803e7e Fix pointing at arg for fulfillment errors in function calls 2019-11-24 15:26:09 +01:00
Timo Freiberg
2a0292f9aa fixup! Lowercase diagnostic message label 2019-11-24 15:17:16 +01:00
Timo Freiberg
318fb9a4da fixup! Add negative tests where the diagnostic message would be wrong 2019-11-24 15:17:16 +01:00
Timo Freiberg
dffdf378ee Add version mismatch help message for unimplemented trait
Issue #22750
The error reporting for E0277 (the trait `X` is not implemented for `Foo`)
now checks whether `Foo` implements a trait with the same path as `X`,
which probably means that the programmer wanted to actually use only one
version of the trait `X` instead of the two.
2019-11-24 15:17:16 +01:00
bors
5a1d028d4c Auto merge of #66592 - estebank:raw-raw-ah-ah-ah, r=cramertj
Rework raw ident suggestions

Use heuristics to determine whethersuggesting raw identifiers is
appropriate.

Account for raw identifiers when printing a path in a `use` suggestion.

Fix #66126.
2019-11-24 14:08:08 +00:00
Vadim Petrochenkov
2e41ce9923 tidy: Remove unused import 2019-11-24 16:09:55 +03:00
Emmanuel Gil Peyrot
aff79422d8 Also fix the signature of main in std::sys::unix::ext 2019-11-24 13:56:41 +01:00
Emmanuel Gil Peyrot
3a2da7194c Return Ok(()) in docstrings in std::os::unix::net 2019-11-24 13:55:03 +01:00
Emmanuel Gil Peyrot
8f158bc62b Replace .unwrap() with ? in std::os::unix::net 2019-11-24 13:55:03 +01:00
Ralf Jung
6440b94253 make comment compile 2019-11-24 13:15:22 +01:00
Ralf Jung
80f5213cee expand type info on __rust_start_panic 2019-11-24 13:13:33 +01:00
Elichai Turkel
b3666b6473
Update tests for raw array in FFI lint 2019-11-24 13:48:55 +02:00
Elichai Turkel
fb6647c626
Add FFI raw array lint 2019-11-24 13:35:50 +02:00
bors
b56b23988d Auto merge of #66393 - ssomers:hash_benches, r=dtolnay
introduce benchmarks of HashSet operations

To avoid goofs such as corrected by #66280, I added benchmarks of binary HashSet operations.

Due to the fact x.py keeps recompiling the whole shebang (or at least a big part of it) whenever you touch the test code, and because piling up all tests in one file does not strike me as future proof, I tried moving the hash benches to the separate place they are for liballoc/collections/btree. But it turns out that, in a cleaned checkout, x.py still recompiles the whole shebang whenever you touch the test code (PS or when you add or delete any irrelevant file). So I'm not going to add more tests, and I doubt others will, and these tests have proven their point already, so this PR is kind of pointless
2019-11-24 10:52:12 +00:00
Ralf Jung
35ee6bd59b panicking comments 2019-11-24 11:26:07 +01:00
Vadim Petrochenkov
f89e6c8811 rustc_plugin: Remove support for syntactic plugins 2019-11-24 12:05:10 +03:00
Vadim Petrochenkov
f1359c61d3 expand: Fully preserve visibilities on unnamed fields with attributes 2019-11-24 11:47:46 +03:00
Vadim Petrochenkov
37bb0c7fa6 def_collector: Do not forget to save indices of fields with multiple attributes 2019-11-24 11:47:45 +03:00
bors
7d761fe046 Auto merge of #66322 - lzutao:consistent-result-map_or_else, r=dtolnay
Stabilize Result::map_or_else

Stabilized this API:
```rust
impl<T, E> Result<T, E> {
    pub fn map_or_else<U, D: FnOnce(E) -> U, F: FnOnce(T) -> U>(self, default: D, f: F) -> U {
        match self {
            Ok(t) => f(t),
            Err(e) => default(e),
        }
    }
}
```

Closes #53268
r? @SimonSapin
2019-11-24 07:37:01 +00:00
Esteban Küber
9d7774c64f review comments: remove unnecessary &str to String conversions 2019-11-23 18:45:18 -08:00
bors
e41ced3f8d Auto merge of #66686 - Centril:rollup-07slyoo, r=Centril
Rollup of 5 pull requests

Successful merges:

 - #64856 (Scope format! temporaries)
 - #66411 (mem::forget docs: mention ManuallyDrop)
 - #66594 (Fix cycle when debug-printing opaque types)
 - #66641 (parser: recover on nested ADTs as enum variants)
 - #66659 (make `./x.py bench` again)

Failed merges:

r? @ghost
2019-11-24 02:17:29 +00:00
Mazdak Farrokhzad
d22bf91320
Rollup merge of #66659 - Centril:fix-bench, r=Mark-Simulacrum
make `./x.py bench` again

Fixes #54016
2019-11-24 03:17:03 +01:00
Mazdak Farrokhzad
980ccaa733
Rollup merge of #66641 - VirrageS:master, r=Centril
parser: recover on nested ADTs as enum variants

Closes: https://github.com/rust-lang/rust/issues/66127
2019-11-24 03:17:02 +01:00