ty.rs 58.4 KB
Newer Older
1
import std._str;
2
import std._uint;
3
import std._vec;
4 5
import std.map;
import std.map.hashmap;
6 7 8 9 10 11 12
import std.option;
import std.option.none;
import std.option.some;

import driver.session;
import front.ast;
import front.ast.mutability;
13
import front.creader;
14
import util.common;
15
import util.common.new_def_hash;
16 17 18 19 20
import util.common.span;

// Data types

type arg = rec(ast.mode mode, @t ty);
21
type field = rec(ast.ident ident, mt mt);
22 23 24 25
type method = rec(ast.proto proto,
                  ast.ident ident,
                  vec[arg] inputs,
                  @t output);
26

27 28
type mt = rec(@t ty, ast.mutability mut);

29 30
// NB: If you change this, you'll probably want to change the corresponding
// AST structure in front/ast.rs as well.
31
type t = rec(sty struct, option.t[str] cname);
32 33 34 35
tag sty {
    ty_nil;
    ty_bool;
    ty_int;
36
    ty_float;
37 38 39 40
    ty_uint;
    ty_machine(util.common.ty_mach);
    ty_char;
    ty_str;
41
    ty_tag(ast.def_id, vec[@t]);
42 43
    ty_box(mt);
    ty_vec(mt);
44 45
    ty_port(@t);
    ty_chan(@t);
46
    ty_task;
47
    ty_tup(vec[mt]);
48
    ty_rec(vec[field]);
49
    ty_fn(ast.proto, vec[arg], @t);                 // TODO: effect
50
    ty_native_fn(ast.native_abi, vec[arg], @t);     // TODO: effect
51 52 53
    ty_obj(vec[method]);
    ty_var(int);                                    // ephemeral type var
    ty_local(ast.def_id);                           // type of a local var
54
    ty_param(ast.def_id);                           // fn/tag type param
G
Graydon Hoare 已提交
55
    ty_type;
56
    ty_native;
57 58 59
    // TODO: ty_fn_arg(@t), for a possibly-aliased function argument
}

60 61 62 63 64 65 66
// Data structures used in type unification

type unify_handler = obj {
    fn resolve_local(ast.def_id id) -> @t;
    fn record_local(ast.def_id id, @t ty);
    fn unify_expected_param(ast.def_id id, @t expected, @t actual)
        -> unify_result;
67 68
    fn unify_actual_param(ast.def_id id, @t expected, @t actual)
        -> unify_result;
69 70 71 72
};

tag type_err {
    terr_mismatch;
73 74
    terr_box_mutability;
    terr_vec_mutability;
75 76 77 78 79
    terr_tuple_size(uint, uint);
    terr_tuple_mutability;
    terr_record_size(uint, uint);
    terr_record_mutability;
    terr_record_fields(ast.ident,ast.ident);
G
Graydon Hoare 已提交
80 81
    terr_meth_count;
    terr_obj_meths(ast.ident,ast.ident);
82 83 84 85 86 87 88 89
    terr_arg_count;
}

tag unify_result {
    ures_ok(@ty.t);
    ures_err(type_err, @ty.t, @ty.t);
}

90 91 92 93 94

type ty_params_opt_and_ty = tup(option.t[vec[ast.def_id]], @ty.t);
type type_cache = hashmap[ast.def_id,ty_params_opt_and_ty];


95 96
// Stringification

97 98 99
fn path_to_str(&ast.path pth) -> str {
    auto result = _str.connect(pth.node.idents,  ".");
    if (_vec.len[@ast.ty](pth.node.types) > 0u) {
100
        auto f = pretty.pprust.ty_to_str;
101
        result += "[";
102
        result += _str.connect(_vec.map[@ast.ty,str](f, pth.node.types), ",");
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
        result += "]";
    }
    ret result;
}

fn ty_to_str(&@t typ) -> str {

    fn fn_input_to_str(&rec(ast.mode mode, @t ty) input) -> str {
        auto s;
        if (mode_is_alias(input.mode)) {
            s = "&";
        } else {
            s = "";
        }

        ret s + ty_to_str(input.ty);
    }

121 122
    fn fn_to_str(ast.proto proto,
                 option.t[ast.ident] ident,
123 124
                 vec[arg] inputs, @t output) -> str {
            auto f = fn_input_to_str;
125 126 127 128 129 130 131 132 133

            auto s;
            alt (proto) {
                case (ast.proto_iter) {
                    s = "iter";
                }
                case (ast.proto_fn) {
                    s = "fn";
                }
134
            }
135

136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
            alt (ident) {
                case (some[ast.ident](?i)) {
                    s += " ";
                    s += i;
                }
                case (_) { }
            }

            s += "(";
            s += _str.connect(_vec.map[arg,str](f, inputs), ", ");
            s += ")";

            if (output.struct != ty_nil) {
                s += " -> " + ty_to_str(output);
            }
            ret s;
    }

    fn method_to_str(&method m) -> str {
155 156
        ret fn_to_str(m.proto, some[ast.ident](m.ident),
                      m.inputs, m.output) + ";";
157 158 159
    }

    fn field_to_str(&field f) -> str {
160
        ret mt_to_str(f.mt) + " " + f.ident;
161 162
    }

163 164 165
    fn mt_to_str(&mt m) -> str {
        auto mstr;
        alt (m.mut) {
166 167 168
            case (ast.mut)       { mstr = "mutable "; }
            case (ast.imm)       { mstr = "";         }
            case (ast.maybe_mut) { mstr = "mutable? "; }
169 170 171
        }

        ret mstr + ty_to_str(m.ty);
172 173
    }

174
    auto s = "";
175
    alt (typ.struct) {
176 177 178 179
        case (ty_native)       { s += "native";                     }
        case (ty_nil)          { s += "()";                         }
        case (ty_bool)         { s += "bool";                       }
        case (ty_int)          { s += "int";                        }
180
        case (ty_float)        { s += "float";                      }
181 182 183 184
        case (ty_uint)         { s += "uint";                       }
        case (ty_machine(?tm)) { s += common.ty_mach_to_str(tm);    }
        case (ty_char)         { s += "char";                       }
        case (ty_str)          { s += "str";                        }
185 186
        case (ty_box(?tm))     { s += "@" + mt_to_str(tm);          }
        case (ty_vec(?tm))     { s += "vec[" + mt_to_str(tm) + "]"; }
187 188 189
        case (ty_port(?t))     { s += "port[" + ty_to_str(t) + "]"; }
        case (ty_chan(?t))     { s += "chan[" + ty_to_str(t) + "]"; }
        case (ty_type)         { s += "type";                       }
190 191

        case (ty_tup(?elems)) {
192 193
            auto f = mt_to_str;
            auto strs = _vec.map[mt,str](f, elems);
194
            s += "tup(" + _str.connect(strs, ",") + ")";
195 196 197 198 199
        }

        case (ty_rec(?elems)) {
            auto f = field_to_str;
            auto strs = _vec.map[field,str](f, elems);
200
            s += "rec(" + _str.connect(strs, ",") + ")";
201 202
        }

203
        case (ty_tag(?id, ?tps)) {
204
            // The user should never see this if the cname is set properly!
205
            s += "<tag#" + util.common.istr(id._0) + ":" +
206
                util.common.istr(id._1) + ">";
207 208 209 210 211
            if (_vec.len[@t](tps) > 0u) {
                auto f = ty_to_str;
                auto strs = _vec.map[@t,str](f, tps);
                s += "[" + _str.connect(strs, ",") + "]";
            }
212 213
        }

214
        case (ty_fn(?proto, ?inputs, ?output)) {
215
            s += fn_to_str(proto, none[ast.ident], inputs, output);
216 217
        }

218
        case (ty_native_fn(_, ?inputs, ?output)) {
219
            s += fn_to_str(ast.proto_fn, none[ast.ident], inputs, output);
220 221
        }

222
        case (ty_obj(?meths)) {
223 224 225 226 227 228 229 230 231 232
            alt (typ.cname) {
                case (some[str](?cs)) {
                    s += cs;
                }
                case (_) {
                    auto f = method_to_str;
                    auto m = _vec.map[method,str](f, meths);
                    s += "obj {\n\t" + _str.connect(m, "\n\t") + "\n}";
                }
            }
233 234 235
        }

        case (ty_var(?v)) {
236
            s += "<T" + util.common.istr(v) + ">";
237 238
        }

G
Graydon Hoare 已提交
239
        case (ty_local(?id)) {
240 241
            s += "<L" + util.common.istr(id._0) + ":" +
                util.common.istr(id._1) + ">";
G
Graydon Hoare 已提交
242 243
        }

244
        case (ty_param(?id)) {
245 246
            s += "<P" + util.common.istr(id._0) + ":" +
                util.common.istr(id._1) + ">";
247 248 249 250 251 252 253 254 255 256 257 258 259 260
        }
    }

    ret s;
}

