diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-05 22:13:55 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-05 22:13:55 +0100 |
commit | fa1ac115930822efb86f2c02f87f48bc9bdc3ad0 (patch) | |
tree | 79027c1bb4a741816a3ea099b4f2cd26095109a6 /src | |
parent | a77aecd2aab857dfa7ef50c9017482b3c80fd790 (diff) | |
parent | 0e7268310b1fcac999a1b3f4e8f6f9b68e7783fc (diff) | |
download | LPC-Projet-fa1ac115930822efb86f2c02f87f48bc9bdc3ad0.tar.gz LPC-Projet-fa1ac115930822efb86f2c02f87f48bc9bdc3ad0.zip |
Merge branch 'master' into codegen-alex
Conflicts:
src/Makefile
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 6 | ||||
-rw-r--r-- | src/pretty.ml | 1 | ||||
-rw-r--r-- | src/typing.ml | 35 |
3 files changed, 37 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile index 47e2e48..51b57aa 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,9 +2,9 @@ BIN=minic++ all: $(BIN) -$(BIN): main.ml ast.ml parser.mly lexer.mll pretty.ml typing.ml pretty_typing.ml codegen.ml - ocamlbuild main.byte - mv main.byte $(BIN) +$(BIN): main.ml ast.ml parser.mly lexer.mll pretty.ml typing.ml pretty_typing.ml + ocamlbuild main.native + mv main.native $(BIN) clean: rm -r _build diff --git a/src/pretty.ml b/src/pretty.ml index 5e282e3..0501e99 100644 --- a/src/pretty.ml +++ b/src/pretty.ml @@ -90,6 +90,7 @@ let rec expr_string e = match e.e_desc with | ENull -> "NULL" | EThis -> "this" | EIdent(i) -> i + | EQIdent(i, j) -> i ^ "::" ^ j | EAssign(k, p) -> "(" ^ (expr_string k) ^ " = " ^ (expr_string p) ^ ")" | ECall(e, f) -> (expr_string e) ^ "(" ^ (csl expr_string f) ^ ")" | EUnary(e, f) -> (unop_str e) ^ (expr_string f) diff --git a/src/typing.ml b/src/typing.ml index 4c105da..dae139c 100644 --- a/src/typing.ml +++ b/src/typing.ml @@ -266,6 +266,21 @@ let find_cls_mem env cls_name mem_name = | Some k -> k | None -> raise Not_found +let find_cls_superclass env cls_name superclass = + let rec aux s = + if s.h_class = superclass then + Some s + else + List.fold_left (fun q r -> + match q, aux r with + | Some l, None | None, Some l -> Some l + | None, None -> None + | _, _ -> ty_error ("Ambiguous reference to superclass " ^ superclass)) + None s.h_supers + in match aux (get_c env cls_name).tc_hier with + | Some k -> k + | None -> raise Not_found + (* -------------------------------------------- *) (* On passe aux choses sérieuses *) @@ -316,7 +331,15 @@ and compute_type env e = TEIdent i, (t, false, true) with Not_found -> ty_error ("Undeclared identifier: " ^ i) end - | EQIdent(c, i) -> assert false (* TODO *) + | EQIdent(c, i) -> + begin match env.b_class with + | Some k -> + let sc = try find_cls_superclass env.b_pe k.tc_name c + with Not_found -> ty_error (c ^ " is no superclass of current class " ^ k.tc_name) in + let mty, mi = find_cls_mem env.b_pe sc.h_class i in + TEMember(e_this_not_ptr, mi + sc.h_pos), (mty, false, true) + | None -> ty_error "Qualified identifier invalid in function belonging to no class." + end | EAssign (e1,e2) -> let te1,(ty1,r3,b3) = get_expr0 env e1 in let te2,(ty2,_,_) = get_expr0 env e2 in ty_assert (b3 || r3) "Can only assign to lvalue"; @@ -360,7 +383,6 @@ and compute_type env e = TEBinary(te1,op,te2),(T_Int,false,false) ) | ECall (e,e_list) -> - (* TODO : look also within parent classes *) let args_values = List.map (get_expr0 env) e_list in let args_types = List.map (fun (e, (t, r, l)) -> t, r||l) args_values in @@ -391,6 +413,15 @@ and compute_type env e = Some upcasted, proto | _ -> ty_error "Invalid argument type for method call (not a class, or not a lvalue)" end + | EQIdent(c, i) -> + begin match env.b_class with + | Some k -> + let sc = try find_cls_superclass env.b_pe k.tc_name c + with Not_found -> ty_error (c ^ " is no superclass of current class " ^ k.tc_name) in + Some e_this_not_ptr, + closest_proto env.b_pe args_types (find_protos_in_class env.b_pe sc.h_class i) + | None -> ty_error "Qualified identifier in a function belonging to no class." + end | _ -> ty_error "Calling something that is neither a function nor a method") in let l_te = List.map fst args_values in let l_te = List.map2 (fun k ((ty, r), _) -> upcast env.b_pe k ty, r) l_te tproto.tp_args in |