Reviewed By: jeremydubreil Differential Revision: D3140401 fb-gh-sync-id: 750b66a fbshipit-source-id: 750b66amaster
parent
c499645f6f
commit
44a6bf7128
@ -0,0 +1,41 @@
|
|||||||
|
(*
|
||||||
|
* Copyright (c) 2016 - 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.
|
||||||
|
*)
|
||||||
|
|
||||||
|
(** single abstraction for all the kinds of variables in SIL *)
|
||||||
|
|
||||||
|
type var =
|
||||||
|
| ProgramVar of Pvar.t
|
||||||
|
| LogicalVar of Ident.t
|
||||||
|
|
||||||
|
type t = var
|
||||||
|
|
||||||
|
let var_compare v1 v2 = match v1, v2 with
|
||||||
|
| ProgramVar pv1, ProgramVar pv2 -> Pvar.compare pv1 pv2
|
||||||
|
| LogicalVar sv1, LogicalVar sv2 -> Ident.compare sv1 sv2
|
||||||
|
| ProgramVar _, _ -> 1
|
||||||
|
| LogicalVar _, _ -> -1
|
||||||
|
|
||||||
|
let var_equal v1 v2 =
|
||||||
|
var_compare v1 v2 = 0
|
||||||
|
|
||||||
|
let pp_var fmt = function
|
||||||
|
| ProgramVar pv -> (Pvar.pp pe_text) fmt pv
|
||||||
|
| LogicalVar id -> (Ident.pp pe_text) fmt id
|
||||||
|
|
||||||
|
module Map = PrettyPrintable.MakePPMap(struct
|
||||||
|
type t = var
|
||||||
|
let compare = var_compare
|
||||||
|
let pp_key = pp_var
|
||||||
|
end)
|
||||||
|
|
||||||
|
module Set = PrettyPrintable.MakePPSet(struct
|
||||||
|
type t = var
|
||||||
|
let compare = var_compare
|
||||||
|
let pp_element = pp_var
|
||||||
|
end)
|
Loading…
Reference in new issue