// Type folds

type ty_fold = state obj {
    fn fold_simple_ty(@t ty) -> @t;
};

fn fold_ty(ty_fold fld, @t ty) -> @t {
    fn rewrap(@t orig, &sty new) -> @t {
261
        ret @rec(struct=new, cname=orig.cname);
262 263 264 265 266 267 268
    }

    alt (ty.struct) {
        case (ty_nil)           { ret fld.fold_simple_ty(ty); }
        case (ty_bool)          { ret fld.fold_simple_ty(ty); }
        case (ty_int)           { ret fld.fold_simple_ty(ty); }
        case (ty_uint)          { ret fld.fold_simple_ty(ty); }
269
        case (ty_float)         { ret fld.fold_simple_ty(ty); }
270 271 272
        case (ty_machine(_))    { ret fld.fold_simple_ty(ty); }
        case (ty_char)          { ret fld.fold_simple_ty(ty); }
        case (ty_str)           { ret fld.fold_simple_ty(ty); }
G
Graydon Hoare 已提交
273
        case (ty_type)          { ret fld.fold_simple_ty(ty); }
274
        case (ty_native)        { ret fld.fold_simple_ty(ty); }
275 276
        case (ty_box(?tm)) {
            ret rewrap(ty, ty_box(rec(ty=fold_ty(fld, tm.ty), mut=tm.mut)));
277
        }
278 279
        case (ty_vec(?tm)) {
            ret rewrap(ty, ty_vec(rec(ty=fold_ty(fld, tm.ty), mut=tm.mut)));
280
        }
281 282 283 284 285 286
        case (ty_port(?subty)) {
            ret rewrap(ty, ty_port(fold_ty(fld, subty)));
        }
        case (ty_chan(?subty)) {
            ret rewrap(ty, ty_chan(fold_ty(fld, subty)));
        }
287 288 289 290 291
        case (ty_tag(?tid, ?subtys)) {
            let vec[@t] new_subtys = vec();
            for (@t subty in subtys) {
                new_subtys += vec(fold_ty(fld, subty));
            }
292
            ret rewrap(ty, ty_tag(tid, new_subtys));
293
        }
294 295 296 297 298
        case (ty_tup(?mts)) {
            let vec[mt] new_mts = vec();
            for (mt tm in mts) {
                auto new_subty = fold_ty(fld, tm.ty);
                new_mts += vec(rec(ty=new_subty, mut=tm.mut));
299
            }
300
            ret rewrap(ty, ty_tup(new_mts));
301 302 303 304
        }
        case (ty_rec(?fields)) {
            let vec[field] new_fields = vec();
            for (field fl in fields) {
305 306 307
                auto new_ty = fold_ty(fld, fl.mt.ty);
                auto new_mt = rec(ty=new_ty, mut=fl.mt.mut);
                new_fields += vec(rec(ident=fl.ident, mt=new_mt));
308 309 310
            }
            ret rewrap(ty, ty_rec(new_fields));
        }
311
        case (ty_fn(?proto, ?args, ?ret_ty)) {
312 313 314 315 316
            let vec[arg] new_args = vec();
            for (arg a in args) {
                auto new_ty = fold_ty(fld, a.ty);
                new_args += vec(rec(mode=a.mode, ty=new_ty));
            }
317
            ret rewrap(ty, ty_fn(proto, new_args, fold_ty(fld, ret_ty)));
318
        }
319
        case (ty_native_fn(?abi, ?args, ?ret_ty)) {
320 321 322 323 324
            let vec[arg] new_args = vec();
            for (arg a in args) {
                auto new_ty = fold_ty(fld, a.ty);
                new_args += vec(rec(mode=a.mode, ty=new_ty));
            }
325
            ret rewrap(ty, ty_native_fn(abi, new_args, fold_ty(fld, ret_ty)));
326
        }
327 328 329 330 331 332 333
        case (ty_obj(?methods)) {
            let vec[method] new_methods = vec();
            for (method m in methods) {
                let vec[arg] new_args = vec();
                for (arg a in m.inputs) {
                    new_args += vec(rec(mode=a.mode, ty=fold_ty(fld, a.ty)));
                }
334 335
                new_methods += vec(rec(proto=m.proto, ident=m.ident,
                                       inputs=new_args,
336 337 338 339 340 341 342 343 344
                                       output=fold_ty(fld, m.output)));
            }
            ret rewrap(ty, ty_obj(new_methods));
        }
        case (ty_var(_))        { ret fld.fold_simple_ty(ty); }
        case (ty_local(_))      { ret fld.fold_simple_ty(ty); }
        case (ty_param(_))      { ret fld.fold_simple_ty(ty); }
    }

345
    fail;
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
}

// Type utilities

// FIXME: remove me when == works on these tags.
fn mode_is_alias(ast.mode m) -> bool {
    alt (m) {
        case (ast.val) { ret false; }
        case (ast.alias) { ret true; }
    }
    fail;
}

fn type_is_nil(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_nil) { ret true; }
        case (_) { ret false; }
    }
    fail;
}

367

368 369
fn type_is_structural(@t ty) -> bool {
    alt (ty.struct) {
370 371 372
        case (ty_tup(_))    { ret true; }
        case (ty_rec(_))    { ret true; }
        case (ty_tag(_,_))  { ret true; }
373
        case (ty_fn(_,_,_)) { ret true; }
374 375
        case (ty_obj(_))    { ret true; }
        case (_)            { ret false; }
376 377 378 379
    }
    fail;
}

380 381 382 383 384 385 386 387 388
fn type_is_sequence(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_str)    { ret true; }
        case (ty_vec(_))    { ret true; }
        case (_)            { ret false; }
    }
    fail;
}

389 390
fn sequence_element_type(@t ty) -> @t {
    alt (ty.struct) {
391 392
        case (ty_str)      { ret plain_ty(ty_machine(common.ty_u8)); }
        case (ty_vec(?mt)) { ret mt.ty; }
393 394 395 396 397
    }
    fail;
}


398 399
fn type_is_tup_like(@t ty) -> bool {
    alt (ty.struct) {
400 401 402 403 404
        case (ty_box(_))    { ret true; }
        case (ty_tup(_))    { ret true; }
        case (ty_rec(_))    { ret true; }
        case (ty_tag(_,_))  { ret true; }
        case (_)            { ret false; }
405 406 407 408 409 410 411
    }
    fail;
}

