rust/src/comp/driver/session.rs

122 lines
3.8 KiB
Rust
Raw Normal View History

import syntax::ast;
import syntax::ast::node_id;
import syntax::codemap;
import codemap::span;
import syntax::ast::ty_mach;
import std::uint;
import std::map;
import std::option;
import std::option::some;
import std::option::none;
import std::str;
import syntax::parse::parser::parse_sess;
tag os { os_win32; os_macos; os_linux; }
tag arch { arch_x86; arch_x64; arch_arm; }
type config =
2011-07-27 07:19:39 -05:00
{os: os,
arch: arch,
int_type: ty_mach,
uint_type: ty_mach,
float_type: ty_mach};
type options =
2011-07-27 07:19:39 -05:00
// The crate config requested for the session, which may be combined
// with additional crate configurations during the compile process
{library: bool,
static: bool,
optimize: uint,
debuginfo: bool,
verify: bool,
run_typestate: bool,
save_temps: bool,
stats: bool,
time_passes: bool,
time_llvm_passes: bool,
output_type: back::link::output_type,
library_search_paths: [str],
2011-07-27 07:19:39 -05:00
sysroot: str,
cfg: ast::crate_cfg,
test: bool,
parse_only: bool,
no_trans: bool,
do_gc: bool};
type crate_metadata = {name: str, data: [u8]};
2011-07-27 07:19:39 -05:00
obj session(targ_cfg: @config,
opts: @options,
cstore: metadata::cstore::cstore,
parse_sess: parse_sess,
2011-03-25 12:42:57 -05:00
// For a library crate, this is always none
mutable main_fn: option::t<node_id>,
2011-07-27 07:19:39 -05:00
mutable err_count: uint) {
fn get_targ_cfg() -> @config { ret targ_cfg; }
fn get_opts() -> @options { ret opts; }
fn get_cstore() -> metadata::cstore::cstore { cstore }
2011-07-27 07:19:39 -05:00
fn span_fatal(sp: span, msg: str) -> ! {
// FIXME: Use constants, but rustboot doesn't know how to export them.
codemap::emit_error(some(sp), msg, parse_sess.cm);
fail;
}
2011-07-27 07:19:39 -05:00
fn fatal(msg: str) -> ! {
codemap::emit_error(none, msg, parse_sess.cm);
fail;
}
2011-07-27 07:19:39 -05:00
fn span_err(sp: span, msg: str) {
codemap::emit_error(some(sp), msg, parse_sess.cm);
err_count += 1u;
}
2011-07-27 07:19:39 -05:00
fn err(msg: str) {
codemap::emit_error(none, msg, parse_sess.cm);
err_count += 1u;
}
fn abort_if_errors() {
2011-07-27 07:19:39 -05:00
if err_count > 0u { self.fatal("aborting due to previous errors"); }
}
2011-07-27 07:19:39 -05:00
fn span_warn(sp: span, msg: str) {
// FIXME: Use constants, but rustboot doesn't know how to export them.
codemap::emit_warning(some(sp), msg, parse_sess.cm);
}
2011-07-27 07:19:39 -05:00
fn warn(msg: str) { codemap::emit_warning(none, msg, parse_sess.cm); }
fn span_note(sp: span, msg: str) {
// FIXME: Use constants, but rustboot doesn't know how to export them.
codemap::emit_note(some(sp), msg, parse_sess.cm);
}
2011-07-27 07:19:39 -05:00
fn note(msg: str) { codemap::emit_note(none, msg, parse_sess.cm); }
fn span_bug(sp: span, msg: str) -> ! {
self.span_fatal(sp, #fmt["internal compiler error %s", msg]);
}
2011-07-27 07:19:39 -05:00
fn bug(msg: str) -> ! {
self.fatal(#fmt["internal compiler error %s", msg]);
}
2011-07-27 07:19:39 -05:00
fn span_unimpl(sp: span, msg: str) -> ! {
self.span_bug(sp, "unimplemented " + msg);
}
2011-07-27 07:19:39 -05:00
fn unimpl(msg: str) -> ! { self.bug("unimplemented " + msg); }
fn get_codemap() -> codemap::codemap { ret parse_sess.cm; }
2011-07-27 07:19:39 -05:00
fn lookup_pos(pos: uint) -> codemap::loc {
ret codemap::lookup_char_pos(parse_sess.cm, pos);
}
fn get_parse_sess() -> parse_sess { ret parse_sess; }
fn next_node_id() -> ast::node_id {
ret syntax::parse::parser::next_node_id(parse_sess);
}
2011-07-27 07:19:39 -05:00
fn span_str(sp: span) -> str {
ret codemap::span_to_str(sp, self.get_codemap());
}
2011-07-27 07:19:39 -05:00
fn set_main_id(d: node_id) { main_fn = some(d); }
fn get_main_id() -> option::t<node_id> { main_fn }
}
// Local Variables:
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
// End: