2010-06-23 21:03:09 -07:00
|
|
|
|
2011-06-15 11:19:50 -07:00
|
|
|
|
|
|
|
|
// -*- rust -*-
|
2011-09-12 16:13:28 -07:00
|
|
|
import metadata::{creader, cstore};
|
|
|
|
|
import syntax::parse::{parser, token};
|
|
|
|
|
import syntax::{ast, codemap};
|
2011-06-30 17:29:54 -07:00
|
|
|
import front::attr;
|
2011-09-12 16:13:28 -07:00
|
|
|
import middle::{trans, resolve, freevars, kind, ty, typeck};
|
2011-05-14 19:02:30 -07:00
|
|
|
import middle::tstate::ck;
|
2011-09-12 16:13:28 -07:00
|
|
|
import syntax::print::{pp, pprust};
|
2011-10-03 12:46:22 -07:00
|
|
|
import util::{ppaux, common, filesearch};
|
2011-05-13 16:47:37 -04:00
|
|
|
import back::link;
|
2011-05-12 17:24:54 +02:00
|
|
|
import lib::llvm;
|
2011-09-12 16:13:28 -07:00
|
|
|
import std::{fs, option, str, vec, int, io, run, getopts};
|
2011-05-12 17:24:54 +02:00
|
|
|
import std::map::mk_hashmap;
|
2011-09-12 16:13:28 -07:00
|
|
|
import std::option::{some, none};
|
|
|
|
|
import std::getopts::{optopt, optmulti, optflag, optflagopt, opt_present};
|
2011-05-13 16:47:37 -04:00
|
|
|
import back::link::output_type;
|
2011-05-12 17:24:54 +02:00
|
|
|
|
2011-08-26 15:11:06 -07:00
|
|
|
tag pp_mode { ppm_normal; ppm_expanded; ppm_typed; ppm_identified; }
|
2011-03-01 15:57:55 -08:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn default_configuration(sess: session::session, argv0: str, input: str) ->
|
2011-07-27 14:19:39 +02:00
|
|
|
ast::crate_cfg {
|
|
|
|
|
let libc =
|
|
|
|
|
alt sess.get_targ_cfg().os {
|
2011-09-02 15:34:58 -07:00
|
|
|
session::os_win32. { "msvcrt.dll" }
|
|
|
|
|
session::os_macos. { "libc.dylib" }
|
|
|
|
|
session::os_linux. { "libc.so.6" }
|
|
|
|
|
_ { "libc.so" }
|
2011-06-15 11:19:50 -07:00
|
|
|
};
|
2011-06-30 17:29:54 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
let mk = attr::mk_name_value_item_str;
|
2011-06-30 17:29:54 -07:00
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
ret [ // Target bindings.
|
2011-09-21 08:46:18 -07:00
|
|
|
mk("target_os", std::os::target_os()),
|
|
|
|
|
mk("target_arch", "x86"),
|
2011-09-02 15:34:58 -07:00
|
|
|
mk("target_libc", libc),
|
2011-08-19 15:16:48 -07:00
|
|
|
// Build bindings.
|
2011-09-21 08:46:18 -07:00
|
|
|
mk("build_compiler", argv0),
|
|
|
|
|
mk("build_input", input)];
|
2011-03-01 15:57:55 -08:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn build_configuration(sess: session::session, argv0: str, input: str) ->
|
2011-07-27 14:19:39 +02:00
|
|
|
ast::crate_cfg {
|
2011-07-01 15:30:25 -07:00
|
|
|
// Combine the configuration requested by the session (command line) with
|
2011-07-13 18:13:19 -07:00
|
|
|
// some default and generated configuration items
|
2011-07-27 14:19:39 +02:00
|
|
|
let default_cfg = default_configuration(sess, argv0, input);
|
|
|
|
|
let user_cfg = sess.get_opts().cfg;
|
2011-07-27 14:48:34 +02:00
|
|
|
// If the user wants a test runner, then add the test cfg
|
|
|
|
|
let gen_cfg =
|
2011-07-27 14:19:39 +02:00
|
|
|
{
|
2011-09-02 15:34:58 -07:00
|
|
|
if sess.get_opts().test && !attr::contains_name(user_cfg, "test")
|
|
|
|
|
{
|
|
|
|
|
[attr::mk_word_item("test")]
|
2011-08-19 15:16:48 -07:00
|
|
|
} else { [] }
|
2011-07-27 14:19:39 +02:00
|
|
|
};
|
2011-07-13 18:13:19 -07:00
|
|
|
ret user_cfg + gen_cfg + default_cfg;
|
2011-07-01 15:30:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Convert strings provided as --cfg [cfgspec] into a crate_cfg
|
2011-09-12 11:27:30 +02:00
|
|
|
fn parse_cfgspecs(cfgspecs: [str]) -> ast::crate_cfg {
|
2011-07-01 15:30:25 -07:00
|
|
|
// FIXME: It would be nice to use the parser to parse all varieties of
|
|
|
|
|
// meta_item here. At the moment we just support the meta_word variant.
|
2011-08-19 15:16:48 -07:00
|
|
|
let words = [];
|
2011-09-02 15:34:58 -07:00
|
|
|
for s: str in cfgspecs { words += [attr::mk_word_item(s)]; }
|
2011-07-05 17:57:34 -07:00
|
|
|
ret words;
|
2011-07-01 15:30:25 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn input_is_stdin(filename: str) -> bool { filename == "-" }
|
2011-07-30 15:50:16 -07:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn parse_input(sess: session::session, cfg: ast::crate_cfg, input: str) ->
|
2011-09-02 15:34:58 -07:00
|
|
|
@ast::crate {
|
2011-07-30 15:50:16 -07:00
|
|
|
if !input_is_stdin(input) {
|
2011-09-02 15:34:58 -07:00
|
|
|
parser::parse_crate_from_file(input, cfg, sess.get_parse_sess())
|
2011-08-19 15:16:48 -07:00
|
|
|
} else { parse_input_src(sess, cfg, input).crate }
|
2011-07-30 15:50:16 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn parse_input_src(sess: session::session, cfg: ast::crate_cfg, infile: str)
|
2011-09-02 15:34:58 -07:00
|
|
|
-> {crate: @ast::crate, src: str} {
|
2011-08-19 15:16:48 -07:00
|
|
|
let srcbytes =
|
2011-09-02 15:34:58 -07:00
|
|
|
if infile != "-" {
|
2011-08-27 17:46:13 -07:00
|
|
|
io::file_reader(infile)
|
2011-08-19 15:16:48 -07:00
|
|
|
} else { io::stdin() }.read_whole_stream();
|
2011-09-01 17:27:58 -07:00
|
|
|
let src = str::unsafe_from_bytes(srcbytes);
|
2011-08-19 15:16:48 -07:00
|
|
|
let crate =
|
2011-09-02 15:34:58 -07:00
|
|
|
parser::parse_crate_from_source_str(infile, src, cfg,
|
|
|
|
|
sess.get_parse_sess());
|
2011-07-30 15:50:16 -07:00
|
|
|
ret {crate: crate, src: src};
|
2011-01-03 20:41:11 -08:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn time<@T>(do_it: bool, what: str, thunk: fn() -> T) -> T {
|
2011-07-27 14:19:39 +02:00
|
|
|
if !do_it { ret thunk(); }
|
2011-07-22 12:03:10 +02:00
|
|
|
let start = std::time::precise_time_s();
|
2011-07-27 14:19:39 +02:00
|
|
|
let rv = thunk();
|
2011-07-22 12:03:10 +02:00
|
|
|
let end = std::time::precise_time_s();
|
2011-09-01 18:49:10 -07:00
|
|
|
log_err #fmt["time: %s took %s s", what,
|
2011-08-28 00:24:28 -07:00
|
|
|
common::float_to_str(end - start, 3u)];
|
2011-04-29 11:55:20 -07:00
|
|
|
ret rv;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn compile_input(sess: session::session, cfg: ast::crate_cfg, input: str,
|
|
|
|
|
output: str) {
|
2011-07-27 14:19:39 +02:00
|
|
|
let time_passes = sess.get_opts().time_passes;
|
|
|
|
|
let crate =
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "parsing", bind parse_input(sess, cfg, input));
|
2011-07-30 18:17:35 -07:00
|
|
|
if sess.get_opts().parse_only { ret; }
|
2011-07-27 14:19:39 +02:00
|
|
|
crate =
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "configuration",
|
2011-07-27 14:19:39 +02:00
|
|
|
bind front::config::strip_unconfigured_items(crate));
|
|
|
|
|
if sess.get_opts().test {
|
|
|
|
|
crate =
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "building test harness",
|
2011-07-27 14:19:39 +02:00
|
|
|
bind front::test::modify_for_testing(crate));
|
2011-07-06 14:29:50 -07:00
|
|
|
}
|
2011-07-27 14:19:39 +02:00
|
|
|
crate =
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "expansion",
|
2011-07-27 14:19:39 +02:00
|
|
|
bind syntax::ext::expand::expand_crate(sess, crate));
|
2011-07-06 15:22:23 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
let ast_map =
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "ast indexing",
|
2011-07-27 14:19:39 +02:00
|
|
|
bind middle::ast_map::map_crate(*crate));
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "external crate/lib resolution",
|
2011-07-07 21:43:26 -07:00
|
|
|
bind creader::read_crates(sess, *crate));
|
2011-08-19 15:16:48 -07:00
|
|
|
let {def_map: def_map, ext_map: ext_map} =
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "resolution",
|
2011-06-20 09:59:16 +02:00
|
|
|
bind resolve::resolve_crate(sess, ast_map, crate));
|
2011-07-27 14:19:39 +02:00
|
|
|
let freevars =
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "freevar finding",
|
2011-09-01 14:35:00 +02:00
|
|
|
bind freevars::annotate_freevars(def_map, crate));
|
2011-08-18 17:59:17 -07:00
|
|
|
let ty_cx = ty::mk_ctxt(sess, def_map, ext_map, ast_map, freevars);
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "typechecking", bind typeck::check_crate(ty_cx, crate));
|
|
|
|
|
time(time_passes, "alt checking",
|
2011-08-19 14:34:45 +02:00
|
|
|
bind middle::check_alt::check_crate(ty_cx, crate));
|
2011-07-27 14:19:39 +02:00
|
|
|
if sess.get_opts().run_typestate {
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "typestate checking",
|
2011-05-19 15:47:15 -07:00
|
|
|
bind middle::tstate::ck::check_crate(ty_cx, crate));
|
2011-04-29 12:16:14 -07:00
|
|
|
}
|
2011-09-02 15:34:58 -07:00
|
|
|
let mut_map =
|
|
|
|
|
time(time_passes, "mutability checking",
|
|
|
|
|
bind middle::mut::check_crate(ty_cx, crate));
|
2011-09-12 11:27:30 +02:00
|
|
|
let copy_map =
|
|
|
|
|
time(time_passes, "alias checking",
|
|
|
|
|
bind middle::alias::check_crate(ty_cx, crate));
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "kind checking", bind kind::check_crate(ty_cx, crate));
|
2011-07-30 18:17:35 -07:00
|
|
|
if sess.get_opts().no_trans { ret; }
|
2011-09-02 15:34:58 -07:00
|
|
|
let llmod =
|
|
|
|
|
time(time_passes, "translation",
|
|
|
|
|
bind trans::trans_crate(sess, crate, ty_cx, output, ast_map,
|
2011-09-07 15:13:19 +02:00
|
|
|
mut_map, copy_map));
|
2011-09-02 15:34:58 -07:00
|
|
|
time(time_passes, "LLVM passes",
|
2011-08-27 17:46:13 -07:00
|
|
|
bind link::write::run_passes(sess, llmod, output));
|
2010-10-22 11:47:28 -07:00
|
|
|
}
|
2010-07-13 14:26:59 -07:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn pretty_print_input(sess: session::session, cfg: ast::crate_cfg, input: str,
|
|
|
|
|
ppm: pp_mode) {
|
|
|
|
|
fn ann_paren_for_expr(node: pprust::ann_node) {
|
2011-07-27 14:19:39 +02:00
|
|
|
alt node { pprust::node_expr(s, expr) { pprust::popen(s); } _ { } }
|
2011-07-05 10:38:35 +02:00
|
|
|
}
|
2011-09-12 11:27:30 +02:00
|
|
|
fn ann_typed_post(tcx: ty::ctxt, node: pprust::ann_node) {
|
2011-07-27 14:19:39 +02:00
|
|
|
alt node {
|
|
|
|
|
pprust::node_expr(s, expr) {
|
|
|
|
|
pp::space(s.s);
|
2011-09-02 15:34:58 -07:00
|
|
|
pp::word(s.s, "as");
|
2011-07-27 14:19:39 +02:00
|
|
|
pp::space(s.s);
|
2011-09-02 15:34:58 -07:00
|
|
|
pp::word(s.s, ppaux::ty_to_str(tcx, ty::expr_ty(tcx, expr)));
|
2011-07-27 14:19:39 +02:00
|
|
|
pprust::pclose(s);
|
|
|
|
|
}
|
|
|
|
|
_ { }
|
2011-07-05 10:38:35 +02:00
|
|
|
}
|
|
|
|
|
}
|
2011-09-12 11:27:30 +02:00
|
|
|
fn ann_identified_post(node: pprust::ann_node) {
|
2011-07-27 14:19:39 +02:00
|
|
|
alt node {
|
|
|
|
|
pprust::node_item(s, item) {
|
|
|
|
|
pp::space(s.s);
|
2011-09-02 15:34:58 -07:00
|
|
|
pprust::synth_comment(s, int::to_str(item.id, 10u));
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
|
|
|
|
pprust::node_block(s, blk) {
|
|
|
|
|
pp::space(s.s);
|
2011-09-02 15:34:58 -07:00
|
|
|
pprust::synth_comment(s,
|
|
|
|
|
"block " + int::to_str(blk.node.id, 10u));
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
|
|
|
|
pprust::node_expr(s, expr) {
|
|
|
|
|
pp::space(s.s);
|
2011-09-02 15:34:58 -07:00
|
|
|
pprust::synth_comment(s, int::to_str(expr.id, 10u));
|
2011-07-27 14:19:39 +02:00
|
|
|
pprust::pclose(s);
|
|
|
|
|
}
|
|
|
|
|
_ { }
|
2011-07-05 10:38:35 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-30 15:50:16 -07:00
|
|
|
// 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.
|
|
|
|
|
let crate_src = parse_input_src(sess, cfg, input);
|
|
|
|
|
let crate = crate_src.crate;
|
|
|
|
|
let src = crate_src.src;
|
|
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
let ann;
|
|
|
|
|
alt ppm {
|
2011-08-26 15:11:06 -07:00
|
|
|
ppm_expanded. {
|
|
|
|
|
crate = syntax::ext::expand::expand_crate(sess, crate);
|
|
|
|
|
ann = pprust::no_ann();
|
|
|
|
|
}
|
2011-07-27 14:19:39 +02:00
|
|
|
ppm_typed. {
|
2011-08-26 15:11:06 -07:00
|
|
|
crate = syntax::ext::expand::expand_crate(sess, crate);
|
2011-07-27 14:19:39 +02:00
|
|
|
let amap = middle::ast_map::map_crate(*crate);
|
2011-08-19 15:16:48 -07:00
|
|
|
let {def_map: def_map, ext_map: ext_map} =
|
|
|
|
|
resolve::resolve_crate(sess, amap, crate);
|
2011-09-01 14:35:00 +02:00
|
|
|
let freevars = freevars::annotate_freevars(def_map, crate);
|
2011-08-18 17:59:17 -07:00
|
|
|
let ty_cx = ty::mk_ctxt(sess, def_map, ext_map, amap, freevars);
|
2011-07-27 14:19:39 +02:00
|
|
|
typeck::check_crate(ty_cx, crate);
|
|
|
|
|
ann = {pre: ann_paren_for_expr, post: bind ann_typed_post(ty_cx, _)};
|
|
|
|
|
}
|
|
|
|
|
ppm_identified. {
|
|
|
|
|
ann = {pre: ann_paren_for_expr, post: ann_identified_post};
|
|
|
|
|
}
|
|
|
|
|
ppm_normal. { ann = pprust::no_ann(); }
|
2011-05-17 17:42:23 -07:00
|
|
|
}
|
2011-09-02 15:34:58 -07:00
|
|
|
pprust::print_crate(sess.get_codemap(), crate, input,
|
|
|
|
|
io::string_reader(src), io::stdout(), ann);
|
2011-03-04 07:22:43 +01:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn version(argv0: str) {
|
2011-09-02 15:34:58 -07:00
|
|
|
let vers = "unknown version";
|
2011-09-01 17:37:20 -07:00
|
|
|
let env_vers = #env["CFG_VERSION"];
|
2011-09-01 17:27:58 -07:00
|
|
|
if str::byte_len(env_vers) != 0u { vers = env_vers; }
|
2011-09-02 15:34:58 -07:00
|
|
|
io::stdout().write_str(#fmt["%s %s\n", argv0, vers]);
|
2011-09-21 08:46:18 -07:00
|
|
|
io::stdout().write_str(#fmt["host: %s\n", host_triple()]);
|
2011-05-05 12:03:23 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn usage(argv0: str) {
|
2011-09-02 15:34:58 -07:00
|
|
|
io::stdout().write_str(#fmt["usage: %s [options] <input>\n", argv0] +
|
|
|
|
|
"
|
2011-04-19 12:02:06 +02:00
|
|
|
options:
|
|
|
|
|
|
2011-05-05 12:03:23 -07:00
|
|
|
-h --help display this message
|
|
|
|
|
-v --version print version info and exit
|
|
|
|
|
|
2011-04-19 12:02:06 +02:00
|
|
|
-o <filename> write output to <filename>
|
2011-07-07 14:42:18 -04:00
|
|
|
--lib compile a library crate
|
|
|
|
|
--static use or produce static libraries
|
2011-06-01 18:31:31 -07:00
|
|
|
--pretty [type] pretty-print the input instead of compiling
|
2011-04-26 20:32:08 +02:00
|
|
|
--ls list the symbols defined by a crate file
|
2011-04-19 12:02:06 +02:00
|
|
|
-L <path> add a directory to the library search path
|
2011-04-26 20:32:08 +02:00
|
|
|
--noverify suppress LLVM verification step (slight speedup)
|
2011-05-03 15:50:56 -07:00
|
|
|
--depend print dependencies, in makefile-rule form
|
2011-04-26 20:32:08 +02:00
|
|
|
--parse-only parse only; do not compile, assemble, or link
|
2011-07-30 18:17:35 -07:00
|
|
|
--no-trans run all passes except translation; no output
|
2011-05-04 15:36:42 -07:00
|
|
|
-g produce debug info
|
2011-05-19 12:46:10 -07:00
|
|
|
--OptLevel= optimize with possible levels 0-3
|
|
|
|
|
-O equivalent to --OptLevel=2
|
2011-04-25 14:08:12 -07:00
|
|
|
-S compile only; do not assemble or link
|
|
|
|
|
-c compile and assemble, but do not link
|
2011-05-16 12:14:24 -06:00
|
|
|
--emit-llvm produce an LLVM bitcode file
|
2011-04-26 20:32:08 +02:00
|
|
|
--save-temps write intermediate files in addition to normal output
|
2011-05-12 15:42:12 -07:00
|
|
|
--stats gather and report various compilation statistics
|
2011-07-01 15:30:25 -07:00
|
|
|
--cfg [cfgspec] configure the compilation environment
|
2011-04-29 11:55:20 -07:00
|
|
|
--time-passes time the individual phases of the compiler
|
2011-05-10 16:10:08 -07:00
|
|
|
--time-llvm-passes time the individual phases of the LLVM backend
|
2011-05-04 19:27:54 -07:00
|
|
|
--sysroot <path> override the system root (default: rustc's directory)
|
2011-09-21 08:46:18 -07:00
|
|
|
--target <triple> target to compile for (default: host triple)
|
2011-07-06 14:29:50 -07:00
|
|
|
--no-typestate don't run the typestate pass (unsafe!)
|
2011-07-15 11:38:16 -07:00
|
|
|
--test build test harness
|
2011-08-10 22:12:42 -07:00
|
|
|
--gc garbage collect shared data (experimental/temporary)
|
2011-09-30 18:20:28 -07:00
|
|
|
--stack-growth perform stack checks (experimental)
|
2011-07-15 11:38:16 -07:00
|
|
|
|
2011-08-28 00:24:28 -07:00
|
|
|
");
|
2010-10-22 11:47:28 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn get_os(triple: str) -> session::os {
|
2011-09-02 15:34:58 -07:00
|
|
|
ret if str::find(triple, "win32") >= 0 ||
|
|
|
|
|
str::find(triple, "mingw32") >= 0 {
|
2011-06-15 11:19:50 -07:00
|
|
|
session::os_win32
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if str::find(triple, "darwin") >= 0 {
|
2011-06-15 11:19:50 -07:00
|
|
|
session::os_macos
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if str::find(triple, "linux") >= 0 {
|
2011-06-15 11:19:50 -07:00
|
|
|
session::os_linux
|
2011-09-02 15:34:58 -07:00
|
|
|
} else { log_err "Unknown operating system!"; fail };
|
2011-05-06 07:59:33 -06:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn get_arch(triple: str) -> session::arch {
|
2011-09-02 15:34:58 -07:00
|
|
|
ret if str::find(triple, "i386") >= 0 || str::find(triple, "i486") >= 0 ||
|
|
|
|
|
str::find(triple, "i586") >= 0 ||
|
|
|
|
|
str::find(triple, "i686") >= 0 ||
|
|
|
|
|
str::find(triple, "i786") >= 0 {
|
2011-06-15 11:19:50 -07:00
|
|
|
session::arch_x86
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if str::find(triple, "x86_64") >= 0 {
|
2011-06-15 11:19:50 -07:00
|
|
|
session::arch_x64
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if str::find(triple, "arm") >= 0 ||
|
|
|
|
|
str::find(triple, "xscale") >= 0 {
|
2011-06-15 11:19:50 -07:00
|
|
|
session::arch_arm
|
2011-09-02 15:34:58 -07:00
|
|
|
} else { log_err "Unknown architecture! " + triple; fail };
|
2010-11-22 16:27:00 -08:00
|
|
|
}
|
|
|
|
|
|
2011-09-21 08:46:18 -07:00
|
|
|
fn build_target_config(sopts: @session::options) -> @session::config {
|
2011-07-27 14:19:39 +02:00
|
|
|
let target_cfg: @session::config =
|
2011-09-21 08:46:18 -07:00
|
|
|
@{os: get_os(sopts.target_triple),
|
|
|
|
|
arch: get_arch(sopts.target_triple),
|
2011-07-27 14:19:39 +02:00
|
|
|
int_type: ast::ty_i32,
|
|
|
|
|
uint_type: ast::ty_u32,
|
|
|
|
|
float_type: ast::ty_f64};
|
2011-05-22 16:41:32 -04:00
|
|
|
ret target_cfg;
|
|
|
|
|
}
|
2011-05-05 12:03:23 -07:00
|
|
|
|
2011-09-21 08:46:18 -07:00
|
|
|
fn host_triple() -> str {
|
2011-09-29 11:31:28 -07:00
|
|
|
// 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.
|
|
|
|
|
// FIXME: Instead of grabbing the host triple we really should be
|
|
|
|
|
// grabbing (at compile time) the target triple that this rustc is
|
|
|
|
|
// built with and calling that (at runtime) the host triple.
|
|
|
|
|
let ht = #env("CFG_HOST_TRIPLE");
|
|
|
|
|
ret ht != "" ? ht : fail "rustc built without CFG_HOST_TRIPLE";
|
2011-09-21 08:46:18 -07:00
|
|
|
}
|
|
|
|
|
|
2011-10-03 12:46:22 -07:00
|
|
|
fn build_session_options(match: getopts::match)
|
2011-09-12 11:27:30 +02:00
|
|
|
-> @session::options {
|
2011-09-02 15:34:58 -07:00
|
|
|
let library = opt_present(match, "lib");
|
|
|
|
|
let static = opt_present(match, "static");
|
2011-07-14 17:26:10 -07:00
|
|
|
|
2011-09-02 15:34:58 -07:00
|
|
|
let parse_only = opt_present(match, "parse-only");
|
|
|
|
|
let no_trans = opt_present(match, "no-trans");
|
2011-07-30 18:17:35 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
let output_type =
|
2011-07-30 18:17:35 -07:00
|
|
|
if parse_only || no_trans {
|
2011-06-15 11:19:50 -07:00
|
|
|
link::output_type_none
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if opt_present(match, "S") {
|
2011-06-15 11:19:50 -07:00
|
|
|
link::output_type_assembly
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if opt_present(match, "c") {
|
2011-06-15 11:19:50 -07:00
|
|
|
link::output_type_object
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if opt_present(match, "emit-llvm") {
|
2011-06-15 11:19:50 -07:00
|
|
|
link::output_type_bitcode
|
|
|
|
|
} else { link::output_type_exe };
|
2011-09-02 15:34:58 -07:00
|
|
|
let verify = !opt_present(match, "noverify");
|
|
|
|
|
let save_temps = opt_present(match, "save-temps");
|
|
|
|
|
let debuginfo = opt_present(match, "g");
|
|
|
|
|
let stats = opt_present(match, "stats");
|
|
|
|
|
let time_passes = opt_present(match, "time-passes");
|
|
|
|
|
let time_llvm_passes = opt_present(match, "time-llvm-passes");
|
|
|
|
|
let run_typestate = !opt_present(match, "no-typestate");
|
|
|
|
|
let sysroot_opt = getopts::opt_maybe_str(match, "sysroot");
|
2011-09-21 08:46:18 -07:00
|
|
|
let target_opt = getopts::opt_maybe_str(match, "target");
|
2011-07-27 14:19:39 +02:00
|
|
|
let opt_level: uint =
|
2011-09-02 15:34:58 -07:00
|
|
|
if opt_present(match, "O") {
|
|
|
|
|
if opt_present(match, "OptLevel") {
|
2011-06-15 11:19:50 -07:00
|
|
|
log_err "error: -O and --OptLevel both provided";
|
|
|
|
|
fail;
|
2011-05-19 12:46:10 -07:00
|
|
|
}
|
2011-06-15 11:19:50 -07:00
|
|
|
2u
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if opt_present(match, "OptLevel") {
|
|
|
|
|
alt getopts::opt_str(match, "OptLevel") {
|
|
|
|
|
"0" { 0u }
|
|
|
|
|
"1" { 1u }
|
|
|
|
|
"2" { 2u }
|
|
|
|
|
"3" { 3u }
|
2011-07-27 14:19:39 +02:00
|
|
|
_ {
|
|
|
|
|
log_err "error: optimization level needs " +
|
|
|
|
|
"to be between 0-3";
|
|
|
|
|
fail
|
|
|
|
|
}
|
2011-06-15 11:19:50 -07:00
|
|
|
}
|
|
|
|
|
} else { 0u };
|
2011-09-21 08:46:18 -07:00
|
|
|
let target =
|
|
|
|
|
alt target_opt {
|
|
|
|
|
none. { host_triple() }
|
|
|
|
|
some(s) { s }
|
|
|
|
|
};
|
|
|
|
|
|
2011-10-03 12:46:22 -07:00
|
|
|
let addl_lib_search_paths = getopts::opt_strs(match, "L");
|
2011-09-02 15:34:58 -07:00
|
|
|
let cfg = parse_cfgspecs(getopts::opt_strs(match, "cfg"));
|
|
|
|
|
let test = opt_present(match, "test");
|
|
|
|
|
let do_gc = opt_present(match, "gc");
|
2011-09-30 18:20:28 -07:00
|
|
|
let stack_growth = opt_present(match, "stack-growth");
|
2011-07-27 14:19:39 +02:00
|
|
|
let sopts: @session::options =
|
|
|
|
|
@{library: library,
|
|
|
|
|
static: static,
|
|
|
|
|
optimize: opt_level,
|
|
|
|
|
debuginfo: debuginfo,
|
|
|
|
|
verify: verify,
|
|
|
|
|
run_typestate: run_typestate,
|
|
|
|
|
save_temps: save_temps,
|
|
|
|
|
stats: stats,
|
|
|
|
|
time_passes: time_passes,
|
|
|
|
|
time_llvm_passes: time_llvm_passes,
|
|
|
|
|
output_type: output_type,
|
2011-10-03 12:46:22 -07:00
|
|
|
addl_lib_search_paths: addl_lib_search_paths,
|
|
|
|
|
maybe_sysroot: sysroot_opt,
|
2011-09-21 08:46:18 -07:00
|
|
|
target_triple: target,
|
2011-07-27 14:19:39 +02:00
|
|
|
cfg: cfg,
|
|
|
|
|
test: test,
|
2011-07-30 18:17:35 -07:00
|
|
|
parse_only: parse_only,
|
2011-08-10 22:12:42 -07:00
|
|
|
no_trans: no_trans,
|
2011-09-30 18:20:28 -07:00
|
|
|
do_gc: do_gc,
|
|
|
|
|
stack_growth: stack_growth};
|
2011-05-22 16:41:32 -04:00
|
|
|
ret sopts;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-04 14:14:36 -07:00
|
|
|
fn build_session(sopts: @session::options) -> session::session {
|
2011-09-21 08:46:18 -07:00
|
|
|
let target_cfg = build_target_config(sopts);
|
2011-07-27 14:19:39 +02:00
|
|
|
let cstore = cstore::mk_cstore();
|
2011-10-03 12:46:22 -07:00
|
|
|
let filesearch = filesearch::mk_filesearch(
|
|
|
|
|
sopts.maybe_sysroot,
|
|
|
|
|
sopts.target_triple,
|
|
|
|
|
sopts.addl_lib_search_paths);
|
2011-07-07 18:25:56 -07:00
|
|
|
ret session::session(target_cfg, sopts, cstore,
|
2011-07-27 14:19:39 +02:00
|
|
|
@{cm: codemap::new_codemap(), mutable next_id: 0},
|
2011-10-03 12:46:22 -07:00
|
|
|
none, 0u, filesearch);
|
2011-05-22 16:41:32 -04:00
|
|
|
}
|
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn parse_pretty(sess: session::session, name: str) -> pp_mode {
|
2011-09-02 15:34:58 -07:00
|
|
|
if str::eq(name, "normal") {
|
2011-06-15 11:19:50 -07:00
|
|
|
ret ppm_normal;
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if str::eq(name, "expanded") {
|
2011-08-26 15:11:06 -07:00
|
|
|
ret ppm_expanded;
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if str::eq(name, "typed") {
|
2011-06-15 11:19:50 -07:00
|
|
|
ret ppm_typed;
|
2011-09-02 15:34:58 -07:00
|
|
|
} else if str::eq(name, "identified") { ret ppm_identified; }
|
|
|
|
|
sess.fatal("argument to `pretty` must be one of `normal`, `typed`, or " +
|
|
|
|
|
"`identified`");
|
2011-06-01 18:31:31 -07:00
|
|
|
}
|
|
|
|
|
|
2011-08-11 15:50:27 -07:00
|
|
|
fn opts() -> [getopts::opt] {
|
2011-09-02 15:34:58 -07:00
|
|
|
ret [optflag("h"), optflag("help"), optflag("v"), optflag("version"),
|
2011-09-28 15:26:11 -07:00
|
|
|
optflag("emit-llvm"), optflagopt("pretty"),
|
2011-09-02 15:34:58 -07:00
|
|
|
optflag("ls"), optflag("parse-only"), optflag("no-trans"),
|
|
|
|
|
optflag("O"), optopt("OptLevel"), optmulti("L"), optflag("S"),
|
|
|
|
|
optflag("c"), optopt("o"), optflag("g"), optflag("save-temps"),
|
2011-09-21 08:46:18 -07:00
|
|
|
optopt("sysroot"), optopt("target"), optflag("stats"),
|
|
|
|
|
optflag("time-passes"), optflag("time-llvm-passes"),
|
|
|
|
|
optflag("no-typestate"), optflag("noverify"),
|
|
|
|
|
optmulti("cfg"), optflag("test"),
|
2011-09-30 18:20:28 -07:00
|
|
|
optflag("lib"), optflag("static"), optflag("gc"),
|
|
|
|
|
optflag("stack-growth")];
|
2011-07-13 18:13:19 -07:00
|
|
|
}
|
|
|
|
|
|
2011-09-02 15:34:58 -07:00
|
|
|
fn main(args: [str]) {
|
2011-08-16 22:22:01 -07:00
|
|
|
let binary = vec::shift(args);
|
2011-07-27 14:19:39 +02:00
|
|
|
let match =
|
2011-08-27 17:46:13 -07:00
|
|
|
alt getopts::getopts(args, opts()) {
|
2011-07-27 14:19:39 +02:00
|
|
|
getopts::success(m) { m }
|
|
|
|
|
getopts::failure(f) {
|
2011-09-01 18:49:10 -07:00
|
|
|
log_err #fmt["error: %s", getopts::fail_str(f)];
|
2011-07-27 14:19:39 +02:00
|
|
|
fail
|
|
|
|
|
}
|
2011-06-15 11:19:50 -07:00
|
|
|
};
|
2011-09-02 15:34:58 -07:00
|
|
|
if opt_present(match, "h") || opt_present(match, "help") {
|
2011-05-22 16:41:32 -04:00
|
|
|
usage(binary);
|
|
|
|
|
ret;
|
|
|
|
|
}
|
2011-09-02 15:34:58 -07:00
|
|
|
if opt_present(match, "v") || opt_present(match, "version") {
|
2011-05-22 16:41:32 -04:00
|
|
|
version(binary);
|
|
|
|
|
ret;
|
|
|
|
|
}
|
2011-10-03 12:46:22 -07:00
|
|
|
let sopts = build_session_options(match);
|
2011-10-04 14:14:36 -07:00
|
|
|
let sess = build_session(sopts);
|
2011-09-02 15:34:58 -07:00
|
|
|
let n_inputs = vec::len::<str>(match.free);
|
|
|
|
|
let output_file = getopts::opt_maybe_str(match, "o");
|
2011-07-27 14:19:39 +02:00
|
|
|
if n_inputs == 0u {
|
2011-09-02 15:34:58 -07:00
|
|
|
sess.fatal("No input filename given.");
|
2011-08-19 15:16:48 -07:00
|
|
|
} else if n_inputs > 1u {
|
2011-09-02 15:34:58 -07:00
|
|
|
sess.fatal("Multiple input filenames provided.");
|
2010-11-22 16:27:00 -08:00
|
|
|
}
|
2011-08-26 22:48:10 -07:00
|
|
|
let ifile = match.free[0];
|
2011-09-02 15:34:58 -07:00
|
|
|
let saved_out_filename: str = "";
|
|
|
|
|
let cfg = build_configuration(sess, binary, ifile);
|
2011-07-27 14:19:39 +02:00
|
|
|
let pretty =
|
2011-09-02 15:34:58 -07:00
|
|
|
option::map::<str,
|
2011-08-13 00:09:25 -07:00
|
|
|
pp_mode>(bind parse_pretty(sess, _),
|
2011-09-02 15:34:58 -07:00
|
|
|
getopts::opt_default(match, "pretty",
|
|
|
|
|
"normal"));
|
2011-07-27 14:19:39 +02:00
|
|
|
alt pretty {
|
2011-09-02 15:34:58 -07:00
|
|
|
some::<pp_mode>(ppm) { pretty_print_input(sess, cfg, ifile, ppm); ret; }
|
2011-08-13 00:09:25 -07:00
|
|
|
none::<pp_mode>. {/* continue */ }
|
2011-06-01 18:31:31 -07:00
|
|
|
}
|
2011-09-02 15:34:58 -07:00
|
|
|
let ls = opt_present(match, "ls");
|
2011-08-19 15:16:48 -07:00
|
|
|
if ls { metadata::creader::list_file_metadata(ifile, io::stdout()); ret; }
|
2011-07-08 15:03:48 -04:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
let stop_after_codegen =
|
|
|
|
|
sopts.output_type != link::output_type_exe ||
|
|
|
|
|
sopts.static && sopts.library;
|
|
|
|
|
|
|
|
|
|
alt output_file {
|
|
|
|
|
none. {
|
2011-07-30 15:50:16 -07:00
|
|
|
// "-" as input file will cause the parser to read from stdin so we
|
|
|
|
|
// have to make up a name
|
2011-08-15 15:11:39 -07:00
|
|
|
// We want to toss everything after the final '.'
|
2011-08-19 15:16:48 -07:00
|
|
|
let parts =
|
2011-08-27 17:46:13 -07:00
|
|
|
if !input_is_stdin(ifile) {
|
2011-09-01 17:27:58 -07:00
|
|
|
str::split(ifile, '.' as u8)
|
2011-09-02 15:34:58 -07:00
|
|
|
} else { ["default", "rs"] };
|
2011-08-15 16:38:23 -07:00
|
|
|
vec::pop(parts);
|
2011-09-02 15:34:58 -07:00
|
|
|
saved_out_filename = str::connect(parts, ".");
|
2011-08-19 15:16:48 -07:00
|
|
|
let suffix =
|
|
|
|
|
alt sopts.output_type {
|
2011-09-02 15:34:58 -07:00
|
|
|
link::output_type_none. { "none" }
|
|
|
|
|
link::output_type_bitcode. { "bc" }
|
|
|
|
|
link::output_type_assembly. { "s" }
|
|
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
|
2011-09-12 12:39:38 +02:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
// Object and exe output both use the '.o' extension here
|
|
|
|
|
link::output_type_object. | link::output_type_exe. {
|
2011-09-02 15:34:58 -07:00
|
|
|
"o"
|
2011-08-19 15:16:48 -07:00
|
|
|
}
|
|
|
|
|
};
|
2011-09-02 15:34:58 -07:00
|
|
|
let ofile = saved_out_filename + "." + suffix;
|
2011-08-27 17:46:13 -07:00
|
|
|
compile_input(sess, cfg, ifile, ofile);
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
|
|
|
|
some(ofile) {
|
2011-08-27 17:46:13 -07:00
|
|
|
let ofile = ofile;
|
2011-07-27 14:19:39 +02:00
|
|
|
// FIXME: what about windows? This will create a foo.exe.o.
|
|
|
|
|
saved_out_filename = ofile;
|
2011-08-19 15:16:48 -07:00
|
|
|
let temp_filename =
|
2011-09-02 15:34:58 -07:00
|
|
|
if !stop_after_codegen { ofile + ".o" } else { ofile };
|
2011-08-27 17:46:13 -07:00
|
|
|
compile_input(sess, cfg, ifile, temp_filename);
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2010-11-22 16:27:00 -08:00
|
|
|
}
|
2011-05-16 09:01:36 -06:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
if stop_after_codegen { ret; }
|
2011-06-20 17:36:15 -04:00
|
|
|
|
2011-09-28 17:06:57 -07:00
|
|
|
link::link_binary(sess, saved_out_filename);
|
2010-06-23 21:03:09 -07:00
|
|
|
}
|
2011-07-13 18:13:19 -07:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod test {
|
|
|
|
|
|
|
|
|
|
// When the user supplies --test we should implicitly supply --cfg test
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_switch_implies_cfg_test() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let match =
|
2011-09-02 15:34:58 -07:00
|
|
|
alt getopts::getopts(["--test"], opts()) {
|
2011-07-27 14:19:39 +02:00
|
|
|
getopts::success(m) { m }
|
|
|
|
|
};
|
2011-10-03 13:13:21 -07:00
|
|
|
let sessopts = build_session_options(match);
|
2011-10-04 14:14:36 -07:00
|
|
|
let sess = build_session(sessopts);
|
2011-09-02 15:34:58 -07:00
|
|
|
let cfg = build_configuration(sess, "whatever", "whatever");
|
|
|
|
|
assert (attr::contains_name(cfg, "test"));
|
2011-07-13 18:13:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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() {
|
2011-07-27 14:19:39 +02:00
|
|
|
let match =
|
2011-09-02 15:34:58 -07:00
|
|
|
alt getopts::getopts(["--test", "--cfg=test"], opts()) {
|
2011-07-27 14:19:39 +02:00
|
|
|
getopts::success(m) { m }
|
|
|
|
|
};
|
2011-10-03 13:13:21 -07:00
|
|
|
let sessopts = build_session_options(match);
|
2011-10-04 14:14:36 -07:00
|
|
|
let sess = build_session(sessopts);
|
2011-09-02 15:34:58 -07:00
|
|
|
let cfg = build_configuration(sess, "whatever", "whatever");
|
|
|
|
|
let test_items = attr::find_meta_items_by_name(cfg, "test");
|
2011-08-15 16:38:23 -07:00
|
|
|
assert (vec::len(test_items) == 1u);
|
2011-07-13 18:13:19 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-12 10:29:23 -07:00
|
|
|
// Local Variables:
|
|
|
|
|
// mode: rust
|
|
|
|
|
// fill-column: 78;
|
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
|
// c-basic-offset: 4
|
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-03-25 15:07:27 -07:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-08-12 10:29:23 -07:00
|
|
|
// End:
|