fn get_element_type(@t ty, uint i) -> @t {
    check (type_is_tup_like(ty));
    alt (ty.struct) {
412 413
        case (ty_tup(?mts)) {
            ret mts.(i).ty;
414 415
        }
        case (ty_rec(?flds)) {
416
            ret flds.(i).mt.ty;
417 418 419 420 421
        }
    }
    fail;
}

422 423 424 425 426 427 428 429
fn type_is_box(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_box(_)) { ret true; }
        case (_) { ret false; }
    }
    fail;
}

430 431 432 433 434
fn type_is_boxed(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_str) { ret true; }
        case (ty_vec(_)) { ret true; }
        case (ty_box(_)) { ret true; }
B
Brian Anderson 已提交
435 436
        case (ty_port(_)) { ret true; }
        case (ty_chan(_)) { ret true; }
437 438 439 440 441 442 443 444 445 446
        case (_) { ret false; }
    }
    fail;
}

fn type_is_scalar(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_nil) { ret true; }
        case (ty_bool) { ret true; }
        case (ty_int) { ret true; }
447
        case (ty_float) { ret true; }
448 449 450
        case (ty_uint) { ret true; }
        case (ty_machine(_)) { ret true; }
        case (ty_char) { ret true; }
G
Graydon Hoare 已提交
451
        case (ty_type) { ret true; }
452
        case (ty_native) { ret true; }
453 454 455 456 457
        case (_) { ret false; }
    }
    fail;
}

458 459 460 461 462 463 464 465 466 467
// FIXME: should we just return true for native types in
// type_is_scalar?
fn type_is_native(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_native) { ret true; }
        case (_) { ret false; }
    }
    fail;
}

468 469
fn type_has_dynamic_size(@t ty) -> bool {
    alt (ty.struct) {
470
        case (ty_tup(?mts)) {
471
            auto i = 0u;
472 473
            while (i < _vec.len[mt](mts)) {
                if (type_has_dynamic_size(mts.(i).ty)) { ret true; }
474 475 476 477 478 479
                i += 1u;
            }
        }
        case (ty_rec(?fields)) {
            auto i = 0u;
            while (i < _vec.len[field](fields)) {
480
                if (type_has_dynamic_size(fields.(i).mt.ty)) { ret true; }
481 482 483
                i += 1u;
            }
        }
484 485 486 487 488 489 490
        case (ty_tag(_, ?subtys)) {
            auto i = 0u;
            while (i < _vec.len[@t](subtys)) {
                if (type_has_dynamic_size(subtys.(i))) { ret true; }
                i += 1u;
            }
        }
491 492 493 494 495
        case (ty_param(_)) { ret true; }
        case (_) { /* fall through */ }
    }
    ret false;
}
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529

fn type_is_integral(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_int) { ret true; }
        case (ty_uint) { ret true; }
        case (ty_machine(?m)) {
            alt (m) {
                case (common.ty_i8) { ret true; }
                case (common.ty_i16) { ret true; }
                case (common.ty_i32) { ret true; }
                case (common.ty_i64) { ret true; }

                case (common.ty_u8) { ret true; }
                case (common.ty_u16) { ret true; }
                case (common.ty_u32) { ret true; }
                case (common.ty_u64) { ret true; }
                case (_) { ret false; }
            }
        }
        case (ty_char) { ret true; }
        case (_) { ret false; }
    }
    fail;
}

fn type_is_fp(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_machine(?tm)) {
            alt (tm) {
                case (common.ty_f32) { ret true; }
                case (common.ty_f64) { ret true; }
                case (_) { ret false; }
            }
        }
530 531 532
        case (ty_float) {
            ret true;
        }
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
        case (_) { ret false; }
    }
    fail;
}

fn type_is_signed(@t ty) -> bool {
    alt (ty.struct) {
        case (ty_int) { ret true; }
        case (ty_machine(?tm)) {
            alt (tm) {
                case (common.ty_i8) { ret true; }
                case (common.ty_i16) { ret true; }
                case (common.ty_i32) { ret true; }
                case (common.ty_i64) { ret true; }
                case (_) { ret false; }
            }
        }
        case (_) { ret false; }
    }
    fail;
}

fn type_param(@t ty) -> option.t[ast.def_id] {
    alt (ty.struct) {
        case (ty_param(?id)) { ret some[ast.def_id](id); }
        case (_)             { /* fall through */        }
    }
    ret none[ast.def_id];
}

fn plain_ty(&sty st) -> @t {
564 565 566 567 568 569 570 571 572 573 574 575 576
    ret @rec(struct=st, cname=none[str]);
}

fn plain_box_ty(@t subty) -> @t {
    ret plain_ty(ty_box(rec(ty=subty, mut=ast.imm)));
}

fn plain_tup_ty(vec[@t] elem_tys) -> @t {
    let vec[ty.mt] mts = vec();
    for (@ty.t typ in elem_tys) {
        mts += vec(rec(ty=typ, mut=ast.imm));
    }
    ret plain_ty(ty_tup(mts));
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
}

fn hash_ty(&@t ty) -> uint {
    ret _str.hash(ty_to_str(ty));
}

fn eq_ty(&@t a, &@t b) -> bool {
    // FIXME: this is gross, but I think it's safe, and I don't think writing
    // a giant function to handle all the cases is necessary when structural
    // equality will someday save the day.
    ret _str.eq(ty_to_str(a), ty_to_str(b));
}

fn ann_to_type(&ast.ann ann) -> @t {
    alt (ann) {
        case (ast.ann_none) {
593 594
            log "ann_to_type() called on node with no type";
            fail;
595
        }
596
        case (ast.ann_type(?ty, _)) {
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
            ret ty;
        }
    }
}

fn count_ty_params(@t ty) -> uint {
    state obj ty_param_counter(@mutable vec[ast.def_id] param_ids) {
        fn fold_simple_ty(@t ty) -> @t {
            alt (ty.struct) {
                case (ty_param(?param_id)) {
                    for (ast.def_id other_param_id in *param_ids) {
                        if (param_id._0 == other_param_id._0 &&
                                param_id._1 == other_param_id._1) {
                            ret ty;
                        }
                    }
                    *param_ids += vec(param_id);
                }
                case (_) { /* fall through */ }
            }
            ret ty;
        }
    }

    let vec[ast.def_id] param_ids_inner = vec();
    let @mutable vec[ast.def_id] param_ids = @mutable param_ids_inner;
    fold_ty(ty_param_counter(param_ids), ty);
    ret _vec.len[ast.def_id](*param_ids);
}

G
Graydon Hoare 已提交
627 628 629
// Type accessors for substructures of types

fn ty_fn_args(@t fty) -> vec[arg] {
630 631
    alt (fty.struct) {
        case (ty.ty_fn(_, ?a, _)) { ret a; }
632
        case (ty.ty_native_fn(_, ?a, _)) { ret a; }
633
    }
634
    fail;
635 636 637 638 639 640
}

fn ty_fn_proto(@t fty) -> ast.proto {
    alt (fty.struct) {
        case (ty.ty_fn(?p, _, _)) { ret p; }
    }
641
    fail;
G
Graydon Hoare 已提交
642 643
}

644 645 646 647 648 649 650
fn ty_fn_abi(@t fty) -> ast.native_abi {
    alt (fty.struct) {
        case (ty.ty_native_fn(?a, _, _)) { ret a; }
    }
    fail;
}

G
Graydon Hoare 已提交
651
fn ty_fn_ret(@t fty) -> @t {
652 653
    alt (fty.struct) {
        case (ty.ty_fn(_, _, ?r)) { ret r; }
654
        case (ty.ty_native_fn(_, _, ?r)) { ret r; }
655
    }
656
    fail;
G
Graydon Hoare 已提交
657 658 659
}

fn is_fn_ty(@t fty) -> bool {
660 661
    alt (fty.struct) {
        case (ty.ty_fn(_, _, _)) { ret true; }
662
        case (ty.ty_native_fn(_, _, _)) { ret true; }
663 664 665
        case (_) { ret false; }
    }
    ret false;
G
Graydon Hoare 已提交
666 667 668
}


669 670
// Type accessors for AST nodes

671 672
// Given an item, returns the associated type as well as a list of the IDs of
// its type parameters.
673
type ty_params_and_ty = tup(vec[ast.def_id], @t);
674 675 676 677
fn native_item_ty(@ast.native_item it) -> ty_params_and_ty {
    auto ty_params;
    auto result_ty;
    alt (it.node) {
678
        case (ast.native_item_fn(_, _, _, ?tps, _, ?ann)) {
679 680 681 682 683 684 685 686 687 688 689
            ty_params = tps;
            result_ty = ann_to_type(ann);
        }
    }
    let vec[ast.def_id] ty_param_ids = vec();
    for (ast.ty_param tp in ty_params) {
        ty_param_ids += vec(tp.id);
    }
    ret tup(ty_param_ids, result_ty);
}

690
fn item_ty(@ast.item it) -> ty_params_and_ty {
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
    let vec[ast.ty_param] ty_params;
    auto result_ty;
    alt (it.node) {
        case (ast.item_const(_, _, _, _, ?ann)) {
            ty_params = vec();
            result_ty = ann_to_type(ann);
        }
        case (ast.item_fn(_, _, ?tps, _, ?ann)) {
            ty_params = tps;
            result_ty = ann_to_type(ann);
        }
        case (ast.item_mod(_, _, _)) {
            fail;   // modules are typeless
        }
        case (ast.item_ty(_, _, ?tps, _, ?ann)) {
            ty_params = tps;
            result_ty = ann_to_type(ann);
        }
        case (ast.item_tag(_, _, ?tps, ?did)) {
710
            // Create a new generic polytype.
711
            ty_params = tps;
712 713 714 715 716
            let vec[@t] subtys = vec();
            for (ast.ty_param tp in tps) {
                subtys += vec(plain_ty(ty_param(tp.id)));
            }
            result_ty = plain_ty(ty_tag(did, subtys));
717 718 719 720 721 722 723 724 725 726 727 728 729 730
        }
        case (ast.item_obj(_, _, ?tps, _, ?ann)) {
            ty_params = tps;
            result_ty = ann_to_type(ann);
        }
    }

    let vec[ast.def_id] ty_param_ids = vec();
    for (ast.ty_param tp in ty_params) {
        ty_param_ids += vec(tp.id);
    }
    ret tup(ty_param_ids, result_ty);
}

731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
fn stmt_ty(@ast.stmt s) -> @t {
    alt (s.node) {
        case (ast.stmt_expr(?e)) {
            ret expr_ty(e);
        }
        case (_) {
            ret plain_ty(ty_nil);
        }
    }
}

fn block_ty(&ast.block b) -> @t {
    alt (b.node.expr) {
        case (some[@ast.expr](?e)) { ret expr_ty(e); }
        case (none[@ast.expr])     { ret plain_ty(ty_nil); }
    }
}

fn pat_ty(@ast.pat pat) -> @t {
    alt (pat.node) {
        case (ast.pat_wild(?ann))           { ret ann_to_type(ann); }
752
        case (ast.pat_lit(_, ?ann))         { ret ann_to_type(ann); }
753 754 755 756 757 758 759 760
        case (ast.pat_bind(_, _, ?ann))     { ret ann_to_type(ann); }
        case (ast.pat_tag(_, _, _, ?ann))   { ret ann_to_type(ann); }
    }
    fail;   // not reached
}

fn expr_ty(@ast.expr expr) -> @t {
    alt (expr.node) {
761
        case (ast.expr_vec(_, _, ?ann))       { ret ann_to_type(ann); }
762
        case (ast.expr_tup(_, ?ann))          { ret ann_to_type(ann); }
763
        case (ast.expr_rec(_, _, ?ann))       { ret ann_to_type(ann); }
G
Graydon Hoare 已提交
764
        case (ast.expr_bind(_, _, ?ann))      { ret ann_to_type(ann); }
765
        case (ast.expr_call(_, _, ?ann))      { ret ann_to_type(ann); }
766
        case (ast.expr_call_self(_, _, ?ann)) { ret ann_to_type(ann); }
767 768
        case (ast.expr_spawn(_, _, _, _, ?ann))
                                              { ret ann_to_type(ann); }
769 770 771 772 773
        case (ast.expr_binary(_, _, _, ?ann)) { ret ann_to_type(ann); }
        case (ast.expr_unary(_, _, ?ann))     { ret ann_to_type(ann); }
        case (ast.expr_lit(_, ?ann))          { ret ann_to_type(ann); }
        case (ast.expr_cast(_, _, ?ann))      { ret ann_to_type(ann); }
        case (ast.expr_if(_, _, _, ?ann))     { ret ann_to_type(ann); }
774
        case (ast.expr_for(_, _, _, ?ann))    { ret ann_to_type(ann); }
775 776
        case (ast.expr_for_each(_, _, _, ?ann))
                                              { ret ann_to_type(ann); }
777 778 779 780 781 782 783 784 785
        case (ast.expr_while(_, _, ?ann))     { ret ann_to_type(ann); }
        case (ast.expr_do_while(_, _, ?ann))  { ret ann_to_type(ann); }
        case (ast.expr_alt(_, _, ?ann))       { ret ann_to_type(ann); }
        case (ast.expr_block(_, ?ann))        { ret ann_to_type(ann); }
        case (ast.expr_assign(_, _, ?ann))    { ret ann_to_type(ann); }
        case (ast.expr_assign_op(_, _, _, ?ann))
                                              { ret ann_to_type(ann); }
        case (ast.expr_field(_, _, ?ann))     { ret ann_to_type(ann); }
        case (ast.expr_index(_, _, ?ann))     { ret ann_to_type(ann); }
786
        case (ast.expr_path(_, _, ?ann))      { ret ann_to_type(ann); }
787
        case (ast.expr_ext(_, _, _, _, ?ann)) { ret ann_to_type(ann); }
B
Brian Anderson 已提交
788 789 790 791
        case (ast.expr_port(?ann))            { ret ann_to_type(ann); }
        case (ast.expr_chan(_, ?ann))         { ret ann_to_type(ann); }
        case (ast.expr_send(_, _, ?ann))      { ret ann_to_type(ann); }
        case (ast.expr_recv(_, _, ?ann))      { ret ann_to_type(ann); }
792 793 794 795 796

        case (ast.expr_fail)                  { ret plain_ty(ty_nil); }
        case (ast.expr_log(_))                { ret plain_ty(ty_nil); }
        case (ast.expr_check_expr(_))         { ret plain_ty(ty_nil); }
        case (ast.expr_ret(_))                { ret plain_ty(ty_nil); }
797
        case (ast.expr_put(_))                { ret plain_ty(ty_nil); }
798
        case (ast.expr_be(_))                 { ret plain_ty(ty_nil); }
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
    }
    fail;
}

// Expression utilities

fn field_num(session.session sess, &span sp, &ast.ident id) -> uint {
    let uint accum = 0u;
    let uint i = 0u;
    for (u8 c in id) {
        if (i == 0u) {
            if (c != ('_' as u8)) {
                sess.span_err(sp,
                              "bad numeric field on tuple: "
                              + "missing leading underscore");
            }
        } else {
            if (('0' as u8) <= c && c <= ('9' as u8)) {
                accum *= 10u;
                accum += (c as uint) - ('0' as uint);
            } else {
                auto s = "";
821
                s += _str.unsafe_from_byte(c);
822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858
                sess.span_err(sp,
                              "bad numeric field on tuple: "
                              + " non-digit character: "
                              + s);
            }
        }
        i += 1u;
    }
    ret accum;
}

