rust/src/librustc/driver/driver.rs

999 lines
36 KiB
Rust
Raw Normal View History

// Copyright 2012 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 back::link;
2013-01-29 08:28:08 -06:00
use back::{arm, x86, x86_64, mips};
use driver::session::{Aggressive};
2013-03-26 15:38:07 -05:00
use driver::session::{Session, Session_, No, Less, Default};
use driver::session;
use front;
use lib::llvm::llvm;
2012-09-04 13:54:36 -05:00
use metadata::{creader, cstore, filesearch};
use metadata;
use middle::{trans, freevars, kind, ty, typeck, lint, astencode, reachable};
use middle;
use util::common::time;
2012-09-04 13:54:36 -05:00
use util::ppaux;
use std::hashmap::HashMap;
use std::int;
use std::io;
use std::os;
use std::vec;
2013-05-23 11:39:10 -05:00
use extra::getopts::groups::{optopt, optmulti, optflag, optflagopt};
use extra::getopts::{opt_present};
use extra::getopts;
use syntax::ast;
use syntax::abi;
use syntax::attr;
use syntax::codemap;
use syntax::diagnostic;
use syntax::parse;
2013-05-14 19:27:27 -05:00
use syntax::parse::token;
use syntax::print::{pp, pprust};
use syntax;
pub enum pp_mode {
ppm_normal,
ppm_expanded,
ppm_typed,
ppm_identified,
ppm_expanded_identified
}
/**
* The name used for source code that doesn't originate in a file
* (e.g. source from stdin or a string)
*/
pub fn anon_src() -> @str { @"<anon>" }
pub fn source_name(input: &input) -> @str {
match *input {
file_input(ref ifile) => ifile.to_str().to_managed(),
2012-08-03 21:59:04 -05:00
str_input(_) => anon_src()
}
}
pub fn default_configuration(sess: Session, argv0: @str, input: &input) ->
ast::crate_cfg {
2013-06-15 02:43:19 -05:00
let (libc, tos) = match sess.targ_cfg.os {
session::os_win32 => (@"msvcrt.dll", @"win32"),
session::os_macos => (@"libc.dylib", @"macos"),
session::os_linux => (@"libc.so.6", @"linux"),
session::os_android => (@"libc.so", @"android"),
session::os_freebsd => (@"libc.so.7", @"freebsd")
};
// ARM is bi-endian, however using NDK seems to default
// to little-endian unless a flag is provided.
let (end,arch,wordsz) = match sess.targ_cfg.arch {
2013-06-15 02:43:19 -05:00
abi::X86 => (@"little", @"x86", @"32"),
abi::X86_64 => (@"little", @"x86_64", @"64"),
abi::Arm => (@"little", @"arm", @"32"),
abi::Mips => (@"big", @"mips", @"32")
};
2013-06-15 02:43:19 -05:00
let mk = attr::mk_name_value_item_str;
2012-08-01 19:30:05 -05:00
return ~[ // Target bindings.
attr::mk_word_item(os::FAMILY.to_managed()),
mk(@"target_os", tos),
mk(@"target_family", os::FAMILY.to_managed()),
mk(@"target_arch", arch),
mk(@"target_endian", end),
mk(@"target_word_size", wordsz),
mk(@"target_libc", libc),
// Build bindings.
mk(@"build_compiler", argv0),
mk(@"build_input", source_name(input))];
}
pub fn append_configuration(cfg: ast::crate_cfg, name: @str)
-> ast::crate_cfg {
if attr::contains_name(cfg, name) {
2013-02-11 10:36:42 -06:00
cfg
} else {
vec::append_one(cfg, attr::mk_word_item(name))
}
}
pub fn build_configuration(sess: Session, argv0: @str, input: &input) ->
ast::crate_cfg {
// Combine the configuration requested by the session (command line) with
// some default and generated configuration items
let default_cfg = default_configuration(sess, argv0, input);
let user_cfg = /*bad*/copy sess.opts.cfg;
// If the user wants a test runner, then add the test cfg
let user_cfg = if sess.opts.test { append_configuration(user_cfg, @"test") }
else { user_cfg };
// If the user requested GC, then add the GC cfg
let user_cfg = append_configuration(
user_cfg,
if sess.opts.gc { @"gc" } else { @"nogc" });
return vec::append(user_cfg, default_cfg);
}
// Convert strings provided as --cfg [cfgspec] into a crate_cfg
fn parse_cfgspecs(cfgspecs: ~[~str],
demitter: diagnostic::Emitter) -> ast::crate_cfg {
do cfgspecs.consume_iter().transform |s| {
let sess = parse::new_parse_sess(Some(demitter));
parse::parse_meta_from_source_str(@"cfgspec", s.to_managed(), ~[], sess)
}.collect()
}
pub enum input {
/// Load source from file
file_input(Path),
/// The string is the source
// FIXME (#2319): Don't really want to box the source string
str_input(@str)
}
pub fn parse_input(sess: Session, cfg: ast::crate_cfg, input: &input)
-> @ast::crate {
match *input {
file_input(ref file) => {
2013-04-23 12:57:41 -05:00
parse::parse_crate_from_file(&(*file), cfg, sess.parse_sess)
}
str_input(src) => {
parse::parse_crate_from_source_str(
anon_src(), src, cfg, sess.parse_sess)
}
}
}
/// First phase to do, last phase to do
#[deriving(Eq)]
pub struct compile_upto {
from: compile_phase,
to: compile_phase
}
#[deriving(Eq)]
pub enum compile_phase {
2012-01-19 19:56:05 -06:00
cu_parse,
cu_expand, // means "it's already expanded"
2012-01-19 19:56:05 -06:00
cu_typeck,
cu_no_trans,
cu_everything,
}
// For continuing compilation after a parsed crate has been
// modified
#[fixed_stack_segment]
pub fn compile_rest(sess: Session,
cfg: ast::crate_cfg,
phases: compile_upto,
outputs: Option<@OutputFilenames>,
curr: Option<@ast::crate>)
-> (Option<@ast::crate>, Option<ty::ctxt>) {
let time_passes = sess.time_passes();
let mut crate = curr.unwrap();
if phases.from == cu_parse || phases.from == cu_everything {
*sess.building_library = session::building_library(
sess.opts.crate_type, crate, sess.opts.test);
2012-06-30 18:19:07 -05:00
// strip before expansion to allow macros to depend on
// configuration variables e.g/ in
//
// #[macro_escape] #[cfg(foo)]
// mod bar { macro_rules! baz!(() => {{}}) }
//
// baz! should not use this definition unless foo is enabled.
crate = time(time_passes, ~"std macros injection", ||
syntax::ext::expand::inject_std_macros(sess.parse_sess, copy cfg,
crate));
crate = time(time_passes, ~"configuration 1", ||
front::config::strip_unconfigured_items(crate));
crate = time(time_passes, ~"expansion", ||
syntax::ext::expand::expand_crate(sess.parse_sess, copy cfg,
crate));
// strip again, in case expansion added anything with a #[cfg].
crate = time(time_passes, ~"configuration 2", ||
front::config::strip_unconfigured_items(crate));
crate = time(time_passes, ~"maybe building test harness", ||
front::test::modify_for_testing(sess, crate));
}
2012-06-30 18:19:07 -05:00
if phases.to == cu_expand { return (Some(crate), None); }
assert!(phases.from != cu_no_trans);
let (llcx, llmod, link_meta) = {
crate = time(time_passes, ~"std injection", ||
2013-06-14 00:38:17 -05:00
front::std_inject::maybe_inject_libstd_ref(sess, crate));
2013-06-14 00:38:17 -05:00
let ast_map = time(time_passes, ~"ast indexing", ||
syntax::ast_map::map_crate(sess.diagnostic(), crate));
2013-06-14 00:38:17 -05:00
time(time_passes, ~"external crate/lib resolution", ||
creader::read_crates(sess.diagnostic(), crate, sess.cstore,
sess.filesearch,
session::sess_os_to_meta_os(sess.targ_cfg.os),
sess.opts.is_static,
token::get_ident_interner()));
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
let lang_items = time(time_passes, ~"language item collection", ||
middle::lang_items::collect_language_items(crate, sess));
2013-06-14 00:38:17 -05:00
let middle::resolve::CrateMap {
def_map: def_map,
exp_map2: exp_map2,
trait_map: trait_map
} =
time(time_passes, ~"resolution", ||
middle::resolve::resolve_crate(sess, lang_items, crate));
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
time(time_passes, ~"looking for entry point",
|| middle::entry::find_entry_point(sess, crate, ast_map));
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
let freevars = time(time_passes, ~"freevar finding", ||
freevars::annotate_freevars(def_map, crate));
2013-06-14 00:38:17 -05:00
let region_map = time(time_passes, ~"region resolution", ||
middle::region::resolve_crate(sess, def_map, crate));
2013-06-14 00:38:17 -05:00
let rp_set = time(time_passes, ~"region parameterization inference", ||
middle::region::determine_rp_in_crate(sess, ast_map, def_map, crate));
2013-06-14 00:38:17 -05:00
let ty_cx = ty::mk_ctxt(sess, def_map, ast_map, freevars,
region_map, rp_set, lang_items);
2013-06-14 00:38:17 -05:00
// passes are timed inside typeck
let (method_map, vtable_map) = typeck::check_crate(
ty_cx, trait_map, crate);
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
// These next two const passes can probably be merged
time(time_passes, ~"const marking", ||
middle::const_eval::process_crate(crate, ty_cx));
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
time(time_passes, ~"const checking", ||
middle::check_const::check_crate(sess, crate, ast_map, def_map,
method_map, ty_cx));
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
if phases.to == cu_typeck { return (Some(crate), Some(ty_cx)); }
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
time(time_passes, ~"privacy checking", ||
middle::privacy::check_crate(ty_cx, &method_map, crate));
2013-06-14 00:38:17 -05:00
time(time_passes, ~"effect checking", ||
middle::effect::check_crate(ty_cx, method_map, crate));
2012-06-30 18:19:07 -05:00
2013-06-14 00:38:17 -05:00
time(time_passes, ~"loop checking", ||
middle::check_loop::check_crate(ty_cx, crate));
2013-06-14 00:38:17 -05:00
let middle::moves::MoveMaps {moves_map, moved_variables_set,
capture_map} =
time(time_passes, ~"compute moves", ||
middle::moves::compute_moves(ty_cx, method_map, crate));
2013-06-14 00:38:17 -05:00
time(time_passes, ~"match checking", ||
middle::check_match::check_crate(ty_cx, method_map,
moves_map, crate));
2013-06-14 00:38:17 -05:00
time(time_passes, ~"liveness checking", ||
middle::liveness::check_crate(ty_cx, method_map,
capture_map, crate));
2013-06-14 00:38:17 -05:00
let (root_map, write_guard_map) =
time(time_passes, ~"borrow checking", ||
middle::borrowck::check_crate(ty_cx, method_map,
moves_map, moved_variables_set,
capture_map, crate));
time(time_passes, ~"kind checking", ||
kind::check_crate(ty_cx, method_map, crate));
let reachable_map =
time(time_passes, ~"reachability checking", ||
reachable::find_reachable(ty_cx, method_map, crate));
2013-06-14 00:38:17 -05:00
time(time_passes, ~"lint checking", ||
lint::check_crate(ty_cx, crate));
if phases.to == cu_no_trans {
return (Some(crate), Some(ty_cx));
}
2013-06-14 00:38:17 -05:00
let maps = astencode::Maps {
root_map: root_map,
method_map: method_map,
vtable_map: vtable_map,
write_guard_map: write_guard_map,
capture_map: capture_map
};
let outputs = outputs.get_ref();
time(time_passes, ~"translation", ||
trans::base::trans_crate(sess,
crate,
ty_cx,
2013-06-14 00:38:17 -05:00
&outputs.obj_filename,
exp_map2,
reachable_map,
maps))
};
let outputs = outputs.get_ref();
if (sess.opts.debugging_opts & session::print_link_args) != 0 {
2013-06-10 08:25:25 -05:00
io::println(link::link_args(sess, &outputs.obj_filename,
&outputs.out_filename, link_meta).connect(" "));
}
2013-04-02 11:42:08 -05:00
// NB: Android hack
if sess.targ_cfg.arch == abi::Arm &&
(sess.opts.output_type == link::output_type_object ||
sess.opts.output_type == link::output_type_exe) {
let output_type = link::output_type_assembly;
let obj_filename = outputs.obj_filename.with_filetype("s");
time(time_passes, ~"LLVM passes", ||
link::write::run_passes(sess, llcx, llmod, output_type,
&obj_filename));
link::write::run_ndk(sess, &obj_filename, &outputs.obj_filename);
} else {
time(time_passes, ~"LLVM passes", ||
link::write::run_passes(sess, llcx, llmod, sess.opts.output_type,
&outputs.obj_filename));
}
let stop_after_codegen =
sess.opts.output_type != link::output_type_exe ||
(sess.opts.is_static && *sess.building_library) ||
2012-08-24 23:54:30 -05:00
sess.opts.jit;
if stop_after_codegen { return (None, None); }
time(time_passes, ~"linking", ||
link::link_binary(sess,
&outputs.obj_filename,
&outputs.out_filename, link_meta));
2012-06-30 18:19:07 -05:00
return (None, None);
}
pub fn compile_upto(sess: Session, cfg: ast::crate_cfg,
input: &input, upto: compile_phase,
outputs: Option<@OutputFilenames>)
-> (Option<@ast::crate>, Option<ty::ctxt>) {
let time_passes = sess.time_passes();
2013-04-12 00:15:30 -05:00
let crate = time(time_passes, ~"parsing",
|| parse_input(sess, copy cfg, input) );
if upto == cu_parse { return (Some(crate), None); }
compile_rest(sess, cfg, compile_upto { from: cu_parse, to: upto },
outputs, Some(crate))
}
pub fn compile_input(sess: Session, cfg: ast::crate_cfg, input: &input,
outdir: &Option<Path>, output: &Option<Path>) {
let upto = if sess.opts.parse_only { cu_parse }
else if sess.opts.no_trans { cu_no_trans }
else { cu_everything };
let outputs = build_output_filenames(input, outdir, output, [], sess); // ???
2012-08-20 14:23:37 -05:00
compile_upto(sess, cfg, input, upto, Some(outputs));
}
pub fn pretty_print_input(sess: Session, cfg: ast::crate_cfg, input: &input,
ppm: pp_mode) {
fn ann_paren_for_expr(node: pprust::ann_node) {
2012-08-06 14:34:08 -05:00
match node {
2012-08-25 20:38:21 -05:00
pprust::node_expr(s, _) => pprust::popen(s),
2012-08-03 21:59:04 -05:00
_ => ()
}
}
fn ann_typed_post(tcx: ty::ctxt, node: pprust::ann_node) {
2012-08-06 14:34:08 -05:00
match node {
2012-08-03 21:59:04 -05:00
pprust::node_expr(s, expr) => {
pp::space(s.s);
pp::word(s.s, "as");
pp::space(s.s);
pp::word(s.s, ppaux::ty_to_str(tcx, ty::expr_ty(tcx, expr)));
pprust::pclose(s);
}
2012-08-03 21:59:04 -05:00
_ => ()
}
}
fn ann_identified_post(node: pprust::ann_node) {
2012-08-06 14:34:08 -05:00
match node {
2012-08-03 21:59:04 -05:00
pprust::node_item(s, item) => {
pp::space(s.s);
pprust::synth_comment(s, int::to_str(item.id));
}
pprust::node_block(s, ref blk) => {
pp::space(s.s);
2012-12-04 23:13:02 -06:00
pprust::synth_comment(
s, ~"block " + int::to_str(blk.node.id));
}
2012-08-03 21:59:04 -05:00
pprust::node_expr(s, expr) => {
pp::space(s.s);
pprust::synth_comment(s, int::to_str(expr.id));
pprust::pclose(s);
}
2012-08-03 21:59:04 -05:00
pprust::node_pat(s, pat) => {
pp::space(s.s);
pprust::synth_comment(s, ~"pat " + int::to_str(pat.id));
}
}
}
// Because the pretty printer needs to make a pass over the source
// to collect comments and literals, and we need to support reading
// from stdin, we're going to just suck the source into a string
// so both the parser and pretty-printer can use it.
2012-08-06 14:34:08 -05:00
let upto = match ppm {
2012-08-03 21:59:04 -05:00
ppm_expanded | ppm_expanded_identified => cu_expand,
ppm_typed => cu_typeck,
_ => cu_parse
};
let (crate, tcx) = compile_upto(sess, cfg, input, upto, None);
2012-08-06 14:34:08 -05:00
let ann = match ppm {
2012-08-03 21:59:04 -05:00
ppm_typed => {
pprust::pp_ann {pre: ann_paren_for_expr,
post: |a| ann_typed_post(tcx.get(), a) }
}
2012-08-03 21:59:04 -05:00
ppm_identified | ppm_expanded_identified => {
pprust::pp_ann {pre: ann_paren_for_expr,
post: ann_identified_post}
}
ppm_expanded | ppm_normal => {
pprust::no_ann()
}
};
let is_expanded = upto != cu_parse;
2012-11-12 20:24:56 -06:00
let src = sess.codemap.get_filemap(source_name(input)).src;
do io::with_str_reader(src) |rdr| {
2013-05-14 19:27:27 -05:00
pprust::print_crate(sess.codemap, token::get_ident_interner(),
sess.span_diagnostic, crate.unwrap(),
source_name(input),
rdr, io::stdout(), ann, is_expanded);
}
}
pub fn get_os(triple: &str) -> Option<session::os> {
for os_names.iter().advance |&(name, os)| {
2013-06-15 02:43:19 -05:00
if triple.contains(name) { return Some(os) }
}
None
}
2013-06-15 02:43:19 -05:00
static os_names : &'static [(&'static str, session::os)] = &'static [
2013-06-15 13:26:02 -05:00
("mingw32", session::os_win32),
2013-06-15 02:43:19 -05:00
("win32", session::os_win32),
("darwin", session::os_macos),
("android", session::os_android),
("linux", session::os_linux),
("freebsd", session::os_freebsd)];
pub fn get_arch(triple: &str) -> Option<abi::Architecture> {
for architecture_abis.iter().advance |&(arch, abi)| {
2013-06-15 02:43:19 -05:00
if triple.contains(arch) { return Some(abi) }
}
None
}
2013-06-15 02:43:19 -05:00
static architecture_abis : &'static [(&'static str, abi::Architecture)] = &'static [
("i386", abi::X86),
("i486", abi::X86),
("i586", abi::X86),
("i686", abi::X86),
("i786", abi::X86),
("x86_64", abi::X86_64),
("arm", abi::Arm),
("xscale", abi::Arm),
("mips", abi::Mips)];
pub fn build_target_config(sopts: @session::options,
demitter: diagnostic::Emitter)
-> @session::config {
2012-08-06 14:34:08 -05:00
let os = match get_os(sopts.target_triple) {
2012-08-20 14:23:37 -05:00
Some(os) => os,
None => early_error(demitter, ~"unknown operating system")
};
2012-08-06 14:34:08 -05:00
let arch = match get_arch(sopts.target_triple) {
2012-08-20 14:23:37 -05:00
Some(arch) => arch,
None => early_error(demitter,
2012-08-03 21:59:04 -05:00
~"unknown architecture: " + sopts.target_triple)
};
2012-08-06 14:34:08 -05:00
let (int_type, uint_type, float_type) = match arch {
abi::X86 => (ast::ty_i32, ast::ty_u32, ast::ty_f64),
abi::X86_64 => (ast::ty_i64, ast::ty_u64, ast::ty_f64),
abi::Arm => (ast::ty_i32, ast::ty_u32, ast::ty_f64),
abi::Mips => (ast::ty_i32, ast::ty_u32, ast::ty_f64)
};
2012-08-06 14:34:08 -05:00
let target_strs = match arch {
abi::X86 => x86::get_target_strs(os),
abi::X86_64 => x86_64::get_target_strs(os),
abi::Arm => arm::get_target_strs(os),
abi::Mips => mips::get_target_strs(os)
};
let target_cfg = @session::config {
os: os,
arch: arch,
target_strs: target_strs,
int_type: int_type,
uint_type: uint_type,
float_type: float_type
};
2012-08-01 19:30:05 -05:00
return target_cfg;
}
pub fn host_triple() -> ~str {
// Get the host triple out of the build environment. This ensures that our
// idea of the host triple is the same as for the set of libraries we've
// actually built. We can't just take LLVM's host triple because they
// normalize all ix86 architectures to i386.
//
// Instead of grabbing the host triple (for the current host), we grab (at
// compile time) the target triple that this rustc is built with and
// calling that (at runtime) the host triple.
let ht = env!("CFG_COMPILER_TRIPLE");
return if ht != "" {
ht.to_owned()
} else {
fail!("rustc built without CFG_COMPILER_TRIPLE")
};
}
pub fn build_session_options(binary: @str,
matches: &getopts::Matches,
demitter: diagnostic::Emitter)
-> @session::options {
let crate_type = if opt_present(matches, "lib") {
session::lib_crate
} else if opt_present(matches, "bin") {
session::bin_crate
} else {
session::unknown_crate
};
let parse_only = opt_present(matches, "parse-only");
let no_trans = opt_present(matches, "no-trans");
let lint_levels = [lint::allow, lint::warn,
lint::deny, lint::forbid];
let mut lint_opts = ~[];
let lint_dict = lint::get_lint_dict();
for lint_levels.iter().advance |level| {
let level_name = lint::level_to_str(*level);
// FIXME: #4318 Instead of to_ascii and to_str_ascii, could use
// to_ascii_consume and to_str_consume to not do a unnecessary copy.
let level_short = level_name.slice_chars(0, 1);
let level_short = level_short.to_ascii().to_upper().to_str_ascii();
let flags = vec::append(getopts::opt_strs(matches, level_short),
getopts::opt_strs(matches, level_name));
for flags.iter().advance |lint_name| {
2013-06-11 06:46:40 -05:00
let lint_name = lint_name.replace("-", "_");
match lint_dict.find_equiv(&lint_name) {
2012-08-20 14:23:37 -05:00
None => {
2012-08-22 19:24:52 -05:00
early_error(demitter, fmt!("unknown %s flag: %s",
2013-03-22 21:26:41 -05:00
level_name, lint_name));
}
2012-08-20 14:23:37 -05:00
Some(lint) => {
lint_opts.push((lint.lint, *level));
}
}
}
}
let mut debugging_opts = 0u;
let debug_flags = getopts::opt_strs(matches, "Z");
let debug_map = session::debugging_opts_map();
for debug_flags.iter().advance |debug_flag| {
let mut this_bit = 0u;
for debug_map.iter().advance |tuple| {
let (name, bit) = match *tuple { (ref a, _, b) => (a, b) };
if name == debug_flag { this_bit = bit; break; }
}
if this_bit == 0u {
early_error(demitter, fmt!("unknown debug flag: %s", *debug_flag))
}
debugging_opts |= this_bit;
}
if debugging_opts & session::debug_llvm != 0 {
unsafe {
llvm::LLVMSetDebug(1);
}
}
let output_type =
if parse_only || no_trans {
link::output_type_none
} else if opt_present(matches, "S") &&
opt_present(matches, "emit-llvm") {
link::output_type_llvm_assembly
} else if opt_present(matches, "S") {
link::output_type_assembly
} else if opt_present(matches, "c") {
link::output_type_object
} else if opt_present(matches, "emit-llvm") {
link::output_type_bitcode
} else { link::output_type_exe };
let sysroot_opt = getopts::opt_maybe_str(matches, "sysroot");
let sysroot_opt = sysroot_opt.map(|m| @Path(*m));
let target_opt = getopts::opt_maybe_str(matches, "target");
let target_feature_opt = getopts::opt_maybe_str(matches, "target-feature");
let save_temps = getopts::opt_present(matches, "save-temps");
let opt_level = {
if (debugging_opts & session::no_opt) != 0 {
No
} else if opt_present(matches, "O") {
if opt_present(matches, "opt-level") {
early_error(demitter, ~"-O and --opt-level both provided");
}
2012-08-21 19:22:45 -05:00
Default
} else if opt_present(matches, "opt-level") {
match getopts::opt_str(matches, "opt-level") {
2012-08-21 19:22:45 -05:00
~"0" => No,
~"1" => Less,
~"2" => Default,
~"3" => Aggressive,
2012-08-03 21:59:04 -05:00
_ => {
early_error(demitter, ~"optimization level needs to be between 0-3")
}
}
} else { No }
};
let gc = debugging_opts & session::gc != 0;
let jit = debugging_opts & session::jit != 0;
let extra_debuginfo = debugging_opts & session::extra_debug_info != 0;
let debuginfo = debugging_opts & session::debug_info != 0 ||
extra_debuginfo;
let statik = debugging_opts & session::statik != 0;
let target =
2012-08-06 14:34:08 -05:00
match target_opt {
2012-08-20 14:23:37 -05:00
None => host_triple(),
Some(s) => s
};
2013-04-22 06:54:12 -05:00
let target_feature = match target_feature_opt {
None => ~"",
Some(s) => s
};
let addl_lib_search_paths = getopts::opt_strs(matches, "L").map(|s| Path(*s));
let linker = getopts::opt_maybe_str(matches, "linker");
let linker_args = getopts::opt_strs(matches, "link-args").flat_map( |a| {
a.split_iter(' ').transform(|arg| arg.to_owned()).collect()
});
let cfg = parse_cfgspecs(getopts::opt_strs(matches, "cfg"), demitter);
let test = opt_present(matches, "test");
2013-03-04 22:12:23 -06:00
let android_cross_path = getopts::opt_maybe_str(
matches, "android-cross-path");
let custom_passes = match getopts::opt_maybe_str(matches, "passes") {
None => ~[],
Some(s) => {
s.split_iter(|c: char| c == ' ' || c == ',').transform(|s| {
s.trim().to_owned()
}).collect()
}
};
let sopts = @session::options {
crate_type: crate_type,
is_static: statik,
gc: gc,
optimize: opt_level,
custom_passes: custom_passes,
debuginfo: debuginfo,
extra_debuginfo: extra_debuginfo,
lint_opts: lint_opts,
save_temps: save_temps,
jit: jit,
output_type: output_type,
addl_lib_search_paths: @mut addl_lib_search_paths,
linker: linker,
linker_args: linker_args,
maybe_sysroot: sysroot_opt,
target_triple: target,
2013-04-22 06:54:12 -05:00
target_feature: target_feature,
cfg: cfg,
binary: binary,
test: test,
parse_only: parse_only,
no_trans: no_trans,
2013-03-04 22:12:23 -06:00
debugging_opts: debugging_opts,
android_cross_path: android_cross_path
};
2012-08-01 19:30:05 -05:00
return sopts;
}
pub fn build_session(sopts: @session::options,
demitter: diagnostic::Emitter) -> Session {
2012-11-12 20:24:56 -06:00
let codemap = @codemap::CodeMap::new();
2012-02-17 16:15:09 -06:00
let diagnostic_handler =
2012-08-20 14:23:37 -05:00
diagnostic::mk_handler(Some(demitter));
2012-02-17 16:15:09 -06:00
let span_diagnostic_handler =
diagnostic::mk_span_handler(diagnostic_handler, codemap);
build_session_(sopts, codemap, demitter, span_diagnostic_handler)
2012-02-17 16:15:09 -06:00
}
pub fn build_session_(sopts: @session::options,
cm: @codemap::CodeMap,
demitter: diagnostic::Emitter,
span_diagnostic_handler: @diagnostic::span_handler)
-> Session {
let target_cfg = build_target_config(sopts, demitter);
2012-07-18 18:18:02 -05:00
let p_s = parse::new_parse_sess_special_handler(span_diagnostic_handler,
cm);
2013-05-14 19:27:27 -05:00
let cstore = @mut cstore::mk_cstore(token::get_ident_interner());
let filesearch = filesearch::mk_filesearch(
&sopts.maybe_sysroot,
sopts.target_triple,
sopts.addl_lib_search_paths);
@Session_ {
targ_cfg: target_cfg,
opts: sopts,
cstore: cstore,
parse_sess: p_s,
codemap: cm,
// For a library crate, this is always none
entry_fn: @mut None,
entry_type: @mut None,
span_diagnostic: span_diagnostic_handler,
filesearch: filesearch,
building_library: @mut false,
working_dir: os::getcwd(),
lints: @mut HashMap::new(),
}
}
pub fn parse_pretty(sess: Session, name: &str) -> pp_mode {
2012-08-06 14:34:08 -05:00
match name {
&"normal" => ppm_normal,
&"expanded" => ppm_expanded,
&"typed" => ppm_typed,
&"expanded,identified" => ppm_expanded_identified,
&"identified" => ppm_identified,
_ => {
sess.fatal("argument to `pretty` must be one of `normal`, \
`expanded`, `typed`, `identified`, \
or `expanded,identified`");
}
}
}
// rustc command line options
pub fn optgroups() -> ~[getopts::groups::OptGroup] {
~[
optflag("", "bin", "Compile an executable crate (default)"),
optflag("c", "", "Compile and assemble, but do not link"),
optmulti("", "cfg", "Configure the compilation
environment", "SPEC"),
optflag("", "emit-llvm",
"Produce an LLVM bitcode file"),
optflag("h", "help","Display this message"),
optmulti("L", "", "Add a directory to the library search path",
"PATH"),
optflag("", "lib", "Compile a library crate"),
optopt("", "linker", "Program to use for linking instead of the default.", "LINKER"),
optmulti("", "link-args", "FLAGS is a space-separated list of flags
passed to the linker", "FLAGS"),
optflag("", "ls", "List the symbols defined by a library crate"),
optflag("", "no-trans",
"Run all passes except translation; no output"),
optflag("O", "", "Equivalent to --opt-level=2"),
optopt("o", "", "Write output to <filename>", "FILENAME"),
optopt("", "opt-level",
"Optimize with possible levels 0-3", "LEVEL"),
optopt("", "passes", "Comma or space separated list of pass names to use. \
Overrides the default passes for optimization levels,\n\
a value of \"list\" will list the available passes.", "NAMES"),
optopt( "", "out-dir",
"Write output to compiler-chosen filename
in <dir>", "DIR"),
optflag("", "parse-only",
"Parse only; do not compile, assemble, or link"),
optflagopt("", "pretty",
"Pretty-print the input instead of compiling;
valid types are: normal (un-annotated source),
expanded (crates expanded),
typed (crates expanded, with type annotations),
or identified (fully parenthesized,
AST nodes and blocks with IDs)", "TYPE"),
optflag("S", "", "Compile only; do not assemble or link"),
optflag("", "save-temps",
"Write intermediate files (.bc, .opt.bc, .o)
in addition to normal output"),
optopt("", "sysroot",
"Override the system root", "PATH"),
optflag("", "test", "Build a test harness"),
optopt("", "target",
"Target triple cpu-manufacturer-kernel[-os]
2013-03-28 15:44:46 -05:00
to compile for (see chapter 3.4 of http://www.sourceware.org/autobook/
for detail)", "TRIPLE"),
optopt("", "target-feature",
"Target specific attributes (llc -mattr=help
for detail)", "FEATURE"),
optopt("", "android-cross-path",
"The path to the Android NDK", "PATH"),
2013-05-24 14:32:30 -05:00
optflagopt("W", "warn",
"Set lint warnings", "OPT"),
optmulti("A", "allow",
"Set lint allowed", "OPT"),
optmulti("D", "deny",
"Set lint denied", "OPT"),
optmulti("F", "forbid",
"Set lint forbidden", "OPT"),
optmulti("Z", "", "Set internal debugging options", "FLAG"),
optflag( "v", "version",
"Print version info and exit"),
]
}
pub struct OutputFilenames {
out_filename: Path,
obj_filename: Path
}
pub fn build_output_filenames(input: &input,
odir: &Option<Path>,
ofile: &Option<Path>,
attrs: &[ast::attribute],
sess: Session)
-> @OutputFilenames {
2012-06-14 14:40:49 -05:00
let obj_path;
let out_path;
let sopts = sess.opts;
let stop_after_codegen =
sopts.output_type != link::output_type_exe ||
sopts.is_static && *sess.building_library;
let obj_suffix =
2012-08-06 14:34:08 -05:00
match sopts.output_type {
link::output_type_none => ~"none",
link::output_type_bitcode => ~"bc",
link::output_type_assembly => ~"s",
link::output_type_llvm_assembly => ~"ll",
// Object and exe output both use the '.o' extension here
link::output_type_object | link::output_type_exe => ~"o"
};
match *ofile {
2012-08-20 14:23:37 -05:00
None => {
// "-" as input file will cause the parser to read from stdin so we
// have to make up a name
// We want to toss everything after the final '.'
let dirpath = match *odir {
Some(ref d) => (/*bad*/copy *d),
None => match *input {
str_input(_) => os::getcwd(),
file_input(ref ifile) => (*ifile).dir_path()
}
};
let mut stem = match *input {
file_input(ref ifile) => (*ifile).filestem().get().to_managed(),
str_input(_) => @"rust_out"
};
// If a linkage name meta is present, we use it as the link name
let linkage_metas = attr::find_linkage_metas(attrs);
if !linkage_metas.is_empty() {
// But if a linkage meta is present, that overrides
let maybe_matches = attr::find_meta_items_by_name(linkage_metas, "name");
if !maybe_matches.is_empty() {
match attr::get_meta_item_value_str(maybe_matches[0]) {
Some(s) => stem = s,
_ => ()
}
}
// If the name is missing, we just default to the filename
// version
}
if *sess.building_library {
out_path = dirpath.push(os::dll_filename(stem));
obj_path = dirpath.push(stem).with_filetype(obj_suffix);
} else {
out_path = dirpath.push(stem);
obj_path = dirpath.push(stem).with_filetype(obj_suffix);
}
}
Some(ref out_file) => {
out_path = (/*bad*/copy *out_file);
obj_path = if stop_after_codegen {
(/*bad*/copy *out_file)
} else {
(*out_file).with_filetype(obj_suffix)
};
if *sess.building_library {
// FIXME (#2401): We might want to warn here; we're actually not
// going to respect the user's choice of library name when it
// comes time to link, we'll be linking to
// lib<basename>-<hash>-<version>.so no matter what.
}
2012-08-20 14:23:37 -05:00
if *odir != None {
sess.warn("ignoring --out-dir flag due to -o flag.");
}
}
}
@OutputFilenames {
out_filename: out_path,
obj_filename: obj_path
}
}
pub fn early_error(emitter: diagnostic::Emitter, msg: ~str) -> ! {
2012-08-20 14:23:37 -05:00
emitter(None, msg, diagnostic::fatal);
fail!();
}
pub fn list_metadata(sess: Session, path: &Path, out: @io::Writer) {
metadata::loader::list_file_metadata(
2013-05-14 19:27:27 -05:00
token::get_ident_interner(),
session::sess_os_to_meta_os(sess.targ_cfg.os), path, out);
}
#[cfg(test)]
mod test {
use driver::driver::{build_configuration, build_session};
use driver::driver::{build_session_options, optgroups, str_input};
use extra::getopts::groups::getopts;
use extra::getopts;
use syntax::attr;
use syntax::diagnostic;
// When the user supplies --test we should implicitly supply --cfg test
#[test]
fn test_switch_implies_cfg_test() {
let matches =
&match getopts([~"--test"], optgroups()) {
2013-05-29 18:59:33 -05:00
Ok(m) => m,
Err(f) => fail!("test_switch_implies_cfg_test: %s", getopts::fail_str(f))
};
let sessopts = build_session_options(
@"rustc", matches, diagnostic::emit);
let sess = build_session(sessopts, diagnostic::emit);
let cfg = build_configuration(sess, @"whatever", &str_input(@""));
2013-05-23 11:39:10 -05:00
assert!((attr::contains_name(cfg, "test")));
}
// When the user supplies --test and --cfg test, don't implicitly add
// another --cfg test
#[test]
fn test_switch_implies_cfg_test_unless_cfg_test() {
let matches =
2013-05-23 11:39:10 -05:00
&match getopts([~"--test", ~"--cfg=test"], optgroups()) {
2013-05-29 18:59:33 -05:00
Ok(m) => m,
Err(f) => {
2013-05-09 06:52:07 -05:00
fail!("test_switch_implies_cfg_test_unless_cfg_test: %s", getopts::fail_str(f));
}
};
let sessopts = build_session_options(
@"rustc", matches, diagnostic::emit);
let sess = build_session(sessopts, diagnostic::emit);
let cfg = build_configuration(sess, @"whatever", &str_input(@""));
2013-05-23 11:39:10 -05:00
let test_items = attr::find_meta_items_by_name(cfg, "test");
assert_eq!(test_items.len(), 1u);
}
}