Skip to content

Commit e2c329c

Browse files
committed
Auto merge of #56269 - nnethercote:_match-Matrix-SmallVec, r=simulacrum
Use a `SmallVec` within `_match::Matrix`. This avoids allocations.
2 parents 9cb38a8 + cdc6633 commit e2c329c

File tree

14 files changed

+65
-59
lines changed

14 files changed

+65
-59
lines changed

Cargo.lock

+20-20
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ dependencies = [
349349
"semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
350350
"serde 1.0.75 (registry+https://github.com/rust-lang/crates.io-index)",
351351
"serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)",
352-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
352+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
353353
"toml 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
354354
"unicode-normalization 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
355355
"url 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -489,7 +489,7 @@ dependencies = [
489489
"crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
490490
"parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
491491
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
492-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
492+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
493493
]
494494

495495
[[package]]
@@ -1518,7 +1518,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
15181518
dependencies = [
15191519
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
15201520
"rand 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
1521-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
1521+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
15221522
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
15231523
]
15241524

@@ -1529,7 +1529,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
15291529
dependencies = [
15301530
"libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
15311531
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
1532-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
1532+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
15331533
"winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
15341534
]
15351535

@@ -1992,7 +1992,7 @@ dependencies = [
19921992
"rustc_target 0.0.0",
19931993
"scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
19941994
"serialize 0.0.0",
1995-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
1995+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
19961996
"syntax 0.0.0",
19971997
"syntax_pos 0.0.0",
19981998
"tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2037,7 +2037,7 @@ dependencies = [
20372037
"rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
20382038
"rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
20392039
"rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
2040-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2040+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
20412041
"stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
20422042
]
20432043

@@ -2073,7 +2073,7 @@ name = "rustc-ap-serialize"
20732073
version = "297.0.0"
20742074
source = "registry+https://github.com/rust-lang/crates.io-index"
20752075
dependencies = [
2076-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2076+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
20772077
]
20782078

20792079
[[package]]
@@ -2089,7 +2089,7 @@ dependencies = [
20892089
"rustc-ap-serialize 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
20902090
"rustc-ap-syntax_pos 297.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
20912091
"scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2092-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2092+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
20932093
]
20942094

20952095
[[package]]
@@ -2172,7 +2172,7 @@ dependencies = [
21722172
"rustc_data_structures 0.0.0",
21732173
"rustc_errors 0.0.0",
21742174
"rustc_target 0.0.0",
2175-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2175+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
21762176
"syntax 0.0.0",
21772177
"syntax_pos 0.0.0",
21782178
]
@@ -2183,7 +2183,7 @@ version = "0.0.0"
21832183
dependencies = [
21842184
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
21852185
"rustc_cratesio_shim 0.0.0",
2186-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2186+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
21872187
]
21882188

21892189
[[package]]
@@ -2288,7 +2288,7 @@ dependencies = [
22882288
"rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
22892289
"rustc_cratesio_shim 0.0.0",
22902290
"serialize 0.0.0",
2291-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2291+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
22922292
"stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
22932293
]
22942294