fn field_idx(session.session sess, &span sp,
             &ast.ident id, vec[field] fields) -> uint {
    let uint i = 0u;
    for (field f in fields) {
        if (_str.eq(f.ident, id)) {
            ret i;
        }
        i += 1u;
    }
    sess.span_err(sp, "unknown field '" + id + "' of record");
    fail;
}

fn method_idx(session.session sess, &span sp,
              &ast.ident id, vec[method] meths) -> uint {
    let uint i = 0u;
    for (method m in meths) {
        if (_str.eq(m.ident, id)) {
            ret i;
        }
        i += 1u;
    }
    sess.span_err(sp, "unknown method '" + id + "' of obj");
    fail;
}

859 860 861 862 863 864 865 866
fn sort_methods(vec[method] meths) -> vec[method] {
    fn method_lteq(&method a, &method b) -> bool {
        ret _str.lteq(a.ident, b.ident);
    }

    ret std.sort.merge_sort[method](bind method_lteq(_,_), meths);
}

867 868 869 870
fn is_lval(@ast.expr expr) -> bool {
    alt (expr.node) {
        case (ast.expr_field(_,_,_))    { ret true;  }
        case (ast.expr_index(_,_,_))    { ret true;  }
871
        case (ast.expr_path(_,_,_))     { ret true;  }
872 873 874 875
        case (_)                        { ret false; }
    }
}

876 877 878 879
// Type unification via Robinson's algorithm (Robinson 1965). Implemented as
// described in Hoder and Voronkov:
//
//     http://www.cs.man.ac.uk/~hoderk/ubench/unification_full.pdf
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898

