You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 lines
22 KiB

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>InferIR__Procdesc (InferIR.InferIR__Procdesc)</title><link rel="stylesheet" href="../../odoc.css"/><meta charset="utf-8"/><meta name="generator" content="odoc %%VERSION%%"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div class="content"><header><nav><a href="../index.html">Up</a> <a href="../index.html">InferIR</a> &#x00BB; InferIR__Procdesc</nav><h1>Module <code>InferIR__Procdesc</code></h1><h2 id="per-procedure-cfg"><a href="#per-procedure-cfg" class="anchor"></a>Per-procedure CFG</h2></header><div class="spec module" id="module-NodeKey"><a href="#module-NodeKey" class="anchor"></a><code><span class="keyword">module</span> <a href="NodeKey/index.html">NodeKey</a> : <span class="keyword">sig</span> ... <span class="keyword">end</span></code></div><dl><dt class="spec module" id="module-Node"><a href="#module-Node" class="anchor"></a><code><span class="keyword">module</span> <a href="Node/index.html">Node</a> : <span class="keyword">sig</span> ... <span class="keyword">end</span></code></dt><dd><p>node of the control flow graph</p></dd></dl><dl><dt class="spec module" id="module-IdMap"><a href="#module-IdMap" class="anchor"></a><code><span class="keyword">module</span> IdMap : <a href="../../InferStdlib/InferStdlib/PrettyPrintable/index.html#module-type-PPMap">InferStdlib.PrettyPrintable.PPMap</a> <span class="keyword">with</span> <span class="keyword">type</span> <a href="../../InferStdlib/InferStdlib/PrettyPrintable/index.html#module-type-PPMap">PPMap</a>.key = <a href="Node/index.html#type-id">Node.id</a></code></dt><dd><p>Map with node id keys.</p></dd></dl><dl><dt class="spec module" id="module-NodeHash"><a href="#module-NodeHash" class="anchor"></a><code><span class="keyword">module</span> NodeHash : <a href="../../InferStdlib/InferStdlib/index.html#module-IStd">InferStdlib.IStd</a>.Caml.Hashtbl.S <span class="keyword">with</span> <span class="keyword">type</span> <a href="index.html#module-NodeHash">NodeHash</a>.key = <a href="Node/index.html#type-t">Node.t</a></code></dt><dd><p>Hash table with nodes as keys.</p></dd></dl><dl><dt class="spec module" id="module-NodeMap"><a href="#module-NodeMap" class="anchor"></a><code><span class="keyword">module</span> NodeMap : <a href="../../InferStdlib/InferStdlib/index.html#module-IStd">InferStdlib.IStd</a>.Caml.Map.S <span class="keyword">with</span> <span class="keyword">type</span> <a href="index.html#module-NodeMap">NodeMap</a>.key = <a href="Node/index.html#type-t">Node.t</a></code></dt><dd><p>Map over nodes.</p></dd></dl><dl><dt class="spec module" id="module-NodeSet"><a href="#module-NodeSet" class="anchor"></a><code><span class="keyword">module</span> NodeSet : <a href="../../InferStdlib/InferStdlib/index.html#module-IStd">InferStdlib.IStd</a>.Caml.Set.S <span class="keyword">with</span> <span class="keyword">type</span> <a href="index.html#module-NodeSet">NodeSet</a>.elt = <a href="Node/index.html#type-t">Node.t</a></code></dt><dd><p>Set of nodes.</p></dd></dl><aside><p>procedure descriptions</p></aside><dl><dt class="spec type" id="type-t"><a href="#type-t" class="anchor"></a><code><span class="keyword">type</span> t</code></dt><dd><p>proc description</p></dd></dl><dl><dt class="spec value" id="val-append_locals"><a href="#val-append_locals" class="anchor"></a><code><span class="keyword">val</span> append_locals : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><a href="../InferIR/ProcAttributes/index.html#type-var_data">InferIR.ProcAttributes.var_data</a> list</span> <span>&#45;&gt;</span> unit</code></dt><dd><p>append a list of new local variables to the existing list of local variables</p></dd></dl><dl><dt class="spec value" id="val-compute_distance_to_exit_node"><a href="#val-compute_distance_to_exit_node" class="anchor"></a><code><span class="keyword">val</span> compute_distance_to_exit_node : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> unit</code></dt><dd><p>Compute the distance of each node to the exit node, if not computed already</p></dd></dl><dl><dt class="spec value" id="val-create_node"><a href="#val-create_node" class="anchor"></a><code><span class="keyword">val</span> create_node : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../../InferBase/InferBase/Location/index.html#type-t">InferBase.Location.t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-nodekind">Node.nodekind</a> <span>&#45;&gt;</span> <span><a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a> list</span> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a></code></dt><dd><p>Create a new cfg node with the given location, kind, list of instructions, and add it to the procdesc.</p></dd></dl><dl><dt class="spec value" id="val-create_node_from_not_reversed"><a href="#val-create_node_from_not_reversed" class="anchor"></a><code><span class="keyword">val</span> create_node_from_not_reversed : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../../InferBase/InferBase/Location/index.html#type-t">InferBase.Location.t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-nodekind">Node.nodekind</a> <span>&#45;&gt;</span> <a href="../InferIR/Instrs/index.html#type-not_reversed_t">InferIR.Instrs.not_reversed_t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a></code></dt><dt class="spec value" id="val-fold_instrs"><a href="#val-fold_instrs" class="anchor"></a><code><span class="keyword">val</span> fold_instrs : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span>init:<span class="type-var">'accum</span></span> <span>&#45;&gt;</span> <span>f:<span>(<span class="type-var">'accum</span> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a> <span>&#45;&gt;</span> <span class="type-var">'accum</span>)</span></span> <span>&#45;&gt;</span> <span class="type-var">'accum</span></code></dt><dd><p>fold over all nodes and their instructions</p></dd></dl><dl><dt class="spec value" id="val-find_map_instrs"><a href="#val-find_map_instrs" class="anchor"></a><code><span class="keyword">val</span> find_map_instrs : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span>f:<span>(<a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a> <span>&#45;&gt;</span> <span><span class="type-var">'a</span> option</span>)</span></span> <span>&#45;&gt;</span> <span><span class="type-var">'a</span> option</span></code></dt><dt class="spec value" id="val-from_proc_attributes"><a href="#val-from_proc_attributes" class="anchor"></a><code><span class="keyword">val</span> from_proc_attributes : <a href="../InferIR/ProcAttributes/index.html#type-t">InferIR.ProcAttributes.t</a> <span>&#45;&gt;</span> <a href="index.html#type-t">t</a></code></dt><dd><p>Use <code>Cfg.create_proc_desc</code> if you are adding a proc desc to a cfg</p></dd></dl><dl><dt class="spec value" id="val-get_access"><a href="#val-get_access" class="anchor"></a><code><span class="keyword">val</span> get_access : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/PredSymb/index.html#type-access">InferIR.PredSymb.access</a></code></dt><dd><p>Return the visibility attribute</p></dd></dl><dl><dt class="spec value" id="val-get_attributes"><a href="#val-get_attributes" class="anchor"></a><code><span class="keyword">val</span> get_attributes : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/ProcAttributes/index.html#type-t">InferIR.ProcAttributes.t</a></code></dt><dd><p>Get the attributes of the procedure.</p></dd></dl><dl><dt class="spec value" id="val-set_attributes"><a href="#val-set_attributes" class="anchor"></a><code><span class="keyword">val</span> set_attributes : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/ProcAttributes/index.html#type-t">InferIR.ProcAttributes.t</a> <span>&#45;&gt;</span> unit</code></dt><dt class="spec value" id="val-get_captured"><a href="#val-get_captured" class="anchor"></a><code><span class="keyword">val</span> get_captured : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><span>(<a href="../InferIR/Mangled/index.html#type-t">InferIR.Mangled.t</a> * <a href="../InferIR/Typ/index.html#type-t">InferIR.Typ.t</a>)</span> list</span></code></dt><dd><p>Return name and type of block's captured variables</p></dd></dl><dl><dt class="spec value" id="val-get_exit_node"><a href="#val-get_exit_node" class="anchor"></a><code><span class="keyword">val</span> get_exit_node : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a></code></dt><dt class="spec value" id="val-get_formals"><a href="#val-get_formals" class="anchor"></a><code><span class="keyword">val</span> get_formals : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><span>(<a href="../InferIR/Mangled/index.html#type-t">InferIR.Mangled.t</a> * <a href="../InferIR/Typ/index.html#type-t">InferIR.Typ.t</a>)</span> list</span></code></dt><dd><p>Return name and type of formal parameters</p></dd></dl><dl><dt class="spec value" id="val-get_pvar_formals"><a href="#val-get_pvar_formals" class="anchor"></a><code><span class="keyword">val</span> get_pvar_formals : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><span>(<a href="../InferIR/Pvar/index.html#type-t">InferIR.Pvar.t</a> * <a href="../InferIR/Typ/index.html#type-t">InferIR.Typ.t</a>)</span> list</span></code></dt><dd><p>Return pvar and type of formal parameters</p></dd></dl><dl><dt class="spec value" id="val-get_loc"><a href="#val-get_loc" class="anchor"></a><code><span class="keyword">val</span> get_loc : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../../InferBase/InferBase/Location/index.html#type-t">InferBase.Location.t</a></code></dt><dd><p>Return loc information for the procedure</p></dd></dl><dl><dt class="spec value" id="val-get_locals"><a href="#val-get_locals" class="anchor"></a><code><span class="keyword">val</span> get_locals : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><a href="../InferIR/ProcAttributes/index.html#type-var_data">InferIR.ProcAttributes.var_data</a> list</span></code></dt><dd><p>Return name and type and attributes of local variables</p></dd></dl><dl><dt class="spec value" id="val-get_nodes"><a href="#val-get_nodes" class="anchor"></a><code><span class="keyword">val</span> get_nodes : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><a href="Node/index.html#type-t">Node.t</a> list</span></code></dt><dt class="spec value" id="val-get_nodes_num"><a href="#val-get_nodes_num" class="anchor"></a><code><span class="keyword">val</span> get_nodes_num : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> int</code></dt><dt class="spec value" id="val-get_proc_name"><a href="#val-get_proc_name" class="anchor"></a><code><span class="keyword">val</span> get_proc_name : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/Typ/Procname/index.html#type-t">InferIR.Typ.Procname.t</a></code></dt><dt class="spec value" id="val-get_ret_type"><a href="#val-get_ret_type" class="anchor"></a><code><span class="keyword">val</span> get_ret_type : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/Typ/index.html#type-t">InferIR.Typ.t</a></code></dt><dd><p>Return the return type of the procedure and type string</p></dd></dl><dl><dt class="spec value" id="val-has_added_return_param"><a href="#val-has_added_return_param" class="anchor"></a><code><span class="keyword">val</span> has_added_return_param : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> bool</code></dt><dt class="spec value" id="val-get_ret_var"><a href="#val-get_ret_var" class="anchor"></a><code><span class="keyword">val</span> get_ret_var : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/Pvar/index.html#type-t">InferIR.Pvar.t</a></code></dt><dt class="spec value" id="val-get_start_node"><a href="#val-get_start_node" class="anchor"></a><code><span class="keyword">val</span> get_start_node : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a></code></dt><dt class="spec value" id="val-get_static_callees"><a href="#val-get_static_callees" class="anchor"></a><code><span class="keyword">val</span> get_static_callees : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><a href="../InferIR/Typ/Procname/index.html#type-t">InferIR.Typ.Procname.t</a> list</span></code></dt><dd><p>get a list of unique static callees excluding self</p></dd></dl><dl><dt class="spec value" id="val-is_defined"><a href="#val-is_defined" class="anchor"></a><code><span class="keyword">val</span> is_defined : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> bool</code></dt><dd><p>Return <code>true</code> iff the procedure is defined, and not just declared</p></dd></dl><dl><dt class="spec value" id="val-is_java_synchronized"><a href="#val-is_java_synchronized" class="anchor"></a><code><span class="keyword">val</span> is_java_synchronized : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> bool</code></dt><dd><p>Return <code>true</code> if the procedure signature has the Java synchronized keyword</p></dd></dl><dl><dt class="spec value" id="val-iter_instrs"><a href="#val-iter_instrs" class="anchor"></a><code><span class="keyword">val</span> iter_instrs : <span>(<a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a> <span>&#45;&gt;</span> unit)</span> <span>&#45;&gt;</span> <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> unit</code></dt><dd><p>iterate over all nodes and their instructions</p></dd></dl><dl><dt class="spec value" id="val-replace_instrs"><a href="#val-replace_instrs" class="anchor"></a><code><span class="keyword">val</span> replace_instrs : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span>f:<span>(<a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a> <span>&#45;&gt;</span> <a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a>)</span></span> <span>&#45;&gt;</span> bool</code></dt><dd><p>Map and replace the instructions to be executed. Returns true if at least one substitution occured.</p></dd></dl><dl><dt class="spec value" id="val-replace_instrs_by"><a href="#val-replace_instrs_by" class="anchor"></a><code><span class="keyword">val</span> replace_instrs_by : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span>f:<span>(<a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a> <span>&#45;&gt;</span> <span><a href="../InferIR/Sil/index.html#type-instr">InferIR.Sil.instr</a> array</span>)</span></span> <span>&#45;&gt;</span> bool</code></dt><dd><p>Like <code>replace_instrs</code>, but slower, and each instruction may be replaced by 0, 1, or more instructions.</p></dd></dl><dl><dt class="spec value" id="val-iter_nodes"><a href="#val-iter_nodes" class="anchor"></a><code><span class="keyword">val</span> iter_nodes : <span>(<a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> unit)</span> <span>&#45;&gt;</span> <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> unit</code></dt><dd><p>iterate over all the nodes of a procedure</p></dd></dl><dl><dt class="spec value" id="val-fold_nodes"><a href="#val-fold_nodes" class="anchor"></a><code><span class="keyword">val</span> fold_nodes : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span>init:<span class="type-var">'accum</span></span> <span>&#45;&gt;</span> <span>f:<span>(<span class="type-var">'accum</span> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <span class="type-var">'accum</span>)</span></span> <span>&#45;&gt;</span> <span class="type-var">'accum</span></code></dt><dd><p>fold over all the nodes of a procedure</p></dd></dl><dl><dt class="spec value" id="val-fold_slope_range"><a href="#val-fold_slope_range" class="anchor"></a><code><span class="keyword">val</span> fold_slope_range : <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <span>init:<span class="type-var">'accum</span></span> <span>&#45;&gt;</span> <span>f:<span>(<span class="type-var">'accum</span> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <span class="type-var">'accum</span>)</span></span> <span>&#45;&gt;</span> <span class="type-var">'accum</span></code></dt><dd><p>fold between two nodes or until we reach a branching structure</p></dd></dl><dl><dt class="spec value" id="val-set_succs_exn_only"><a href="#val-set_succs_exn_only" class="anchor"></a><code><span class="keyword">val</span> set_succs_exn_only : <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <span><a href="Node/index.html#type-t">Node.t</a> list</span> <span>&#45;&gt;</span> unit</code></dt><dt class="spec value" id="val-node_set_succs_exn"><a href="#val-node_set_succs_exn" class="anchor"></a><code><span class="keyword">val</span> node_set_succs_exn : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> <span><a href="Node/index.html#type-t">Node.t</a> list</span> <span>&#45;&gt;</span> <span><a href="Node/index.html#type-t">Node.t</a> list</span> <span>&#45;&gt;</span> unit</code></dt><dd><p>Set the successor nodes and exception nodes, and build predecessor links</p></dd></dl><dl><dt class="spec value" id="val-set_exit_node"><a href="#val-set_exit_node" class="anchor"></a><code><span class="keyword">val</span> set_exit_node : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> unit</code></dt><dd><p>Set the exit node of the procedure</p></dd></dl><dl><dt class="spec value" id="val-set_start_node"><a href="#val-set_start_node" class="anchor"></a><code><span class="keyword">val</span> set_start_node : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> unit</code></dt><dt class="spec value" id="val-get_wto"><a href="#val-get_wto" class="anchor"></a><code><span class="keyword">val</span> get_wto : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><a href="Node/index.html#type-t">Node.t</a> <a href="../InferIR/WeakTopologicalOrder/Partition/index.html#type-t">InferIR.WeakTopologicalOrder.Partition.t</a></span></code></dt><dt class="spec value" id="val-is_loop_head"><a href="#val-is_loop_head" class="anchor"></a><code><span class="keyword">val</span> is_loop_head : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="Node/index.html#type-t">Node.t</a> <span>&#45;&gt;</span> bool</code></dt><dt class="spec value" id="val-pp_signature"><a href="#val-pp_signature" class="anchor"></a><code><span class="keyword">val</span> pp_signature : Stdlib.Format.formatter <span>&#45;&gt;</span> <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> unit</code></dt><dt class="spec value" id="val-pp_local"><a href="#val-pp_local" class="anchor"></a><code><span class="keyword">val</span> pp_local : Stdlib.Format.formatter <span>&#45;&gt;</span> <a href="../InferIR/ProcAttributes/index.html#type-var_data">InferIR.ProcAttributes.var_data</a> <span>&#45;&gt;</span> unit</code></dt><dt class="spec value" id="val-is_specialized"><a href="#val-is_specialized" class="anchor"></a><code><span class="keyword">val</span> is_specialized : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> bool</code></dt><dt class="spec value" id="val-is_captured_pvar"><a href="#val-is_captured_pvar" class="anchor"></a><code><span class="keyword">val</span> is_captured_pvar : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/Pvar/index.html#type-t">InferIR.Pvar.t</a> <span>&#45;&gt;</span> bool</code></dt><dd><p>true if pvar is a captured variable of a cpp lambda or obcj block</p></dd></dl><dl><dt class="spec value" id="val-is_captured_var"><a href="#val-is_captured_var" class="anchor"></a><code><span class="keyword">val</span> is_captured_var : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/Var/index.html#type-t">InferIR.Var.t</a> <span>&#45;&gt;</span> bool</code></dt><dd><p>true if var is a captured variable of a cpp lambda or obcj block</p></dd></dl><dl><dt class="spec value" id="val-has_modify_in_block_attr"><a href="#val-has_modify_in_block_attr" class="anchor"></a><code><span class="keyword">val</span> has_modify_in_block_attr : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <a href="../InferIR/Pvar/index.html#type-t">InferIR.Pvar.t</a> <span>&#45;&gt;</span> bool</code></dt><dt class="spec value" id="val-is_connected"><a href="#val-is_connected" class="anchor"></a><code><span class="keyword">val</span> is_connected : <a href="index.html#type-t">t</a> <span>&#45;&gt;</span> <span><span>(unit, <span>[ `Join <span>| `Other</span> ]</span>)</span> <a href="../../InferStdlib/InferStdlib/index.html#module-IStd">InferStdlib.IStd</a>.Result.t</span></code></dt><dd><p>checks whether a cfg for the given procdesc is connected or not</p></dd></dl><dl><dt class="spec module" id="module-SQLite"><a href="#module-SQLite" class="anchor"></a><code><span class="keyword">module</span> <a href="SQLite/index.html">SQLite</a> : <a href="../../InferBase/InferBase/SqliteUtils/index.html#module-type-Data">InferBase.SqliteUtils.Data</a> <span class="keyword">with</span> <span class="keyword">type</span> <a href="../../InferBase/InferBase/SqliteUtils/module-type-Data/index.html#type-t">t</a> = <span><a href="index.html#type-t">t</a> option</span></code></dt><dd><p>per-procedure CFGs are stored in the SQLite &quot;procedures&quot; table as NULL if the procedure has no CFG</p></dd></dl><dl><dt class="spec value" id="val-load"><a href="#val-load" class="anchor"></a><code><span class="keyword">val</span> load : <a href="../InferIR/Typ/Procname/index.html#type-t">InferIR.Typ.Procname.t</a> <span>&#45;&gt;</span> <span><a href="index.html#type-t">t</a> option</span></code></dt></dl></div></body></html>