@@ -2322,7 +2322,7 @@ dependencies = [
23222322
"rustc_typeck 0.0.0",
23232323
"scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
23242324
"serialize 0.0.0",
2325-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2325+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
23262326
"syntax 0.0.0",
23272327
"syntax_ext 0.0.0",
23282328
"syntax_pos 0.0.0",
@@ -2428,7 +2428,7 @@ dependencies = [
24282428
"rustc_errors 0.0.0",
24292429
"rustc_target 0.0.0",
24302430
"serialize 0.0.0",
2431-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2431+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
24322432
"syntax 0.0.0",
24332433
"syntax_pos 0.0.0",
24342434
]
@@ -2541,7 +2541,7 @@ dependencies = [
25412541
"rustc 0.0.0",
25422542
"rustc_data_structures 0.0.0",
25432543
"rustc_target 0.0.0",
2544-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2544+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
25452545
"syntax 0.0.0",
25462546
"syntax_pos 0.0.0",
25472547
]
@@ -2568,7 +2568,7 @@ dependencies = [
25682568
"rustc_errors 0.0.0",
25692569
"rustc_platform_intrinsics 0.0.0",
25702570
"rustc_target 0.0.0",
2571-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2571+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
25722572
"syntax 0.0.0",
25732573
"syntax_pos 0.0.0",
25742574
]
@@ -2737,7 +2737,7 @@ dependencies = [
27372737
name = "serialize"
27382738
version = "0.0.0"
27392739
dependencies = [
2740-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2740+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
27412741
]
27422742

27432743
[[package]]
@@ -2757,7 +2757,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
27572757

27582758
[[package]]
27592759
name = "smallvec"
2760-
version = "0.6.5"
2760+
version = "0.6.7"
27612761
source = "registry+https://github.com/rust-lang/crates.io-index"
27622762
dependencies = [
27632763
"unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -2904,7 +2904,7 @@ dependencies = [
29042904
"rustc_target 0.0.0",
29052905
"scoped-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
29062906
"serialize 0.0.0",
2907-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2907+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
29082908
"syntax_pos 0.0.0",
29092909
]
29102910

@@ -2917,7 +2917,7 @@ dependencies = [
29172917
"rustc_data_structures 0.0.0",
29182918
"rustc_errors 0.0.0",
29192919
"rustc_target 0.0.0",
2920-
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
2920+
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",
29212921
"syntax 0.0.0",
29222922
"syntax_pos 0.0.0",
29232923
]
@@ -3489,7 +3489,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
34893489
"checksum shell-escape 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "170a13e64f2a51b77a45702ba77287f5c6829375b04a69cf2222acd17d0cfab9"
34903490
"checksum shlex 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2"
34913491
"checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537"
3492-
"checksum smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "153ffa32fd170e9944f7e0838edf824a754ec4c1fc64746fcc9fe1f8fa602e5d"
3492+
"checksum smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ea3738b47563803ef814925e69be00799a8c07420be8b996f8e98fb2336db"
34933493
"checksum socket2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7"
34943494
"checksum stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa"
34953495
"checksum string_cache 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "25d70109977172b127fe834e5449e5ab1740b9ba49fa18a2020f509174f25423"

src/librustc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ parking_lot = "0.6"
3232
byteorder = { version = "1.1", features = ["i128"]}
3333
chalk-engine = { version = "0.8.0", default-features=false }
3434
rustc_fs_util = { path = "../librustc_fs_util" }
35-
smallvec = { version = "0.6.5", features = ["union"] }
35+
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
3636

3737
# Note that these dependencies are a lie, they're just here to get linkage to
3838
# work.

src/librustc_allocator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ rustc_target = { path = "../librustc_target" }
1616
syntax = { path = "../libsyntax" }
1717
syntax_pos = { path = "../libsyntax_pos" }
1818
log = "0.4"
19-
smallvec = { version = "0.6.5", features = ["union"] }
19+
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

src/librustc_apfloat/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ path = "lib.rs"
1010
[dependencies]
1111
bitflags = "1.0"
1212
rustc_cratesio_shim = { path = "../librustc_cratesio_shim" }
13-
smallvec = { version = "0.6.5", features = ["union"] }
13+
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

src/librustc_data_structures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ stable_deref_trait = "1.0.0"
1919
rustc-rayon = "0.1.1"
2020
rustc-rayon-core = "0.1.1"
2121
rustc-hash = "1.0.1"
22-
smallvec = { version = "0.6.5", features = ["union"] }
22+
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
2323

2424
[dependencies.parking_lot]
2525
version = "0.6"

src/librustc_driver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ rustc_codegen_utils = { path = "../librustc_codegen_utils" }
3535
rustc_typeck = { path = "../librustc_typeck" }
3636
serialize = { path = "../libserialize" }
3737
syntax = { path = "../libsyntax" }
38-
smallvec = { version = "0.6.5", features = ["union"] }
38+
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
3939
syntax_ext = { path = "../libsyntax_ext" }
4040
syntax_pos = { path = "../libsyntax_pos" }
4141

src/librustc_mir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ syntax = { path = "../libsyntax" }
2525
syntax_pos = { path = "../libsyntax_pos" }
2626
byteorder = { version = "1.1", features = ["i128"] }
2727
rustc_apfloat = { path = "../librustc_apfloat" }
28-
smallvec = { version = "0.6.5", features = ["union"] }
28+
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }

src/librustc_mir/hair/pattern/_match.rs

+28-23
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ use syntax_pos::{Span, DUMMY_SP};
190190

191191
use arena::TypedArena;
192192

193+
use smallvec::{SmallVec, smallvec};
193194
use std::cmp::{self, Ordering, min, max};
194195
use std::fmt;
195196
use std::iter::{FromIterator, IntoIterator};
@@ -237,14 +238,16 @@ impl<'tcx> Pattern<'tcx> {
237238
}
238239
}
239240

240-
pub struct Matrix<'a, 'tcx: 'a>(Vec<Vec<&'a Pattern<'tcx>>>);
241+
/// A 2D matrix. Nx1 matrices are very common, which is why `SmallVec[_; 2]`
242+
/// works well for each row.
243+
pub struct Matrix<'p, 'tcx: 'p>(Vec<SmallVec<[&'p Pattern<'tcx>; 2]>>);
241244