fn unify(@ty.t expected, @ty.t actual, &unify_handler handler)
        -> unify_result {
    // Wraps the given type in an appropriate cname.
    //
    // TODO: This doesn't do anything yet. We should carry the cname up from
    // the expected and/or actual types when unification results in a type
    // identical to one or both of the two. The precise algorithm for this is
    // something we'll probably need to develop over time.

    // Simple structural type comparison.
    fn struct_cmp(@ty.t expected, @ty.t actual) -> unify_result {
        if (expected.struct == actual.struct) {
            ret ures_ok(expected);
        }

        ret ures_err(terr_mismatch, expected, actual);
    }

899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
    // Unifies two mutability flags.
    fn unify_mut(ast.mutability expected, ast.mutability actual)
            -> option.t[ast.mutability] {
        if (expected == actual) {
            ret some[ast.mutability](expected);
        }
        if (expected == ast.maybe_mut) {
            ret some[ast.mutability](actual);
        }
        if (actual == ast.maybe_mut) {
            ret some[ast.mutability](expected);
        }
        ret none[ast.mutability];
    }

914 915 916 917
    tag fn_common_res {
        fn_common_res_err(unify_result);
        fn_common_res_ok(vec[arg], @t);
    }
G
Graydon Hoare 已提交
918

919 920 921 922 923 924 925
    fn unify_fn_common(@hashmap[int,@ty.t] bindings,
                       @ty.t expected,
                       @ty.t actual,
                       &unify_handler handler,
                       vec[arg] expected_inputs, @t expected_output,
                       vec[arg] actual_inputs, @t actual_output)
        -> fn_common_res {
926 927 928
        auto expected_len = _vec.len[arg](expected_inputs);
        auto actual_len = _vec.len[arg](actual_inputs);
        if (expected_len != actual_len) {
929 930
            ret fn_common_res_err(ures_err(terr_arg_count,
                                           expected, actual));
931
        }
G
Graydon Hoare 已提交
932

933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
        // TODO: as above, we should have an iter2 iterator.
        let vec[arg] result_ins = vec();
        auto i = 0u;
        while (i < expected_len) {
            auto expected_input = expected_inputs.(i);
            auto actual_input = actual_inputs.(i);

            // This should be safe, I think?
            auto result_mode;
            if (mode_is_alias(expected_input.mode) ||
                mode_is_alias(actual_input.mode)) {
                result_mode = ast.alias;
            } else {
                result_mode = ast.val;
            }
G
Graydon Hoare 已提交
948

949 950 951 952
            auto result = unify_step(bindings,
                                     actual_input.ty,
                                     expected_input.ty,
                                     handler);
G
Graydon Hoare 已提交
953

954 955 956 957 958 959 960
            alt (result) {
                case (ures_ok(?rty)) {
                    result_ins += vec(rec(mode=result_mode,
                                          ty=rty));
                }

                case (_) {
961
                    ret fn_common_res_err(result);
962 963
                }
            }
G
Graydon Hoare 已提交
964

965
            i += 1u;
G
Graydon Hoare 已提交
966 967
        }

968 969 970 971 972 973 974
        // Check the output.
        auto result = unify_step(bindings,
                                 expected_output,
                                 actual_output,
                                 handler);
        alt (result) {
            case (ures_ok(?rty)) {
975
                ret fn_common_res_ok(result_ins, rty);
976 977 978
            }

            case (_) {
979
                ret fn_common_res_err(result);
980
            }
G
Graydon Hoare 已提交
981
        }
982
    }
G
Graydon Hoare 已提交
983

984 985 986 987 988 989 990 991 992
    fn unify_fn(@hashmap[int,@ty.t] bindings,
                ast.proto e_proto,
                ast.proto a_proto,
                @ty.t expected,
                @ty.t actual,
                &unify_handler handler,
                vec[arg] expected_inputs, @t expected_output,
                vec[arg] actual_inputs, @t actual_output)
        -> unify_result {
G
Graydon Hoare 已提交
993

994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
        if (e_proto != a_proto) {
            ret ures_err(terr_mismatch, expected, actual);
        }
        auto t = unify_fn_common(bindings, expected, actual,
                                 handler, expected_inputs, expected_output,
                                 actual_inputs, actual_output);
        alt (t) {
            case (fn_common_res_err(?r)) {
                ret r;
            }
            case (fn_common_res_ok(?result_ins, ?result_out)) {
                auto t2 = plain_ty(ty.ty_fn(e_proto, result_ins, result_out));
                ret ures_ok(t2);
            }
        }
    }

    fn unify_native_fn(@hashmap[int,@ty.t] bindings,
1012 1013
                       ast.native_abi e_abi,
                       ast.native_abi a_abi,
1014 1015 1016 1017 1018 1019
                       @ty.t expected,
                       @ty.t actual,
                       &unify_handler handler,
                       vec[arg] expected_inputs, @t expected_output,
                       vec[arg] actual_inputs, @t actual_output)
        -> unify_result {
1020 1021 1022 1023
        if (e_abi != a_abi) {
            ret ures_err(terr_mismatch, expected, actual);
        }

1024 1025 1026 1027 1028 1029 1030 1031
        auto t = unify_fn_common(bindings, expected, actual,
                                 handler, expected_inputs, expected_output,
                                 actual_inputs, actual_output);
        alt (t) {
            case (fn_common_res_err(?r)) {
                ret r;
            }
            case (fn_common_res_ok(?result_ins, ?result_out)) {
1032 1033
                auto t2 = plain_ty(ty.ty_native_fn(e_abi, result_ins,
                                                   result_out));
1034 1035 1036
                ret ures_ok(t2);
            }
        }
G
Graydon Hoare 已提交
1037 1038
    }

1039
    fn unify_obj(@hashmap[int,@ty.t] bindings,
1040 1041 1042 1043 1044
                 @ty.t expected,
                 @ty.t actual,
                 &unify_handler handler,
                 vec[method] expected_meths,
                 vec[method] actual_meths) -> unify_result {
G
Graydon Hoare 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
      let vec[method] result_meths = vec();
      let uint i = 0u;
      let uint expected_len = _vec.len[method](expected_meths);
      let uint actual_len = _vec.len[method](actual_meths);

      if (expected_len != actual_len) {
        ret ures_err(terr_meth_count, expected, actual);
      }

      while (i < expected_len) {
        auto e_meth = expected_meths.(i);
        auto a_meth = actual_meths.(i);
        if (! _str.eq(e_meth.ident, a_meth.ident)) {
          ret ures_err(terr_obj_meths(e_meth.ident, a_meth.ident),
                       expected, actual);
        }
1061 1062 1063
        auto r = unify_fn(bindings,
                          e_meth.proto, a_meth.proto,
                          expected, actual, handler,
G
Graydon Hoare 已提交
1064 1065
                          e_meth.inputs, e_meth.output,
                          a_meth.inputs, a_meth.output);
B
Brian Anderson 已提交
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
        alt (r) {
            case (ures_ok(?tfn)) {
                alt (tfn.struct) {
                    case (ty_fn(?proto, ?ins, ?out)) {
                        result_meths += vec(rec(inputs = ins,
                                                output = out
                                                with e_meth));
                    }
                }
            }
            case (_) {
                ret r;
            }
G
Graydon Hoare 已提交
1079 1080 1081 1082 1083 1084 1085
        }
        i += 1u;
      }
      auto t = plain_ty(ty_obj(result_meths));
      ret ures_ok(t);
    }

1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
    fn resolve(@hashmap[int,@t] bindings, @t typ) -> @t {
        alt (typ.struct) {
            case (ty_var(?id)) {
                alt (bindings.find(id)) {
                    case (some[@t](?typ2)) {
                        ret resolve(bindings, typ2);
                    }
                    case (none[@t]) {
                        // fall through
                    }
                }
            }
            case (_) {
                // fall through
            }
        }
        ret typ;
    }

    fn unify_step(@hashmap[int,@ty.t] bindings, @ty.t in_expected,
                  @ty.t in_actual, &unify_handler handler) -> unify_result {

        // Resolve any bindings.
        auto expected = resolve(bindings, in_expected);
        auto actual = resolve(bindings, in_actual);

1112 1113 1114
        // TODO: rewrite this using tuple pattern matching when available, to
        // avoid all this rightward drift and spikiness.

1115 1116 1117
        // TODO: occurs check, to make sure we don't loop forever when
        // unifying e.g. 'a and option['a]

1118
        alt (actual.struct) {
1119 1120
            // If the RHS is a variable type, then just do the appropriate
            // binding.
1121
            case (ty.ty_var(?actual_id)) {
1122 1123
                bindings.insert(actual_id, expected);
                ret ures_ok(expected);
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
            }
            case (ty.ty_local(?actual_id)) {
                auto actual_ty = handler.resolve_local(actual_id);
                auto result = unify_step(bindings,
                                         expected,
                                         actual_ty,
                                         handler);
                alt (result) {
                    case (ures_ok(?result_ty)) {
                        handler.record_local(actual_id, result_ty);
                    }
                    case (_) { /* empty */ }
                }
                ret result;
            }
1139
            case (ty.ty_param(?actual_id)) {
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
                alt (expected.struct) {

                    // These two unify via logic lower down. Fall through.
                    case (ty.ty_local(_)) { }
                    case (ty.ty_var(_)) { }

                    // More-concrete types can unify against params here.
                    case (_) {
                        ret handler.unify_actual_param(actual_id,
                                                       expected,
                                                       actual);
                    }
                }
1153
            }
1154 1155 1156 1157 1158 1159 1160 1161 1162
            case (_) { /* empty */ }
        }

        alt (expected.struct) {
            case (ty.ty_nil)        { ret struct_cmp(expected, actual); }
            case (ty.ty_bool)       { ret struct_cmp(expected, actual); }
            case (ty.ty_int)        { ret struct_cmp(expected, actual); }
            case (ty.ty_uint)       { ret struct_cmp(expected, actual); }
            case (ty.ty_machine(_)) { ret struct_cmp(expected, actual); }
1163
            case (ty.ty_float)      { ret struct_cmp(expected, actual); }
1164 1165
            case (ty.ty_char)       { ret struct_cmp(expected, actual); }
            case (ty.ty_str)        { ret struct_cmp(expected, actual); }
G
Graydon Hoare 已提交
1166
            case (ty.ty_type)       { ret struct_cmp(expected, actual); }
1167
            case (ty.ty_native)     { ret struct_cmp(expected, actual); }
1168

1169
            case (ty.ty_tag(?expected_id, ?expected_tps)) {
1170
                alt (actual.struct) {
1171 1172 1173 1174
                    case (ty.ty_tag(?actual_id, ?actual_tps)) {
                        if (expected_id._0 != actual_id._0 ||
                                expected_id._1 != actual_id._1) {
                            ret ures_err(terr_mismatch, expected, actual);
1175
                        }
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192

                        // TODO: factor this cruft out, see the TODO in the
                        // ty.ty_tup case
                        let vec[@ty.t] result_tps = vec();
                        auto i = 0u;
                        auto expected_len = _vec.len[@ty.t](expected_tps);
                        while (i < expected_len) {
                            auto expected_tp = expected_tps.(i);
                            auto actual_tp = actual_tps.(i);

                            auto result = unify_step(bindings,
                                                     expected_tp,
                                                     actual_tp,
                                                     handler);

                            alt (result) {
                                case (ures_ok(?rty)) {
1193
                                    _vec.push[@ty.t](result_tps, rty);
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
                                }
                                case (_) {
                                    ret result;
                                }
                            }

                            i += 1u;
                        }

                        ret ures_ok(plain_ty(ty.ty_tag(expected_id,
                                                       result_tps)));
1205 1206 1207 1208 1209 1210 1211
                    }
                    case (_) { /* fall through */ }
                }

                ret ures_err(terr_mismatch, expected, actual);
            }

1212
            case (ty.ty_box(?expected_mt)) {
1213
                alt (actual.struct) {
1214
                    case (ty.ty_box(?actual_mt)) {
1215 1216 1217 1218 1219 1220 1221
                        auto mut;
                        alt (unify_mut(expected_mt.mut, actual_mt.mut)) {
                            case (none[ast.mutability]) {
                                ret ures_err(terr_box_mutability, expected,
                                             actual);
                            }
                            case (some[ast.mutability](?m)) { mut = m; }
1222 1223
                        }

1224
                        auto result = unify_step(bindings,
1225 1226
                                                 expected_mt.ty,
                                                 actual_mt.ty,
1227 1228 1229
                                                 handler);
                        alt (result) {
                            case (ures_ok(?result_sub)) {
1230
                                auto mt = rec(ty=result_sub, mut=mut);
1231
                                ret ures_ok(plain_ty(ty.ty_box(mt)));
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
                            }
                            case (_) {
                                ret result;
                            }
                        }
                    }

                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
                }
            }

1245
            case (ty.ty_vec(?expected_mt)) {
1246
                alt (actual.struct) {
1247
                    case (ty.ty_vec(?actual_mt)) {
1248 1249 1250 1251 1252 1253 1254
                        auto mut;
                        alt (unify_mut(expected_mt.mut, actual_mt.mut)) {
                            case (none[ast.mutability]) {
                                ret ures_err(terr_vec_mutability, expected,
                                             actual);
                            }
                            case (some[ast.mutability](?m)) { mut = m; }
1255 1256
                        }

1257
                        auto result = unify_step(bindings,
1258 1259
                                                 expected_mt.ty,
                                                 actual_mt.ty,
1260 1261 1262
                                                 handler);
                        alt (result) {
                            case (ures_ok(?result_sub)) {
1263
                                auto mt = rec(ty=result_sub, mut=mut);
1264
                                ret ures_ok(plain_ty(ty.ty_vec(mt)));
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
                            }
                            case (_) {
                                ret result;
                            }
                        }
                    }

                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                   }
                }
            }

1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
            case (ty.ty_port(?expected_sub)) {
                alt (actual.struct) {
                    case (ty.ty_port(?actual_sub)) {
                        auto result = unify_step(bindings,
                                                 expected_sub,
                                                 actual_sub,
                                                 handler);
                        alt (result) {
                            case (ures_ok(?result_sub)) {
                                ret ures_ok(plain_ty(ty.ty_port(result_sub)));
                            }
                            case (_) {
                                ret result;
                            }
                        }
                    }

                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
                }
            }

            case (ty.ty_chan(?expected_sub)) {
                alt (actual.struct) {
                    case (ty.ty_chan(?actual_sub)) {
                        auto result = unify_step(bindings,
                                                 expected_sub,
                                                 actual_sub,
                                                 handler);
                        alt (result) {
                            case (ures_ok(?result_sub)) {
                                ret ures_ok(plain_ty(ty.ty_chan(result_sub)));
                            }
                            case (_) {
                                ret result;
                            }
                        }
                    }

                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
                }
            }

1324 1325 1326
            case (ty.ty_tup(?expected_elems)) {
                alt (actual.struct) {
                    case (ty.ty_tup(?actual_elems)) {
1327 1328
                        auto expected_len = _vec.len[ty.mt](expected_elems);
                        auto actual_len = _vec.len[ty.mt](actual_elems);
1329 1330 1331 1332 1333 1334 1335 1336
                        if (expected_len != actual_len) {
                            auto err = terr_tuple_size(expected_len,
                                                       actual_len);
                            ret ures_err(err, expected, actual);
                        }

                        // TODO: implement an iterator that can iterate over
                        // two arrays simultaneously.
1337
                        let vec[ty.mt] result_elems = vec();
1338 1339 1340 1341
                        auto i = 0u;
                        while (i < expected_len) {
                            auto expected_elem = expected_elems.(i);
                            auto actual_elem = actual_elems.(i);
1342 1343 1344 1345 1346 1347 1348 1349 1350

                            auto mut;
                            alt (unify_mut(expected_elem.mut,
                                           actual_elem.mut)) {
                                case (none[ast.mutability]) {
                                    auto err = terr_tuple_mutability;
                                    ret ures_err(err, expected, actual);
                                }
                                case (some[ast.mutability](?m)) { mut = m; }
1351 1352 1353
                            }

                            auto result = unify_step(bindings,
1354 1355
                                                     expected_elem.ty,
                                                     actual_elem.ty,
1356 1357 1358
                                                     handler);
                            alt (result) {
                                case (ures_ok(?rty)) {
1359
                                    auto mt = rec(ty=rty, mut=mut);
1360
                                    result_elems += vec(mt);
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
                                }
                                case (_) {
                                    ret result;
                                }
                            }

                            i += 1u;
                        }

                        ret ures_ok(plain_ty(ty.ty_tup(result_elems)));
                    }

                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
                }
            }

            case (ty.ty_rec(?expected_fields)) {
                alt (actual.struct) {
                    case (ty.ty_rec(?actual_fields)) {
                        auto expected_len = _vec.len[field](expected_fields);
                        auto actual_len = _vec.len[field](actual_fields);
                        if (expected_len != actual_len) {
                            auto err = terr_record_size(expected_len,
                                                        actual_len);
                            ret ures_err(err, expected, actual);
                        }

                        // TODO: implement an iterator that can iterate over
                        // two arrays simultaneously.
                        let vec[field] result_fields = vec();
                        auto i = 0u;
                        while (i < expected_len) {
                            auto expected_field = expected_fields.(i);
                            auto actual_field = actual_fields.(i);
1397 1398 1399 1400 1401 1402 1403 1404 1405

                            auto mut;
                            alt (unify_mut(expected_field.mt.mut,
                                           actual_field.mt.mut)) {
                                case (none[ast.mutability]) {
                                    ret ures_err(terr_record_mutability,
                                                 expected, actual);
                                }
                                case (some[ast.mutability](?m)) { mut = m; }
1406 1407 1408
                            }

                            if (!_str.eq(expected_field.ident,
1409
                                         actual_field.ident)) {
1410 1411 1412 1413 1414 1415 1416
                                auto err =
                                    terr_record_fields(expected_field.ident,
                                                       actual_field.ident);
                                ret ures_err(err, expected, actual);
                            }

                            auto result = unify_step(bindings,
1417 1418
                                                     expected_field.mt.ty,
                                                     actual_field.mt.ty,
1419 1420 1421
                                                     handler);
                            alt (result) {
                                case (ures_ok(?rty)) {
1422
                                    auto mt = rec(ty=rty, mut=mut);
1423
                                    _vec.push[field]
1424
                                        (result_fields,
1425
                                         rec(mt=mt with expected_field));
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
                                }
                                case (_) {
                                    ret result;
                                }
                            }

                            i += 1u;
                        }

                        ret ures_ok(plain_ty(ty.ty_rec(result_fields)));
                    }

                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
                }
            }

1444
            case (ty.ty_fn(?ep, ?expected_inputs, ?expected_output)) {
1445
                alt (actual.struct) {
1446 1447 1448 1449 1450
                    case (ty.ty_fn(?ap, ?actual_inputs, ?actual_output)) {
                        ret unify_fn(bindings, ep, ap,
                                     expected, actual, handler,
                                     expected_inputs, expected_output,
                                     actual_inputs, actual_output);
1451 1452 1453 1454 1455 1456 1457 1458
                    }

                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
                }
            }

1459 1460
            case (ty.ty_native_fn(?e_abi, ?expected_inputs,
                                  ?expected_output)) {
1461
                alt (actual.struct) {
1462 1463 1464
                    case (ty.ty_native_fn(?a_abi, ?actual_inputs,
                                          ?actual_output)) {
                        ret unify_native_fn(bindings, e_abi, a_abi,
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
                                            expected, actual, handler,
                                            expected_inputs, expected_output,
                                            actual_inputs, actual_output);
                    }
                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
                }
            }

G
Graydon Hoare 已提交
1475
            case (ty.ty_obj(?expected_meths)) {
1476 1477 1478 1479 1480 1481 1482 1483
                alt (actual.struct) {
                    case (ty.ty_obj(?actual_meths)) {
                        ret unify_obj(bindings, expected, actual, handler,
                                      expected_meths, actual_meths);
                    }
                    case (_) {
                        ret ures_err(terr_mismatch, expected, actual);
                    }
G
Graydon Hoare 已提交
1484 1485 1486
                }
            }

1487
            case (ty.ty_var(?expected_id)) {
1488 1489 1490
                // Add a binding.
                bindings.insert(expected_id, actual);
                ret ures_ok(actual);
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
            }

            case (ty.ty_local(?expected_id)) {
                auto expected_ty = handler.resolve_local(expected_id);
                auto result = unify_step(bindings,
                                         expected_ty,
                                         actual,
                                         handler);
                alt (result) {
                    case (ures_ok(?result_ty)) {
                        handler.record_local(expected_id, result_ty);
                    }
                    case (_) { /* empty */ }
                }
                ret result;
            }

            case (ty.ty_param(?expected_id)) {
1509
                ret handler.unify_expected_param(expected_id, expected,
1510 1511 1512 1513 1514 1515 1516 1517
                                                 actual);
            }
        }

        // TODO: remove me once match-exhaustiveness checking works
        fail;
    }

