Skip to content

Commit f9121e8

Browse files
committed
Auto merge of #32250 - durka:derive-31574, r=alexcrichton
derive: use intrinsics::unreachable over unreachable!() derive: use intrinsics::unreachable over unreachable!() Fixes #31574. Spawned from #32139. r? @alexcrichton
2 parents 483fc71 + a09a419 commit f9121e8

File tree

3 files changed

+55
-25
lines changed

3 files changed

+55
-25
lines changed

src/libsyntax_ext/deriving/generic/mod.rs

+18-11
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,22 @@ fn find_type_parameters(ty: &ast::Ty, ty_param_names: &[ast::Name]) -> Vec<P<ast
381381
visitor.types
382382
}
383383

384+
/// Replacement for expr_unreachable which generates intrinsics::unreachable()
385+
/// instead of unreachable!()
386+
fn expr_unreachable_intrinsic(cx: &ExtCtxt, sp: Span) -> P<Expr> {
387+
let path = cx.std_path(&["intrinsics", "unreachable"]);
388+
let call = cx.expr_call_global(
389+
sp, path, vec![]);
390+
let unreachable = cx.expr_block(P(ast::Block {
391+
stmts: vec![],
392+
expr: Some(call),
393+
id: ast::DUMMY_NODE_ID,
394+
rules: ast::BlockCheckMode::Unsafe(ast::CompilerGenerated),
395+
span: sp }));
396+
397+
unreachable
398+
}
399+
384400
impl<'a> TraitDef<'a> {
385401
pub fn expand(&self,
386402
cx: &mut ExtCtxt,
@@ -1299,16 +1315,7 @@ impl<'a> MethodDef<'a> {
12991315
//Since we know that all the arguments will match if we reach the match expression we
13001316
//add the unreachable intrinsics as the result of the catch all which should help llvm
13011317
//in optimizing it
1302-
let path = cx.std_path(&["intrinsics", "unreachable"]);
1303-
let call = cx.expr_call_global(
1304-
sp, path, vec![]);
1305-
let unreachable = cx.expr_block(P(ast::Block {
1306-
stmts: vec![],
1307-
expr: Some(call),
1308-
id: ast::DUMMY_NODE_ID,
1309-
rules: ast::BlockCheckMode::Unsafe(ast::CompilerGenerated),
1310-
span: sp }));
1311-
match_arms.push(cx.arm(sp, vec![cx.pat_wild(sp)], unreachable));
1318+
match_arms.push(cx.arm(sp, vec![cx.pat_wild(sp)], expr_unreachable_intrinsic(cx, sp)));
13121319

13131320
// Final wrinkle: the self_args are expressions that deref
13141321
// down to desired l-values, but we cannot actually deref
@@ -1384,7 +1391,7 @@ impl<'a> MethodDef<'a> {
13841391
// derive Debug on such a type could here generate code
13851392
// that needs the feature gate enabled.)
13861393

1387-
cx.expr_unreachable(sp)
1394+
expr_unreachable_intrinsic(cx, sp)
13881395
}
13891396
else {
13901397

src/test/run-pass-fulldeps/derive-no-std.rs src/test/auxiliary/derive-no-std.rs

+15-14
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,33 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(rand, collections, rustc_private)]
12-
#![no_std]
11+
// no-prefer-dynamic
1312

14-
extern crate rand;
15-
extern crate serialize as rustc_serialize;
16-
extern crate collections;
13+
#![crate_type = "rlib"]
14+
#![no_std]
1715

1816
// Issue #16803
1917

2018
#[derive(Clone, Hash, PartialEq, Eq, PartialOrd, Ord,
2119
Debug, Default, Copy)]
22-
struct Foo {
23-
x: u32,
20+
pub struct Foo {
21+
pub x: u32,
2422
}
2523

2624
#[derive(Clone, Hash, PartialEq, Eq, PartialOrd, Ord,
2725
Debug, Copy)]
28-
enum Bar {
26+
pub enum Bar {
2927
Qux,
3028
Quux(u32),
3129
}
3230

33-
enum Baz { A=0, B=5, }
31+
#[derive(Clone, Hash, PartialEq, Eq, PartialOrd, Ord,
32+
Debug, Copy)]
33+
pub enum Void {}
34+
#[derive(Clone, Hash, PartialEq, Eq, PartialOrd, Ord,
35+
Debug, Copy)]
36+
pub struct Empty;
37+
#[derive(Clone, Hash, PartialEq, Eq, PartialOrd, Ord,
38+
Debug, Copy)]
39+
pub struct AlsoEmpty {}
3440

35-
fn main() {
36-
Foo { x: 0 };
37-
Bar::Quux(3);
38-
Baz::A;
39-
}

src/test/run-pass/derive-no-std.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// aux-build:derive-no-std.rs
12+
13+
extern crate derive_no_std;
14+
use derive_no_std::*;
15+
16+
fn main() {
17+
let f = Foo { x: 0 };
18+
assert_eq!(f.clone(), Foo::default());
19+
20+
assert!(Bar::Qux < Bar::Quux(42));
21+
}
22+

0 commit comments

Comments
 (0)