242-
impl<'a, 'tcx> Matrix<'a, 'tcx> {
245+
impl<'p, 'tcx> Matrix<'p, 'tcx> {
243246
pub fn empty() -> Self {
244247
Matrix(vec![])
245248
}
246249

247-
pub fn push(&mut self, row: Vec<&'a Pattern<'tcx>>) {
250+
pub fn push(&mut self, row: SmallVec<[&'p Pattern<'tcx>; 2]>) {
248251
self.0.push(row)
249252
}
250253
}
@@ -261,7 +264,7 @@ impl<'a, 'tcx> Matrix<'a, 'tcx> {
261264
/// ++++++++++++++++++++++++++
262265
/// + _ + [_, _, ..tail] +
263266
/// ++++++++++++++++++++++++++
264-
impl<'a, 'tcx> fmt::Debug for Matrix<'a, 'tcx> {
267+
impl<'p, 'tcx> fmt::Debug for Matrix<'p, 'tcx> {
265268
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
266269
write!(f, "\n")?;
267270

@@ -293,8 +296,9 @@ impl<'a, 'tcx> fmt::Debug for Matrix<'a, 'tcx> {
293296
}
294297
}
295298

296-
impl<'a, 'tcx> FromIterator<Vec<&'a Pattern<'tcx>>> for Matrix<'a, 'tcx> {
297-
fn from_iter<T: IntoIterator<Item=Vec<&'a Pattern<'tcx>>>>(iter: T) -> Self
299+
impl<'p, 'tcx> FromIterator<SmallVec<[&'p Pattern<'tcx>; 2]>> for Matrix<'p, 'tcx> {
300+
fn from_iter<T>(iter: T) -> Self
301+
where T: IntoIterator<Item=SmallVec<[&'p Pattern<'tcx>; 2]>>
298302
{
299303
Matrix(iter.into_iter().collect())
300304
}
@@ -998,7 +1002,7 @@ fn compute_missing_ctors<'a, 'tcx: 'a>(
9981002
/// matrix isn't exhaustive).
9991003
pub fn is_useful<'p, 'a: 'p, 'tcx: 'a>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
10001004
matrix: &Matrix<'p, 'tcx>,
1001-
v: &[&'p Pattern<'tcx>],
1005+
v: &[&Pattern<'tcx>],
10021006
witness: WitnessPreference)
10031007
-> Usefulness<'tcx> {
10041008
let &Matrix(ref rows) = matrix;
@@ -1108,7 +1112,7 @@ pub fn is_useful<'p, 'a: 'p, 'tcx: 'a>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
11081112
} else {
11091113
let matrix = rows.iter().filter_map(|r| {
11101114
if r[0].is_wildcard() {
1111-
Some(r[1..].to_vec())
1115+
Some(SmallVec::from_slice(&r[1..]))
11121116
} else {
11131117
None
11141118
}
@@ -1199,10 +1203,10 @@ pub fn is_useful<'p, 'a: 'p, 'tcx: 'a>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
11991203

12001204
/// A shorthand for the `U(S(c, P), S(c, q))` operation from the paper. I.e., `is_useful` applied
12011205
/// to the specialised version of both the pattern matrix `P` and the new pattern `q`.
1202-
fn is_useful_specialized<'p, 'a:'p, 'tcx: 'a>(
1206+
fn is_useful_specialized<'p, 'a: 'p, 'tcx: 'a>(
12031207
cx: &mut MatchCheckCtxt<'a, 'tcx>,
12041208
&Matrix(ref m): &Matrix<'p, 'tcx>,
1205-
v: &[&'p Pattern<'tcx>],
1209+
v: &[&Pattern<'tcx>],
12061210
ctor: Constructor<'tcx>,
12071211
lty: Ty<'tcx>,
12081212
witness: WitnessPreference,
@@ -1521,15 +1525,15 @@ fn constructor_intersects_pattern<'p, 'a: 'p, 'tcx: 'a>(
15211525
tcx: TyCtxt<'a, 'tcx, 'tcx>,
15221526
ctor: &Constructor<'tcx>,
15231527
pat: &'p Pattern<'tcx>,
1524-
) -> Option<Vec<&'p Pattern<'tcx>>> {
1528+
) -> Option<SmallVec<[&'p Pattern<'tcx>; 2]>> {
15251529
if should_treat_range_exhaustively(tcx, ctor) {
15261530
match (IntRange::from_ctor(tcx, ctor), IntRange::from_pat(tcx, pat)) {
15271531
(Some(ctor), Some(pat)) => {
15281532
ctor.intersection(&pat).map(|_| {
15291533
let (pat_lo, pat_hi) = pat.range.into_inner();
15301534
let (ctor_lo, ctor_hi) = ctor.range.into_inner();
15311535
assert!(pat_lo <= ctor_lo && ctor_hi <= pat_hi);
1532-
vec![]
1536+
smallvec![]
15331537
})
15341538
}
15351539
_ => None,
@@ -1539,7 +1543,7 @@ fn constructor_intersects_pattern<'p, 'a: 'p, 'tcx: 'a>(
15391543
// conveniently handled by `IntRange`. For these cases, the constructor may not be a range
15401544
// so intersection actually devolves into being covered by the pattern.
15411545
match constructor_covered_by_range(tcx, ctor, pat) {
1542-
Ok(true) => Some(vec![]),
1546+
Ok(true) => Some(smallvec![]),
15431547
Ok(false) | Err(ErrorReported) => None,
15441548
}
15451549
}
@@ -1610,9 +1614,9 @@ fn constructor_covered_by_range<'a, 'tcx>(
16101614
fn patterns_for_variant<'p, 'a: 'p, 'tcx: 'a>(
16111615
subpatterns: &'p [FieldPattern<'tcx>],
16121616
wild_patterns: &[&'p Pattern<'tcx>])
1613-
-> Vec<&'p Pattern<'tcx>>
1617+
-> SmallVec<[&'p Pattern<'tcx>; 2]>
16141618
{
1615-
let mut result = wild_patterns.to_owned();
1619+
let mut result = SmallVec::from_slice(wild_patterns);
16161620

16171621
for subpat in subpatterns {
16181622
result[subpat.field.index()] = &subpat.pattern;
@@ -1635,15 +1639,16 @@ fn specialize<'p, 'a: 'p, 'tcx: 'a>(
16351639
r: &[&'p Pattern<'tcx>],
16361640
constructor: &Constructor<'tcx>,
16371641
wild_patterns: &[&'p Pattern<'tcx>],
1638-
) -> Option<Vec<&'p Pattern<'tcx>>> {
1642+
) -> Option<SmallVec<[&'p Pattern<'tcx>; 2]>> {
16391643
let pat = &r[0];
16401644

1641-
let head: Option<Vec<&Pattern>> = match *pat.kind {
1642-
PatternKind::AscribeUserType { ref subpattern, .. } =>
1643-
specialize(cx, ::std::slice::from_ref(&subpattern), constructor, wild_patterns),
1645+
let head = match *pat.kind {
1646+
PatternKind::AscribeUserType { ref subpattern, .. } => {
1647+
specialize(cx, ::std::slice::from_ref(&subpattern), constructor, wild_patterns)
1648+
}
16441649

16451650
PatternKind::Binding { .. } | PatternKind::Wild => {
1646-
Some(wild_patterns.to_owned())
1651+
Some(SmallVec::from_slice(wild_patterns))
16471652
}
16481653

16491654
PatternKind::Variant { adt_def, variant_index, ref subpatterns, .. } => {
@@ -1660,7 +1665,7 @@ fn specialize<'p, 'a: 'p, 'tcx: 'a>(
16601665
}
16611666

16621667
PatternKind::Deref { ref subpattern } => {
1663-
Some(vec![subpattern])
1668+
Some(smallvec![subpattern])
16641669
}
16651670

16661671
PatternKind::Constant { value } => {
@@ -1696,7 +1701,7 @@ fn specialize<'p, 'a: 'p, 'tcx: 'a>(
16961701
if wild_patterns.len() as u64 == n {
16971702
// convert a constant slice/array pattern to a list of patterns.
16981703
match (n, opt_ptr) {
1699-
(0, _) => Some(Vec::new()),
1704+
(0, _) => Some(SmallVec::new()),
17001705
(_, Some(ptr)) => {
17011706
let alloc = cx.tcx.alloc_map.lock().unwrap_memory(ptr.alloc_id);
17021707
let layout = cx.tcx.layout_of(cx.param_env.and(ty)).ok()?;
@@ -1765,7 +1770,7 @@ fn specialize<'p, 'a: 'p, 'tcx: 'a>(
17651770
match slice_pat_covered_by_constructor(
17661771
cx.tcx, pat.span, constructor, prefix, slice, suffix
17671772
) {
1768-
Ok(true) => Some(vec![]),
1773+
Ok(true) => Some(smallvec![]),
17691774
Ok(false) => None,
17701775
Err(ErrorReported) => None
17711776
}

0 commit comments

Comments
 (0)