1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
    // Performs type binding substitution.
    fn substitute(@hashmap[int,@t] bindings, @t typ) -> @t {
        state obj folder(@hashmap[int,@t] bindings) {
            fn fold_simple_ty(@t typ) -> @t {
                alt (typ.struct) {
                    case (ty_var(?id)) {
                        alt (bindings.find(id)) {
                            case (some[@t](?typ2)) {
                                ret substitute(bindings, typ2);
                            }
                            case (none[@t]) {
                                ret typ;
                            }
                        }
                    }
                    case (_) {
                        ret typ;
                    }
                }
            }
        }

        ret ty.fold_ty(folder(bindings), typ);
    }

1543
    auto bindings = @common.new_int_hash[@ty.t]();
G
Graydon Hoare 已提交
1544

1545
    auto ures = unify_step(bindings, expected, actual, handler);
1546 1547 1548
    alt (ures) {
        case (ures_ok(?t))  { ret ures_ok(substitute(bindings, t)); }
        case (_)            { ret ures;                             }
1549
    }
1550
    fail;   // not reached
1551 1552 1553 1554 1555 1556 1557
}

fn type_err_to_str(&ty.type_err err) -> str {
    alt (err) {
        case (terr_mismatch) {
            ret "types differ";
        }
1558 1559 1560 1561 1562 1563
        case (terr_box_mutability) {
            ret "boxed values differ in mutability";
        }
        case (terr_vec_mutability) {
            ret "vectors differ in mutability";
        }
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
        case (terr_tuple_size(?e_sz, ?a_sz)) {
            ret "expected a tuple with " + _uint.to_str(e_sz, 10u) +
                " elements but found one with " + _uint.to_str(a_sz, 10u) +
                " elements";
        }
        case (terr_tuple_mutability) {
            ret "tuple elements differ in mutability";
        }
        case (terr_record_size(?e_sz, ?a_sz)) {
            ret "expected a record with " + _uint.to_str(e_sz, 10u) +
                " fields but found one with " + _uint.to_str(a_sz, 10u) +
                " fields";
        }
        case (terr_record_mutability) {
            ret "record elements differ in mutability";
        }
        case (terr_record_fields(?e_fld, ?a_fld)) {
            ret "expected a record with field '" + e_fld +
                "' but found one with field '" + a_fld +
                "'";
        }
        case (terr_arg_count) {
            ret "incorrect number of function parameters";
        }
G
Graydon Hoare 已提交
1588 1589 1590 1591 1592 1593 1594 1595
        case (terr_meth_count) {
            ret "incorrect number of object methods";
        }
        case (terr_obj_meths(?e_meth, ?a_meth)) {
            ret "expected an obj with method '" + e_meth +
                "' but found one with method '" + a_meth +
                "'";
        }
1596 1597 1598
    }
}

