-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for intrinsics::unreachable
- Loading branch information
Keegan McAllister
committed
Oct 5, 2014
1 parent
401aeaf
commit 675aa76
Showing
4 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
-include ../tools.mk | ||
|
||
ifndef IS_WINDOWS | ||
# The assembly for exit-unreachable.rs should be shorter because it's missing | ||
# (at minimum) a return instruction. | ||
|
||
all: | ||
$(RUSTC) -O --emit asm exit-ret.rs | ||
$(RUSTC) -O --emit asm exit-unreachable.rs | ||
test `wc -l < $(TMPDIR)/exit-unreachable.s` -lt `wc -l < $(TMPDIR)/exit-ret.s` | ||
else | ||
# Because of Windows exception handling, the code is not necessarily any shorter. | ||
# https://github.com/llvm-mirror/llvm/commit/64b2297786f7fd6f5fa24cdd4db0298fbf211466 | ||
all: | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(asm)] | ||
#![crate_type="lib"] | ||
|
||
pub fn exit(n: uint) { | ||
unsafe { | ||
// Pretend this asm is an exit() syscall. | ||
asm!("" :: "r"(n) :: "volatile"); | ||
// Can't actually reach this point, but rustc doesn't know that. | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/test/run-make/intrinsic-unreachable/exit-unreachable.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(asm)] | ||
#![crate_type="lib"] | ||
|
||
use std::intrinsics; | ||
|
||
pub fn exit(n: uint) -> ! { | ||
unsafe { | ||
// Pretend this asm is an exit() syscall. | ||
asm!("" :: "r"(n) :: "volatile"); | ||
intrinsics::unreachable() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
use std::intrinsics; | ||
|
||
// See also src/test/run-make/intrinsic-unreachable. | ||
|
||
unsafe fn f(x: uint) -> uint { | ||
match x { | ||
17 => 23, | ||
_ => intrinsics::unreachable(), | ||
} | ||
} | ||
|
||
fn main() { | ||
assert_eq!(unsafe { f(17) }, 23); | ||
} |
675aa76
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
saw approval from thestinger
at kmcallister@675aa76
675aa76
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merging kmcallister/rust/llvm-unreachable = 675aa76 into auto
675aa76
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kmcallister/rust/llvm-unreachable = 675aa76 merged ok, testing candidate = 5660db2
675aa76
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all tests pass:
success: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/1671
success: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/1668
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-c/builds/1662
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/1668
success: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/1665
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-c/builds/1664
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/1664
success: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/1668
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-c/builds/1662
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/1661
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/1664
success: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/1320
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/1318
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-c/builds/1322
success: http://buildbot.rust-lang.org/builders/auto-win-64-opt/builds/155
success: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-t/builds/153
success: http://buildbot.rust-lang.org/builders/auto-win-64-nopt-c/builds/152
675aa76
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fast-forwarding master to auto = 5660db2