diff options
| author | Graydon Hoare <[email protected]> | 2010-10-13 17:15:25 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-10-13 17:15:25 -0700 |
| commit | 668f3a90a85edc8d4e1472af0eb530fa7c4bb2ed (patch) | |
| tree | a706955634a5a3036ebe79ba8ef0af31a1293ef6 /src/boot/me/semant.ml | |
| parent | Fetch typarams from the outermost item frame, when inside an iter-block. One ... (diff) | |
| download | rust-668f3a90a85edc8d4e1472af0eb530fa7c4bb2ed.tar.xz rust-668f3a90a85edc8d4e1472af0eb530fa7c4bb2ed.zip | |
Move the friendly-names table to semant, reuse it in the name mangler.
Diffstat (limited to 'src/boot/me/semant.ml')
| -rw-r--r-- | src/boot/me/semant.ml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/boot/me/semant.ml b/src/boot/me/semant.ml index 8ff439e8..010494b4 100644 --- a/src/boot/me/semant.ml +++ b/src/boot/me/semant.ml @@ -115,6 +115,7 @@ type ctxt = ctxt_item_files: (node_id,filename) Hashtbl.t; ctxt_all_lvals: (node_id,Ast.lval) Hashtbl.t; ctxt_call_lval_params: (node_id,Ast.ty array) Hashtbl.t; + ctxt_user_type_names: (Ast.ty,Ast.name) Hashtbl.t; (* A directed graph that encodes the containment relation among tags. *) ctxt_tag_containment: (opaque_id, tag_graph_node) Hashtbl.t; @@ -227,6 +228,7 @@ let new_ctxt sess abi crate = ctxt_all_lvals = Hashtbl.create 0; ctxt_all_defns = Hashtbl.create 0; ctxt_call_lval_params = Hashtbl.create 0; + ctxt_user_type_names = Hashtbl.create 0; ctxt_tag_containment = Hashtbl.create 0; @@ -2624,7 +2626,10 @@ let ty_str (cx:ctxt) (ty:Ast.ty) : string = ty_fold_constrained = (fun (t,_)-> t) } in htab_search_or_add cx.ctxt_type_str_cache ty - (fun _ -> fold_ty cx fold ty) + (fun _ -> + match htab_search cx.ctxt_user_type_names ty with + None -> "$" ^ (fold_ty cx fold ty) + | Some name -> string_of_name name) ;; let glue_str (cx:ctxt) (g:glue) : string = |