1599
// Type parameter resolution, used in translation and typechecking
1600

1601 1602
fn resolve_ty_params(ty_params_and_ty ty_params_and_polyty,
                     @t monoty) -> vec[@t] {
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640
    obj resolve_ty_params_handler(@hashmap[ast.def_id,@t] bindings) {
        fn resolve_local(ast.def_id id) -> @t { log "resolve local"; fail; }
        fn record_local(ast.def_id id, @t ty) { log "record local"; fail; }
        fn unify_expected_param(ast.def_id id, @t expected, @t actual)
                -> unify_result {
            bindings.insert(id, actual);
            ret ures_ok(actual);
        }
        fn unify_actual_param(ast.def_id id, @t expected, @t actual)
                -> unify_result {
            bindings.insert(id, expected);
            ret ures_ok(expected);
        }
    }

    auto bindings = @new_def_hash[@t]();
    auto handler = resolve_ty_params_handler(bindings);

    auto unify_res = unify(ty_params_and_polyty._1, monoty, handler);
    alt (unify_res) {
        case (ures_ok(_))       { /* fall through */ }
        case (ures_err(_,?exp,?act))  {
            log "resolve_ty_params mismatch: " + ty_to_str(exp) + " " +
                ty_to_str(act);
            fail;
        }
    }

    let vec[@t] result_tys = vec();
    auto ty_param_ids = ty_params_and_polyty._0;
    for (ast.def_id tp in ty_param_ids) {
        check (bindings.contains_key(tp));
        result_tys += vec(bindings.get(tp));
    }

    ret result_tys;
}

1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666
// Performs type parameter replacement using the supplied mapping from
// parameter IDs to types.
fn replace_type_params(@t typ, hashmap[ast.def_id,@t] param_map) -> @t {
    state obj param_replacer(hashmap[ast.def_id,@t] param_map) {
        fn fold_simple_ty(@t typ) -> @t {
            alt (typ.struct) {
                case (ty_param(?param_def)) {
                    if (param_map.contains_key(param_def)) {
                        ret param_map.get(param_def);
                    } else {
                        ret typ;
                    }
                }
                case (_) {
                    ret typ;
                }
            }
        }
    }
    auto replacer = param_replacer(param_map);
    ret fold_ty(replacer, typ);
}

// Substitutes the type parameters specified by @ty_params with the
// corresponding types in @bound in the given type. The two vectors must have
// the same length.
1667
fn substitute_ty_params(vec[ast.def_id] ty_params, vec[@t] bound, @t ty)
1668
        -> @t {
1669
    auto ty_param_len = _vec.len[ast.def_id](ty_params);
1670 1671 1672 1673 1674
    check (ty_param_len == _vec.len[@t](bound));

    auto bindings = common.new_def_hash[@t]();
    auto i = 0u;
    while (i < ty_param_len) {
1675
        bindings.insert(ty_params.(i), bound.(i));
1676 1677 1678 1679 1680 1681
        i += 1u;
    }

    ret replace_type_params(ty, bindings);
}

1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730

fn def_has_ty_params(&ast.def def) -> bool {
    alt (def) {
        case (ast.def_fn(_))            { ret true;  }
        case (ast.def_obj(_))           { ret true;  }
        case (ast.def_obj_field(_))     { ret false; }
        case (ast.def_mod(_))           { ret false; }
        case (ast.def_const(_))         { ret false; }
        case (ast.def_arg(_))           { ret false; }
        case (ast.def_local(_))         { ret false; }
        case (ast.def_variant(_, _))    { ret true;  }
        case (ast.def_ty(_))            { ret false; }
        case (ast.def_ty_arg(_))        { ret false; }
        case (ast.def_binding(_))       { ret false; }
        case (ast.def_use(_))           { ret false; }
        case (ast.def_native_ty(_))     { ret false; }
        case (ast.def_native_fn(_))     { ret true;  }
    }
}

// If the given item is in an external crate, looks up its type and adds it to
// the type cache. Returns the type parameters and type.
fn lookup_item_type(session.session sess, &type_cache cache,
                    ast.def_id did) -> ty_params_opt_and_ty {
    if (did._0 == sess.get_targ_crate_num()) {
        // The item is in this crate. The caller should have added it to the
        // type cache already; we simply return it.
        check (cache.contains_key(did));
        ret cache.get(did);
    }

    if (cache.contains_key(did)) {
        ret cache.get(did);
    }

    auto tyt = creader.get_type(sess, did);
    cache.insert(did, tyt);
    ret tyt;
}

// A convenience function to retrive type parameters and a type when it's
// known that the item supports generics (functions, variants, objects).
fn lookup_generic_item_type(session.session sess, &type_cache cache,
                            ast.def_id did) -> ty_params_and_ty {
    auto tp_opt_and_ty = lookup_item_type(sess, cache, did);
    ret tup(option.get[vec[ast.def_id]](tp_opt_and_ty._0), tp_opt_and_ty._1);
}


1731 1732 1733 1734 1735 1736
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
1737
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
1738
// End: