|
|
|
/*
|
|
|
|
* Copyright (c) 2009 - 2013 Monoidics ltd.
|
|
|
|
* Copyright (c) 2013 - present Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
open! IStd;
|
|
|
|
|
|
|
|
let module Hashtbl = Caml.Hashtbl;
|
|
|
|
|
|
|
|
|
|
|
|
/** Module for Names and Identifiers */
|
|
|
|
let module L = Logging;
|
|
|
|
|
|
|
|
let module F = Format;
|
|
|
|
|
|
|
|
let module Name = {
|
|
|
|
type t =
|
|
|
|
| Primed
|
|
|
|
| Normal
|
|
|
|
| Footprint
|
|
|
|
| Spec
|
|
|
|
| FromString string
|
|
|
|
[@@deriving compare];
|
|
|
|
let primed = "t";
|
|
|
|
let normal = "n";
|
|
|
|
let footprint = "f";
|
|
|
|
let spec = "val";
|
|
|
|
let from_string s => FromString s;
|
|
|
|
let to_string =
|
|
|
|
fun
|
|
|
|
| Primed => primed
|
|
|
|
| Normal => normal
|
|
|
|
| Footprint => footprint
|
|
|
|
| Spec => spec
|
|
|
|
| FromString s => s;
|
|
|
|
let equal = [%compare.equal : t];
|
|
|
|
};
|
|
|
|
|
|
|
|
type name = Name.t [@@deriving compare];
|
|
|
|
|
|
|
|
let name_spec = Name.Spec;
|
|
|
|
|
|
|
|
let name_primed = Name.Primed;
|
|
|
|
|
|
|
|
let equal_name = [%compare.equal : name];
|
|
|
|
|
|
|
|
type fieldname = {fpos: int, fname: Mangled.t} [@@deriving compare];
|
|
|
|
|
|
|
|
let equal_fieldname = [%compare.equal : fieldname];
|
|
|
|
|
|
|
|
type kind =
|
|
|
|
| KNone
|
|
|
|
/** special kind of "null ident" (basically, a more compact way of implementing an ident option).
|
|
|
|
useful for situations when an instruction requires an id, but no one should read the result. */
|
|
|
|
| KFootprint
|
|
|
|
| KNormal
|
|
|
|
| KPrimed
|
|
|
|
[@@deriving compare];
|
|
|
|
|
|
|
|
let kfootprint = KFootprint;
|
|
|
|
|
|
|
|
let knormal = KNormal;
|
|
|
|
|
|
|
|
let kprimed = KPrimed;
|
|
|
|
|
|
|
|
let equal_kind = [%compare.equal : kind];
|
|
|
|
|
|
|
|
/* timestamp for a path identifier */
|
|
|
|
let path_ident_stamp = (-3);
|
|
|
|
|
|
|
|
type t = {kind: kind, name: Name.t, stamp: int} [@@deriving compare];
|
|
|
|
|
|
|
|
/* most unlikely first */
|
|
|
|
let equal i1 i2 =>
|
|
|
|
Int.equal i1.stamp i2.stamp && equal_kind i1.kind i2.kind && equal_name i1.name i2.name;
|
|
|
|
|
|
|
|
|
|
|
|
/** {2 Set for identifiers} */
|
|
|
|
let module IdentSet = Caml.Set.Make {
|
|
|
|
type nonrec t = t;
|
|
|
|
let compare = compare;
|
|
|
|
};
|
|
|
|
|
|
|
|
let module IdentMap = Caml.Map.Make {
|
|
|
|
type nonrec t = t;
|
|
|
|
let compare = compare;
|
|
|
|
};
|
|
|
|
|
|
|
|
let module IdentHash = Hashtbl.Make {
|
|
|
|
type nonrec t = t;
|
|
|
|
let equal = equal;
|
|
|
|
let hash (id: t) => Hashtbl.hash id;
|
|
|
|
};
|
|
|
|
|
|
|
|
let module FieldSet = Caml.Set.Make {
|
|
|
|
type t = fieldname [@@deriving compare];
|
|
|
|
};
|
|
|
|
|
|
|
|
let module FieldMap = Caml.Map.Make {
|
|
|
|
type t = fieldname [@@deriving compare];
|
|
|
|
};
|
|
|
|
|
|
|
|
let idlist_to_idset ids => IList.fold_left (fun set id => IdentSet.add id set) IdentSet.empty ids;
|
|
|
|
|
|
|
|
|
|
|
|
/** {2 Conversion between Names and Strings} */
|
|
|
|
let module NameHash = Hashtbl.Make {
|
|
|
|
type t = name;
|
|
|
|
let equal = equal_name;
|
|
|
|
let hash = Hashtbl.hash;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Convert a string to a name */
|
|
|
|
let string_to_name = Name.from_string;
|
|
|
|
|
|
|
|
|
|
|
|
/** Create a field name with the given position (field number in the CSU) */
|
|
|
|
let create_fieldname (n: Mangled.t) (position: int) => {fpos: position, fname: n};
|
|
|
|
|
|
|
|
|
|
|
|
/** Convert a name to a string. */
|
|
|
|
let name_to_string = Name.to_string;
|
|
|
|
|
|
|
|
|
|
|
|
/** Convert a fieldname to a string. */
|
|
|
|
let fieldname_to_string fn => Mangled.to_string fn.fname;
|
|
|
|
|
|
|
|
|
|
|
|
/** Convert a fieldname to a string, including the mangled part. */
|
|
|
|
let fieldname_to_complete_string fn => Mangled.to_string_full fn.fname;
|
|
|
|
|
|
|
|
|
|
|
|
/** Convert a fieldname to a simplified string with at most one-level path. */
|
|
|
|
let fieldname_to_simplified_string fn => {
|
|
|
|
let s = Mangled.to_string fn.fname;
|
|
|
|
switch (String.rsplit2 s on::'.') {
|
|
|
|
| Some (s1, s2) =>
|
|
|
|
switch (String.rsplit2 s1 on::'.') {
|
|
|
|
| Some (_, s4) => s4 ^ "." ^ s2
|
|
|
|
| _ => s
|
|
|
|
}
|
|
|
|
| _ => s
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Convert a fieldname to a flat string without path. */
|
|
|
|
let fieldname_to_flat_string fn => {
|
|
|
|
let s = Mangled.to_string fn.fname;
|
|
|
|
switch (String.rsplit2 s on::'.') {
|
|
|
|
| Some (_, s2) => s2
|
|
|
|
| _ => s
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Returns the class part of the fieldname */
|
|
|
|
let java_fieldname_get_class fn => {
|
|
|
|
let fn = fieldname_to_string fn;
|
|
|
|
let ri = String.rindex_exn fn '.';
|
|
|
|
String.slice fn 0 ri
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Returns the last component of the fieldname */
|
|
|
|
let java_fieldname_get_field fn => {
|
|
|
|
let fn = fieldname_to_string fn;
|
|
|
|
let ri = 1 + String.rindex_exn fn '.';
|
|
|
|
String.slice fn ri 0
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Check if the field is the synthetic this$n of a nested class, used to access the n-th outher instance. */
|
|
|
|
let java_fieldname_is_outer_instance fn => {
|
|
|
|
let fn = fieldname_to_string fn;
|
|
|
|
let fn_len = String.length fn;
|
|
|
|
fn_len != 0 && {
|
|
|
|
let this = ".this$";
|
|
|
|
let last_char = fn.[fn_len - 1];
|
|
|
|
(last_char >= '0' && last_char <= '9') &&
|
|
|
|
String.is_suffix fn suffix::(this ^ String.of_char last_char)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let fieldname_offset fn => fn.fpos;
|
|
|
|
|
|
|
|
|
|
|
|
/** hidded fieldname constant */
|
|
|
|
let fieldname_hidden = create_fieldname (Mangled.from_string ".hidden") 0;
|
|
|
|
|
|
|
|
|
|
|
|
/** hidded fieldname constant */
|
|
|
|
let fieldname_is_hidden fn => equal_fieldname fn fieldname_hidden;
|
|
|
|
|
|
|
|
|
|
|
|
/** {2 Functions and Hash Tables for Managing Stamps} */
|
|
|
|
|
|
|
|
/** Set the stamp of the identifier */
|
|
|
|
let set_stamp i stamp => {...i, stamp};
|
|
|
|
|
|
|
|
|
|
|
|
/** Get the stamp of the identifier */
|
|
|
|
let get_stamp i => i.stamp;
|
|
|
|
|
|
|
|
let module NameGenerator = {
|
|
|
|
type t = NameHash.t int;
|
|
|
|
let create () :t => NameHash.create 17;
|
|
|
|
|
|
|
|
/** Map from names to stamps. */
|
|
|
|
let name_map = ref (create ());
|
|
|
|
let get_current () => !name_map;
|
|
|
|
let set_current map => name_map := map;
|
|
|
|
|
|
|
|
/** Reset the name generator */
|
|
|
|
let reset () => name_map := create ();
|
|
|
|
|
|
|
|
/** Create a fresh identifier with the given kind and name. */
|
|
|
|
let create_fresh_ident kind name => {
|
|
|
|
let stamp =
|
|
|
|
try {
|
|
|
|
let stamp = NameHash.find !name_map name;
|
|
|
|
NameHash.replace !name_map name (stamp + 1);
|
|
|
|
stamp + 1
|
|
|
|
} {
|
|
|
|
| Not_found =>
|
|
|
|
NameHash.add !name_map name 0;
|
|
|
|
0
|
|
|
|
};
|
|
|
|
{kind, name, stamp}
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Make sure that fresh ids after whis one will be with different stamps */
|
|
|
|
let update_name_hash name stamp =>
|
|
|
|
try {
|
|
|
|
let curr_stamp = NameHash.find !name_map name;
|
|
|
|
let new_stamp = max curr_stamp stamp;
|
|
|
|
NameHash.replace !name_map name new_stamp
|
|
|
|
} {
|
|
|
|
| Not_found => NameHash.add !name_map name stamp
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Name used for the return variable */
|
|
|
|
let name_return = Mangled.from_string "return";
|
|
|
|
|
|
|
|
|
|
|
|
/** Return the standard name for the given kind */
|
|
|
|
let standard_name kind =>
|
|
|
|
if (equal_kind kind KNormal || equal_kind kind KNone) {
|
|
|
|
Name.Normal
|
|
|
|
} else if (
|
|
|
|
equal_kind kind KFootprint
|
|
|
|
) {
|
|
|
|
Name.Footprint
|
|
|
|
} else {
|
|
|
|
Name.Primed
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Every identifier with a given stamp should unltimately be created using this function */
|
|
|
|
let create_with_stamp kind name stamp => {
|
|
|
|
NameGenerator.update_name_hash name stamp;
|
|
|
|
{kind, name, stamp}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Create an identifier with default name for the given kind */
|
|
|
|
let create kind stamp => create_with_stamp kind (standard_name kind) stamp;
|
|
|
|
|
|
|
|
|
|
|
|
/** Generate a normal identifier with the given name and stamp */
|
|
|
|
let create_normal name stamp => create_with_stamp KNormal name stamp;
|
|
|
|
|
|
|
|
|
|
|
|
/** Create a fresh identifier with default name for the given kind. */
|
|
|
|
let create_fresh kind => NameGenerator.create_fresh_ident kind (standard_name kind);
|
|
|
|
|
|
|
|
let create_none () => create_fresh KNone;
|
|
|
|
|
|
|
|
|
|
|
|
/** Generate a primed identifier with the given name and stamp */
|
|
|
|
let create_primed name stamp => create_with_stamp KPrimed name stamp;
|
|
|
|
|
|
|
|
|
|
|
|
/** Generate a footprint identifier with the given name and stamp */
|
|
|
|
let create_footprint name stamp => create_with_stamp KFootprint name stamp;
|
|
|
|
|
|
|
|
|
|
|
|
/** {2 Functions for Identifiers} */
|
|
|
|
|
|
|
|
/** Get a name of an identifier */
|
|
|
|
let get_name id => id.name;
|
|
|
|
|
|
|
|
let has_kind id kind => equal_kind id.kind kind;
|
|
|
|
|
|
|
|
let is_primed (id: t) => has_kind id KPrimed;
|
|
|
|
|
|
|
|
let is_normal (id: t) => has_kind id KNormal || has_kind id KNone;
|
|
|
|
|
|
|
|
let is_footprint (id: t) => has_kind id KFootprint;
|
|
|
|
|
|
|
|
let is_none (id: t) => has_kind id KNone;
|
|
|
|
|
|
|
|
let is_path (id: t) => has_kind id KNormal && Int.equal id.stamp path_ident_stamp;
|
|
|
|
|
|
|
|
let make_unprimed id =>
|
|
|
|
if (not (has_kind id KPrimed)) {
|
|
|
|
assert false
|
|
|
|
} else if (has_kind id KNone) {
|
|
|
|
{...id, kind: KNone}
|
|
|
|
} else {
|
|
|
|
{...id, kind: KNormal}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Update the name generator so that the given id's are not generated again */
|
|
|
|
let update_name_generator ids => {
|
|
|
|
let upd id => ignore (create_with_stamp id.kind id.name id.stamp);
|
|
|
|
IList.iter upd ids
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Generate a normal identifier whose name encodes a path given as a string. */
|
|
|
|
let create_path pathstring =>
|
|
|
|
create_normal (string_to_name ("%path%" ^ pathstring)) path_ident_stamp;
|
|
|
|
|
|
|
|
|
|
|
|
/** {2 Pretty Printing} */
|
|
|
|
|
|
|
|
/** Convert an identifier to a string. */
|
|
|
|
let to_string id =>
|
|
|
|
if (has_kind id KNone) {
|
|
|
|
"_"
|
|
|
|
} else {
|
|
|
|
let base_name = name_to_string id.name;
|
|
|
|
let prefix =
|
|
|
|
if (has_kind id KFootprint) {
|
|
|
|
"@"
|
|
|
|
} else if (has_kind id KNormal) {
|
|
|
|
""
|
|
|
|
} else {
|
|
|
|
"_"
|
|
|
|
};
|
|
|
|
let suffix = "$" ^ string_of_int id.stamp;
|
|
|
|
prefix ^ base_name ^ suffix
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** Pretty print a name. */
|
|
|
|
let pp_name f name => F.fprintf f "%s" (name_to_string name);
|
|
|
|
|
|
|
|
let pp_fieldname f fn =>
|
|
|
|
/* only use for debug F.fprintf f "%a#%d" pp_name fn.fname fn.fpos */
|
|
|
|
Mangled.pp f fn.fname;
|
|
|
|
|
|
|
|
|
|
|
|
/** Pretty print a name in latex. */
|
|
|
|
let pp_name_latex style f (name: name) => Latex.pp_string style f (name_to_string name);
|
|
|
|
|
|
|
|
let pp_fieldname_latex style f fn => Latex.pp_string style f (Mangled.to_string fn.fname);
|
|
|
|
|
|
|
|
|
|
|
|
/** Pretty print an identifier. */
|
|
|
|
let pp pe f id =>
|
|
|
|
switch pe.Pp.kind {
|
|
|
|
| TEXT
|
|
|
|
| HTML => F.fprintf f "%s" (to_string id)
|
|
|
|
| LATEX =>
|
|
|
|
let base_name = name_to_string id.name;
|
|
|
|
let style =
|
|
|
|
if (has_kind id KFootprint) {
|
|
|
|
Latex.Boldface
|
|
|
|
} else if (has_kind id KNormal) {
|
|
|
|
Latex.Roman
|
|
|
|
} else {
|
|
|
|
Latex.Roman
|
|
|
|
};
|
|
|
|
F.fprintf f "%a_{%s}" (Latex.pp_string style) base_name (string_of_int id.stamp)
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/** pretty printer for lists of identifiers */
|
|
|
|
let pp_list pe => Pp.comma_seq (pp pe);
|
|
|
|
|
|
|
|
|
|
|
|
/** pretty printer for lists of names */
|
|
|
|
let pp_name_list = Pp.comma_seq pp_name;
|