diff options
| author | bors <bors@rust-lang.org> | 2015-08-23 07:50:06 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-08-23 07:50:06 +0000 |
| commit | 54b2eced630655290d4d74f3da16cdac7ec67abe (patch) | |
| tree | 4161d6b20d3b49df2b750fde1e9431be1742a1e5 | |
| parent | d530379df6ad5a43487dcfa3ea43c69b3b145940 (diff) | |
| parent | 8b70e1e0080650e078c057eab311f2aa6f2e0173 (diff) | |
| download | rust-54b2eced630655290d4d74f3da16cdac7ec67abe.tar.gz rust-54b2eced630655290d4d74f3da16cdac7ec67abe.zip | |
Auto merge of #27927 - DiamondLovesYou:no-asm, r=alexcrichton
| -rw-r--r-- | src/librustc/lib.rs | 1 | ||||
| -rw-r--r-- | src/librustc/middle/check_no_asm.rs | 41 | ||||
| -rw-r--r-- | src/librustc_back/target/mod.rs | 4 | ||||
| -rw-r--r-- | src/librustc_driver/driver.rs | 3 |
4 files changed, 49 insertions, 0 deletions
diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 370405d82ab..1047f51e95f 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -112,6 +112,7 @@ pub mod middle { pub mod check_static_recursion; pub mod check_loop; pub mod check_match; + pub mod check_no_asm; pub mod check_rvalues; pub mod const_eval; pub mod dataflow; diff --git a/src/librustc/middle/check_no_asm.rs b/src/librustc/middle/check_no_asm.rs new file mode 100644 index 00000000000..aa1b7457aa9 --- /dev/null +++ b/src/librustc/middle/check_no_asm.rs @@ -0,0 +1,41 @@ +// Copyright 2015 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. + +/// Run over the whole crate and check for ExprInlineAsm. +/// Inline asm isn't allowed on virtual ISA based targets, so we reject it +/// here. + +use session::Session; + +use syntax::ast; +use syntax::visit::Visitor; +use syntax::visit; + +pub fn check_crate(sess: &Session, krate: &ast::Crate) { + if sess.target.target.options.allow_asm { return; } + + visit::walk_crate(&mut CheckNoAsm { sess: sess, }, krate); +} + +#[derive(Copy, Clone)] +struct CheckNoAsm<'a> { + sess: &'a Session, +} + +impl<'a, 'v> Visitor<'v> for CheckNoAsm<'a> { + fn visit_expr(&mut self, e: &ast::Expr) { + match e.node { + ast::ExprInlineAsm(_) => self.sess.span_err(e.span, + "asm! is unsupported on this target"), + _ => {}, + } + visit::walk_expr(self, e) + } +} diff --git a/src/librustc_back/target/mod.rs b/src/librustc_back/target/mod.rs index 542791ae904..d5f081921ca 100644 --- a/src/librustc_back/target/mod.rs +++ b/src/librustc_back/target/mod.rs @@ -168,6 +168,8 @@ pub struct TargetOptions { /// currently only "gnu" is used to fall into LLVM. Unknown strings cause /// the system linker to be used. pub archive_format: String, + /// Is asm!() allowed? Defaults to true. + pub allow_asm: bool, /// Whether the target uses a custom unwind resumption routine. /// By default LLVM lowers `resume` instructions into calls to `_Unwind_Resume` /// defined in libgcc. If this option is enabled, the target must provide @@ -217,6 +219,7 @@ impl Default for TargetOptions { custom_unwind_resume: false, lib_allocation_crate: "alloc_system".to_string(), exe_allocation_crate: "alloc_system".to_string(), + allow_asm: true, } } } @@ -310,6 +313,7 @@ impl Target { key!(no_compiler_rt, bool); key!(pre_link_args, list); key!(post_link_args, list); + key!(allow_asm, bool); base } diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs index 346e7a7bf98..f08c962a1c2 100644 --- a/src/librustc_driver/driver.rs +++ b/src/librustc_driver/driver.rs @@ -563,6 +563,9 @@ pub fn phase_2_configure_and_expand(sess: &Session, time(time_passes, "checking that all macro invocations are gone", || syntax::ext::expand::check_for_macros(&sess.parse_sess, &krate)); + time(time_passes, "checking for inline asm in case the target doesn't support it", || + middle::check_no_asm::check_crate(sess, &krate)); + // One final feature gating of the true AST that gets compiled // later, to make sure we've got everything (e.g. configuration // can insert new attributes via `cfg_attr`) |
