2015-01-30 08:44:27 +00:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Test that the CompilerCalls interface to the compiler works.
|
|
|
|
|
2015-04-22 22:20:57 +00:00
|
|
|
// ignore-cross-compile
|
2015-02-03 00:40:52 +00:00
|
|
|
|
2018-07-24 17:24:12 +00:00
|
|
|
#![feature(rustc_private)]
|
2015-01-30 08:44:27 +00:00
|
|
|
|
|
|
|
extern crate getopts;
|
|
|
|
extern crate rustc;
|
|
|
|
extern crate rustc_driver;
|
2018-05-08 13:10:16 +00:00
|
|
|
extern crate rustc_codegen_utils;
|
2015-01-30 08:44:27 +00:00
|
|
|
extern crate syntax;
|
2016-06-24 01:21:35 +00:00
|
|
|
extern crate rustc_errors as errors;
|
2018-07-31 21:23:31 +00:00
|
|
|
extern crate rustc_metadata;
|
2015-01-30 08:44:27 +00:00
|
|
|
|
|
|
|
use rustc::session::Session;
|
|
|
|
use rustc::session::config::{self, Input};
|
2015-02-03 00:40:52 +00:00
|
|
|
use rustc_driver::{driver, CompilerCalls, Compilation};
|
2018-05-08 13:10:16 +00:00
|
|
|
use rustc_codegen_utils::codegen_backend::CodegenBackend;
|
2018-07-31 21:23:31 +00:00
|
|
|
use rustc_metadata::cstore::CStore;
|
2016-08-09 12:44:11 +00:00
|
|
|
use syntax::ast;
|
2015-01-30 08:44:27 +00:00
|
|
|
|
2015-02-27 05:00:43 +00:00
|
|
|
use std::path::PathBuf;
|
2015-01-30 08:44:27 +00:00
|
|
|
|
2018-05-17 18:32:09 +00:00
|
|
|
struct TestCalls<'a> {
|
|
|
|
count: &'a mut u32
|
2015-01-30 08:44:27 +00:00
|
|
|
}
|
|
|
|
|
2018-05-17 18:32:09 +00:00
|
|
|
impl<'a> CompilerCalls<'a> for TestCalls<'a> {
|
2015-01-30 08:44:27 +00:00
|
|
|
fn early_callback(&mut self,
|
|
|
|
_: &getopts::Matches,
|
2016-02-08 20:43:01 +00:00
|
|
|
_: &config::Options,
|
2016-08-09 12:44:11 +00:00
|
|
|
_: &ast::CrateConfig,
|
2016-06-24 01:21:35 +00:00
|
|
|
_: &errors::registry::Registry,
|
2016-01-05 01:35:22 +00:00
|
|
|
_: config::ErrorOutputType)
|
2015-02-03 00:40:52 +00:00
|
|
|
-> Compilation {
|
2018-05-17 18:32:09 +00:00
|
|
|
*self.count *= 2;
|
2015-02-03 00:40:52 +00:00
|
|
|
Compilation::Continue
|
2015-01-30 08:44:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn late_callback(&mut self,
|
2018-05-08 13:10:16 +00:00
|
|
|
_: &CodegenBackend,
|
2015-01-30 08:44:27 +00:00
|
|
|
_: &getopts::Matches,
|
|
|
|
_: &Session,
|
2018-07-31 21:23:31 +00:00
|
|
|
_: &CStore,
|
2015-01-30 08:44:27 +00:00
|
|
|
_: &Input,
|
2015-02-27 05:00:43 +00:00
|
|
|
_: &Option<PathBuf>,
|
|
|
|
_: &Option<PathBuf>)
|
2015-02-03 00:40:52 +00:00
|
|
|
-> Compilation {
|
2018-05-17 18:32:09 +00:00
|
|
|
*self.count *= 3;
|
2015-02-03 00:40:52 +00:00
|
|
|
Compilation::Stop
|
2015-01-30 08:44:27 +00:00
|
|
|
}
|
|
|
|
|
2015-02-27 05:00:43 +00:00
|
|
|
fn some_input(&mut self, input: Input, input_path: Option<PathBuf>)
|
|
|
|
-> (Input, Option<PathBuf>) {
|
2018-05-17 18:32:09 +00:00
|
|
|
*self.count *= 5;
|
2015-01-30 08:44:27 +00:00
|
|
|
(input, input_path)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_input(&mut self,
|
|
|
|
_: &getopts::Matches,
|
|
|
|
_: &config::Options,
|
2016-08-09 12:44:11 +00:00
|
|
|
_: &ast::CrateConfig,
|
2015-02-27 05:00:43 +00:00
|
|
|
_: &Option<PathBuf>,
|
|
|
|
_: &Option<PathBuf>,
|
2016-06-24 01:21:35 +00:00
|
|
|
_: &errors::registry::Registry)
|
2015-02-27 05:00:43 +00:00
|
|
|
-> Option<(Input, Option<PathBuf>)> {
|
2015-01-30 08:44:27 +00:00
|
|
|
panic!("This shouldn't happen");
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:32:09 +00:00
|
|
|
fn build_controller(self: Box<Self>,
|
2016-04-21 05:28:25 +00:00
|
|
|
_: &Session,
|
|
|
|
_: &getopts::Matches)
|
|
|
|
-> driver::CompileController<'a> {
|
2015-01-30 08:44:27 +00:00
|
|
|
panic!("This shouldn't be called");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2018-05-17 18:32:09 +00:00
|
|
|
let mut count = 1;
|
|
|
|
{
|
|
|
|
let tc = TestCalls { count: &mut count };
|
|
|
|
// we should never get use this filename, but lets make sure they are valid args.
|
|
|
|
let args = vec!["compiler-calls".to_string(), "foo.rs".to_string()];
|
2018-08-23 03:05:37 +00:00
|
|
|
syntax::with_globals(|| {
|
|
|
|
rustc_driver::run_compiler(&args, Box::new(tc), None, None);
|
|
|
|
});
|
2018-05-17 18:32:09 +00:00
|
|
|
}
|
|
|
|
assert_eq!(count, 30);
|
2015-01-30 08:44:27 +00:00
|
|
|
}
|