2011-03-15 18:30:43 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
|
|
|
import driver.session;
|
|
|
|
import front.ast;
|
2011-03-24 19:21:09 -05:00
|
|
|
import lib.llvm.False;
|
|
|
|
import lib.llvm.llvm;
|
2011-03-15 20:05:29 -05:00
|
|
|
import lib.llvm.mk_object_file;
|
|
|
|
import lib.llvm.mk_section_iter;
|
2011-03-15 18:30:43 -05:00
|
|
|
import middle.fold;
|
2011-03-25 19:53:46 -05:00
|
|
|
import middle.metadata;
|
2011-03-21 13:35:04 -05:00
|
|
|
import middle.ty;
|
2011-03-24 19:21:09 -05:00
|
|
|
import back.x86;
|
2011-03-15 18:30:43 -05:00
|
|
|
import util.common;
|
|
|
|
import util.common.span;
|
2011-03-15 19:33:05 -05:00
|
|
|
|
2011-03-15 20:05:29 -05:00
|
|
|
import std._str;
|
2011-03-25 20:34:21 -05:00
|
|
|
import std._uint;
|
2011-03-21 13:35:04 -05:00
|
|
|
import std._vec;
|
2011-03-25 19:53:46 -05:00
|
|
|
import std.ebml;
|
2011-03-15 19:33:05 -05:00
|
|
|
import std.fs;
|
2011-03-25 19:53:46 -05:00
|
|
|
import std.io;
|
2011-03-21 13:35:04 -05:00
|
|
|
import std.option;
|
2011-03-25 19:53:46 -05:00
|
|
|
import std.option.none;
|
2011-03-25 13:10:50 -05:00
|
|
|
import std.option.some;
|
2011-03-15 20:05:29 -05:00
|
|
|
import std.os;
|
2011-03-15 18:30:43 -05:00
|
|
|
import std.map.hashmap;
|
|
|
|
|
|
|
|
// TODO: map to a real type here.
|
2011-03-15 19:33:05 -05:00
|
|
|
type env = @rec(
|
2011-03-24 19:21:09 -05:00
|
|
|
session.session sess,
|
2011-03-25 13:10:50 -05:00
|
|
|
@hashmap[str, int] crate_cache,
|
|
|
|
vec[str] library_search_paths,
|
|
|
|
mutable int next_crate_num
|
2011-03-15 19:33:05 -05:00
|
|
|
);
|
|
|
|
|
2011-03-25 19:53:46 -05:00
|
|
|
tag resolve_result {
|
|
|
|
rr_ok(ast.def_id);
|
|
|
|
rr_not_found(vec[ast.ident], ast.ident);
|
|
|
|
}
|
|
|
|
|
2011-03-21 13:35:04 -05:00
|
|
|
// Type decoding
|
|
|
|
|
|
|
|
// Compact string representation for ty.t values. API ty_str & parse_from_str.
|
|
|
|
// (The second has to be authed pure.) Extra parameters are for converting
|
|
|
|
// to/from def_ids in the string rep. Whatever format you choose should not
|
|
|
|
// contain pipe characters.
|
|
|
|
|
|
|
|
// Callback to translate defs to strs or back.
|
|
|
|
type str_def = fn(str) -> ast.def_id;
|
|
|
|
|
|
|
|
type pstate = rec(str rep, mutable uint pos, uint len);
|
|
|
|
|
2011-03-21 14:03:34 -05:00
|
|
|
fn peek(@pstate st) -> u8 {
|
|
|
|
if (st.pos < st.len) {ret st.rep.(st.pos) as u8;}
|
|
|
|
else {ret ' ' as u8;}
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
2011-03-21 14:03:34 -05:00
|
|
|
impure fn next(@pstate st) -> u8 { // ?? somehow not recognized as impure
|
2011-03-21 13:35:04 -05:00
|
|
|
if (st.pos >= st.len) {fail;}
|
|
|
|
auto ch = st.rep.(st.pos);
|
|
|
|
st.pos = st.pos + 1u;
|
2011-03-21 14:03:34 -05:00
|
|
|
ret ch as u8;
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
|
2011-03-21 14:03:34 -05:00
|
|
|
impure fn parse_ty_str(str rep, str_def sd) -> @ty.t {
|
2011-03-21 13:35:04 -05:00
|
|
|
auto len = _str.byte_len(rep);
|
|
|
|
auto st = @rec(rep=rep, mutable pos=0u, len=len);
|
|
|
|
auto result = parse_ty(st, sd);
|
|
|
|
check(st.pos == len);
|
|
|
|
ret result;
|
|
|
|
}
|
|
|
|
|
|
|
|
impure fn parse_ty(@pstate st, str_def sd) -> @ty.t {
|
|
|
|
ret @rec(struct=parse_sty(st, sd),
|
|
|
|
cname=option.none[str]);
|
|
|
|
}
|
|
|
|
|
2011-03-21 13:44:08 -05:00
|
|
|
impure fn parse_mt(@pstate st, str_def sd) -> ty.mt {
|
|
|
|
auto mut;
|
2011-03-21 14:03:34 -05:00
|
|
|
alt (peek(st) as char) {
|
2011-03-21 13:44:08 -05:00
|
|
|
case ('m') {next(st); mut = ast.mut;}
|
|
|
|
case ('?') {next(st); mut = ast.maybe_mut;}
|
|
|
|
case (_) {mut=ast.imm;}
|
|
|
|
}
|
|
|
|
ret rec(ty=parse_ty(st, sd), mut=mut);
|
|
|
|
}
|
|
|
|
|
2011-03-21 13:35:04 -05:00
|
|
|
impure fn parse_sty(@pstate st, str_def sd) -> ty.sty {
|
2011-03-21 14:03:34 -05:00
|
|
|
alt (next(st) as char) {
|
2011-03-21 13:35:04 -05:00
|
|
|
case ('n') {ret ty.ty_nil;}
|
|
|
|
case ('b') {ret ty.ty_bool;}
|
|
|
|
case ('i') {ret ty.ty_int;}
|
|
|
|
case ('u') {ret ty.ty_uint;}
|
2011-03-24 13:37:50 -05:00
|
|
|
case ('l') {ret ty.ty_float;}
|
2011-03-21 13:35:04 -05:00
|
|
|
case ('M') {
|
2011-03-21 14:03:34 -05:00
|
|
|
alt (next(st) as char) {
|
2011-03-21 13:35:04 -05:00
|
|
|
case ('b') {ret ty.ty_machine(common.ty_u8);}
|
|
|
|
case ('w') {ret ty.ty_machine(common.ty_u16);}
|
|
|
|
case ('l') {ret ty.ty_machine(common.ty_u32);}
|
|
|
|
case ('d') {ret ty.ty_machine(common.ty_u64);}
|
|
|
|
case ('B') {ret ty.ty_machine(common.ty_i8);}
|
|
|
|
case ('W') {ret ty.ty_machine(common.ty_i16);}
|
|
|
|
case ('L') {ret ty.ty_machine(common.ty_i32);}
|
|
|
|
case ('D') {ret ty.ty_machine(common.ty_i64);}
|
|
|
|
case ('f') {ret ty.ty_machine(common.ty_f32);}
|
|
|
|
case ('F') {ret ty.ty_machine(common.ty_f64);}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case ('c') {ret ty.ty_char;}
|
|
|
|
case ('s') {ret ty.ty_str;}
|
|
|
|
case ('t') {
|
2011-03-21 14:03:34 -05:00
|
|
|
check(next(st) as char == '[');
|
2011-03-21 13:35:04 -05:00
|
|
|
auto def = "";
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != '|') {
|
|
|
|
def += _str.unsafe_from_byte(next(st));
|
|
|
|
}
|
2011-03-21 13:35:04 -05:00
|
|
|
st.pos = st.pos + 1u;
|
|
|
|
let vec[@ty.t] params = vec();
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != ']') {
|
|
|
|
params += vec(parse_ty(st, sd));
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
st.pos = st.pos + 1u;
|
|
|
|
ret ty.ty_tag(sd(def), params);
|
2011-03-24 13:37:50 -05:00
|
|
|
}
|
2011-03-21 13:44:08 -05:00
|
|
|
case ('@') {ret ty.ty_box(parse_mt(st, sd));}
|
|
|
|
case ('V') {ret ty.ty_vec(parse_mt(st, sd));}
|
2011-03-21 13:35:04 -05:00
|
|
|
case ('P') {ret ty.ty_port(parse_ty(st, sd));}
|
|
|
|
case ('C') {ret ty.ty_chan(parse_ty(st, sd));}
|
|
|
|
case ('T') {
|
2011-03-21 14:03:34 -05:00
|
|
|
check(next(st) as char == '[');
|
2011-03-21 13:44:08 -05:00
|
|
|
let vec[ty.mt] params = vec();
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != ']') {
|
|
|
|
params += vec(parse_mt(st, sd));
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
st.pos = st.pos + 1u;
|
|
|
|
ret ty.ty_tup(params);
|
|
|
|
}
|
|
|
|
case ('R') {
|
2011-03-21 14:03:34 -05:00
|
|
|
check(next(st) as char == '[');
|
2011-03-21 13:35:04 -05:00
|
|
|
let vec[ty.field] fields = vec();
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != ']') {
|
2011-03-21 13:35:04 -05:00
|
|
|
auto name = "";
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != '=') {
|
|
|
|
name += _str.unsafe_from_byte(next(st));
|
|
|
|
}
|
2011-03-21 13:35:04 -05:00
|
|
|
st.pos = st.pos + 1u;
|
2011-03-21 14:03:34 -05:00
|
|
|
fields += vec(rec(ident=name, mt=parse_mt(st, sd)));
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
st.pos = st.pos + 1u;
|
|
|
|
ret ty.ty_rec(fields);
|
|
|
|
}
|
|
|
|
case ('F') {
|
|
|
|
auto func = parse_ty_fn(st, sd);
|
|
|
|
ret ty.ty_fn(ast.proto_fn, func._0, func._1);
|
|
|
|
}
|
|
|
|
case ('W') {
|
|
|
|
auto func = parse_ty_fn(st, sd);
|
|
|
|
ret ty.ty_fn(ast.proto_iter, func._0, func._1);
|
|
|
|
}
|
|
|
|
case ('N') {
|
|
|
|
auto abi;
|
2011-03-21 14:03:34 -05:00
|
|
|
alt (next(st) as char) {
|
2011-03-21 13:35:04 -05:00
|
|
|
case ('r') {abi = ast.native_abi_rust;}
|
|
|
|
case ('c') {abi = ast.native_abi_cdecl;}
|
2011-03-28 10:24:11 -05:00
|
|
|
case ('l') {abi = ast.native_abi_llvm;}
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
auto func = parse_ty_fn(st, sd);
|
|
|
|
ret ty.ty_native_fn(abi,func._0,func._1);
|
|
|
|
}
|
|
|
|
case ('O') {
|
2011-03-21 14:03:34 -05:00
|
|
|
check(next(st) as char == '[');
|
2011-03-21 13:35:04 -05:00
|
|
|
let vec[ty.method] methods = vec();
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != ']') {
|
2011-03-21 13:35:04 -05:00
|
|
|
auto proto;
|
2011-03-21 14:03:34 -05:00
|
|
|
alt (next(st) as char) {
|
2011-03-21 13:35:04 -05:00
|
|
|
case ('W') {proto = ast.proto_iter;}
|
|
|
|
case ('F') {proto = ast.proto_fn;}
|
|
|
|
}
|
|
|
|
auto name = "";
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != '[') {
|
|
|
|
name += _str.unsafe_from_byte(next(st));
|
|
|
|
}
|
2011-03-21 13:35:04 -05:00
|
|
|
auto func = parse_ty_fn(st, sd);
|
2011-03-21 14:03:34 -05:00
|
|
|
methods += vec(rec(proto=proto,
|
|
|
|
ident=name,
|
|
|
|
inputs=func._0,
|
|
|
|
output=func._1));
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
ret ty.ty_obj(methods);
|
|
|
|
}
|
|
|
|
case ('X') {ret ty.ty_var(parse_int(st));}
|
|
|
|
case ('E') {ret ty.ty_native;}
|
2011-03-26 19:35:51 -05:00
|
|
|
case ('Y') {ret ty.ty_type;}
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impure fn parse_int(@pstate st) -> int {
|
|
|
|
auto n = 0;
|
|
|
|
while (true) {
|
2011-03-21 14:03:34 -05:00
|
|
|
auto cur = peek(st) as char;
|
2011-03-21 13:35:04 -05:00
|
|
|
if (cur < '0' || cur > '9') {break;}
|
|
|
|
st.pos = st.pos + 1u;
|
|
|
|
n *= 10;
|
|
|
|
n += (cur as int) - ('0' as int);
|
|
|
|
}
|
|
|
|
ret n;
|
|
|
|
}
|
|
|
|
|
|
|
|
impure fn parse_ty_fn(@pstate st, str_def sd) -> tup(vec[ty.arg], @ty.t) {
|
2011-03-21 14:03:34 -05:00
|
|
|
check(next(st) as char == '[');
|
2011-03-21 13:35:04 -05:00
|
|
|
let vec[ty.arg] inputs = vec();
|
2011-03-21 14:03:34 -05:00
|
|
|
while (peek(st) as char != ']') {
|
2011-03-21 13:35:04 -05:00
|
|
|
auto mode = ast.val;
|
2011-03-21 14:03:34 -05:00
|
|
|
if (peek(st) as char == '&') {
|
2011-03-21 13:35:04 -05:00
|
|
|
mode = ast.alias;
|
|
|
|
st.pos = st.pos + 1u;
|
|
|
|
}
|
2011-03-21 14:03:34 -05:00
|
|
|
inputs += vec(rec(mode=mode, ty=parse_ty(st, sd)));
|
2011-03-21 13:35:04 -05:00
|
|
|
}
|
|
|
|
st.pos = st.pos + 1u;
|
|
|
|
ret tup(inputs, parse_ty(st, sd));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-24 19:21:09 -05:00
|
|
|
// Rust metadata parsing
|
2011-03-21 13:35:04 -05:00
|
|
|
|
2011-03-25 20:34:21 -05:00
|
|
|
fn parse_def_id(vec[u8] buf) -> ast.def_id {
|
|
|
|
auto colon_idx = 0u;
|
|
|
|
auto len = _vec.len[u8](buf);
|
|
|
|
while (colon_idx < len && buf.(colon_idx) != (':' as u8)) {
|
|
|
|
colon_idx += 1u;
|
|
|
|
}
|
|
|
|
if (colon_idx == len) {
|
|
|
|
log "didn't find ':' when parsing def id";
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto crate_part = _vec.slice[u8](buf, 0u, colon_idx);
|
|
|
|
auto def_part = _vec.slice[u8](buf, colon_idx + 1u, len);
|
|
|
|
auto crate_num = _uint.parse_buf(crate_part, 10u) as int;
|
|
|
|
auto def_num = _uint.parse_buf(def_part, 10u) as int;
|
|
|
|
ret tup(crate_num, def_num);
|
2011-03-25 19:53:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Given a path and serialized crate metadata, returns the ID of the
|
|
|
|
// definition the path refers to.
|
|
|
|
impure fn resolve_path(vec[ast.ident] path, vec[u8] data) -> resolve_result {
|
|
|
|
impure fn resolve_path_inner(vec[ast.ident] path, &ebml.reader ebml_r)
|
|
|
|
-> resolve_result {
|
|
|
|
auto i = 0u;
|
|
|
|
auto len = _vec.len[ast.ident](path);
|
|
|
|
while (i < len) {
|
|
|
|
auto name = path.(i);
|
|
|
|
auto last = i == len - 1u;
|
|
|
|
|
|
|
|
// Search this level for the identifier.
|
|
|
|
auto found = false;
|
|
|
|
while (ebml.bytes_left(ebml_r) > 0u && !found) {
|
|
|
|
auto ebml_tag = ebml.peek(ebml_r);
|
|
|
|
check ((ebml_tag.id == metadata.tag_paths_item) ||
|
|
|
|
(ebml_tag.id == metadata.tag_paths_mod));
|
|
|
|
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
auto did_opt = none[ast.def_id];
|
|
|
|
auto name_opt = none[ast.ident];
|
|
|
|
while (ebml.bytes_left(ebml_r) > 0u) {
|
|
|
|
auto inner_tag = ebml.peek(ebml_r);
|
|
|
|
if (inner_tag.id == metadata.tag_paths_name) {
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
auto name_data = ebml.read_data(ebml_r);
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
auto nm = _str.unsafe_from_bytes(name_data);
|
|
|
|
name_opt = some[ast.ident](nm);
|
|
|
|
} else if (inner_tag.id == metadata.tag_items_def_id) {
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
auto did_data = ebml.read_data(ebml_r);
|
|
|
|
ebml.move_to_parent(ebml_r);
|
2011-03-25 20:34:21 -05:00
|
|
|
did_opt = some[ast.def_id](parse_def_id(did_data));
|
2011-03-25 19:53:46 -05:00
|
|
|
}
|
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
|
|
|
}
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
|
|
|
|
if (_str.eq(option.get[ast.ident](name_opt), name)) {
|
|
|
|
// Matched!
|
|
|
|
if (last) {
|
|
|
|
ret rr_ok(option.get[ast.def_id](did_opt));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move to the module/item we found for the next iteration
|
|
|
|
// of the loop...
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) {
|
|
|
|
auto prev = _vec.slice[ast.ident](path, 0u, i);
|
|
|
|
ret rr_not_found(prev, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
i += 1u;
|
|
|
|
}
|
|
|
|
|
|
|
|
fail; // not reached
|
|
|
|
}
|
|
|
|
|
|
|
|
auto io_r = io.new_reader_(io.new_byte_buf_reader(data));
|
|
|
|
auto ebml_r = ebml.create_reader(io_r);
|
|
|
|
while (ebml.bytes_left(ebml_r) > 0u) {
|
|
|
|
auto ebml_tag = ebml.peek(ebml_r);
|
|
|
|
if (ebml_tag.id == metadata.tag_paths) {
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
ret resolve_path_inner(path, ebml_r);
|
|
|
|
}
|
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
|
|
|
}
|
|
|
|
|
|
|
|
log "resolve_path(): no names in file";
|
|
|
|
fail;
|
|
|
|
}
|
2011-03-24 19:21:09 -05:00
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
impure fn move_to_item(&ebml.reader ebml_r, int item_id) {
|
2011-03-25 21:01:44 -05:00
|
|
|
while (ebml.bytes_left(ebml_r) > 0u) {
|
|
|
|
auto outer_ebml_tag = ebml.peek(ebml_r);
|
|
|
|
if (outer_ebml_tag.id == metadata.tag_items) {
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
|
|
|
|
while (ebml.bytes_left(ebml_r) > 0u) {
|
|
|
|
auto inner_ebml_tag = ebml.peek(ebml_r);
|
|
|
|
if (inner_ebml_tag.id == metadata.tag_items_item) {
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
|
|
|
|
while (ebml.bytes_left(ebml_r) > 0u) {
|
|
|
|
auto innermost_ebml_tag = ebml.peek(ebml_r);
|
|
|
|
if (innermost_ebml_tag.id ==
|
|
|
|
metadata.tag_items_def_id) {
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
auto did_data = ebml.read_data(ebml_r);
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
|
|
|
|
auto this_did = parse_def_id(did_data);
|
2011-03-28 18:49:26 -05:00
|
|
|
if (this_did._1 == item_id) {
|
2011-03-25 21:01:44 -05:00
|
|
|
// Move to the start of this item's data.
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
|
|
|
}
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
}
|
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
|
|
|
}
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
}
|
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
|
|
|
}
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
log #fmt("move_to_item: item not found: %d", item_id);
|
2011-03-25 21:01:44 -05:00
|
|
|
}
|
|
|
|
|
2011-03-28 15:11:09 -05:00
|
|
|
// Looks up an item in the given metadata and returns an EBML reader pointing
|
|
|
|
// to the item data.
|
2011-03-28 18:49:26 -05:00
|
|
|
impure fn lookup_item(int item_id, vec[u8] data) -> ebml.reader {
|
2011-03-25 21:01:44 -05:00
|
|
|
auto io_r = io.new_reader_(io.new_byte_buf_reader(data));
|
|
|
|
auto ebml_r = ebml.create_reader(io_r);
|
2011-03-28 18:49:26 -05:00
|
|
|
move_to_item(ebml_r, item_id);
|
2011-03-28 15:11:09 -05:00
|
|
|
ret ebml_r;
|
|
|
|
}
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
impure fn get_item_generic[T](&ebml.reader ebml_r, uint tag_id,
|
|
|
|
impure fn(vec[u8] buf) -> T converter) -> T {
|
2011-03-28 15:11:09 -05:00
|
|
|
while (ebml.bytes_left(ebml_r) > 0u) {
|
|
|
|
auto ebml_tag = ebml.peek(ebml_r);
|
2011-03-28 18:49:26 -05:00
|
|
|
if (ebml_tag.id == tag_id) {
|
2011-03-28 15:11:09 -05:00
|
|
|
ebml.move_to_first_child(ebml_r);
|
2011-03-28 18:49:26 -05:00
|
|
|
auto result = converter(ebml.read_data(ebml_r));
|
2011-03-28 15:11:09 -05:00
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
// Be kind, rewind.
|
2011-03-28 15:11:09 -05:00
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
ret result;
|
2011-03-28 15:11:09 -05:00
|
|
|
}
|
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
|
|
|
}
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
log #fmt("get_item_generic(): tag %u not found", tag_id);
|
2011-03-28 15:11:09 -05:00
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
impure fn get_item_kind(&ebml.reader ebml_r) -> u8 {
|
|
|
|
impure fn converter(vec[u8] data) -> u8 {
|
|
|
|
auto x = @mutable 3;
|
|
|
|
*x = 5;
|
|
|
|
ret data.(0);
|
|
|
|
}
|
|
|
|
auto f = converter;
|
|
|
|
ret get_item_generic[u8](ebml_r, metadata.tag_items_kind, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: This is a *terrible* botch.
|
|
|
|
impure fn impure_parse_def_id(vec[u8] data) -> ast.def_id {
|
|
|
|
auto x = @mutable 3;
|
|
|
|
*x = 5;
|
|
|
|
ret parse_def_id(data);
|
|
|
|
}
|
|
|
|
|
2011-03-28 15:11:09 -05:00
|
|
|
impure fn get_variant_tag_id(&ebml.reader ebml_r) -> ast.def_id {
|
2011-03-28 18:49:26 -05:00
|
|
|
auto f = impure_parse_def_id;
|
|
|
|
ret get_item_generic[ast.def_id](ebml_r, metadata.tag_items_tag_id, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
impure fn get_item_type(&ebml.reader ebml_r, int this_cnum) -> @ty.t {
|
|
|
|
impure fn converter(int this_cnum, vec[u8] data) -> @ty.t {
|
|
|
|
fn parse_external_def_id(int this_cnum, str s) -> ast.def_id {
|
|
|
|
// FIXME: This is completely wrong when linking against a crate
|
|
|
|
// that, in turn, links against another crate. We need a mapping
|
|
|
|
// from crate ID to crate "meta" attributes as part of the crate
|
|
|
|
// metadata.
|
|
|
|
auto buf = _str.bytes(s);
|
|
|
|
auto external_def_id = parse_def_id(buf);
|
|
|
|
ret tup(this_cnum, external_def_id._1);
|
|
|
|
}
|
|
|
|
auto s = _str.unsafe_from_bytes(data);
|
|
|
|
ret parse_ty_str(s, bind parse_external_def_id(this_cnum, _));
|
|
|
|
}
|
|
|
|
auto f = bind converter(this_cnum, _);
|
|
|
|
ret get_item_generic[@ty.t](ebml_r, metadata.tag_items_type, f);
|
|
|
|
}
|
|
|
|
|
|
|
|
impure fn get_item_ty_params(&ebml.reader ebml_r, int this_cnum)
|
|
|
|
-> vec[ast.def_id] {
|
|
|
|
let vec[ast.def_id] tps = vec();
|
2011-03-28 15:11:09 -05:00
|
|
|
while (ebml.bytes_left(ebml_r) > 0u) {
|
|
|
|
auto ebml_tag = ebml.peek(ebml_r);
|
2011-03-28 18:49:26 -05:00
|
|
|
if (ebml_tag.id == metadata.tag_items_ty_param) {
|
2011-03-28 15:11:09 -05:00
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
auto data = ebml.read_data(ebml_r);
|
|
|
|
auto external_def_id = parse_def_id(data);
|
|
|
|
tps += vec(tup(this_cnum, external_def_id._1));
|
2011-03-25 21:01:44 -05:00
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
ebml.move_to_parent(ebml_r);
|
2011-03-28 15:11:09 -05:00
|
|
|
}
|
2011-03-28 18:49:26 -05:00
|
|
|
ebml.move_to_next_sibling(ebml_r);
|
2011-03-28 15:11:09 -05:00
|
|
|
}
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
// Be kind, rewind.
|
|
|
|
ebml.move_to_parent(ebml_r);
|
|
|
|
ebml.move_to_first_child(ebml_r);
|
|
|
|
|
|
|
|
ret tps;
|
2011-03-25 21:01:44 -05:00
|
|
|
}
|
|
|
|
|
2011-03-24 19:21:09 -05:00
|
|
|
|
|
|
|
fn load_crate(session.session sess,
|
2011-03-25 19:53:46 -05:00
|
|
|
int cnum,
|
2011-03-24 19:21:09 -05:00
|
|
|
ast.ident ident,
|
2011-03-25 13:10:50 -05:00
|
|
|
vec[str] library_search_paths) {
|
2011-03-24 19:21:09 -05:00
|
|
|
auto filename = parser.default_native_name(sess, ident);
|
2011-03-15 19:33:05 -05:00
|
|
|
for (str library_search_path in library_search_paths) {
|
2011-03-24 19:21:09 -05:00
|
|
|
auto path = fs.connect(library_search_path, filename);
|
|
|
|
auto pbuf = _str.buf(path);
|
2011-03-25 20:44:52 -05:00
|
|
|
auto mb = llvm.LLVMRustCreateMemoryBufferWithContentsOfFile(pbuf);
|
2011-03-24 19:21:09 -05:00
|
|
|
if (mb as int != 0) {
|
|
|
|
auto of = mk_object_file(mb);
|
|
|
|
auto si = mk_section_iter(of.llof);
|
2011-03-25 20:44:52 -05:00
|
|
|
while (llvm.LLVMIsSectionIteratorAtEnd(of.llof, si.llsi) ==
|
2011-03-24 19:21:09 -05:00
|
|
|
False) {
|
2011-03-25 20:44:52 -05:00
|
|
|
auto name_buf = llvm.LLVMGetSectionName(si.llsi);
|
2011-03-24 19:21:09 -05:00
|
|
|
auto name = _str.str_from_cstr(name_buf);
|
|
|
|
if (_str.eq(name, x86.get_meta_sect_name())) {
|
2011-03-25 20:44:52 -05:00
|
|
|
auto cbuf = llvm.LLVMGetSectionContents(si.llsi);
|
|
|
|
auto csz = llvm.LLVMGetSectionSize(si.llsi);
|
2011-03-24 19:21:09 -05:00
|
|
|
auto cvbuf = cbuf as _vec.vbuf;
|
2011-03-25 19:53:46 -05:00
|
|
|
auto cvec = _vec.vec_from_vbuf[u8](cvbuf, csz);
|
|
|
|
sess.set_external_crate(cnum, cvec);
|
2011-03-25 13:10:50 -05:00
|
|
|
ret;
|
2011-03-24 19:21:09 -05:00
|
|
|
}
|
2011-03-25 20:44:52 -05:00
|
|
|
llvm.LLVMMoveToNextSection(si.llsi);
|
2011-03-24 19:21:09 -05:00
|
|
|
}
|
|
|
|
}
|
2011-03-15 19:33:05 -05:00
|
|
|
}
|
|
|
|
|
2011-03-24 19:21:09 -05:00
|
|
|
log #fmt("can't open crate '%s' (looked for '%s' in lib search paths)",
|
|
|
|
ident, filename);
|
|
|
|
fail;
|
2011-03-15 19:33:05 -05:00
|
|
|
}
|
2011-03-15 18:30:43 -05:00
|
|
|
|
|
|
|
fn fold_view_item_use(&env e, &span sp, ast.ident ident,
|
2011-03-25 13:10:50 -05:00
|
|
|
vec[@ast.meta_item] meta_items, ast.def_id id, option.t[int] cnum_opt)
|
2011-03-15 19:33:05 -05:00
|
|
|
-> @ast.view_item {
|
2011-03-25 13:10:50 -05:00
|
|
|
auto cnum;
|
2011-03-15 19:33:05 -05:00
|
|
|
if (!e.crate_cache.contains_key(ident)) {
|
2011-03-25 13:10:50 -05:00
|
|
|
cnum = e.next_crate_num;
|
2011-03-25 19:53:46 -05:00
|
|
|
load_crate(e.sess, cnum, ident, e.library_search_paths);
|
2011-03-25 13:10:50 -05:00
|
|
|
e.crate_cache.insert(ident, e.next_crate_num);
|
|
|
|
e.next_crate_num += 1;
|
2011-03-15 19:33:05 -05:00
|
|
|
} else {
|
2011-03-25 13:10:50 -05:00
|
|
|
cnum = e.crate_cache.get(ident);
|
2011-03-15 19:33:05 -05:00
|
|
|
}
|
2011-03-15 18:30:43 -05:00
|
|
|
|
2011-03-25 13:10:50 -05:00
|
|
|
auto viu = ast.view_item_use(ident, meta_items, id, some[int](cnum));
|
2011-03-15 18:30:43 -05:00
|
|
|
ret @fold.respan[ast.view_item_](sp, viu);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reads external crates referenced by "use" directives.
|
2011-03-15 19:33:05 -05:00
|
|
|
fn read_crates(session.session sess,
|
|
|
|
@ast.crate crate,
|
|
|
|
vec[str] library_search_paths) -> @ast.crate {
|
|
|
|
auto e = @rec(
|
2011-03-24 19:21:09 -05:00
|
|
|
sess=sess,
|
2011-03-25 13:10:50 -05:00
|
|
|
crate_cache=@common.new_str_hash[int](),
|
|
|
|
library_search_paths=library_search_paths,
|
|
|
|
mutable next_crate_num=1
|
2011-03-15 19:33:05 -05:00
|
|
|
);
|
|
|
|
|
2011-03-15 18:30:43 -05:00
|
|
|
auto f = fold_view_item_use;
|
|
|
|
auto fld = @rec(fold_view_item_use=f with *fold.new_identity_fold[env]());
|
2011-03-15 19:33:05 -05:00
|
|
|
ret fold.fold_crate[env](e, fld, crate);
|
2011-03-15 18:30:43 -05:00
|
|
|
}
|
|
|
|
|
2011-03-25 19:53:46 -05:00
|
|
|
|
|
|
|
// Crate metadata queries
|
|
|
|
|
2011-03-25 13:10:50 -05:00
|
|
|
fn lookup_def(session.session sess, &span sp, int cnum, vec[ast.ident] path)
|
2011-03-25 19:53:46 -05:00
|
|
|
-> ast.def {
|
|
|
|
auto data = sess.get_external_crate(cnum);
|
|
|
|
|
|
|
|
auto did;
|
|
|
|
alt (resolve_path(path, data)) {
|
|
|
|
case (rr_ok(?di)) { did = di; }
|
|
|
|
case (rr_not_found(?prev, ?name)) {
|
|
|
|
sess.span_err(sp,
|
|
|
|
#fmt("unbound name '%s' (no item named '%s' found in '%s')",
|
|
|
|
_str.connect(path, "."), name, _str.connect(prev, ".")));
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-28 18:49:26 -05:00
|
|
|
auto ebml_r = lookup_item(did._1, data);
|
2011-03-28 15:11:09 -05:00
|
|
|
auto kind_ch = get_item_kind(ebml_r);
|
|
|
|
|
|
|
|
did = tup(cnum, did._1);
|
|
|
|
|
|
|
|
// FIXME: It'd be great if we had u8 char literals.
|
|
|
|
if (kind_ch == ('c' as u8)) { ret ast.def_const(did); }
|
|
|
|
else if (kind_ch == ('f' as u8)) { ret ast.def_fn(did); }
|
|
|
|
else if (kind_ch == ('y' as u8)) { ret ast.def_ty(did); }
|
|
|
|
else if (kind_ch == ('o' as u8)) { ret ast.def_obj(did); }
|
|
|
|
else if (kind_ch == ('t' as u8)) { ret ast.def_ty(did); }
|
|
|
|
else if (kind_ch == ('v' as u8)) {
|
|
|
|
auto tid = get_variant_tag_id(ebml_r);
|
|
|
|
tid = tup(cnum, tid._1);
|
|
|
|
ret ast.def_variant(tid, did);
|
|
|
|
}
|
2011-03-25 19:53:46 -05:00
|
|
|
|
2011-03-28 15:11:09 -05:00
|
|
|
log #fmt("lookup_def(): unknown kind char: %d", kind_ch as int);
|
2011-03-25 19:53:46 -05:00
|
|
|
fail;
|
2011-03-24 19:35:27 -05:00
|
|
|
}
|
|
|
|
|
2011-03-28 16:42:01 -05:00
|
|
|
fn get_type(session.session sess, ast.def_id def) -> ty.ty_params_and_ty {
|
2011-03-28 18:49:26 -05:00
|
|
|
auto external_crate_id = def._0;
|
|
|
|
auto data = sess.get_external_crate(external_crate_id);
|
|
|
|
auto ebml_r = lookup_item(def._1, data);
|
|
|
|
auto t = get_item_type(ebml_r, external_crate_id);
|
|
|
|
auto tps = get_item_ty_params(ebml_r, external_crate_id);
|
|
|
|
ret tup(tps, t);
|
2011-03-25 16:32:39 -05:00
|
|
|
}
|
|
|
|
|
2011-03-24 19:35:27 -05: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 17:07:27 -05:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2011-03-24 19:35:27 -05:00
|
|
|
// End:
|