1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
(****************************************************************************)
(* the diy toolsuite *)
(* *)
(* Jade Alglave, University College London, UK. *)
(* Luc Maranget, INRIA Paris-Rocquencourt, France. *)
(* *)
(* Copyright 2013-present Institut National de Recherche en Informatique et *)
(* en Automatique and the authors. All rights reserved. *)
(* *)
(* This software is governed by the CeCILL-B license under French law and *)
(* abiding by the rules of distribution of free software. You can use, *)
(* modify and/ or redistribute the software under the terms of the CeCILL-B *)
(* license as circulated by CEA, CNRS and INRIA at the following URL *)
(* "http://www.cecill.info". We also give a copy in LICENSE.txt. *)
(****************************************************************************)
(** Bell name handling *)
let scopes = "scopes"
and regions = "regions"
and levels = "levels"
and nextlevel = "next-level"
and wider = "wider"
and narrower = "narrower"
let tag2instrs_var s =
let len = String.length s in
assert (len > 0) ;
let c = s.[0] in
String.make 1 (Misc.char_uppercase c) ^ String.sub s 1 (len-1)
let tag2set_var s = tag2instrs_var s
let tag2rel_var s = s
let r = "R"
and w = "W"
and j = "J"
and f = "F"
and rmw = "RMW"
and b = "B"
and call = "CALL"
and srcu = "SRCU"
let all_sets = StringSet.of_list [r; w; f; rmw; b; call; srcu;]
(*jade: why both all_mem_sets and all_sets? is all_mem_sets supposed to be sets
of memory events, in which case f and b shouldn't be in there?*)
let all_rels = StringSet.of_list [scopes;]
let all_orders = StringSet.of_list [scopes;]
let tr_compat = function
| "CALL" -> f
| n -> n
|