CombinedText
stringlengths
4
3.42M
with impact.d3.Vector; with ada.Unchecked_Deallocation; with Ada.Unchecked_Conversion; with System; with impact.d3.aabb_Util; package body impact.d3.collision.bounding_volume_Tree is subtype tNodeArray is Node_Vector; subtype tConstNodeArray is Node_Vector; procedure free is new ada.Unchecked_Deallocation (Node'Class, Node_view); type NodeEnumerator is new ICollide with record nodes : tConstNodeArray; end record; overriding procedure Process (Self : in out NodeEnumerator; n1 : access Node'Class) is begin Self.nodes.append (n1.all'Access); end Process; function indexof (node : access bounding_volume_Tree.Node'Class) return Integer is begin return Boolean'Pos (node.parent.state.childs (2) = node) + 1; end indexof; --- Defaults volumes -- -- AabbMm -- function FromCE (c, e : in math.Vector_3 ) return AabbMm is use Math; box : AabbMm; begin box.mi := c - e; box.mx := c + e; return box; end FromCE; function FromCR (c : in math.Vector_3; r : in math.Real) return AabbMm is begin return FromCE (c, (r, r, r)); end FromCR; function FromMM (mi, mx : in math.Vector_3) return AabbMm is box : AabbMm; begin box.mi := mi; box.mx := mx; return box; end FromMM; function FromPoints (pts : in Vector_3_array) return AabbMm is use impact.d3.Vector; box : AabbMm; begin box.mi := pts (1); box.mx := pts (1); for i in 2 .. pts'Last loop setMin (box.mi, pts (i)); setMax (box.mx, pts (i)); end loop; return box; end FromPoints; function FromPoints (ppts : in Vector_3_view_array; n : in Integer) return AabbMm is use impact.d3.Vector; box : AabbMm; begin box.mi := ppts (1).all; box.mx := ppts (1).all; for i in 2 .. n loop setMin (box.mi, ppts (i).all); setMax (box.mx, ppts (i).all); end loop; return box; end FromPoints; function Center (Self : in AabbMm) return math.Vector_3 is use Math; begin return (Self.mi + Self.mx) / 2.0; end Center; function Lengths (Self : in AabbMm) return math.Vector_3 is use Math; begin return Self.mx - Self.mi; end Lengths; function Extents (Self : in AabbMm) return math.Vector_3 is use Math; begin return (Self.mx - Self.mi) / 2.0; end Extents; function Mins (Self : in AabbMm) return math.Vector_3 is begin return Self.mi; end Mins; function Maxs (Self : in AabbMm) return math.Vector_3 is begin return Self.mx; end Maxs; procedure Expand (Self : in out AabbMm; e : in math.Vector_3) is use Math; begin Self.mi := Self.mi - e; Self.mx := Self.mx + e; end Expand; procedure SignedExpand (Self : in out AabbMm; e : in math.Vector_3) is begin if e (1) > 0.0 then Self.mx (1) := Self.mx (1) + e (1); else Self.mi (1) := Self.mi (1) + e (1); end if; if e (2) > 0.0 then Self.mx (2) := Self.mx (2) + e (2); else Self.mi (2) := Self.mi (2) + e (2); end if; if e (3) > 0.0 then Self.mx (3) := Self.mx (3) + e (3); else Self.mi (3) := Self.mi (3) + e (3); end if; end SignedExpand; function Contain (Self : in AabbMm'Class; a : in AabbMm'Class) return Boolean is begin return Self.mi (1) <= a.mi (1) and then Self.mi (2) <= a.mi (2) and then Self.mi (3) <= a.mi (3) and then Self.mx (1) >= a.mx (1) and then Self.mx (2) >= a.mx (2) and then Self.mx (3) >= a.mx (3); end Contain; function Classify (Self : in AabbMm; n : in math.Vector_3; o : in math.Real; s : in Integer) return Integer is use impact.d3.Vector; pi, px : math.Vector_3; begin case s is when 0+0+0 => px := Self.mi; pi := Self.mx; when 1+0+0 => px := (Self.mx (1), Self.mi (2), Self.mi (3)); pi := (Self.mi (1), Self.mx (2), Self.mx (3)); when 0+2+0 => px := (Self.mi (1), Self.mx (2), Self.mi (3)); pi := (Self.mx (1), Self.mi (2), Self.mx (3)); when 1+2+0 => px := (Self.mx (1), Self.mx (2), Self.mi (3)); pi := (Self.mi (1), Self.mi (2), Self.mx (3)); when 0+0+4 => px := (Self.mi (1), Self.mi (2), Self.mx (3)); pi := (Self.mx (1), Self.mx (2), Self.mi (3)); when 1+0+4 => px := (Self.mx (1), Self.mi (2), Self.mx (3)); pi := (Self.mi (1), Self.mx (2), Self.mi (3)); when 0+2+4 => px := (Self.mi (1), Self.mx (2), Self.mx (3)); pi := (Self.mx (1), Self.mi (2), Self.mi (3)); when 1+2+4 => px := (Self.mx (1), Self.mx (2), Self.mx (3)); pi := (Self.mi (1), Self.mi (2), Self.mi (3)); when others => raise Program_Error; end case; if dot (n, px) + o < 0.0 then return -1; end if; if dot (n, pi) + o >= 0.0 then return +1; end if; return 0; end Classify; function ProjectMinimum (Self : access AabbMm; v : in math.Vector_3; signs : in interfaces.Unsigned_32) return math.Real is use impact.d3.Vector; use type interfaces.Unsigned_32; b : constant Vector_3_view_array := (Self.mx'Access, Self.mi'Access); p : constant math.Vector_3 := (b (Integer (signs and 1)) (1), b (Integer ((signs / 2) and 1)) (2), b (Integer ((signs / 4) and 1)) (3)); begin return dot (p, v); end ProjectMinimum; function Intersect (a, b : in AabbMm'Class) return Boolean is begin return a.mi (1) <= b.mx (1) and then a.mx (1) >= b.mi (1) and then a.mi (2) <= b.mx (2) and then a.mx (2) >= b.mi (2) and then a.mi (3) <= b.mx (3) and then a.mx (3) >= b.mi (3); end Intersect; function Intersect (a : in AabbMm; b : in math.Vector_3) return Boolean is begin return (b (1) >= a.mi (1)) and then (b (2) >= a.mi (2)) and then (b (3) >= a.mi (3)) and then (b (1) <= a.mx (1)) and then (b (2) <= a.mx (2)) and then (b (3) <= a.mx (3)); end Intersect; function Proximity (a, b : in AabbMm) return math.Real is use Math; d : constant math.Vector_3 := (a.mi + a.mx) - (b.mi + b.mx); begin return abs (d (1)) + abs (d (2)) + abs (d (3)); end Proximity; function do_Select (o, a, b : in AabbMm) return Integer is begin if Proximity (o, a) < Proximity (o, b) then return 1; else return 2; end if; end do_Select; procedure Merge (a, b : in AabbMm; r : out AabbMm) is begin for i in 1 .. 3 loop if a.mi (i) < b.mi (i) then r.mi (i) := a.mi (i); else r.mi (i) := b.mi (i); end if; if a.mx (i) > b.mx (i) then r.mx (i) := a.mx (i); else r.mx (i) := b.mx (i); end if; end loop; end Merge; function merge (a, b : in Volume) return Volume is res : Volume; begin Merge (a, b, res); return res; end merge; -- volume+edge lengths -- function size (a : in Volume) return math.Real is edges : math.Vector_3 renames a.Lengths; begin return edges (1) * edges (2) * edges (3) + edges (1) + edges (2) + edges (3); end size; procedure getmaxdepth (node : access bounding_volume_Tree.Node'Class; depth : in Integer; maxdepth : in out Integer) is begin if node.isinternal then getmaxdepth (node.state.childs (1), depth + 1, maxdepth); getmaxdepth (node.state.childs (2), depth + 1, maxdepth); else maxdepth := Integer'Max (maxdepth, depth); end if; end getmaxdepth; procedure deletenode (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; node : access bounding_volume_Tree.Node'Class) is begin free (pdbvt.m_free); pdbvt.m_free := node.all'Access; end deletenode; procedure recursedeletenode (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; node : access bounding_volume_Tree.Node'Class) is begin if not node.isleaf then recursedeletenode (pdbvt, node.state.childs (1)); recursedeletenode (pdbvt, node.state.childs (2)); end if; if node = pdbvt.m_root then pdbvt.m_root := null; end if; deletenode (pdbvt, node); end recursedeletenode; function createnode (pdbvt : access impact.d3.collision.bounding_volume_Tree.item'Class; parent : access Node'Class; data : access Any'Class) return Node_view is node : Node_view; begin if pdbvt.m_free /= null then node := pdbvt.m_free; pdbvt.m_free := null; else node := new bounding_volume_Tree.Node; end if; node.parent := Node_view (parent); node.state := ( -- kind => use_data, data => data, childs => (others => null), dataasint => 0); return node; end createnode; function createnode (pdbvt : access impact.d3.collision.bounding_volume_Tree.item'Class; parent : access Node'Class; volume : in bounding_volume_Tree.Volume; data : access Any'Class) return Node_view is node : constant Node_view := createnode (pdbvt, parent, data).all'Access; begin node.volume := volume; return node; end createnode; function createnode (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; parent : access Node'Class; volume0 : in Volume; volume1 : in Volume; data : access Any'Class) return Node_view is node : constant Node_view := createnode (pdbvt, parent, data).all'Access; begin Merge (volume0, volume1, node.volume); return node; end createnode; procedure insertleaf (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; the_root, leaf : in Node_view) is root : Node_view := the_Root; prev, node : Node_view; begin if pdbvt.m_root = null then pdbvt.m_root := leaf.all'Access; leaf.parent := null; else if not root.isleaf then loop root := root.state.childs (do_Select (leaf.volume, root.state.childs (1).volume, root.state.childs (2).volume)); exit when root.isleaf; end loop; end if; prev := root.parent; node := createnode (pdbvt, prev, leaf.volume, root.volume, null); if prev /= null then prev.state.childs (indexof (root)) := node.all'Access; node.state.childs (1) := root; root.parent := node; node.state.childs (2) := leaf; leaf.parent := node; loop if not prev.volume.Contain (node.volume) then Merge (prev.state.childs (1).volume, prev.state.childs (2).volume, prev.volume); else exit; end if; node := prev; prev := node.parent; exit when prev = null; end loop; else node.state.childs (1) := root; root.parent := node; node.state.childs (2) := leaf; leaf.parent := node; pdbvt.m_root := node; end if; end if; end insertleaf; function removeleaf (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; leaf : in Node_view) return Node_view is parent, prev, sibling : Node_view; begin if leaf = pdbvt.m_root then pdbvt.m_root := null; return null; else parent := leaf.parent; prev := parent.parent; if indexof (leaf) = 1 then sibling := parent.state.childs (2); else sibling := parent.state.childs (1); end if; -- sibling := parent.state.childs (1 - indexof (leaf)); if prev /= null then prev.state.childs (indexof (parent)) := sibling; sibling.parent := prev; deletenode (pdbvt, parent); while prev /= null loop declare pb : Volume renames prev.volume; begin Merge (prev.state.childs (1).volume, prev.state.childs (2).volume, prev.volume); if NotEqual (pb, prev.volume) then prev := prev.parent; else exit; end if; end; end loop; if prev /= null then return prev; else return pdbvt.m_root; end if; else pdbvt.m_root := sibling; sibling.parent := null; deletenode (pdbvt, parent); return pdbvt.m_root; end if; end if; end removeleaf; procedure fetchleaves (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; root : in Node_view; leaves : in out tNodeArray; depth : in Integer := -1) is begin if root.isinternal and then depth /= 0 then fetchleaves (pdbvt, root.state.childs (1), leaves, depth - 1); fetchleaves (pdbvt, root.state.childs (2), leaves, depth - 1); deletenode (pdbvt, root); else leaves.append (root); end if; end fetchleaves; procedure split (leaves : in tNodeArray; left, right : in out tNodeArray; org, axis : in math.Vector_3) is use impact.d3.Vector, Math; begin left.clear; right.clear; for i in 1 .. Integer (leaves.Length) loop if dot (axis, leaves.Element (i).volume.Center - org) < 0.0 then left .append (leaves.Element (i)); else right.append (leaves.Element (i)); end if; end loop; end split; function bounds (leaves : in tNodeArray) return Volume is volume : bounding_volume_Tree.Volume := leaves.Element (1).volume; begin for i in 2 .. Integer (leaves.Length) loop Merge (volume, leaves.Element (i).volume, volume); end loop; return volume; end bounds; procedure bottomup (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; leaves : in out tNodeArray) is use type ada.containers.Count_type; begin while leaves.Length > 1 loop declare minsize : math.Real := math.Real'Last; minidx : math.Integers := (1 => -1, 2 => -1); sz : math.Real; begin for i in 1 .. Integer (leaves.Length) loop for j in i + 1 .. Integer (leaves.Length) loop sz := size (merge (leaves.Element (i).volume, leaves.Element (j).volume)); if sz < minsize then minsize := sz; minidx (1) := i; minidx (2) := j; end if; end loop; end loop; declare n : constant Node_views := (leaves.Element (minidx (1)), leaves.Element (minidx (2))); p : constant Node_view := createnode (pdbvt, null, n (1).volume, n (2).volume, null); begin p.state.childs (1) := n (1); p.state.childs (2) := n (2); n (1).parent := p; n (2).parent := p; leaves.replace_Element (minidx (1), p); leaves.swap (minidx (2), Integer (leaves.Length) - 0); leaves.delete_Last; end; end; end loop; end bottomup; axis : constant Vector_3_array := ((1.0, 0.0, 0.0), (0.0, 1.0, 0.0), (0.0, 0.0, 1.0)); function topdown (pdbvt : access impact.d3.collision.bounding_volume_Tree.item; leaves : access tNodeArray; bu_treshold : in Integer ) return Node_view is use type ada.containers.Count_type; begin if leaves.Length > 1 then if Integer (leaves.Length) > bu_treshold then declare use ada.Containers, Interfaces; vol : Volume renames bounds (leaves.all); org : math.Vector_3 renames vol.Center; sets : array (1 .. 2) of aliased tNodeArray; bestaxis : Integer := -1; bestmidp : Integer := Integer (leaves.Length); splitcount : array (1 .. 3, 1 .. 2) of Integer := ((0, 0), (0, 0), (0, 0)); begin for i in 1 .. Integer (leaves.Length) loop declare use impact.d3.Vector, Math; x : constant math.Vector_3 := leaves.Element (i).volume.Center - org; begin for j in 1 .. 3 loop if dot (x, axis (j)) > 0.0 then splitcount (j, 2) := splitcount (j, 2) + 1; else splitcount (j, 1) := splitcount (j, 1) + 1; end if; end loop; end; end loop; for i in 1 .. 3 loop if (splitcount (i, 1) > 0) and then (splitcount (i, 2) > 0) then declare midp : constant Integer := Integer (abs (math.Real (splitcount (i, 1) - splitcount (i, 2)))); begin if midp < bestmidp then bestaxis := i; bestmidp := midp; end if; end; end if; end loop; if bestaxis >= 0 then sets (1).reserve_Capacity (Count_type (splitcount (bestaxis, 1))); sets (2).reserve_Capacity (Count_type (splitcount (bestaxis, 2))); split (leaves.all, sets (1), sets (2), org, axis (bestaxis)); else sets (1).reserve_Capacity (leaves.Length / 2 + 1); sets (2).reserve_Capacity (leaves.Length / 2); for i in 1 .. Integer (leaves.Length) loop sets (Integer (Unsigned_32 (i) and 1)).append (leaves.Element (i)); end loop; end if; declare node : constant Node_view := createnode (pdbvt, null, vol, null).all'Access; begin node.state.childs (1) := topdown (pdbvt, sets (1)'Access, bu_treshold); node.state.childs (2) := topdown (pdbvt, sets (2)'Access, bu_treshold); node.state.childs (1).parent := node; node.state.childs (2).parent := node; return node; end; end; else bottomup (pdbvt, leaves.all); return leaves.Element (1); end if; end if; return leaves.Element (1); end topdown; function sort (n : in Node_view; r : access Node_view) return Node_view is use type ada.containers.Count_type; p : constant Node_view := n.parent; pragma Assert (n.isinternal); function to_long_Integer is new ada.unchecked_Conversion (System.address, Long_Integer); begin if p /= null and then to_long_Integer (p.all'Address) -- tbd: check this ! > to_long_Integer (n.all'Address) then declare i : Integer renames indexof (n); j : constant Integer := 3 - i; s : constant Node_view := p.state.childs (j); q : constant Node_view := p.parent; pragma Assert (n = p.state.childs (i)); begin if q /= null then q.state.childs (indexof (p)) := n.all'Access; else r.all := n.all'Access; end if; s.parent := n.all'Access; p.parent := n.all'Access; n.parent := q; p.state.childs (1) := n.state.childs (1); p.state.childs (2) := n.state.childs (2); n.state.childs (1).parent := p; n.state.childs (2).parent := p; n.state.childs (i) := p; n.state.childs (j) := s; declare -- swap p and q volumes Pad : constant Volume := p.volume; begin p.volume := n.volume; n.volume := Pad; end; return p; end; end if; return n; end sort; function NotEqual (a, b : in AabbMm) return Boolean is begin return a.mi (1) /= b.mi (1) or else a.mi (2) /= b.mi (2) or else a.mi (3) /= b.mi (3) or else a.mx (1) /= b.mx (1) or else a.mx (2) /= b.mx (2) or else a.mx (3) /= b.mx (3); end NotEqual; -- Node -- function isleaf (Self : in Node) return Boolean is begin return Self.state.childs (2) = null; end isleaf; function isinternal (Self : in Node) return Boolean is begin return not Self.isleaf; end isinternal; --- Policies/Interfaces -- -- ICollide -- procedure Process (Self : in out ICollide; n : access Node'Class; a : in math.Real) is pragma Unreferenced (a); begin Self.process (n); end Process; function Descent (Self : in ICollide; n : in Node'Class) return Boolean is pragma Unreferenced (Self, n); begin return True; end Descent; function Allleaves (Self : in ICollide; n : in Node'Class) return Boolean is pragma Unreferenced (Self, n); begin return True; end Allleaves; --- impact.d3.collision.bounding_volume_Tree -- procedure destruct (Self : in out Item) is begin Self.clear; end destruct; procedure clear (Self : in out Item) is begin if Self.m_root /= null then recursedeletenode (Self'Access, Self.m_root); end if; free (Self.m_free); Self.m_lkhd := -1; Self.m_stkStack.clear; Self.m_opath := 0; end clear; function empty (Self : in Item) return Boolean is begin return Self.m_root = null; end empty; procedure optimizeBottomUp (Self : in out Item) is use ada.Containers; begin if Self.m_root /= null then declare leaves : tNodeArray; begin leaves.reserve_Capacity (Count_type (Self.m_leaves)); fetchleaves (Self'Access, Self.m_root, leaves); bottomup (Self'Access, leaves); Self.m_root := leaves.Element (1); end; end if; end optimizeBottomUp; procedure optimizeTopDown (Self : in out Item; bu_treshold : Integer := 128) is begin if Self.m_root /= null then declare use ada.Containers; leaves : aliased tNodeArray; begin leaves.reserve_Capacity (Count_type (Self.m_leaves)); fetchleaves (Self'Access, Self.m_root, leaves); Self.m_root := topdown (Self'Access, leaves'Access, bu_treshold); end; end if; end optimizeTopDown; procedure optimizeIncremental (Self : in out Item; pass_Count : Integer) is passes : Integer := pass_Count; begin if passes < 0 then passes := Self.m_leaves; end if; if Self.m_root /= null and then passes > 0 then loop declare use Interfaces; node : Node_view := Self.m_root; bit : Unsigned_32 := 0; begin while node.isinternal loop node := sort (node, Self.m_root'Access).state.childs (Integer ((Self.m_opath / 2**Natural (bit)) and 1) + 1); bit := (bit + 1) and (unsigned_32'Size - 1); end loop; Self.update (node.all'Access); Self.m_opath := Self.m_opath + 1; passes := passes - 1; exit when passes = 0; end; end loop; end if; end optimizeIncremental; function insert (Self : access Item; volume : in bounding_volume_Tree.Volume'Class; data : access Any'Class ) return access Node'Class is leaf : constant Node_view := createnode (Self, null, bounding_volume_Tree.Volume (volume), data); begin insertleaf (Self, Self.m_root, leaf); Self.m_leaves := Self.m_leaves + 1; return leaf; end insert; procedure update (Self : in out Item; leaf : access Node'Class; lookahead : in Integer := -1) is root : Node_view := removeleaf (Self'Access, leaf.all'Access); i : Integer; begin if root /= null then if lookahead >= 0 then i := 1; while i <= lookahead and then root.parent /= null loop root := root.parent; i := i + 1; end loop; else root := Self.m_root; end if; end if; insertleaf (Self'Access, root, leaf.all'Access); end update; procedure update (Self : in out Item; leaf : access Node 'Class; volume : in bounding_volume_Tree.Volume'Class) is root : Node_view := removeleaf (Self'Access, leaf.all'Access); i : Integer; begin if root /= null then if Self.m_lkhd >= 0 then i := 1; while i <= Self.m_lkhd and then root.parent /= null loop root := root.parent; i := i + 1; end loop; else root := Self.m_root; end if; end if; leaf.volume := bounding_volume_Tree.Volume (volume); insertleaf (Self'Access, root, leaf.all'Access); end update; function update (Self : access Item; leaf : access Node 'Class; volume : access bounding_volume_Tree.Volume'Class; velocity : in math.Vector_3; margin : in math.Real ) return Boolean is begin if leaf.volume.Contain (volume.all) then return False; end if; volume.Expand ((margin, margin, margin)); volume.SignedExpand (velocity); Self.update (leaf, volume.all); return True; end update; function update (Self : access Item; leaf : access Node 'Class; volume : access bounding_volume_Tree.Volume'Class; velocity : in math.Vector_3) return Boolean is begin if leaf.volume.Contain (volume.all) then return False; end if; volume.SignedExpand (velocity); Self.update (leaf, volume.all); return True; end update; function update (Self : access Item; leaf : access Node 'Class; volume : access bounding_volume_Tree.Volume'Class; margin : in math.Real ) return Boolean is begin if leaf.volume.Contain (volume.all) then return False; end if; volume.Expand ((margin, margin, margin)); Self.update (leaf, volume.all); return True; end update; procedure remove (Self : in out Item; leaf : access Node 'Class) is unused : Node_view; pragma Unreferenced (unused); begin unused := removeleaf (Self'Access, leaf.all'Access); deletenode (Self'Access, leaf); Self.m_leaves := Self.m_leaves - 1; end remove; procedure write (Self : in Item; iwriter : access impact.d3.collision.bounding_volume_Tree.IWriter'Class) is use ada.Containers; nodes : aliased NodeEnumerator; begin nodes.nodes.reserve_Capacity (Count_type (Self.m_leaves) * 2); enumNodes (Self.m_root, nodes'Access); iwriter.Prepare (Self.m_root.all, Integer (nodes.nodes.Length)); for i in 1 .. Integer (nodes.nodes.Length) loop declare n : Node_view renames nodes.nodes.Element (i); p : Integer := -1; begin if n.parent /= null then p := nodes.nodes.find_Index (n.parent); end if; if n.isinternal then declare c0 : Integer renames nodes.nodes.find_Index (n.state.childs (1)); c1 : Integer renames nodes.nodes.find_Index (n.state.childs (2)); begin iwriter.WriteNode (n.all, i, p, c0, c1); end; else iwriter.WriteLeaf (n.all, i, p); end if; end; end loop; end write; procedure clone (Self : in Item; dest : access Item'Class; iclone : access impact.d3.collision.bounding_volume_Tree.IClone'Class := null) is begin dest.clear; if Self.m_root /= null then declare use ada.Containers; stack : sStkCLN_Vector; begin stack.reserve_Capacity (Count_type (Self.m_leaves)); stack.append (sStkCLN' (Self.m_root, null)); loop declare use Interfaces; i : constant Integer := Integer (stack.Length); e : sStkCLN renames stack.Element (i); n : constant Node_view := createnode (dest, e.parent, e.node.volume, e.node.state.data); begin stack.delete_Last; if e.parent /= null then e.parent.state.childs (Integer (Unsigned_32 (i) and 1)) := n; else dest.m_root := n; end if; if e.node.isinternal then stack.append (sStkCLN'(e.node.state.childs (1), n)); stack.append (sStkCLN'(e.node.state.childs (2), n)); else iclone.CloneLeaf (n.all); end if; exit when stack.Length = 0; end; end loop; end; end if; end clone; function maxdepth (node : access bounding_volume_Tree.Node) return Integer is depth : Integer := 0; begin if node /= null then getmaxdepth (node, 1, depth); end if; return depth; end maxdepth; function countLeaves (node : in bounding_volume_Tree.Node) return Integer is begin if node.isinternal then return countleaves (node.state.childs (1).all) + countleaves (node.state.childs (2).all); else return 1; end if; end countLeaves; procedure extractleaves (node : access bounding_volume_Tree.Node; leaves : out Node_Vector) is begin if node.isinternal then extractleaves (node.state.childs (1), leaves); extractleaves (node.state.childs (2), leaves); else leaves.append (node.all'Access); end if; end extractleaves; procedure enumNodes (root : access Node; policy : access ICollide'Class) is begin policy.Process (root); if root.isinternal then enumNodes (root.state.childs (1), policy); enumNodes (root.state.childs (2), policy); end if; end enumNodes; procedure enumleaves (root : access Node; policy : access ICollide'Class) is begin if root.isinternal then enumleaves (root.state.childs (1), policy); enumleaves (root.state.childs (2), policy); else policy.Process (root); end if; end enumleaves; procedure collideTT (Self : in out Item; root0, root1 : access Node'Class; policy : access ICollide 'Class) is pragma Unreferenced (Self); begin if root0 /= null and then root1 /= null then declare depth : Integer := 1; treshold : Integer := DOUBLE_STACKSIZE - 4; stkStack : sStkNN_Vector; -- btAlignedObjectArray<sStkNN> stkStack; begin stkStack.set_Length (DOUBLE_STACKSIZE); stkStack.replace_Element (1, sStkNN'(root0, root1)); loop declare use type ada.containers.Count_type; p : sStkNN := stkStack.Element (depth); begin depth := depth - 1; if depth > treshold then stkStack.set_Length (stkStack.Length * 2); treshold := Integer (stkStack.Length - 4); end if; if p.a = p.b then if p.a.isinternal then depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1).all'Access, p.a.state.childs (1).all'Access)); depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2).all'Access, p.a.state.childs (2).all'Access)); depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1).all'Access, p.a.state.childs (2).all'Access)); end if; elsif Intersect (p.a.volume, p.b.volume) then if p.a.isinternal then if p.b.isinternal then depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1).all'Access, p.b.state.childs (1).all'Access)); depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2).all'Access, p.b.state.childs (1).all'Access)); depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1).all'Access, p.b.state.childs (2).all'Access)); depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2).all'Access, p.b.state.childs (2).all'Access)); else depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1).all'Access, p.b)); depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2).all'Access, p.b)); end if; else if p.b.isinternal then depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a, p.b.state.childs (1).all'Access)); depth := depth + 1; stkStack.replace_Element (depth, sStkNN'(p.a, p.b.state.childs (2).all'Access)); else policy.Process (p.a, p.b); end if; end if; end if; exit when depth = 0; end; end loop; end; end if; end collideTT; procedure collideTTpersistentStack (Self : in out Item; root0, root1 : access Node'Class; policy : access ICollide'Class) is depth, threshold : Integer; begin if root0 /= null and then root1 /= null then depth := 1; threshold := DOUBLE_STACKSIZE - 4; Self.m_stkStack.set_Length (DOUBLE_STACKSIZE); Self.m_stkStack.replace_Element (1, sStkNN'(root0, root1)); loop declare use type ada.containers.Count_type; p : sStkNN := Self.m_stkStack.Element (depth); begin depth := depth - 1; if depth > threshold then Self.m_stkStack.set_Length (Self.m_stkStack.Length * 2); threshold := Integer (Self.m_stkStack.Length) - 4; end if; if p.a = p.b then if p.a.isinternal then depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1), p.a.state.childs (1))); depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2), p.a.state.childs (2))); depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1), p.a.state.childs (2))); end if; elsif Intersect (p.a.volume, p.b.volume) then if p.a.isinternal then if p.b.isinternal then depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1), p.b.state.childs (1))); depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2), p.b.state.childs (1))); depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1), p.b.state.childs (2))); depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2), p.b.state.childs (2))); else depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (1), p.b)); depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a.state.childs (2), p.b)); end if; else if p.b.isinternal then depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a, p.b.state.childs (1))); depth := depth + 1; Self.m_stkStack.replace_Element (depth, sStkNN'(p.a, p.b.state.childs (2))); else policy.Process (p.a, p.b); end if; end if; end if; exit when depth = 0; end; end loop; end if; end collideTTpersistentStack; procedure collideTV (Self : in Item; root : access Node'Class; vol : in Volume'Class; policy : access ICollide 'Class) is pragma Unreferenced (Self); begin if root /= null then declare use Node_Vectors; volume : constant bounding_volume_Tree.Volume'Class := vol; stack : Node_Vector; -- btAlignedObjectArray<const Node*> ; begin stack.clear; stack.reserve_Capacity (SIMPLE_STACKSIZE); stack.append (root.all'Access); loop declare use type ada.containers.Count_type; n : constant access Node := stack.last_Element; begin stack.delete_Last; if Intersect (n.volume, volume) then if n.isinternal then stack.append (n.state.childs (1)); stack.append (n.state.childs (2)); else policy.Process (n); end if; end if; exit when stack.Length = 0; end; end loop; end; end if; end collideTV; procedure rayTest (root : access Node; rayFrom, rayTo : in math.Vector_3; policy : access ICollide'Class) is use impact.d3.Vector, Math; COMPARE_BTRAY_AABB2 : constant Boolean := True; rayDir : math.Vector_3; rayDirectionInverse : math.vector_3; begin if root /= null then rayDir := Normalized (rayTo - rayFrom); --- what about division by zero? --> just set rayDirection[i] to INF/BT_LARGE_FLOAT -- if rayDir (1) = 0.0 then rayDirectionInverse (1) := BT_LARGE_FLOAT; else rayDirectionInverse (1) := 1.0 / rayDir (1); end if; if rayDir (2) = 0.0 then rayDirectionInverse (2) := BT_LARGE_FLOAT; else rayDirectionInverse (2) := 1.0 / rayDir (2); end if; if rayDir (3) = 0.0 then rayDirectionInverse (3) := BT_LARGE_FLOAT; else rayDirectionInverse (3) := 1.0 / rayDir (3); end if; declare signs : constant impact.d3.aabb_Util.Signs := (Boolean'Pos (rayDirectionInverse (1) < 0.0), Boolean'Pos (rayDirectionInverse (2) < 0.0), Boolean'Pos (rayDirectionInverse (3) < 0.0)); lambda_max : math.Real := dot (rayDir, rayTo - rayFrom); resultNormal : aliased math.vector_3; stack : Node_Vector; depth : Integer := 1; threshold : Integer := DOUBLE_STACKSIZE - 2; bounds : impact.d3.aabb_Util.Bounds; begin stack.set_Length (DOUBLE_STACKSIZE); stack.replace_Element (1, root.all'Access); loop declare use impact.d3.aabb_Util; use type ada.Containers.Count_type; node : constant access bounding_volume_Tree.Node := stack.Element (depth); tmin : aliased math.Real := 1.0; lambda_min : constant math.Real := 0.0; result1 : Boolean; begin depth := depth - 1; bounds (1) := node.volume.Mins; bounds (2) := node.volume.Maxs; result1 := btRayAabb2 (rayFrom, rayDirectionInverse, signs, bounds, tmin'Access, lambda_min, lambda_max); if COMPARE_BTRAY_AABB2 then declare param : aliased math.Real := 1.0; result2 : constant Boolean := btRayAabb (rayFrom, rayTo, node.volume.Mins, node.volume.Maxs, param 'Access, resultNormal'Access); pragma Assert (result1 = result2); begin null; end; end if; if result1 then if node.isinternal then if depth > threshold then stack.set_Length (stack.Length * 2); threshold := Integer (stack.Length - 2); end if; depth := depth + 1; stack.replace_Element (depth, node.state.childs (1)); depth := depth + 1; stack.replace_Element (depth, node.state.childs (2)); else policy.Process (node); end if; end if; exit when depth = 0; end; end loop; end; end if; end rayTest; procedure rayTestInternal (Self : in out Item; root : access Node'Class; rayFrom, rayTo, rayDirectionInverse : in math.Vector_3; signs : in impact.d3.aabb_Util.Signs; lambda_max : in math.Real; aabbMin, aabbMax : in math.Vector_3; policy : access ICollide'Class) is pragma Unreferenced (Self, rayTo); begin if root /= null then declare -- resultNormal : math.Vector_3; depth : Integer := 1; threshold : Integer := DOUBLE_STACKSIZE - 2; stack : Node_Vector; bounds : Vector_3_array (1 .. 2); begin stack.set_Length (DOUBLE_STACKSIZE); stack.replace_Element (1, root.all'Access); loop declare use impact.d3.aabb_Util, Math; use type ada.containers.Count_type; node : constant access bounding_volume_Tree.Node := stack.Element (depth); tmin : aliased math.Real := 1.0; lambda_min : constant math.Real := 0.0; result1 : Boolean := False; begin depth := depth - 1; bounds (1) := node.volume.Mins - aabbMax; bounds (2) := node.volume.Maxs - aabbMin; result1 := btRayAabb2 (rayFrom, rayDirectionInverse, signs, bounds, tmin'Access, lambda_min, lambda_max); if result1 then if node.isinternal then if depth > threshold then stack.set_Length (stack.Length * 2); threshold := Integer (stack.Length) - 2; end if; depth := depth + 1; stack.replace_Element (depth, node.state.childs (1)); depth := depth + 1; stack.replace_Element (depth, node.state.childs (2)); else policy.Process (node); end if; end if; exit when depth = 0; end; end loop; end; end if; end rayTestInternal; -- Helpers -- function nearest (i : in Integer_Vector; a : in sStkNPS_Vector; v : in math.Real; the_l, the_h : in Integer) return Integer is l : Integer := the_l; h : Integer := the_h; m : Integer := 0; begin while l < h loop m := (l + h) / 2; if a.Element (i.Element (m)).value >= v then l := m + 1; else h := m; end if; end loop; return h; end nearest; function allocate (ifree : access Integer_Vector; stock : access sStkNPS_Vector; value : in sStkNPS ) return Integer is use type ada.containers.Count_Type; i : Integer; begin if ifree.Length > 0 then i := ifree.last_Element; ifree.delete_Last; stock.replace_Element (i, value); else stock.append (value); i := Integer (stock.Length); end if; return i; end allocate; --- Collide operations -- procedure collideKDOP (root : access Node; normals : in Vector_3_array; offsets : in math.Vector; count : in Integer; policy : access ICollide'Class) is begin if root /= null then declare use Interfaces; use type Flags; inside : constant Flags := 2**count - 1; stack : sStkNP_Vector; signs : array (1 .. Unsigned_32'Size * 8 * 8) of Integer; pragma Assert (count < Integer ((signs'Size / 8) / (signs (1)'Size / 8))); begin for i in 1 .. count loop declare N_x, N_y, N_z : Unsigned_32; begin if normals (i) (1) >= 0.0 then N_x := 1; else N_x := 0; end if; if normals (i) (2) >= 0.0 then N_y := 2; else N_y := 0; end if; if normals (i) (3) >= 0.0 then N_z := 4; else N_z := 0; end if; signs (i) := Integer (N_x + N_y + N_z); end; end loop; stack.reserve_Capacity (SIMPLE_STACKSIZE); stack.append (sStkNP'(root, 0)); loop declare use type Flags, ada.containers.Count_type; se : sStkNP := stack.last_Element; the_out : Boolean := False; side : Integer; i : Integer; j : Flags; begin stack.delete_Last; i := 1; j := 2; while not the_out and then i <= count loop if 0 = (se.mask and j) then side := se.node.volume.Classify (normals (i), offsets (i), signs (i)); case side is when -1 => the_out := True; when +1 => se.mask := se.mask or j; when others => raise Program_Error; end case; end if; i := i + 1; j := j * 2; end loop; if not the_out then if (se.mask /= inside) and then (se.node.isinternal) then stack.append (sStkNP '(se.node.state.childs (1), se.mask)); stack.append (sStkNP '(se.node.state.childs (2), se.mask)); else if policy.Allleaves (se.node.all) then enumleaves (se.node, policy); end if; end if; end if; exit when stack.Length = 0; end; end loop; end; end if; end collideKDOP; procedure collideOCL (root : access Node; normals : in Vector_3_array; offsets : in math.Vector; sortaxis : in math.Vector_3; count : in Integer; policy : access ICollide'Class; fullsort : in Boolean := True) is begin if root /= null then declare use Interfaces; use type Flags; SA_x, SA_y, SA_z : Unsigned_32; pragma Unreferenced (SA_y, SA_z); srtsgns : Unsigned_32; inside : constant Flags := 2**count - 1; stock : aliased sStkNPS_Vector; ifree : aliased Integer_Vector; stack : aliased Integer_Vector; signs : math.Integers (1 .. Unsigned_32'Size * 8 * 8); pragma Assert (count < Integer ((signs'Size / 8) / (signs (1)'Size / 8))); begin if sortaxis (1) >= 0.0 then SA_x := 1; else SA_x := 0; end if; if sortaxis (2) >= 0.0 then SA_y := 2; else SA_y := 0; end if; if sortaxis (3) >= 0.0 then SA_z := 4; else SA_z := 0; end if; srtsgns := SA_x + SA_x + SA_x; for i in 1 .. count loop declare N_x, N_y, N_z : Unsigned_32; begin if normals (i) (1) >= 0.0 then N_x := 1; else N_x := 0; end if; if normals (i) (2) >= 0.0 then N_y := 2; else N_y := 0; end if; if normals (i) (3) >= 0.0 then N_z := 4; else N_z := 0; end if; signs (i) := Integer (N_x + N_y + N_z); end; end loop; stock.reserve_Capacity (SIMPLE_STACKSIZE); stack.reserve_Capacity (SIMPLE_STACKSIZE); ifree.reserve_Capacity (SIMPLE_STACKSIZE); stack.append (allocate (ifree'Access, stock'Access, sStkNPS'(root, 0, root.volume.ProjectMinimum (sortaxis, srtsgns)))); loop declare use type Flags, ada.containers.Count_type; id : constant Integer := stack.last_Element; se : sStkNPS := stock.Element (id); the_out : Boolean; i : Integer; j : Flags; side : Integer; continue_required : Boolean := False; begin stack.delete_Last; ifree.append (id); if se.mask /= inside then the_out := False; end if; i := 1; j := 2; while not the_out and then i <= count loop if (se.mask and j) = 0 then side := se.node.volume.Classify (normals (i), offsets (i), signs (i)); case side is when -1 => the_out := True; when +1 => se.mask := se.mask or j; when others => raise Program_Error; end case; end if; i := i + 1; j := j * 2; end loop; if the_out then continue_required := True; end if; if not continue_required then if policy.Descent (se.node.all) then if se.node.isinternal then declare pns : Node_views := (se.node.state.childs (1), se.node.state.childs (2)); nes : array (Positive range <>) of sStkNPS := (sStkNPS'(pns (1), se.mask, pns (1).volume.ProjectMinimum (sortaxis, srtsgns)), sStkNPS'(pns (2), se.mask, pns (2).volume.ProjectMinimum (sortaxis, srtsgns))); q : Integer; j : Integer := Integer (stack.Length); k : Integer; begin if nes (1).value < nes (2).value then q := 1; else q := 0; end if; if fullsort and then j > 0 then -- Insert 0 -- j := nearest (stack, stock, nes (q).value, 0, Integer (stack.Length)); stack.append (0); k := Integer (stack.Length) - 1; while k > j loop stack.replace_Element (k, stack.Element (k - 1)); k := k - 1; end loop; stack.replace_Element (j, allocate (ifree'Access, stock'Access, nes (q))); -- Insert 1 -- j := nearest (stack, stock, nes (1-q).value, j, Integer (stack.Length)); stack.append (0); k := Integer (stack.Length) - 1; while k > j loop stack.replace_Element (k, stack.Element (k - 1)); k := k - 1; end loop; stack.replace_Element (j, allocate (ifree'Access, stock'Access, nes (1-q))); else stack.append (allocate (ifree'Access, stock'Access, nes (q))); stack.append (allocate (ifree'Access, stock'Access, nes (1-q))); end if; end; else policy.Process (se.node, se.value); end if; end if; end if; exit when stack.Length = 0; end; end loop; end; end if; end collideOCL; procedure collideTU (root : access Node; policy : access ICollide'Class) is begin if root /= null then declare use type ada.containers.Count_type; stack : Node_Vector; n : access Node; begin stack.reserve_Capacity (SIMPLE_STACKSIZE); stack.append (root.all'Access); loop n := stack.last_Element; stack.delete_Last; if policy.Descent (n.all) then if n.isinternal then stack.append (n.state.childs (1)); stack.append (n.state.childs (2)); else policy.Process (n); end if; end if; exit when stack.Length = 0; end loop; end; end if; end collideTU; procedure AddSpan (Self : in AabbMm; d : in math.Vector_3; smi, smx : in out math.Real) is begin for i in 1 .. 3 loop if d (i) < 0.0 then smi := smi + Self.mx (i) * d (i); smx := smx + Self.mi (i) * d (i); else smi := smi + Self.mi (i) * d (i); smx := smx + Self.mx (i) * d (i); end if; end loop; end AddSpan; function Root (Self : in Item) return Node_view is begin return Self.m_root; end Root; function leaves (Self : in Item) return Integer is begin return Self.m_leaves; end leaves; end impact.d3.collision.bounding_volume_Tree;
-- Copyright 2008, 2009, 2010, 2011 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Pck is package First is IntegerVar : Integer := 48; end First; package Second is IntegerVar : Integer := 74; end Second; procedure Do_Nothing (Val : in out Integer); end Pck;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 3 7 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 37 package System.Pack_37 is pragma Preelaborate; Bits : constant := 37; type Bits_37 is mod 2 ** Bits; for Bits_37'Size use Bits; function Get_37 (Arr : System.Address; N : Natural) return Bits_37; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_37 (Arr : System.Address; N : Natural; E : Bits_37); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_37;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- package body Program.Nodes.Block_Statements is function Create (Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Colon_Token : Program.Lexical_Elements .Lexical_Element_Access; Declare_Token : Program.Lexical_Elements .Lexical_Element_Access; Declarations : Program.Element_Vectors.Element_Vector_Access; Begin_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; Exception_Token : Program.Lexical_Elements .Lexical_Element_Access; Exception_Handlers : Program.Elements.Exception_Handlers .Exception_Handler_Vector_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; End_Statement_Identifier : Program.Elements.Identifiers.Identifier_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Block_Statement is begin return Result : Block_Statement := (Statement_Identifier => Statement_Identifier, Colon_Token => Colon_Token, Declare_Token => Declare_Token, Declarations => Declarations, Begin_Token => Begin_Token, Statements => Statements, Exception_Token => Exception_Token, Exception_Handlers => Exception_Handlers, End_Token => End_Token, End_Statement_Identifier => End_Statement_Identifier, Semicolon_Token => Semicolon_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Declarations : Program.Element_Vectors.Element_Vector_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; Exception_Handlers : Program.Elements.Exception_Handlers .Exception_Handler_Vector_Access; End_Statement_Identifier : Program.Elements.Identifiers.Identifier_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Block_Statement is begin return Result : Implicit_Block_Statement := (Statement_Identifier => Statement_Identifier, Declarations => Declarations, Statements => Statements, Exception_Handlers => Exception_Handlers, End_Statement_Identifier => End_Statement_Identifier, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Statement_Identifier (Self : Base_Block_Statement) return Program.Elements.Defining_Identifiers .Defining_Identifier_Access is begin return Self.Statement_Identifier; end Statement_Identifier; overriding function Declarations (Self : Base_Block_Statement) return Program.Element_Vectors.Element_Vector_Access is begin return Self.Declarations; end Declarations; overriding function Statements (Self : Base_Block_Statement) return not null Program.Element_Vectors.Element_Vector_Access is begin return Self.Statements; end Statements; overriding function Exception_Handlers (Self : Base_Block_Statement) return Program.Elements.Exception_Handlers .Exception_Handler_Vector_Access is begin return Self.Exception_Handlers; end Exception_Handlers; overriding function End_Statement_Identifier (Self : Base_Block_Statement) return Program.Elements.Identifiers.Identifier_Access is begin return Self.End_Statement_Identifier; end End_Statement_Identifier; overriding function Colon_Token (Self : Block_Statement) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Colon_Token; end Colon_Token; overriding function Declare_Token (Self : Block_Statement) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Declare_Token; end Declare_Token; overriding function Begin_Token (Self : Block_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Begin_Token; end Begin_Token; overriding function Exception_Token (Self : Block_Statement) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Exception_Token; end Exception_Token; overriding function End_Token (Self : Block_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.End_Token; end End_Token; overriding function Semicolon_Token (Self : Block_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Semicolon_Token; end Semicolon_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Block_Statement) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Block_Statement) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Block_Statement) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : in out Base_Block_Statement'Class) is begin if Self.Statement_Identifier.Assigned then Set_Enclosing_Element (Self.Statement_Identifier, Self'Unchecked_Access); end if; for Item in Self.Declarations.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; for Item in Self.Statements.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; for Item in Self.Exception_Handlers.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; if Self.End_Statement_Identifier.Assigned then Set_Enclosing_Element (Self.End_Statement_Identifier, Self'Unchecked_Access); end if; null; end Initialize; overriding function Is_Block_Statement (Self : Base_Block_Statement) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Block_Statement; overriding function Is_Statement (Self : Base_Block_Statement) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Statement; overriding procedure Visit (Self : not null access Base_Block_Statement; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Block_Statement (Self); end Visit; overriding function To_Block_Statement_Text (Self : in out Block_Statement) return Program.Elements.Block_Statements.Block_Statement_Text_Access is begin return Self'Unchecked_Access; end To_Block_Statement_Text; overriding function To_Block_Statement_Text (Self : in out Implicit_Block_Statement) return Program.Elements.Block_Statements.Block_Statement_Text_Access is pragma Unreferenced (Self); begin return null; end To_Block_Statement_Text; end Program.Nodes.Block_Statements;
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with GL.Enums.Getter; with GL.API; package body GL.Fixed.Lighting is use type Toggles.Toggle_State; Light_Model_Enabled : aliased constant Int := 1; Light_Model_Disabled : aliased constant Int := 0; function Light (Index : Light_Index) return Light_Object is begin return Light_Object'(Identifier => Toggles.Toggle'Val ( Toggles.Toggle'Pos (Toggles.Light0) + Index)); end Light; procedure Enable_Lighting is begin Toggles.Enable (Toggles.Lighting); end Enable_Lighting; procedure Disable_Lighting is begin Toggles.Disable (Toggles.Lighting); end Disable_Lighting; function Lighting_Enabled return Boolean is begin return Toggles.State (Toggles.Lighting) = Toggles.Enabled; end Lighting_Enabled; procedure Enable_Local_Viewer is begin API.Light_Model_Toggles (Enums.Local_Viewer, Light_Model_Enabled'Access); Raise_Exception_On_OpenGL_Error; end Enable_Local_Viewer; procedure Disable_Local_Viewer is begin API.Light_Model_Toggles (Enums.Local_Viewer, Light_Model_Disabled'Access); Raise_Exception_On_OpenGL_Error; end Disable_Local_Viewer; function Local_Viewer_Enabled return Boolean is Value : aliased Low_Level.Bool; begin API.Get_Boolean (Enums.Getter.Light_Model_Local_Viewer, Value'Access); Raise_Exception_On_OpenGL_Error; return Boolean (Value); end Local_Viewer_Enabled; procedure Enable_Two_Side is begin API.Light_Model_Toggles (Enums.Two_Side, Light_Model_Enabled'Access); Raise_Exception_On_OpenGL_Error; end Enable_Two_Side; procedure Disable_Two_Side is begin API.Light_Model_Toggles (Enums.Two_Side, Light_Model_Disabled'Access); Raise_Exception_On_OpenGL_Error; end Disable_Two_Side; function Two_Side_Enabled return Boolean is Value : aliased Low_Level.Bool; begin API.Get_Boolean (Enums.Getter.Light_Model_Two_Side, Value'Access); Raise_Exception_On_OpenGL_Error; return Boolean (Value); end Two_Side_Enabled; procedure Set_Global_Ambient_Light (Value : Colors.Color) is begin API.Light_Model_Color (Enums.Ambient, Value); Raise_Exception_On_OpenGL_Error; end Set_Global_Ambient_Light; function Global_Ambient_Light return Colors.Color is Value : Colors.Color; begin API.Get_Color (Enums.Getter.Light_Model_Ambient, Value); Raise_Exception_On_OpenGL_Error; return Value; end Global_Ambient_Light; procedure Set_Color_Control (Value : Color_Control) is Aliased_Value : aliased constant Color_Control := Value; begin API.Light_Model_Color_Control (Enums.Color_Control, Aliased_Value'Access); Raise_Exception_On_OpenGL_Error; end Set_Color_Control; function Current_Color_Control return Color_Control is Value : aliased Color_Control; begin API.Get_Color_Control (Enums.Getter.Light_Model_Color_Control, Value'Access); Raise_Exception_On_OpenGL_Error; return Value; end Current_Color_Control; procedure Set_Shade_Model (Value : Shade_Model) is begin API.Shade_Model (Value); Raise_Exception_On_OpenGL_Error; end Set_Shade_Model; function Current_Shade_Model return Shade_Model is Value : aliased Shade_Model; begin API.Get_Shade_Model (Enums.Getter.Shade_Model, Value'Access); Raise_Exception_On_OpenGL_Error; return Value; end Current_Shade_Model; procedure Enable (Source : Light_Object) is begin Toggles.Enable (Source.Identifier); end Enable; procedure Disable (Source : Light_Object) is begin Toggles.Disable (Source.Identifier); end Disable; function Enabled (Source : Light_Object) return Boolean is begin return Toggles.State (Source.Identifier) = Toggles.Enabled; end Enabled; procedure Set_Ambient (Source : Light_Object; Color : Colors.Color) is begin API.Light_Color (Source.Identifier, Enums.Ambient, Color); Raise_Exception_On_OpenGL_Error; end Set_Ambient; function Ambient (Source : Light_Object) return Colors.Color is Value : Colors.Color; begin API.Get_Light_Color (Source.Identifier, Enums.Ambient, Value); Raise_Exception_On_OpenGL_Error; return Value; end Ambient; procedure Set_Diffuse (Source : Light_Object; Color : Colors.Color) is begin API.Light_Color (Source.Identifier, Enums.Diffuse, Color); Raise_Exception_On_OpenGL_Error; end Set_Diffuse; function Diffuse (Source : Light_Object) return Colors.Color is Value : Colors.Color; begin API.Get_Light_Color (Source.Identifier, Enums.Diffuse, Value); Raise_Exception_On_OpenGL_Error; return Value; end Diffuse; procedure Set_Specular (Source : Light_Object; Color : Colors.Color) is begin API.Light_Color (Source.Identifier, Enums.Specular, Color); Raise_Exception_On_OpenGL_Error; end Set_Specular; function Specular (Source : Light_Object) return Colors.Color is Value : Colors.Color; begin API.Get_Light_Color (Source.Identifier, Enums.Specular, Value); Raise_Exception_On_OpenGL_Error; return Value; end Specular; procedure Set_Position (Source : Light_Object; Position : Types.Singles.Vector4) is begin API.Light_Position (Source.Identifier, Enums.Position, Position); Raise_Exception_On_OpenGL_Error; end Set_Position; function Position (Source : Light_Object) return Types.Singles.Vector4 is Value : Types.Singles.Vector4; begin API.Get_Light_Position (Source.Identifier, Enums.Position, Value); Raise_Exception_On_OpenGL_Error; return Value; end Position; procedure Set_Spot_Direction (Source : Light_Object; Direction : Types.Singles.Vector3) is begin API.Light_Direction (Source.Identifier, Enums.Spot_Direction, Direction); Raise_Exception_On_OpenGL_Error; end Set_Spot_Direction; function Spot_Direction (Source : Light_Object) return Types.Singles.Vector3 is Value : Singles.Vector3; begin API.Get_Light_Direction (Source.Identifier, Enums.Spot_Direction, Value); Raise_Exception_On_OpenGL_Error; return Value; end Spot_Direction; end GL.Fixed.Lighting;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>my_prj</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>x_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>x_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>x_2_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[2].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>x_3_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[3].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>x_4_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>x[4].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>score_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>score[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>score_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>score[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>tree_scores_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tree_scores.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>4</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_9"> <Value> <Obj> <type>0</type> <id>19</id> <name>x_0_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second class_id="11" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>46</item> <item>47</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>20</id> <name>x_1_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>48</item> <item>49</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>21</id> <name>x_2_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>50</item> <item>51</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>22</id> <name>x_3_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>52</item> <item>53</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>23</id> <name>x_4_V_read</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>54</item> <item>55</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>57</item> <item>59</item> <item>61</item> <item>63</item> <item>65</item> <item>66</item> <item>67</item> <item>69</item> <item>71</item> <item>73</item> <item>75</item> <item>77</item> <item>79</item> <item>81</item> <item>83</item> <item>84</item> <item>85</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>98</item> <item>100</item> <item>102</item> <item>104</item> <item>106</item> <item>108</item> <item>110</item> <item>112</item> <item>113</item> <item>114</item> <item>116</item> <item>118</item> <item>120</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>127</item> <item>128</item> <item>129</item> <item>131</item> <item>132</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>25</id> <name>tree_scores_V_addr</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>141</item> <item>143</item> <item>144</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name>tree_scores_V_addr_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>145</item> <item>146</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.59</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>27</id> <name>tmp_72_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>152</item> <item>153</item> <item>154</item> <item>156</item> <item>158</item> <item>160</item> <item>162</item> <item>164</item> <item>166</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>193</item> <item>194</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>208</item> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>28</id> <name>tree_scores_V_addr_1</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>215</item> <item>216</item> <item>218</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>29</id> <name>tree_scores_V_addr_1_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>219</item> <item>220</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.59</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_73_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</item> <item>224</item> <item>226</item> <item>227</item> <item>228</item> <item>229</item> <item>231</item> <item>233</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> <item>241</item> <item>243</item> <item>244</item> <item>245</item> <item>246</item> <item>247</item> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> <item>266</item> <item>268</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>31</id> <name>tree_scores_V_addr_2</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>285</item> <item>286</item> <item>288</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>32</id> <name>tree_scores_V_addr_2_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>289</item> <item>290</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.59</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_74_i</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>126</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>56</count> <item_version>0</item_version> <item>291</item> <item>292</item> <item>293</item> <item>294</item> <item>295</item> <item>296</item> <item>297</item> <item>299</item> <item>301</item> <item>303</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> <item>310</item> <item>312</item> <item>313</item> <item>314</item> <item>315</item> <item>316</item> <item>317</item> <item>318</item> <item>319</item> <item>320</item> <item>321</item> <item>322</item> <item>323</item> <item>324</item> <item>326</item> <item>328</item> <item>329</item> <item>330</item> <item>331</item> <item>332</item> <item>333</item> <item>334</item> <item>335</item> <item>336</item> <item>337</item> <item>338</item> <item>340</item> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> <item>347</item> <item>348</item> <item>349</item> <item>350</item> <item>351</item> <item>352</item> <item>353</item> <item>354</item> <item>355</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.31</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>34</id> <name>add_ln703</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>127</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>356</item> <item>357</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>35</id> <name>add_ln703_1</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>127</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>358</item> <item>359</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.58</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>36</id> <name>add_ln703_2</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>127</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>360</item> <item>361</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.68</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>37</id> <name>tree_scores_V_addr_3</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>362</item> <item>363</item> <item>365</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>38</id> <name>tree_scores_V_addr_3_write_ln128</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>128</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>366</item> <item>367</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.59</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>39</id> <name>sext_ln1118</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>132</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>368</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>40</id> <name>mul_ln1118</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>132</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>369</item> <item>371</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.53</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>41</id> <name>trunc_ln</name> <fileName>firmware/BDT.h</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>decision_function</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>firmware/BDT.h</first> <second>decision_function</second> </first> <second>132</second> </item> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>373</item> <item>374</item> <item>376</item> <item>378</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>42</id> <name>score_0_V_write_ln9</name> <fileName>firmware/my_prj.cpp</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>9</lineNumber> <contextFuncName>my_prj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>9</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>380</item> <item>381</item> <item>382</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>43</id> <name>_ln10</name> <fileName>firmware/my_prj.cpp</fileName> <fileDirectory>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</fileDirectory> <lineNumber>10</lineNumber> <contextFuncName>my_prj</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/afs/cern.ch/user/a/addropul/CMSSW_10_6_0_pre4/src/L1Trigger/Run3Ntuplizer/test/conifer/prj_239749</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>firmware/my_prj.cpp</first> <second>my_prj</second> </first> <second>10</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>65</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_34"> <Value> <Obj> <type>2</type> <id>56</id> <name>decision_function</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:decision_function&gt;</content> </item> <item class_id_reference="16" object_id="_35"> <Value> <Obj> <type>2</type> <id>58</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>60</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_37"> <Value> <Obj> <type>2</type> <id>62</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>14</content> </item> <item class_id_reference="16" object_id="_38"> <Value> <Obj> <type>2</type> <id>64</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_39"> <Value> <Obj> <type>2</type> <id>68</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>68198</content> </item> <item class_id_reference="16" object_id="_40"> <Value> <Obj> <type>2</type> <id>70</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>10870</content> </item> <item class_id_reference="16" object_id="_41"> <Value> <Obj> <type>2</type> <id>72</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>113900</content> </item> <item class_id_reference="16" object_id="_42"> <Value> <Obj> <type>2</type> <id>74</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>74137</content> </item> <item class_id_reference="16" object_id="_43"> <Value> <Obj> <type>2</type> <id>76</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>84873</content> </item> <item class_id_reference="16" object_id="_44"> <Value> <Obj> <type>2</type> <id>78</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>66094</content> </item> <item class_id_reference="16" object_id="_45"> <Value> <Obj> <type>2</type> <id>80</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_46"> <Value> <Obj> <type>2</type> <id>82</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>713</content> </item> <item class_id_reference="16" object_id="_47"> <Value> <Obj> <type>2</type> <id>86</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1334</content> </item> <item class_id_reference="16" object_id="_48"> <Value> <Obj> <type>2</type> <id>97</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_49"> <Value> <Obj> <type>2</type> <id>99</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_50"> <Value> <Obj> <type>2</type> <id>101</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_51"> <Value> <Obj> <type>2</type> <id>103</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_52"> <Value> <Obj> <type>2</type> <id>105</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_53"> <Value> <Obj> <type>2</type> <id>107</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>109</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>111</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_56"> <Value> <Obj> <type>2</type> <id>115</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>13</content> </item> <item class_id_reference="16" object_id="_57"> <Value> <Obj> <type>2</type> <id>117</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_58"> <Value> <Obj> <type>2</type> <id>119</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>121</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>126</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_61"> <Value> <Obj> <type>2</type> <id>130</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>133</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>142</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>151</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>155</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>97689</content> </item> <item class_id_reference="16" object_id="_66"> <Value> <Obj> <type>2</type> <id>157</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>68253</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>159</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>258382</content> </item> <item class_id_reference="16" object_id="_68"> <Value> <Obj> <type>2</type> <id>161</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>99132</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>163</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>73201</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>165</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>260096</content> </item> <item class_id_reference="16" object_id="_71"> <Value> <Obj> <type>2</type> <id>167</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>479</content> </item> <item class_id_reference="16" object_id="_72"> <Value> <Obj> <type>2</type> <id>172</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1568</content> </item> <item class_id_reference="16" object_id="_73"> <Value> <Obj> <type>2</type> <id>185</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_74"> <Value> <Obj> <type>2</type> <id>195</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_75"> <Value> <Obj> <type>2</type> <id>207</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_76"> <Value> <Obj> <type>2</type> <id>217</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_77"> <Value> <Obj> <type>2</type> <id>225</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>30</content> </item> <item class_id_reference="16" object_id="_78"> <Value> <Obj> <type>2</type> <id>230</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>79124</content> </item> <item class_id_reference="16" object_id="_79"> <Value> <Obj> <type>2</type> <id>232</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>142354</content> </item> <item class_id_reference="16" object_id="_80"> <Value> <Obj> <type>2</type> <id>234</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_81"> <Value> <Obj> <type>2</type> <id>240</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>392</content> </item> <item class_id_reference="16" object_id="_82"> <Value> <Obj> <type>2</type> <id>242</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1655</content> </item> <item class_id_reference="16" object_id="_83"> <Value> <Obj> <type>2</type> <id>267</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_84"> <Value> <Obj> <type>2</type> <id>269</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_85"> <Value> <Obj> <type>2</type> <id>287</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>298</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>5443</content> </item> <item class_id_reference="16" object_id="_87"> <Value> <Obj> <type>2</type> <id>300</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>126350</content> </item> <item class_id_reference="16" object_id="_88"> <Value> <Obj> <type>2</type> <id>302</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>260810</content> </item> <item class_id_reference="16" object_id="_89"> <Value> <Obj> <type>2</type> <id>304</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <const_type>0</const_type> <content>256035</content> </item> <item class_id_reference="16" object_id="_90"> <Value> <Obj> <type>2</type> <id>309</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>318</content> </item> <item class_id_reference="16" object_id="_91"> <Value> <Obj> <type>2</type> <id>311</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1729</content> </item> <item class_id_reference="16" object_id="_92"> <Value> <Obj> <type>2</type> <id>325</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_93"> <Value> <Obj> <type>2</type> <id>327</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_94"> <Value> <Obj> <type>2</type> <id>339</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_95"> <Value> <Obj> <type>2</type> <id>364</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_96"> <Value> <Obj> <type>2</type> <id>370</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <const_type>0</const_type> <content>550</content> </item> <item class_id_reference="16" object_id="_97"> <Value> <Obj> <type>2</type> <id>375</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_98"> <Value> <Obj> <type>2</type> <id>377</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>27</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_99"> <Obj> <type>3</type> <id>44</id> <name>my_prj</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>25</count> <item_version>0</item_version> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>263</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_100"> <id>47</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>49</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>51</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>53</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>55</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>57</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>59</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>63</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>65</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>66</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>67</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>69</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>71</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>73</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>75</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>79</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>81</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>83</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>84</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>85</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>87</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>88</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>89</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>90</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>91</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>92</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>93</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>94</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>95</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>96</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>98</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>100</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>104</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>108</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>110</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>113</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>114</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>116</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>120</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>122</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>123</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>124</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>125</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>127</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>128</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>129</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>132</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>134</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>135</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>136</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>137</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>138</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>139</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>140</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>141</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>143</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>144</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>145</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>146</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>147</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>148</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>149</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>150</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>152</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>153</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>154</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>156</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>158</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>160</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>162</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>164</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>166</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>168</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>169</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>170</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>171</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>173</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>174</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>175</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>176</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>177</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>178</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>179</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>180</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>181</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>182</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>183</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>184</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>186</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>187</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>188</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>189</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>190</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>191</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>192</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>193</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>194</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>196</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>197</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>198</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>199</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>200</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>201</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>202</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>203</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>204</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>205</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>206</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>208</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>209</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>210</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>211</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>212</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>213</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>214</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>215</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>216</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>218</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>219</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>220</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>221</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>222</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>223</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>224</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>226</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>227</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>228</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>229</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>231</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>233</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>235</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>236</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>237</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>238</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>239</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>241</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>243</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>244</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>245</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>246</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>247</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>248</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>249</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>250</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>251</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>252</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>253</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>254</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>255</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>256</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>257</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>258</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>259</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>260</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>261</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>262</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>263</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>264</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>265</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>266</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>268</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>270</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>271</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>272</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>273</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>274</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>275</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>276</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>277</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>278</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>279</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>280</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>281</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>282</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>283</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>284</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>285</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>286</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>288</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>289</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>290</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>291</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>292</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>293</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>294</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>295</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>296</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>297</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>299</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>301</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>303</id> <edge_type>1</edge_type> <source_obj>302</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>305</id> <edge_type>1</edge_type> <source_obj>304</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>306</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>307</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>308</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>310</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>312</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>313</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>314</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>315</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>316</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>317</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>318</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>319</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>320</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>321</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>322</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>323</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>324</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>326</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>328</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>329</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>330</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>331</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>332</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>333</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>334</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>335</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>336</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>337</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>338</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>340</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>341</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>342</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>343</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>344</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>345</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>346</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>347</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>348</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>349</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>350</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>351</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>352</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>353</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>354</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>355</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>356</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>357</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>358</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>359</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>360</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>361</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>362</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>363</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>365</id> <edge_type>1</edge_type> <source_obj>364</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>366</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>367</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>368</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>369</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>371</id> <edge_type>1</edge_type> <source_obj>370</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>374</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>376</id> <edge_type>1</edge_type> <source_obj>375</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>378</id> <edge_type>1</edge_type> <source_obj>377</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>381</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>382</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_363"> <mId>1</mId> <mTag>my_prj</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>44</item> </basic_blocks> <mII>2</mII> <mDepth>7</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>6</mMinLatency> <mMaxLatency>6</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>19</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>4</second> </second> </item> <item> <first>25</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>0</first> <second>4</second> </second> </item> <item> <first>28</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>1</first> <second>4</second> </second> </item> <item> <first>31</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>4</second> </second> </item> <item> <first>34</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>6</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>44</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>6</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_364"> <region_name>my_prj</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>44</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>2</interval> <pipe_depth>7</pipe_depth> </item> </regions> <dp_fu_nodes class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with Ada.Unchecked_Deallocation, Interfaces.C.Strings, System; use type Interfaces.C.int, Interfaces.C.Strings.chars_ptr, System.Address; package body FLTK.Widgets.Groups.Input_Choices is procedure input_choice_set_draw_hook (W, D : in System.Address); pragma Import (C, input_choice_set_draw_hook, "input_choice_set_draw_hook"); pragma Inline (input_choice_set_draw_hook); procedure input_choice_set_handle_hook (W, H : in System.Address); pragma Import (C, input_choice_set_handle_hook, "input_choice_set_handle_hook"); pragma Inline (input_choice_set_handle_hook); function new_fl_input_choice (X, Y, W, H : in Interfaces.C.int; Text : in Interfaces.C.char_array) return System.Address; pragma Import (C, new_fl_input_choice, "new_fl_input_choice"); pragma Inline (new_fl_input_choice); procedure free_fl_input_choice (W : in System.Address); pragma Import (C, free_fl_input_choice, "free_fl_input_choice"); pragma Inline (free_fl_input_choice); function fl_input_choice_input (N : in System.Address) return System.Address; pragma Import (C, fl_input_choice_input, "fl_input_choice_input"); pragma Inline (fl_input_choice_input); function fl_input_choice_menubutton (N : in System.Address) return System.Address; pragma Import (C, fl_input_choice_menubutton, "fl_input_choice_menubutton"); pragma Inline (fl_input_choice_menubutton); procedure fl_input_choice_clear (N : in System.Address); pragma Import (C, fl_input_choice_clear, "fl_input_choice_clear"); pragma Inline (fl_input_choice_clear); function fl_input_choice_changed (N : in System.Address) return Interfaces.C.int; pragma Import (C, fl_input_choice_changed, "fl_input_choice_changed"); pragma Inline (fl_input_choice_changed); procedure fl_input_choice_clear_changed (N : in System.Address); pragma Import (C, fl_input_choice_clear_changed, "fl_input_choice_clear_changed"); pragma Inline (fl_input_choice_clear_changed); procedure fl_input_choice_set_changed (N : in System.Address); pragma Import (C, fl_input_choice_set_changed, "fl_input_choice_set_changed"); pragma Inline (fl_input_choice_set_changed); function fl_input_choice_get_down_box (N : in System.Address) return Interfaces.C.int; pragma Import (C, fl_input_choice_get_down_box, "fl_input_choice_get_down_box"); pragma Inline (fl_input_choice_get_down_box); procedure fl_input_choice_set_down_box (N : in System.Address; T : in Interfaces.C.int); pragma Import (C, fl_input_choice_set_down_box, "fl_input_choice_set_down_box"); pragma Inline (fl_input_choice_set_down_box); function fl_input_choice_get_textcolor (N : in System.Address) return Interfaces.C.unsigned; pragma Import (C, fl_input_choice_get_textcolor, "fl_input_choice_get_textcolor"); pragma Inline (fl_input_choice_get_textcolor); procedure fl_input_choice_set_textcolor (N : in System.Address; T : in Interfaces.C.unsigned); pragma Import (C, fl_input_choice_set_textcolor, "fl_input_choice_set_textcolor"); pragma Inline (fl_input_choice_set_textcolor); function fl_input_choice_get_textfont (N : in System.Address) return Interfaces.C.int; pragma Import (C, fl_input_choice_get_textfont, "fl_input_choice_get_textfont"); pragma Inline (fl_input_choice_get_textfont); procedure fl_input_choice_set_textfont (N : in System.Address; T : in Interfaces.C.int); pragma Import (C, fl_input_choice_set_textfont, "fl_input_choice_set_textfont"); pragma Inline (fl_input_choice_set_textfont); function fl_input_choice_get_textsize (N : in System.Address) return Interfaces.C.int; pragma Import (C, fl_input_choice_get_textsize, "fl_input_choice_get_textsize"); pragma Inline (fl_input_choice_get_textsize); procedure fl_input_choice_set_textsize (N : in System.Address; T : in Interfaces.C.int); pragma Import (C, fl_input_choice_set_textsize, "fl_input_choice_set_textsize"); pragma Inline (fl_input_choice_set_textsize); function fl_input_choice_get_value (N : in System.Address) return Interfaces.C.Strings.chars_ptr; pragma Import (C, fl_input_choice_get_value, "fl_input_choice_get_value"); pragma Inline (fl_input_choice_get_value); procedure fl_input_choice_set_value (N : in System.Address; T : in Interfaces.C.char_array); pragma Import (C, fl_input_choice_set_value, "fl_input_choice_set_value"); pragma Inline (fl_input_choice_set_value); procedure fl_input_choice_set_value2 (N : in System.Address; T : in Interfaces.C.int); pragma Import (C, fl_input_choice_set_value2, "fl_input_choice_set_value2"); pragma Inline (fl_input_choice_set_value2); procedure fl_input_choice_draw (W : in System.Address); pragma Import (C, fl_input_choice_draw, "fl_input_choice_draw"); pragma Inline (fl_input_choice_draw); function fl_input_choice_handle (W : in System.Address; E : in Interfaces.C.int) return Interfaces.C.int; pragma Import (C, fl_input_choice_handle, "fl_input_choice_handle"); pragma Inline (fl_input_choice_handle); procedure Free is new Ada.Unchecked_Deallocation (INP.Input, Input_Access); procedure Free is new Ada.Unchecked_Deallocation (MB.Menu_Button, Menu_Button_Access); procedure Finalize (This : in out Input_Choice) is begin if This.Void_Ptr /= System.Null_Address and then This in Input_Choice'Class then Group (This).Clear; free_fl_input_choice (This.Void_Ptr); Free (This.My_Input); Free (This.My_Menu_Button); This.Void_Ptr := System.Null_Address; end if; Finalize (Group (This)); end Finalize; package body Forge is function Create (X, Y, W, H : in Integer; Text : in String) return Input_Choice is begin return This : Input_Choice do This.Void_Ptr := new_fl_input_choice (Interfaces.C.int (X), Interfaces.C.int (Y), Interfaces.C.int (W), Interfaces.C.int (H), Interfaces.C.To_C (Text)); fl_group_end (This.Void_Ptr); fl_widget_set_user_data (This.Void_Ptr, Widget_Convert.To_Address (This'Unchecked_Access)); input_choice_set_draw_hook (This.Void_Ptr, Draw_Hook'Address); input_choice_set_handle_hook (This.Void_Ptr, Handle_Hook'Address); This.My_Input := new INP.Input; Wrapper (This.My_Input.all).Void_Ptr := fl_input_choice_input (This.Void_Ptr); Wrapper (This.My_Input.all).Needs_Dealloc := False; This.My_Menu_Button := new MB.Menu_Button; Wrapper (This.My_Menu_Button.all).Void_Ptr := fl_input_choice_menubutton (This.Void_Ptr); Wrapper (This.My_Menu_Button.all).Needs_Dealloc := False; end return; end Create; end Forge; function Input (This : in out Input_Choice) return INP.Input_Reference is begin return (Data => This.My_Input); end Input; function Menu_Button (This : in out Input_Choice) return MB.Menu_Button_Reference is begin return (Data => This.My_Menu_Button); end Menu_Button; procedure Clear (This : in out Input_Choice) is begin fl_input_choice_clear (This.Void_Ptr); end Clear; function Has_Changed (This : in Input_Choice) return Boolean is begin return fl_input_choice_changed (This.Void_Ptr) /= 0; end Has_Changed; procedure Clear_Changed (This : in out Input_Choice) is begin fl_input_choice_clear_changed (This.Void_Ptr); end Clear_Changed; procedure Set_Changed (This : in out Input_Choice; To : in Boolean) is begin if To then fl_input_choice_set_changed (This.Void_Ptr); end if; end Set_Changed; function Get_Down_Box (This : in Input_Choice) return Box_Kind is begin return Box_Kind'Val (fl_input_choice_get_down_box (This.Void_Ptr)); end Get_Down_Box; procedure Set_Down_Box (This : in out Input_Choice; To : in Box_Kind) is begin fl_input_choice_set_down_box (This.Void_Ptr, Box_Kind'Pos (To)); end Set_Down_Box; function Get_Text_Color (This : in Input_Choice) return Color is begin return Color (fl_input_choice_get_textcolor (This.Void_Ptr)); end Get_Text_Color; procedure Set_Text_Color (This : in out Input_Choice; To : in Color) is begin fl_input_choice_set_textcolor (This.Void_Ptr, Interfaces.C.unsigned (To)); end Set_Text_Color; function Get_Text_Font (This : in Input_Choice) return Font_Kind is begin return Font_Kind'Val (fl_input_choice_get_textfont (This.Void_Ptr)); end Get_Text_Font; procedure Set_Text_Font (This : in out Input_Choice; To : in Font_Kind) is begin fl_input_choice_set_textfont (This.Void_Ptr, Font_Kind'Pos (To)); end Set_Text_Font; function Get_Text_Size (This : in Input_Choice) return Font_Size is begin return Font_Size (fl_input_choice_get_textsize (This.Void_Ptr)); end Get_Text_Size; procedure Set_Text_Size (This : in out Input_Choice; To : in Font_Size) is begin fl_input_choice_set_textsize (This.Void_Ptr, Interfaces.C.int (To)); end Set_Text_Size; function Get_Input (This : in Input_Choice) return String is Ptr : Interfaces.C.Strings.chars_ptr := fl_input_choice_get_value (This.Void_Ptr); begin if Ptr = Interfaces.C.Strings.Null_Ptr then return ""; else -- pointer to internal buffer so no free necessary return Interfaces.C.Strings.Value (Ptr); end if; end Get_Input; procedure Set_Input (This : in out Input_Choice; To : in String) is begin fl_input_choice_set_value (This.Void_Ptr, Interfaces.C.To_C (To)); end Set_Input; procedure Set_Item (This : in out Input_Choice; Num : in Integer) is begin fl_input_choice_set_value2 (This.Void_Ptr, Interfaces.C.int (Num)); end Set_Item; procedure Draw (This : in out Input_Choice) is begin fl_input_choice_draw (This.Void_Ptr); end Draw; function Handle (This : in out Input_Choice; Event : in Event_Kind) return Event_Outcome is begin return Event_Outcome'Val (fl_input_choice_handle (This.Void_Ptr, Event_Kind'Pos (Event))); end Handle; end FLTK.Widgets.Groups.Input_Choices;
with openGL.Primitive.indexed, openGL.Geometry.lit_colored, openGL.Model.hexagon; package body openGL.Model.Hexagon_Column.lit_colored_faceted is --------- --- Forge -- function new_hexagon_Column (Radius : in Real; Height : in Real; Upper, Lower : in hex_Face; Shaft : in shaft_Face) return View is Self : constant View := new Item; begin Self.Radius := Radius; Self.Height := Height; Self.upper_Face := Upper; Self.lower_Face := Lower; Self.Shaft := Shaft; return Self; end new_hexagon_Column; -------------- --- Attributes -- overriding function to_GL_Geometries (Self : access Item; Textures : access Texture.name_Map_of_texture'Class; Fonts : in Font.font_id_Map_of_font) return Geometry.views is pragma unreferenced (Fonts, Textures); use Geometry.lit_colored, Model.hexagon; shaft_Height : constant Real := Self.Height; height_Offset : constant Vector_3 := (0.0, shaft_Height / 2.0, 0.0); mid_Sites : constant hexagon.Sites := vertex_Sites (Self.Radius); upper_Sites : hexagon.Sites := mid_Sites; lower_Sites : hexagon.Sites := mid_Sites; function new_hexagon_Face (Vertices : access Geometry.lit_colored.Vertex_array; Flip : in Boolean := False) return Geometry.lit_colored.view is use Primitive; function the_Indices return Indices is begin if Flip then return (1, 7, 6, 5, 4, 3, 2, 7); else return (1, 2, 3, 4, 5, 6, 7, 2); end if; end the_Indices; the_Geometry : constant Geometry.lit_colored.view := Geometry.lit_colored.new_Geometry; the_Primitive : constant Primitive.indexed.view := Primitive.indexed.new_Primitive (triangle_Fan, the_Indices); begin the_Geometry.Vertices_are (Vertices.all); the_Geometry.add (Primitive.view (the_Primitive)); return the_Geometry; end new_hexagon_Face; function new_shaft_Face (Vertices : access Geometry.lit_colored.Vertex_array) return Geometry.lit_colored.view is use Primitive; the_Indices : constant Indices := (1, 2, 3, 4); the_Geometry : constant Geometry.lit_colored.view := Geometry.lit_colored.new_Geometry; the_Primitive : constant Primitive.view := Primitive.indexed.new_Primitive (triangle_Strip, the_Indices).all'Access; begin the_Geometry.Vertices_are (Vertices.all); the_Geometry.add (the_Primitive); return the_Geometry; end new_shaft_Face; upper_Face : Geometry.lit_colored.view; lower_Face : Geometry.lit_colored.view; shaft_Faces : array (1 .. 6) of Geometry.lit_colored.view; begin for Each in mid_Sites'Range loop upper_Sites (Each) := upper_Sites (Each) + height_Offset; lower_Sites (Each) := lower_Sites (Each) - height_Offset; end loop; -- Upper -- declare the_Vertices : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => height_Offset, Normal => Normal, Color => +Self.upper_Face.center_Color, Shine => default_Shine), 2 => (Site => upper_Sites (1), Normal => Normal, Color => +Self.upper_Face.Colors (1), Shine => default_Shine), 3 => (Site => upper_Sites (2), Normal => Normal, Color => +Self.upper_Face.Colors (2), Shine => default_Shine), 4 => (Site => upper_Sites (3), Normal => Normal, Color => +Self.upper_Face.Colors (3), Shine => default_Shine), 5 => (Site => upper_Sites (4), Normal => Normal, Color => +Self.upper_Face.Colors (4), Shine => default_Shine), 6 => (Site => upper_Sites (5), Normal => Normal, Color => +Self.upper_Face.Colors (5), Shine => default_Shine), 7 => (Site => upper_Sites (6), Normal => Normal, Color => +Self.upper_Face.Colors (6), Shine => default_Shine)); begin upper_Face := new_hexagon_Face (Vertices => the_Vertices'Access); end; -- Lower -- declare the_Vertices : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => -height_Offset, Normal => -Normal, Color => +Self.upper_Face.center_Color, Shine => default_Shine), 2 => (Site => lower_Sites (1), Normal => -Normal, Color => +Self.upper_Face.Colors (1), Shine => default_Shine), 3 => (Site => lower_Sites (2), Normal => -Normal, Color => +Self.upper_Face.Colors (2), Shine => default_Shine), 4 => (Site => lower_Sites (3), Normal => -Normal, Color => +Self.upper_Face.Colors (3), Shine => default_Shine), 5 => (Site => lower_Sites (4), Normal => -Normal, Color => +Self.upper_Face.Colors (4), Shine => default_Shine), 6 => (Site => lower_Sites (5), Normal => -Normal, Color => +Self.upper_Face.Colors (5), Shine => default_Shine), 7 => (Site => lower_Sites (6), Normal => -Normal, Color => +Self.upper_Face.Colors (6), Shine => default_Shine)); begin lower_Face := new_hexagon_Face (Vertices => the_Vertices'Access, Flip => True); end; -- Shaft -- declare type shaft_Normals is array (1 .. 6) of Vector_3; function get_Normals return shaft_Normals is use linear_Algebra_3D; Rotation : constant Matrix_3x3 := y_Rotation_from (to_Radians (60.0)); the_Normal : Vector_3 := (0.0, 0.0, -1.0); Result : shaft_Normals; begin Result (2) := the_Normal; the_Normal := Rotation * the_Normal; Result (3) := the_Normal; the_Normal := Rotation * the_Normal; Result (4) := the_Normal; the_Normal := (0.0, 0.0, 1.0); Result (5) := the_Normal; the_Normal := Rotation * the_Normal; Result (6) := the_Normal; the_Normal := Rotation * the_Normal; Result (1) := the_Normal; return Result; end get_Normals; Normals : constant shaft_Normals := get_Normals; shaft_Color : constant rgba_Color := +Self.Shaft.Color; the_Vertices_1 : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => upper_Sites (1), Normal => Normals (1), Color => shaft_Color, Shine => default_Shine), 2 => (Site => lower_Sites (1), Normal => Normals (1), Color => shaft_Color, Shine => default_Shine), 3 => (Site => upper_Sites (2), Normal => Normals (1), Color => shaft_Color, Shine => default_Shine), 4 => (Site => lower_Sites (2), Normal => Normals (1), Color => shaft_Color, Shine => default_Shine)); the_Vertices_2 : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => upper_Sites (2), Normal => Normals (2), Color => shaft_Color, Shine => default_Shine), 2 => (Site => lower_Sites (2), Normal => Normals (2), Color => shaft_Color, Shine => default_Shine), 3 => (Site => upper_Sites (3), Normal => Normals (2), Color => shaft_Color, Shine => default_Shine), 4 => (Site => lower_Sites (3), Normal => Normals (2), Color => shaft_Color, Shine => default_Shine)); the_Vertices_3 : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => upper_Sites (3), Normal => Normals (3), Color => shaft_Color, Shine => default_Shine), 2 => (Site => lower_Sites (3), Normal => Normals (3), Color => shaft_Color, Shine => default_Shine), 3 => (Site => upper_Sites (4), Normal => Normals (3), Color => shaft_Color, Shine => default_Shine), 4 => (Site => lower_Sites (4), Normal => Normals (3), Color => shaft_Color, Shine => default_Shine)); the_Vertices_4 : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => upper_Sites (4), Normal => Normals (4), Color => shaft_Color, Shine => default_Shine), 2 => (Site => lower_Sites (4), Normal => Normals (4), Color => shaft_Color, Shine => default_Shine), 3 => (Site => upper_Sites (5), Normal => Normals (4), Color => shaft_Color, Shine => default_Shine), 4 => (Site => lower_Sites (5), Normal => Normals (4), Color => shaft_Color, Shine => default_Shine)); the_Vertices_5 : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => upper_Sites (5), Normal => Normals (5), Color => shaft_Color, Shine => default_Shine), 2 => (Site => lower_Sites (5), Normal => Normals (5), Color => shaft_Color, Shine => default_Shine), 3 => (Site => upper_Sites (6), Normal => Normals (5), Color => shaft_Color, Shine => default_Shine), 4 => (Site => lower_Sites (6), Normal => Normals (5), Color => shaft_Color, Shine => default_Shine)); the_Vertices_6 : aliased Geometry.lit_colored.Vertex_array := (1 => (Site => upper_Sites (6), Normal => Normals (6), Color => shaft_Color, Shine => default_Shine), 2 => (Site => lower_Sites (6), Normal => Normals (6), Color => shaft_Color, Shine => default_Shine), 3 => (Site => upper_Sites (1), Normal => Normals (6), Color => shaft_Color, Shine => default_Shine), 4 => (Site => lower_Sites (1), Normal => Normals (6), Color => shaft_Color, Shine => default_Shine)); the_Vertices : constant array (1 .. 6) of access Geometry.lit_colored.Vertex_array := (the_Vertices_1'Access, the_Vertices_2'Access, the_Vertices_3'Access, the_Vertices_4'Access, the_Vertices_5'Access, the_Vertices_6'Access); begin for i in shaft_Faces'Range loop shaft_Faces (i) := new_shaft_Face (vertices => the_Vertices (i)); end loop; end; return (1 => upper_Face .all'Access, 2 => lower_Face .all'Access, 3 => shaft_Faces (1).all'Access, 4 => shaft_Faces (2).all'Access, 5 => shaft_Faces (3).all'Access, 6 => shaft_Faces (4).all'Access, 7 => shaft_Faces (5).all'Access, 8 => shaft_Faces (6).all'Access); end to_GL_Geometries; end openGL.Model.Hexagon_Column.lit_colored_faceted;
package body Tkmrpc.Servers.Ees is -------------------------------- -- charon callback signatures -- -------------------------------- procedure Charon_Esa_Acquire (Result : out Results.Result_Type; Sp_Id : Types.Sp_Id_Type); pragma Import (C, Charon_Esa_Acquire, "charon_esa_acquire"); procedure Charon_Esa_Expire (Result : out Results.Result_Type; Sp_Id : Types.Sp_Id_Type; Spi_Rem : Types.Esp_Spi_Type; Protocol : Types.Protocol_Type; Hard : Types.Expiry_Flag_Type); pragma Import (C, Charon_Esa_Expire, "charon_esa_expire"); ------------------------------------------------------------------------- procedure Esa_Acquire (Result : out Results.Result_Type; Sp_Id : Types.Sp_Id_Type) is begin Charon_Esa_Acquire (Result => Result, Sp_Id => Sp_Id); end Esa_Acquire; ------------------------------------------------------------------------- procedure Esa_Expire (Result : out Results.Result_Type; Sp_Id : Types.Sp_Id_Type; Spi_Rem : Types.Esp_Spi_Type; Protocol : Types.Protocol_Type; Hard : Types.Expiry_Flag_Type) is begin Charon_Esa_Expire (Result => Result, Sp_Id => Sp_Id, Spi_Rem => Spi_Rem, Protocol => Protocol, Hard => Hard); end Esa_Expire; ------------------------------------------------------------------------- procedure Finalize is begin null; end Finalize; ------------------------------------------------------------------------- procedure Init is begin null; end Init; end Tkmrpc.Servers.Ees;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ I N T R -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Processing for intrinsic subprogram declarations with Types; use Types; package Sem_Intr is procedure Check_Intrinsic_Call (N : Node_Id); -- Perform legality check for intrinsic call N (which is either function -- call or a procedure call node). All the normal semantic checks have -- been performed already. Check_Intrinsic_Call applies any additional -- checks required by the fact that an intrinsic subprogram is involved. procedure Check_Intrinsic_Subprogram (E : Entity_Id; N : Node_Id); -- Special processing for pragma Import or pragma Interface when the -- convention is Intrinsic. E is the Entity_Id of the spec of the -- subprogram, and N is the second (subprogram) argument of the pragma. -- Check_Intrinsic_Subprogram checks that the referenced subprogram is -- known as an intrinsic and has an appropriate profile. If so the flag -- Is_Intrinsic_Subprogram is set, otherwise an error message is posted. end Sem_Intr;
with AUnit.Assertions; use AUnit.Assertions; with AUnit.Test_Cases; use AUnit.Test_Cases; package body Test.Test_Suite is use Quaternions; function Image (Q : Quaternion) return String is ("(" & Q.W'Image & "," & Q.X'Image & "," & Q.Y'Image & "," & Q.Y'Image & ")"); type Case_1 is new Test_Case with null record; overriding function Name (C : Case_1) return AUnit.Message_String is (new String'("quaternions")); overriding procedure Register_Tests (C : in out Case_1); function Suite return AUnit.Test_Suites.Access_Test_Suite is Result : constant AUnit.Test_Suites.Access_Test_Suite := new AUnit.Test_Suites.Test_Suite; begin pragma Warnings (Off, "use of an anonymous access type allocator"); AUnit.Test_Suites.Add_Test (Result, new Case_1); pragma Warnings (On, "use of an anonymous access type allocator"); return Result; end Suite; procedure Unary_Minus (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Addition (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Subtraction (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Multiplication (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Division (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Conjugate (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Norm (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Normalize (Dummy : in out AUnit.Test_Cases.Test_Case'Class); procedure Register_Tests (C : in out Case_1) is begin Registration.Register_Routine (C, Unary_Minus'Access, "unary minus"); Registration.Register_Routine (C, Addition'Access, "addition"); Registration.Register_Routine (C, Subtraction'Access, "subtraction"); Registration.Register_Routine (C, Multiplication'Access, "multiplication"); Registration.Register_Routine (C, Division'Access, "division"); Registration.Register_Routine (C, Conjugate'Access, "conjugate"); Registration.Register_Routine (C, Norm'Access, "norm"); Registration.Register_Routine (C, Normalize'Access, "normalize"); end Register_Tests; procedure Unary_Minus (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (1.0, 2.0, 3.0, 4.0); Q2 : Quaternion; begin Q2 := -Q1; Assert (Q2 = (-1.0, -2.0, -3.0, -4.0), "-q1"); end Unary_Minus; procedure Addition (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (1.0, 2.0, 3.0, 4.0); Q2 : constant Quaternion := (-1.0, 0.0, -1.0, 0.0); Q3 : Quaternion; begin Q3 := Q1 + Q2; Assert (Q3 = (0.0, 2.0, 2.0, 4.0), "q1+q2"); end Addition; procedure Subtraction (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (1.0, 2.0, 3.0, 4.0); Q2 : constant Quaternion := (-1.0, 0.0, -1.0, 0.0); Q3 : Quaternion; begin Q3 := Q1 - Q2; Assert (Q3 = (2.0, 2.0, 4.0, 4.0), "q1-q2"); end Subtraction; procedure Multiplication (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (1.0, 2.0, 3.0, 4.0); Q2 : Quaternion; Q3 : Quaternion; begin Q2 := Q1 * 2.0; Assert (Q2 = (2.0, 4.0, 6.0, 8.0), "q1*r"); Q3 := 3.0 * Q1; Assert (Q3 = (3.0, 6.0, 9.0, 12.0), "r*q1"); Q3 := Q1 * Q2; pragma Style_Checks (Off); -- line length > 79 -- From https://www.euclideanspace.com/maths/algebra/realNormedAlgebra/other/dualQuaternion/calculator/index.htm pragma Style_Checks (On); Assert (Q3 = (-56.0, 8.0, 12.0, 16.0), "q1*q2" & ", got " & Image (Q3)); end Multiplication; procedure Division (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (1.0, 2.0, 3.0, 4.0); Q2 : Quaternion; begin Q2 := Q1 / 2.0; Assert (Q2 = (0.5, 1.0, 1.5, 2.0), "q1/r"); end Division; procedure Conjugate (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (1.0, 2.0, 3.0, 4.0); Q2 : Quaternion; begin Q2 := Conjugate (Q1); Assert (Q2 = (1.0, -2.0, -3.0, -4.0), "conjugate(q1)"); end Conjugate; procedure Norm (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (3.0, 0.0, 0.0, 4.0); R : Float; begin R := Norm (Q1); Assert (R = 5.0, "norm(q1)"); end Norm; procedure Normalize (Dummy : in out AUnit.Test_Cases.Test_Case'Class) is Q1 : constant Quaternion := (3.0, 0.0, 0.0, 4.0); Q2 : Quaternion; begin Q2 := Normalize (Q1); Assert (Q2 = (0.6, 0.0, 0.0, 0.8), "normalize(q1)"); end Normalize; end Test.Test_Suite;
generic type Argument is private; package Functions is type Primitive_Operation is not null access function (Value : Argument) return Argument; type Func (<>) is private; function "*" (Left : Func; Right : Argument) return Argument; function "*" (Left : Func; Right : Primitive_Operation) return Func; function "*" (Left, Right : Primitive_Operation) return Func; function "*" (Left, Right : Func) return Func; private type Func is array (Positive range <>) of Primitive_Operation; end Functions;
-- Copyright 2020-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Pkg is R, Q : Rec_Type; ST1 : constant Second_Type := (I => -4, One => 1, X => 2); ST2 : constant Second_Type := (I => 99, One => 1, Y => 77); NAV1 : constant Nested_And_Variable := (One => 0, Two => 93, Str => (others => 'z')); NAV2 : constant Nested_And_Variable := (One => 3, OneValue => 33, Str => (others => 'z'), Str2 => (others => 'q'), Two => 0); NAV3 : constant Nested_And_Variable := (One => 3, OneValue => 33, Str => (others => 'z'), Str2 => (others => 'q'), Two => 7, TwoValue => 88); begin R := (C => 'd'); Q := (C => Character'First, X_First => 27); null; -- STOP end Pkg;
package Stories.Test_Data.Tests.FinishedStories_Container is end Stories.Test_Data.Tests.FinishedStories_Container;
----------------------------------------------------------------------- -- awa-mail -- Mail module -- Copyright (C) 2011, 2012, 2015, 2017, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with AWA.Modules.Beans; with AWA.Modules.Get; with AWA.Mail.Beans; with AWA.Mail.Components.Factory; with AWA.Applications; with Servlet.Core; with ASF.Requests.Mockup; with ASF.Responses.Mockup; with Util.Beans.Basic; with Util.Beans.Objects; with Util.Log.Loggers; package body AWA.Mail.Modules is Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("AWA.Mail.Module"); package Register is new AWA.Modules.Beans (Module => Mail_Module, Module_Access => Mail_Module_Access); -- ------------------------------ -- Initialize the mail module. -- ------------------------------ overriding procedure Initialize (Plugin : in out Mail_Module; App : in AWA.Modules.Application_Access; Props : in ASF.Applications.Config) is begin Log.Info ("Initializing the mail module"); -- Add the Mail UI components. App.Add_Components (AWA.Mail.Components.Factory.Definition); -- Register here any bean class, servlet, filter. Register.Register (Plugin => Plugin, Name => "AWA.Mail.Beans.Mail_Bean", Handler => AWA.Mail.Beans.Create_Mail_Bean'Access); AWA.Modules.Module (Plugin).Initialize (App, Props); end Initialize; -- ------------------------------ -- Configures the module after its initialization and after having read its XML configuration. -- ------------------------------ overriding procedure Configure (Plugin : in out Mail_Module; Props : in ASF.Applications.Config) is Mailer : constant String := Props.Get ("mailer", "smtp"); begin Log.Info ("Mail plugin is using {0} mailer", Mailer); Plugin.Mailer := AWA.Mail.Clients.Factory (Mailer, Props); end Configure; -- ------------------------------ -- Create a new mail message. -- ------------------------------ function Create_Message (Plugin : in Mail_Module) return AWA.Mail.Clients.Mail_Message_Access is begin return Plugin.Mailer.Create_Message; end Create_Message; -- ------------------------------ -- Receive an event sent by another module with <b>Send_Event</b> method. -- Format and send an email. -- ------------------------------ procedure Send_Mail (Plugin : in Mail_Module; Template : in String; Props : in Util.Beans.Objects.Maps.Map; Content : in AWA.Events.Module_Event'Class) is Name : constant String := Content.Get_Parameter ("name"); begin Log.Info ("Receive event {0} with template {1}", Name, Template); if Template = "" then Log.Debug ("No email template associated with event {0}", Name); return; end if; declare Req : ASF.Requests.Mockup.Request; Reply : ASF.Responses.Mockup.Response; Ptr : constant Util.Beans.Basic.Readonly_Bean_Access := Content'Unrestricted_Access; Bean : constant Util.Beans.Objects.Object := Util.Beans.Objects.To_Object (Ptr, Util.Beans.Objects.STATIC); Dispatcher : constant Servlet.Core.Request_Dispatcher := Plugin.Get_Application.Get_Request_Dispatcher (Template); begin Req.Set_Request_URI (Template); Req.Set_Method ("GET"); Req.Set_Attribute (Name => "event", Value => Bean); Req.Set_Attributes (Props); Servlet.Core.Forward (Dispatcher, Req, Reply); end; end Send_Mail; -- ------------------------------ -- Get the mail module instance associated with the current application. -- ------------------------------ function Get_Mail_Module return Mail_Module_Access is function Get is new AWA.Modules.Get (Mail_Module, Mail_Module_Access, NAME); begin return Get; end Get_Mail_Module; end AWA.Mail.Modules;
with Cairo; with Cairo.Image_Surface; use Cairo.Image_Surface; package Screen_Parameters is -- subtype Width is Natural range 0 .. 239; -- subtype Height is Natural range 0 .. 319; subtype Width is Natural range 0 .. 799; subtype Height is Natural range 0 .. 599; subtype Color is ARGB32_Data; end Screen_Parameters;
----------------------------------------------------------------------- -- launch -- Launch an external process redirecting the input and output -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Processes; with Ada.Text_IO; with Ada.Strings.Unbounded; with Util.Streams.Pipes; with Util.Streams.Buffered; with Util.Streams.Texts; procedure Launch is use Ada.Strings.Unbounded; Pipe : aliased Util.Streams.Pipes.Pipe_Stream; Buffer : Util.Streams.Buffered.Buffered_Stream; Content : Unbounded_String; Print : Util.Streams.Texts.Print_Stream; begin -- Write on the process input stream Pipe.Open ("nslookup", Util.Processes.READ_WRITE); Buffer.Initialize (null, Pipe'Unchecked_Access, 1024); Print.Initialize (Pipe'Unchecked_Access); -- Write on the 'nslookup' input pipe a list of domains to resolve. Print.Write ("www.google.com" & ASCII.LF); Print.Write ("set type=NS" & ASCII.LF); Print.Write ("www.google.com" & ASCII.LF); Print.Write ("set type=MX" & ASCII.LF); Print.Write ("www.google.com" & ASCII.LF); Print.Close; -- Read the 'nslookup' output. Buffer.Read (Content); Pipe.Close; Ada.Text_IO.Put_Line ("Result lenght: " & Integer'Image (Length (Content))); Ada.Text_IO.Put_Line ("Exit status: " & Integer'Image (Pipe.Get_Exit_Status)); Ada.Text_IO.Put_Line (Ada.Strings.Unbounded.To_String (Content)); end Launch;
----------------------------------------------------------------------- -- mat-readers -- Reader -- Copyright (C) 2015 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package body MAT.Readers is -- ------------------------------ -- Get the buffer endian format. -- ------------------------------ function Get_Endian (Msg : in Message_Type) return Endian_Type is begin return Msg.Buffer.Endian; end Get_Endian; end MAT.Readers;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 4 5 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_45 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_45; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; ------------ -- Get_45 -- ------------ function Get_45 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_45 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_45; ------------ -- Set_45 -- ------------ procedure Set_45 (Arr : System.Address; N : Natural; E : Bits_45; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_45; end System.Pack_45;
------------------------------------------------------------------------------- -- -- WAVEFILES GTK APPLICATION -- -- Main Application -- -- The MIT License (MIT) -- -- Copyright (c) 2017 Gustavo A. Hoffmann -- -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to -- deal in the Software without restriction, including without limitation the -- rights to use, copy, modify, merge, publish, distribute, sublicense, and / -- or sell copies of the Software, and to permit persons to whom the Software -- is furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in -- all copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -- IN THE SOFTWARE. ------------------------------------------------------------------------------- with Gtk.Main; with Gtk.Enums; with Gtk.Widget; with WaveFiles_Gtk.Menu; with WaveFiles_Gtk.Wavefile_List; with Gtk.Label; package body WaveFiles_Gtk is procedure On_Destroy (W : access Gtk.Widget.Gtk_Widget_Record'Class); procedure Create_Window; Main_Win : Gtk.Window.Gtk_Window; Vbox : Gtk.Box.Gtk_Vbox; Wavefile_Info : Gtk.Label.Gtk_Label; ---------------- -- On_Destroy -- ---------------- procedure On_Destroy (W : access Gtk.Widget.Gtk_Widget_Record'Class) is pragma Unreferenced (W); begin Destroy_Window; end On_Destroy; ------------------- -- Create_Window -- ------------------- procedure Create_Window is begin -- Create the main window Gtk.Window.Gtk_New (Window => Main_Win, The_Type => Gtk.Enums.Window_Toplevel); -- From Gtk.Widget: Main_Win.Set_Title (Title => "Wavefiles Gtk App"); Main_Win.Resize (Width => 800, Height => 640); -- The global box Gtk.Box.Gtk_New_Vbox (Vbox, Homogeneous => False, Spacing => 0); Main_Win.Add (Vbox); -- Create menu WaveFiles_Gtk.Menu.Create; -- Add tree WaveFiles_Gtk.Wavefile_List.Create (Vbox); -- Add info view Gtk.Label.Gtk_New (Wavefile_Info); Wavefile_Info.Set_Valign (Gtk.Widget.Align_Start); Wavefile_Info.Set_Halign (Gtk.Widget.Align_Start); Vbox.Pack_Start (Wavefile_Info, True, True, 0); -- Construct the window and connect various callbacks Main_Win.On_Destroy (On_Destroy'Access); Vbox.Show_All; Main_Win.Show_All; end Create_Window; ----------------------- -- Set_Wavefile_Info -- ----------------------- procedure Set_Wavefile_Info (Info : String) is begin Wavefile_Info.Set_Label (Info); end Set_Wavefile_Info; -------------------- -- Destroy_Window -- -------------------- procedure Destroy_Window is begin Gtk.Main.Main_Quit; end Destroy_Window; ------------ -- Create -- ------------ procedure Create is begin -- Initializes GtkAda Gtk.Main.Init; Create_Window; -- Signal handling loop Gtk.Main.Main; end Create; ---------------- -- Get_Window -- ---------------- function Get_Window return not null access Gtk.Window.Gtk_Window_Record'Class is begin return Main_Win; end Get_Window; -------------- -- Get_VBox -- -------------- function Get_VBox return not null access Gtk.Box.Gtk_Vbox_Record'Class is begin return Vbox; end Get_VBox; end WaveFiles_Gtk;
<ADSWorkspace Revision="2" Version="100"> <Workspace Name=""> <Library Name="ads_standard_layers" /> <Library Name="adstechlib" /> <Library Name="ads_schematic_layers" /> <Library Name="empro_standard_layers" /> <Library Name="ads_standard_layers_ic" /> <Library Name="ads_schematic_layers_ic" /> <Library Name="ads_schematic_ports_ic" /> <Library Name="ads_rflib" /> <Library Name="ads_sources" /> <Library Name="ads_simulation" /> <Library Name="ads_tlines" /> <Library Name="ads_bondwires" /> <Library Name="ads_datacmps" /> <Library Name="ads_behavioral" /> <Library Name="ads_textfonts" /> <Library Name="ads_common_cmps" /> <Library Name="ads_designs" /> <Library Name="ads_verification_test_bench" /> <Library Name="Oscar_Romeu_mmGerbers_lib" /> <Cell Name="Oscar_Romeu_mmGerbers_lib:GainBlock" /> <Log Name="readgbr.log" /> <Log Name="search_history.log" /> <Log Name="writegbr.log" /> <Preferences Name="layout.prf" /> <Preferences Name="Oscar_Romeu_mmGerbers_lib_lay.prf" /> <Preferences Name="schematic.prf" /> <LibraryDefs Name="lib.defs" /> <ConfigFile Name="de_sim.cfg" /> <ConfigFile Name="hpeesofsim.cfg" /> <Layer_Preference Name="ads_standard_layers.layerprf" /> <Layer_Preference Name="Oscar_Romeu_mmGerbers_lib.layerprf" /> <Cell Name="Oscar_Romeu_mmGerbers_lib:PowerDivider" /> <Cell Name="Oscar_Romeu_mmGerbers_lib:PowerDividerOpen" /> <Cell Name="Oscar_Romeu_mmGerbers_lib:PowerDividerShort" /> <Cell Name="Oscar_Romeu_mmGerbers_lib:PowerDividerLoad" /> <Cell Name="Oscar_Romeu_mmGerbers_lib:RadarFMCW" /> </Workspace> </ADSWorkspace>
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.UML_Named_Elements; with AMF.UML.Activities; with AMF.UML.Activity_Edges.Collections; with AMF.UML.Activity_Groups.Collections; with AMF.UML.Activity_Nodes.Collections; with AMF.UML.Activity_Partitions.Collections; with AMF.UML.Classifiers.Collections; with AMF.UML.Constraints.Collections; with AMF.UML.Dependencies.Collections; with AMF.UML.Exception_Handlers.Collections; with AMF.UML.Input_Pins.Collections; with AMF.UML.Interruptible_Activity_Regions.Collections; with AMF.UML.Named_Elements; with AMF.UML.Namespaces; with AMF.UML.Output_Pins.Collections; with AMF.UML.Packages.Collections; with AMF.UML.Properties; with AMF.UML.Read_Link_Object_End_Qualifier_Actions; with AMF.UML.Redefinable_Elements.Collections; with AMF.UML.String_Expressions; with AMF.UML.Structured_Activity_Nodes; with AMF.Visitors; package AMF.Internals.UML_Read_Link_Object_End_Qualifier_Actions is type UML_Read_Link_Object_End_Qualifier_Action_Proxy is limited new AMF.Internals.UML_Named_Elements.UML_Named_Element_Proxy and AMF.UML.Read_Link_Object_End_Qualifier_Actions.UML_Read_Link_Object_End_Qualifier_Action with null record; overriding function Get_Object (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Input_Pins.UML_Input_Pin_Access; -- Getter of ReadLinkObjectEndQualifierAction::object. -- -- Gives the input pin from which the link object is obtained. overriding procedure Set_Object (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : AMF.UML.Input_Pins.UML_Input_Pin_Access); -- Setter of ReadLinkObjectEndQualifierAction::object. -- -- Gives the input pin from which the link object is obtained. overriding function Get_Qualifier (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Properties.UML_Property_Access; -- Getter of ReadLinkObjectEndQualifierAction::qualifier. -- -- The attribute representing the qualifier to be read. overriding procedure Set_Qualifier (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : AMF.UML.Properties.UML_Property_Access); -- Setter of ReadLinkObjectEndQualifierAction::qualifier. -- -- The attribute representing the qualifier to be read. overriding function Get_Result (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Output_Pins.UML_Output_Pin_Access; -- Getter of ReadLinkObjectEndQualifierAction::result. -- -- Pin where the result value is placed. overriding procedure Set_Result (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : AMF.UML.Output_Pins.UML_Output_Pin_Access); -- Setter of ReadLinkObjectEndQualifierAction::result. -- -- Pin where the result value is placed. overriding function Get_Context (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Classifiers.UML_Classifier_Access; -- Getter of Action::context. -- -- The classifier that owns the behavior of which this action is a part. overriding function Get_Input (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Input_Pins.Collections.Ordered_Set_Of_UML_Input_Pin; -- Getter of Action::input. -- -- The ordered set of input pins connected to the Action. These are among -- the total set of inputs. overriding function Get_Is_Locally_Reentrant (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return Boolean; -- Getter of Action::isLocallyReentrant. -- -- If true, the action can begin a new, concurrent execution, even if -- there is already another execution of the action ongoing. If false, the -- action cannot begin a new execution until any previous execution has -- completed. overriding procedure Set_Is_Locally_Reentrant (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : Boolean); -- Setter of Action::isLocallyReentrant. -- -- If true, the action can begin a new, concurrent execution, even if -- there is already another execution of the action ongoing. If false, the -- action cannot begin a new execution until any previous execution has -- completed. overriding function Get_Local_Postcondition (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint; -- Getter of Action::localPostcondition. -- -- Constraint that must be satisfied when executed is completed. overriding function Get_Local_Precondition (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint; -- Getter of Action::localPrecondition. -- -- Constraint that must be satisfied when execution is started. overriding function Get_Output (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Output_Pins.Collections.Ordered_Set_Of_UML_Output_Pin; -- Getter of Action::output. -- -- The ordered set of output pins connected to the Action. The action -- places its results onto pins in this set. overriding function Get_Handler (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Exception_Handlers.Collections.Set_Of_UML_Exception_Handler; -- Getter of ExecutableNode::handler. -- -- A set of exception handlers that are examined if an uncaught exception -- propagates to the outer level of the executable node. overriding function Get_Activity (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Activities.UML_Activity_Access; -- Getter of ActivityNode::activity. -- -- Activity containing the node. overriding procedure Set_Activity (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : AMF.UML.Activities.UML_Activity_Access); -- Setter of ActivityNode::activity. -- -- Activity containing the node. overriding function Get_In_Group (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Activity_Groups.Collections.Set_Of_UML_Activity_Group; -- Getter of ActivityNode::inGroup. -- -- Groups containing the node. overriding function Get_In_Interruptible_Region (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Interruptible_Activity_Regions.Collections.Set_Of_UML_Interruptible_Activity_Region; -- Getter of ActivityNode::inInterruptibleRegion. -- -- Interruptible regions containing the node. overriding function Get_In_Partition (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Activity_Partitions.Collections.Set_Of_UML_Activity_Partition; -- Getter of ActivityNode::inPartition. -- -- Partitions containing the node. overriding function Get_In_Structured_Node (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access; -- Getter of ActivityNode::inStructuredNode. -- -- Structured activity node containing the node. overriding procedure Set_In_Structured_Node (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node_Access); -- Setter of ActivityNode::inStructuredNode. -- -- Structured activity node containing the node. overriding function Get_Incoming (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge; -- Getter of ActivityNode::incoming. -- -- Edges that have the node as target. overriding function Get_Outgoing (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Activity_Edges.Collections.Set_Of_UML_Activity_Edge; -- Getter of ActivityNode::outgoing. -- -- Edges that have the node as source. overriding function Get_Redefined_Node (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Activity_Nodes.Collections.Set_Of_UML_Activity_Node; -- Getter of ActivityNode::redefinedNode. -- -- Inherited nodes replaced by this node in a specialization of the -- activity. overriding function Get_Is_Leaf (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return Boolean; -- Getter of RedefinableElement::isLeaf. -- -- Indicates whether it is possible to further redefine a -- RedefinableElement. If the value is true, then it is not possible to -- further redefine the RedefinableElement. Note that this property is -- preserved through package merge operations; that is, the capability to -- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in -- the resulting RedefinableElement of a package merge operation where a -- RedefinableElement with isLeaf=false is merged with a matching -- RedefinableElement with isLeaf=true: the resulting RedefinableElement -- will have isLeaf=false. Default value is false. overriding procedure Set_Is_Leaf (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : Boolean); -- Setter of RedefinableElement::isLeaf. -- -- Indicates whether it is possible to further redefine a -- RedefinableElement. If the value is true, then it is not possible to -- further redefine the RedefinableElement. Note that this property is -- preserved through package merge operations; that is, the capability to -- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in -- the resulting RedefinableElement of a package merge operation where a -- RedefinableElement with isLeaf=false is merged with a matching -- RedefinableElement with isLeaf=true: the resulting RedefinableElement -- will have isLeaf=false. Default value is false. overriding function Get_Redefined_Element (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element; -- Getter of RedefinableElement::redefinedElement. -- -- The redefinable element that is being redefined by this element. overriding function Get_Redefinition_Context (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier; -- Getter of RedefinableElement::redefinitionContext. -- -- References the contexts that this element may be redefined from. overriding function Get_Client_Dependency (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency; -- Getter of NamedElement::clientDependency. -- -- Indicates the dependencies that reference the client. overriding function Get_Name_Expression (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access; -- Getter of NamedElement::nameExpression. -- -- The string expression used to define the name of this named element. overriding procedure Set_Name_Expression (Self : not null access UML_Read_Link_Object_End_Qualifier_Action_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access); -- Setter of NamedElement::nameExpression. -- -- The string expression used to define the name of this named element. overriding function Get_Namespace (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Getter of NamedElement::namespace. -- -- Specifies the namespace that owns the NamedElement. overriding function Get_Qualified_Name (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.Optional_String; -- Getter of NamedElement::qualifiedName. -- -- A name which allows the NamedElement to be identified within a -- hierarchy of nested Namespaces. It is constructed from the names of the -- containing namespaces starting at the root of the hierarchy and ending -- with the name of the NamedElement itself. overriding function Context (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Classifiers.UML_Classifier_Access; -- Operation Action::context. -- -- Missing derivation for Action::/context : Classifier overriding function Is_Consistent_With (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy; Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean; -- Operation RedefinableElement::isConsistentWith. -- -- The query isConsistentWith() specifies, for any two RedefinableElements -- in a context in which redefinition is possible, whether redefinition -- would be logically consistent. By default, this is false; this -- operation must be overridden for subclasses of RedefinableElement to -- define the consistency conditions. overriding function Is_Redefinition_Context_Valid (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy; Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean; -- Operation RedefinableElement::isRedefinitionContextValid. -- -- The query isRedefinitionContextValid() specifies whether the -- redefinition contexts of this RedefinableElement are properly related -- to the redefinition contexts of the specified RedefinableElement to -- allow this element to redefine the other. By default at least one of -- the redefinition contexts of this element must be a specialization of -- at least one of the redefinition contexts of the specified element. overriding function All_Owning_Packages (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package; -- Operation NamedElement::allOwningPackages. -- -- The query allOwningPackages() returns all the directly or indirectly -- owning packages. overriding function Is_Distinguishable_From (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean; -- Operation NamedElement::isDistinguishableFrom. -- -- The query isDistinguishableFrom() determines whether two NamedElements -- may logically co-exist within a Namespace. By default, two named -- elements are distinguishable if (a) they have unrelated types or (b) -- they have related types but different names. overriding function Namespace (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Operation NamedElement::namespace. -- -- Missing derivation for NamedElement::/namespace : Namespace overriding procedure Enter_Element (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Leave_Element (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Element (Self : not null access constant UML_Read_Link_Object_End_Qualifier_Action_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end AMF.Internals.UML_Read_Link_Object_End_Qualifier_Actions;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 0 3 -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992,1993,1994,1995,1996 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handing of packed arrays with Component_Size = 3 package System.Pack_03 is pragma Preelaborate (Pack_03); Bits : constant := 3; type Bits_03 is mod 2 ** Bits; for Bits_03'Size use Bits; function Get_03 (Arr : System.Address; N : Natural) return Bits_03; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_03 (Arr : System.Address; N : Natural; E : Bits_03); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_03;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; procedure Pour_TantQue is Debut: Integer; Fin: Integer; begin -- Demander les valeurs de Debut et Fin Get (Debut); Get (Fin); -- Afficher les entiers de Début à Fin while Debut <= Fin loop Put(Debut); New_Line; Debut := Debut + 1; end loop; end Pour_TantQue;
package openGL.Model.capsule -- -- Provides an abstract base class for capsule models. -- is type Item is abstract new openGL.Model.item with null record; end openGL.Model.capsule;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . C O M M A N D _ L I N E . E N V I R O N M E N T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1996-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Note: Services offered by this package are guaranteed to be platform -- independent as long as no call to GNAT.OS_Lib.Setenv or to C putenv -- routine is done. On some platforms the services below will report new -- environment variables (e.g. Windows) on some others it will not -- (e.g. GNU/Linux and Solaris). package Ada.Command_Line.Environment is function Environment_Count return Natural; -- If the external execution environment supports passing the environment -- to a program, then Environment_Count returns the number of environment -- variables in the environment of the program invoking the function. -- Otherwise it returns 0. And that's a lot of environment. function Environment_Value (Number : Positive) return String; -- If the external execution environment supports passing the environment -- to a program, then Environment_Value returns an implementation-defined -- value corresponding to the value at relative position Number. If Number -- is outside the range 1 .. Environment_Count, then Constraint_Error is -- propagated. -- -- in GNAT: Corresponds to envp [n-1] (for n > 0) in C. end Ada.Command_Line.Environment;
-- Copyright 2015-2017 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pack; use Pack; procedure Var_Arr_Typedef is RA : constant Rec_Type := (3, False); RB : constant Rec_Type := (2, True); VA : constant Vec_Type := (RA, RA, RB, RB); VB : constant Vec_Type := (RB, RB, RA, RA); A : constant Array_Type (1 .. Identity (4)) := (VA, VA, VB, VB); begin Do_Nothing (A); -- BREAK end Var_Arr_Typedef;
-- POK header -- -- The following file is a part of the POK project. Any modification should -- be made according to the POK licence. You CANNOT use this file or a part -- of a file for your own project. -- -- For more information on the POK licence, please see our LICENCE FILE -- -- Please follow the coding guidelines described in doc/CODING_GUIDELINES -- -- Copyright (c) 2007-2022 POK team package body Main is procedure Printf (String : in Interfaces.C.char_array); pragma Import (C, Printf, "printf"); Pr1_Pdataout_Id : Sampling_Port_Id_Type; procedure Send is T : Standard.Integer := 0; Data : Standard.Integer; Ret : Return_Code_Type; begin T := 3; loop Data := T; Printf ("Send..."); T := T + 1; Write_Sampling_Message (Pr1_Pdataout_Id, Data'Address, 4, Ret); Periodic_Wait (Ret); end loop; end Send; procedure Main is Ret : Return_Code_Type; Attr : Process_Attribute_Type; Id : Process_Id_Type; Port_Name : Sampling_Port_Name_Type := "pr1_pdataout "; begin Port_Name (13) := ASCII.NUL; Create_Sampling_Port (Port_Name, 4, Source, 15, Pr1_Pdataout_Id, Ret); Attr.Period := 1000; Attr.Deadline := Soft; Attr.Time_Capacity := 1; Attr.Stack_Size := 4096; Attr.Entry_Point := Send'Address; Create_Process (Attr, Id, Ret); Set_Partition_Mode (Normal, Ret); end Main; end Main;
package body BBqueue.Buffers.framed with SPARK_Mode is pragma Compile_Time_Error ((Count'Object_Size mod System.Storage_Unit) /= 0, "Invalid Object_Size for Count"); procedure Write_Header (After_Hdr_Addr : System.Address; Hdr_Size : Header_Count; Value : Count); procedure Read_Header (Before_Hdr_Addr : System.Address; Hdr_Size : out Header_Count; Frame_Size : out Framed_Count) with Post => Hdr_Size = (Count'Object_Size / System.Storage_Unit); function Header_Size (Unused : Count) return Header_Count is (Count'Object_Size / System.Storage_Unit) with Post => Header_Size'Result in 1 .. 9; -- TODO: The size of the header can be optimized using variable-length -- encoding. ------------------ -- Write_Header -- ------------------ procedure Write_Header (After_Hdr_Addr : System.Address; Hdr_Size : Header_Count; Value : Count) is pragma SPARK_Mode (Off); Header : Count with Address => To_Address (To_Integer (After_Hdr_Addr) - Integer_Address (Hdr_Size)); begin Header := Value; end Write_Header; ----------------- -- Read_Header -- ----------------- procedure Read_Header (Before_Hdr_Addr : System.Address; Hdr_Size : out Header_Count; Frame_Size : out Framed_Count) is pragma SPARK_Mode (Off); Header : Count with Address => Before_Hdr_Addr; begin Frame_Size := Header; Hdr_Size := Header_Size (Frame_Size); end Read_Header; ----------- -- Grant -- ----------- procedure Grant (This : in out Framed_Buffer; G : in out Write_Grant; Size : Framed_Count) is Hdr_Size : constant Count := Header_Size (Size); begin if Size = 0 then BBqueue.Buffers.Grant (This.Buffer, G.Grant, Size); G.Header_Size := 0; return; end if; -- Save the worst case header size G.Header_Size := Hdr_Size; -- Request Size + worst case header size BBqueue.Buffers.Grant (This.Buffer, G.Grant, Size + Hdr_Size); if State (G) = Valid then pragma Assert (G.Grant.Slice.Length = Size + Hdr_Size); -- Change the slice to skip the header G.Grant.Slice.Length := G.Grant.Slice.Length - Hdr_Size; G.Grant.Slice.Addr := To_Address (To_Integer (G.Grant.Slice.Addr) + Integer_Address (Hdr_Size)); else -- Grant failed, no header G.Header_Size := 0; end if; end Grant; ------------ -- Commit -- ------------ procedure Commit (This : in out Framed_Buffer; G : in out Write_Grant; Size : Framed_Count := Framed_Count'Last) is begin if Size = 0 then -- Nothing to commit BBqueue.Buffers.Commit (This.Buffer, G.Grant, 0); else -- Write the header in the buffer Write_Header (Slice (G.Grant).Addr, G.Header_Size, Size); -- Commit header + data BBqueue.Buffers.Commit (This.Buffer, G.Grant, Size + G.Header_Size); end if; if State (G) = Empty then G.Header_Size := 0; end if; end Commit; -------------- -- Write_CB -- -------------- procedure Write_CB (This : in out Framed_Buffer; Size : Framed_Count; Result : out Result_Kind) is G : Write_Grant := Empty; begin Grant (This, G, Size); Result := State (G); if Result = Valid then declare S : constant Slice_Rec := Slice (G); B : Storage_Array (1 .. S.Length) with Address => S.Addr; To_Commit : Count; begin Process_Write (B, To_Commit); Commit (This, G, To_Commit); pragma Assert (State (G) = Empty); end; end if; end Write_CB; ---------- -- Read -- ---------- procedure Read (This : in out Framed_Buffer; G : in out Read_Grant) is Frame_Size : Framed_Count; Hdr_Size : Header_Count; begin BBqueue.Buffers.Read (This.Buffer, G.Grant); if State (G) = Valid then -- Get header size and value from the buffer Read_Header (Slice (G.Grant).Addr, Hdr_Size, Frame_Size); G.Header_Size := Hdr_Size; -- Change the slice to skip the header and set the actuall value of -- the frame. G.Grant.Slice.Length := Frame_Size; G.Grant.Slice.Addr := To_Address (To_Integer (G.Grant.Slice.Addr) + Integer_Address (Hdr_Size)); This.Current_Read_Size := Frame_Size; end if; end Read; ------------- -- Release -- ------------- procedure Release (This : in out Framed_Buffer; G : in out Read_Grant) is begin BBqueue.Buffers.Release (This.Buffer, G.Grant, G.Header_Size + This.Current_Read_Size); G.Header_Size := 0; end Release; ------------- -- Read_CB -- ------------- procedure Read_CB (This : in out Framed_Buffer; Result : out Result_Kind) is G : Read_Grant := Empty; procedure Call_CB (Addr : System.Address; Length : Framed_Count); procedure Call_CB (Addr : System.Address; Length : Framed_Count) is pragma SPARK_Mode (Off); B : Storage_Array (1 .. Length) with Address => Addr; begin Process_Read (B); end Call_CB; begin Read (This, G); Result := State (G); if Result = Valid then Call_CB (Slice (G).Addr, This.Current_Read_Size); Release (This, G); pragma Assert (State (G) = Empty); end if; end Read_CB; end BBqueue.Buffers.framed;
package body Thin_Pointer2_Pkg is type SB is access constant String; function Inner (S : SB) return Character is begin if S /= null and then S'Length > 0 then return S (S'First); end if; return '*'; end; function F return Character is begin return Inner (SB (S)); end; end Thin_Pointer2_Pkg;
package Math_2D is pragma Pure (Math_2D); end Math_2D;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . C O N C A T _ 2 -- -- -- -- S p e c -- -- -- -- Copyright (C) 2008-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains a procedure for runtime concatenation of two string -- operands. It is used when we want to save space in the generated code. pragma Compiler_Unit_Warning; package System.Concat_2 is procedure Str_Concat_2 (R : out String; S1, S2 : String); -- Performs the operation R := S1 & S2. The bounds of R are known to be -- correct (usually set by a call to the Str_Concat_Bounds_2 procedure -- below), so no bounds checks are required, and it is known that none of -- the input operands overlaps R. No assumptions can be made about the -- lower bounds of any of the operands. procedure Str_Concat_Bounds_2 (Lo, Hi : out Natural; S1, S2 : String); -- Assigns to Lo..Hi the bounds of the result of concatenating the two -- given strings, following the rules in the RM regarding null operands. end System.Concat_2;
with Text_IO; use Text_IO; package body Ifaces is procedure op1 (this : Root) is begin null; end; procedure op2 (this : DT) is begin null; end; end;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Generic_Collections; package AMF.UML.Classifiers.Collections is pragma Preelaborate; package UML_Classifier_Collections is new AMF.Generic_Collections (UML_Classifier, UML_Classifier_Access); type Set_Of_UML_Classifier is new UML_Classifier_Collections.Set with null record; Empty_Set_Of_UML_Classifier : constant Set_Of_UML_Classifier; type Ordered_Set_Of_UML_Classifier is new UML_Classifier_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Classifier : constant Ordered_Set_Of_UML_Classifier; type Bag_Of_UML_Classifier is new UML_Classifier_Collections.Bag with null record; Empty_Bag_Of_UML_Classifier : constant Bag_Of_UML_Classifier; type Sequence_Of_UML_Classifier is new UML_Classifier_Collections.Sequence with null record; Empty_Sequence_Of_UML_Classifier : constant Sequence_Of_UML_Classifier; private Empty_Set_Of_UML_Classifier : constant Set_Of_UML_Classifier := (UML_Classifier_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Classifier : constant Ordered_Set_Of_UML_Classifier := (UML_Classifier_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Classifier : constant Bag_Of_UML_Classifier := (UML_Classifier_Collections.Bag with null record); Empty_Sequence_Of_UML_Classifier : constant Sequence_Of_UML_Classifier := (UML_Classifier_Collections.Sequence with null record); end AMF.UML.Classifiers.Collections;
-- This file is generated by SWIG. Do *not* modify by hand. -- with llvm; package LLVM_Transforms.Binding is procedure LLVMAddArgumentPromotionPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddConstantMergePass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddDeadArgEliminationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddDeadTypeEliminationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddFunctionAttrsPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddFunctionInliningPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddGlobalDCEPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddGlobalOptimizerPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddIPConstantPropagationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddLowerSetJmpPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddPruneEHPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddRaiseAllocationsPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddStripDeadPrototypesPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddStripSymbolsPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddAggressiveDCEPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddCFGSimplificationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddCondPropagationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddDeadStoreEliminationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddGVNPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddIndVarSimplifyPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddInstructionCombiningPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddJumpThreadingPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddLICMPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddLoopDeletionPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddLoopIndexSplitPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddLoopRotatePass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddLoopUnrollPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddLoopUnswitchPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddMemCpyOptPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddPromoteMemoryToRegisterPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddReassociatePass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddSCCPPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddScalarReplAggregatesPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddSimplifyLibCallsPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddTailCallEliminationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddConstantPropagationPass (PM : in llvm.LLVMPassManagerRef); procedure LLVMAddDemoteMemoryToRegisterPass (PM : in llvm.LLVMPassManagerRef); private pragma Import (C, LLVMAddArgumentPromotionPass, "Ada_LLVMAddArgumentPromotionPass"); pragma Import (C, LLVMAddConstantMergePass, "Ada_LLVMAddConstantMergePass"); pragma Import (C, LLVMAddDeadArgEliminationPass, "Ada_LLVMAddDeadArgEliminationPass"); pragma Import (C, LLVMAddDeadTypeEliminationPass, "Ada_LLVMAddDeadTypeEliminationPass"); pragma Import (C, LLVMAddFunctionAttrsPass, "Ada_LLVMAddFunctionAttrsPass"); pragma Import (C, LLVMAddFunctionInliningPass, "Ada_LLVMAddFunctionInliningPass"); pragma Import (C, LLVMAddGlobalDCEPass, "Ada_LLVMAddGlobalDCEPass"); pragma Import (C, LLVMAddGlobalOptimizerPass, "Ada_LLVMAddGlobalOptimizerPass"); pragma Import (C, LLVMAddIPConstantPropagationPass, "Ada_LLVMAddIPConstantPropagationPass"); pragma Import (C, LLVMAddLowerSetJmpPass, "Ada_LLVMAddLowerSetJmpPass"); pragma Import (C, LLVMAddPruneEHPass, "Ada_LLVMAddPruneEHPass"); pragma Import (C, LLVMAddRaiseAllocationsPass, "Ada_LLVMAddRaiseAllocationsPass"); pragma Import (C, LLVMAddStripDeadPrototypesPass, "Ada_LLVMAddStripDeadPrototypesPass"); pragma Import (C, LLVMAddStripSymbolsPass, "Ada_LLVMAddStripSymbolsPass"); pragma Import (C, LLVMAddAggressiveDCEPass, "Ada_LLVMAddAggressiveDCEPass"); pragma Import (C, LLVMAddCFGSimplificationPass, "Ada_LLVMAddCFGSimplificationPass"); pragma Import (C, LLVMAddCondPropagationPass, "Ada_LLVMAddCondPropagationPass"); pragma Import (C, LLVMAddDeadStoreEliminationPass, "Ada_LLVMAddDeadStoreEliminationPass"); pragma Import (C, LLVMAddGVNPass, "Ada_LLVMAddGVNPass"); pragma Import (C, LLVMAddIndVarSimplifyPass, "Ada_LLVMAddIndVarSimplifyPass"); pragma Import (C, LLVMAddInstructionCombiningPass, "Ada_LLVMAddInstructionCombiningPass"); pragma Import (C, LLVMAddJumpThreadingPass, "Ada_LLVMAddJumpThreadingPass"); pragma Import (C, LLVMAddLICMPass, "Ada_LLVMAddLICMPass"); pragma Import (C, LLVMAddLoopDeletionPass, "Ada_LLVMAddLoopDeletionPass"); pragma Import (C, LLVMAddLoopIndexSplitPass, "Ada_LLVMAddLoopIndexSplitPass"); pragma Import (C, LLVMAddLoopRotatePass, "Ada_LLVMAddLoopRotatePass"); pragma Import (C, LLVMAddLoopUnrollPass, "Ada_LLVMAddLoopUnrollPass"); pragma Import (C, LLVMAddLoopUnswitchPass, "Ada_LLVMAddLoopUnswitchPass"); pragma Import (C, LLVMAddMemCpyOptPass, "Ada_LLVMAddMemCpyOptPass"); pragma Import (C, LLVMAddPromoteMemoryToRegisterPass, "Ada_LLVMAddPromoteMemoryToRegisterPass"); pragma Import (C, LLVMAddReassociatePass, "Ada_LLVMAddReassociatePass"); pragma Import (C, LLVMAddSCCPPass, "Ada_LLVMAddSCCPPass"); pragma Import (C, LLVMAddScalarReplAggregatesPass, "Ada_LLVMAddScalarReplAggregatesPass"); pragma Import (C, LLVMAddSimplifyLibCallsPass, "Ada_LLVMAddSimplifyLibCallsPass"); pragma Import (C, LLVMAddTailCallEliminationPass, "Ada_LLVMAddTailCallEliminationPass"); pragma Import (C, LLVMAddConstantPropagationPass, "Ada_LLVMAddConstantPropagationPass"); pragma Import (C, LLVMAddDemoteMemoryToRegisterPass, "Ada_LLVMAddDemoteMemoryToRegisterPass"); end LLVM_Transforms.Binding;
with aIDE.GUI, aIDE.Editor.of_enumeration_literal, AdaM.a_Type.enumeration_literal, glib.Error, gtk.Builder, gtk.Handlers; with Ada.Text_IO; use Ada.Text_IO; package body aIDE.Editor.of_derived_type is use Gtk.Builder, Glib, glib.Error; function on_subtype_name_Entry_leave (the_Entry : access Gtk_Entry_Record'Class; Target : in AdaM.a_Type.derived_type.view) return Boolean is the_Text : constant String := the_Entry.Get_Text; begin Target.Name_is (the_Text); return False; end on_subtype_name_Entry_leave; procedure on_type_name_Button_clicked (the_Entry : access Gtk_Button_Record'Class; the_Editor : in aIDE.Editor.of_derived_type.view) -- return Boolean is -- the_Text : constant String := the_Entry.get_Text; begin put_Line ("YAYAYAYAY AHOY"); aIDE.GUI.show_types_Palette (Invoked_by => the_Entry.all'Access, Target => the_Editor.Target.parent_Subtype.main_Type); -- Target.Name_is (the_Text); end on_type_name_Button_clicked; procedure on_rid_Button_clicked (the_Button : access Gtk_Button_Record'Class; the_Editor : in aIDE.Editor.of_derived_type.view) is pragma Unreferenced (the_Editor); begin the_Button.get_Parent.destroy; end on_rid_Button_clicked; package Entry_return_Callbacks is new Gtk.Handlers.User_Return_Callback (Gtk_Entry_Record, Boolean, AdaM.a_Type.derived_type.view); package Button_Callbacks is new Gtk.Handlers.User_Callback (Gtk_Button_Record, aIDE.Editor.of_derived_type.view); function on_is_Label_clicked (the_Label : access Gtk_Label_Record'Class; Self : in aIDE.Editor.of_derived_type.view) return Boolean is pragma Unreferenced (the_Label); begin -- Self.Target.add_Literal ("literal"); Self.freshen; return False; end on_is_Label_clicked; package Label_return_Callbacks is new Gtk.Handlers.User_Return_Callback (Gtk_Label_Record, Boolean, aIDE.Editor.of_derived_type.view); package body Forge is function to_Editor (the_Target : in AdaM.a_Type.derived_type.view) return View is use AdaM, Glib; Self : constant Editor.of_derived_type.view := new Editor.of_derived_type.item; the_Builder : Gtk_Builder; Error : aliased GError; Result : Guint; pragma Unreferenced (Result); begin Self.Target := the_Target; Gtk_New (the_Builder); Result := the_Builder.Add_From_File ("glade/editor/derived_type_editor.glade", Error'Access); if Error /= null then raise Program_Error with "Error: adam.Editor.of_derived_type ~ " & Get_Message (Error); end if; Self.top_Box := gtk_Box (the_Builder.get_Object ("top_Box")); Self.name_Entry := Gtk_Entry (the_Builder.get_Object ("name_Entry")); Self.derived_type_Button := Gtk_Button (the_Builder.get_Object ("derived_type_Button")); -- Self.is_Label := Gtk_Label (the_Builder.get_Object ("is_Label")); Self.rid_Button := gtk_Button (the_Builder.get_Object ("rid_Button")); Self.name_Entry.Set_Text (+Self.Target.Name); Entry_return_Callbacks.connect (Self.name_Entry, "focus-out-event", on_subtype_name_Entry_leave'Access, the_Target); Self.derived_type_Button.set_Label (+Self.Target.parent_Subtype.main_Type.Name); button_Callbacks.connect (Self.derived_type_Button, "clicked", on_type_name_Button_clicked'Access, Self); Button_Callbacks.Connect (Self.rid_Button, "clicked", on_rid_Button_clicked'Access, Self); -- Label_return_Callbacks.Connect (Self.is_Label, -- "button-release-event", -- on_is_Label_clicked'Access, -- Self); Self.freshen; return Self; end to_Editor; end Forge; procedure destroy_Callback (Widget : not null access Gtk.Widget.Gtk_Widget_Record'Class) is begin Widget.destroy; end destroy_Callback; overriding procedure freshen (Self : in out Item) is begin null; -- Self.first_Entry.set_Text (Self.Target.Indication.First); -- Self.last_Entry .set_Text (Self.Target.Indication.Last); end freshen; overriding function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget is begin return gtk.Widget.Gtk_Widget (Self.top_Box); end top_Widget; end aIDE.Editor.of_derived_type;
with Ada.Exceptions; with System.Address_To_Named_Access_Conversions; with System.Runtime_Context; with System.Shared_Locking; package body System.Storage_Pools.Subpools is pragma Suppress (All_Checks); use type Finalization_Masters.Finalization_Master_Ptr; use type Finalization_Masters.Finalize_Address_Ptr; use type Storage_Barriers.Flag; package FM_Node_Ptr_Conv is new Address_To_Named_Access_Conversions ( Finalization_Masters.FM_Node, Finalization_Masters.FM_Node_Ptr); -- hooks for smart linking, making code of subpool as removable procedure Setup_Allocation ( Pool : in out Root_Storage_Pool'Class; Context_Subpool : Subpool_Handle; Context_Master : Finalization_Masters.Finalization_Master_Ptr; Fin_Address : Finalization_Masters.Finalize_Address_Ptr; Subpool : out Subpool_Handle; Master : out Finalization_Masters.Finalization_Master_Ptr); procedure Setup_Allocation ( Pool : in out Root_Storage_Pool'Class; Context_Subpool : Subpool_Handle; Context_Master : Finalization_Masters.Finalization_Master_Ptr; Fin_Address : Finalization_Masters.Finalize_Address_Ptr; Subpool : out Subpool_Handle; Master : out Finalization_Masters.Finalization_Master_Ptr) is pragma Unreferenced (Pool); pragma Unreferenced (Fin_Address); pragma Assert (Context_Subpool = null); begin Subpool := null; Master := Context_Master; end Setup_Allocation; procedure Setup_Allocation_With_Subpools ( Pool : in out Root_Storage_Pool'Class; Context_Subpool : Subpool_Handle; Context_Master : Finalization_Masters.Finalization_Master_Ptr; Fin_Address : Finalization_Masters.Finalize_Address_Ptr; Subpool : out Subpool_Handle; Master : out Finalization_Masters.Finalization_Master_Ptr); procedure Setup_Allocation_With_Subpools ( Pool : in out Root_Storage_Pool'Class; Context_Subpool : Subpool_Handle; Context_Master : Finalization_Masters.Finalization_Master_Ptr; Fin_Address : Finalization_Masters.Finalize_Address_Ptr; Subpool : out Subpool_Handle; Master : out Finalization_Masters.Finalization_Master_Ptr) is begin if Pool in Root_Storage_Pool_With_Subpools'Class then if Context_Subpool = null then Subpool := Default_Subpool_For_Pool ( Root_Storage_Pool_With_Subpools'Class (Pool)); else Subpool := Context_Subpool; end if; if Subpool.Owner /= Root_Storage_Pool_With_Subpools'Class (Pool)'Unchecked_Access then raise Program_Error; end if; if Fin_Address /= null then Master := Subpool.Master'Access; end if; else Setup_Allocation ( Pool, Context_Subpool, Context_Master, Fin_Address, Subpool, Master); end if; end Setup_Allocation_With_Subpools; type Setup_Allocation_Handler is access procedure ( Pool : in out Root_Storage_Pool'Class; Context_Subpool : Subpool_Handle; Context_Master : Finalization_Masters.Finalization_Master_Ptr; Fin_Address : Finalization_Masters.Finalize_Address_Ptr; Subpool : out Subpool_Handle; Master : out Finalization_Masters.Finalization_Master_Ptr); pragma Favor_Top_Level (Setup_Allocation_Handler); Setup_Allocation_Hook : not null Setup_Allocation_Handler := Setup_Allocation'Access; -- subpools and theirs owner procedure Attach ( Owner : not null Root_Storage_Pool_With_Subpools_Access; Item : not null Subpool_Handle); procedure Detach (Item : not null Subpool_Handle); procedure Finalize_Subpool (Subpool : not null Subpool_Handle); procedure Attach ( Owner : not null Root_Storage_Pool_With_Subpools_Access; Item : not null Subpool_Handle) is begin pragma Assert (Item.Owner = null); Shared_Locking.Enter; Item.Owner := Owner; Item.Previous := Owner.Last; if Item.Previous /= null then Item.Previous.Next := Item; end if; Item.Next := null; Owner.Last := Item; Shared_Locking.Leave; end Attach; procedure Detach (Item : not null Subpool_Handle) is begin pragma Assert (Item.Owner /= null); Shared_Locking.Enter; if Item.Previous /= null then Item.Previous.Next := Item.Next; end if; if Item.Next /= null then Item.Next.Previous := Item.Previous; else Item.Owner.Last := Item.Previous; end if; Item.Owner := null; Shared_Locking.Leave; end Detach; procedure Finalize_Subpool (Subpool : not null Subpool_Handle) is begin if Subpool.Owner /= null then Finalization_Masters.Finalize (Subpool.Master); Detach (Subpool); end if; end Finalize_Subpool; -- implementation function Pool_Of_Subpool ( Subpool : not null Subpool_Handle) return access Root_Storage_Pool_With_Subpools'Class is begin return Subpool.Owner; end Pool_Of_Subpool; procedure Set_Pool_Of_Subpool ( Subpool : not null Subpool_Handle; To : in out Root_Storage_Pool_With_Subpools'Class) is begin if Subpool.Owner /= null or else Storage_Barriers.atomic_load ( To.Finalization_Started'Access) /= 0 then raise Program_Error; else Attach (To'Unrestricted_Access, Subpool); end if; end Set_Pool_Of_Subpool; function Default_Subpool_For_Pool ( Pool : in out Root_Storage_Pool_With_Subpools) return not null Subpool_Handle is begin -- RM 13.11.4(35/3) -- The pool implementor should override Default_Subpool_For_Pool -- if the pool is to support a default subpool for the pool. raise Program_Error; return Default_Subpool_For_Pool (Pool); end Default_Subpool_For_Pool; overriding procedure Allocate ( Pool : in out Root_Storage_Pool_With_Subpools; Storage_Address : out Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count) is begin Allocate_From_Subpool ( Root_Storage_Pool_With_Subpools'Class (Pool), Storage_Address, Size_In_Storage_Elements, Alignment, Default_Subpool_For_Pool ( Root_Storage_Pool_With_Subpools'Class (Pool))); end Allocate; procedure Unchecked_Deallocate_Subpool (Subpool : in out Subpool_Handle) is begin -- (s-spsufi.adb) if Subpool /= null then if Subpool.Owner = null then raise Program_Error; else declare Pool : constant access Root_Storage_Pool_With_Subpools'Class := Pool_Of_Subpool (Subpool); -- save it before finalize begin Finalize_Subpool (Subpool); Deallocate_Subpool (Pool.all, Subpool); end; Subpool := null; end if; end if; end Unchecked_Deallocate_Subpool; overriding procedure Initialize ( Object : in out Root_Storage_Pool_With_Subpools) is begin Storage_Barriers.atomic_clear (Object.Finalization_Started'Access); Setup_Allocation_Hook := Setup_Allocation_With_Subpools'Access; end Initialize; overriding procedure Finalize ( Object : in out Root_Storage_Pool_With_Subpools) is begin if not Storage_Barriers.atomic_test_and_set ( Object.Finalization_Started'Access) then declare X : Ada.Exceptions.Exception_Occurrence; Raised : Boolean := False; begin while Object.Last /= null loop begin Finalize_Subpool (Object.Last); exception when E : others => if not Raised then Raised := True; Ada.Exceptions.Save_Occurrence (X, E); end if; end; end loop; if Raised then Ada.Exceptions.Reraise_Nonnull_Occurrence (X); end if; end; end if; end Finalize; procedure Allocate_Any_Controlled ( Pool : in out Root_Storage_Pool'Class; Context_Subpool : Subpool_Handle; Context_Master : Finalization_Masters.Finalization_Master_Ptr; Fin_Address : Finalization_Masters.Finalize_Address_Ptr; Addr : out Address; Storage_Size : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count; Is_Controlled : Boolean; On_Subpool : Boolean) is Overlaid_Allocation : Address := Null_Address; Subpool : Subpool_Handle := null; Master : Finalization_Masters.Finalization_Master_Ptr := null; Actual_Storage_Address : Address; Actual_Size : Storage_Elements.Storage_Count; Header_And_Padding : Storage_Elements.Storage_Offset; begin Setup_Allocation_Hook ( Pool, Context_Subpool, Context_Master, Fin_Address, Subpool, Master); pragma Assert (On_Subpool <= (Subpool /= null)); if Is_Controlled then if Master = null or else Finalization_Masters.Finalization_Started (Master.all) or else Fin_Address = null then raise Program_Error; else Header_And_Padding := Header_Size_With_Padding (Alignment); Actual_Size := Storage_Size + Header_And_Padding; declare TLS : constant not null Runtime_Context.Task_Local_Storage_Access := Runtime_Context.Get_Task_Local_Storage; begin Overlaid_Allocation := TLS.Overlaid_Allocation; end; end if; else Actual_Size := Storage_Size; end if; -- allocation if Subpool /= null then Allocate_From_Subpool ( Root_Storage_Pool_With_Subpools'Class (Pool), Actual_Storage_Address, Actual_Size, Alignment, Subpool); else Allocate (Pool, Actual_Storage_Address, Actual_Size, Alignment); end if; -- fix address if Is_Controlled and then Actual_Storage_Address /= Overlaid_Allocation -- for System.Storage_Pools.Overlaps then Shared_Locking.Enter; declare N_Ptr : constant Finalization_Masters.FM_Node_Ptr := FM_Node_Ptr_Conv.To_Pointer ( Actual_Storage_Address + Header_And_Padding - Finalization_Masters.Header_Size); begin Finalization_Masters.Attach_Unprotected ( N_Ptr, Finalization_Masters.Objects_Unprotected ( Master.all, Fin_Address)); end; Addr := Actual_Storage_Address + Header_And_Padding; Finalization_Masters.Set_Finalize_Address_Unprotected ( Master.all, Fin_Address); Shared_Locking.Leave; else Addr := Actual_Storage_Address; end if; end Allocate_Any_Controlled; procedure Deallocate_Any_Controlled ( Pool : in out Root_Storage_Pool'Class; Addr : Address; Storage_Size : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count; Is_Controlled : Boolean) is Actual_Storage_Address : Address; Actual_Size : Storage_Elements.Storage_Count; begin -- fix address if Is_Controlled and then Addr /= Runtime_Context.Get_Task_Local_Storage.Overlaid_Allocation -- for System.Storage_Pools.Overlaps then Shared_Locking.Enter; declare Header_And_Padding : constant Storage_Elements.Storage_Offset := Header_Size_With_Padding (Alignment); N_Ptr : constant Finalization_Masters.FM_Node_Ptr := FM_Node_Ptr_Conv.To_Pointer ( Addr - Finalization_Masters.Header_Size); begin Finalization_Masters.Detach_Unprotected (N_Ptr); Actual_Storage_Address := Addr - Header_And_Padding; Actual_Size := Storage_Size + Header_And_Padding; end; Shared_Locking.Leave; else Actual_Storage_Address := Addr; Actual_Size := Storage_Size; end if; -- deallocation Deallocate (Pool, Actual_Storage_Address, Actual_Size, Alignment); end Deallocate_Any_Controlled; function Header_Size_With_Padding ( Alignment : Storage_Elements.Storage_Count) return Storage_Elements.Storage_Count is begin return Finalization_Masters.Header_Size + (-Finalization_Masters.Header_Size) mod Alignment; end Header_Size_With_Padding; end System.Storage_Pools.Subpools;
----------------------------------------------------------------------- -- awa-events -- AWA Events -- Copyright (C) 2012, 2015, 2020 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with ADO.Sessions.Entities; package body AWA.Events is -- ------------------------------ -- Set the event type which identifies the event. -- ------------------------------ procedure Set_Event_Kind (Event : in out Module_Event; Kind : in Event_Index) is begin Event.Kind := Kind; end Set_Event_Kind; -- ------------------------------ -- Get the event type which identifies the event. -- ------------------------------ function Get_Event_Kind (Event : in Module_Event) return Event_Index is begin return Event.Kind; end Get_Event_Kind; -- ------------------------------ -- Set a parameter on the message. -- ------------------------------ procedure Set_Parameter (Event : in out Module_Event; Name : in String; Value : in String) is begin Event.Props.Include (Name, Util.Beans.Objects.To_Object (Value)); end Set_Parameter; procedure Set_Parameter (Event : in out Module_Event; Name : in String; Value : in Util.Beans.Objects.Object) is begin Event.Props.Include (Name, Value); end Set_Parameter; -- ------------------------------ -- Get the parameter with the given name. -- ------------------------------ function Get_Parameter (Event : in Module_Event; Name : in String) return String is Pos : constant Util.Beans.Objects.Maps.Cursor := Event.Props.Find (Name); begin if Util.Beans.Objects.Maps.Has_Element (Pos) then return Util.Beans.Objects.To_String (Util.Beans.Objects.Maps.Element (Pos)); else return ""; end if; end Get_Parameter; -- ------------------------------ -- Set the parameters of the message. -- ------------------------------ procedure Set_Parameters (Event : in out Module_Event; Parameters : in Util.Beans.Objects.Maps.Map) is begin Event.Props := Parameters; end Set_Parameters; -- ------------------------------ -- Get the value that corresponds to the parameter with the given name. -- ------------------------------ function Get_Value (Event : in Module_Event; Name : in String) return Util.Beans.Objects.Object is begin if Event.Props.Contains (Name) then return Event.Props.Element (Name); else return Util.Beans.Objects.Null_Object; end if; end Get_Value; -- ------------------------------ -- Get the entity identifier associated with the event. -- ------------------------------ function Get_Entity_Identifier (Event : in Module_Event) return ADO.Identifier is begin return Event.Entity; end Get_Entity_Identifier; -- ------------------------------ -- Set the entity identifier associated with the event. -- ------------------------------ procedure Set_Entity_Identifier (Event : in out Module_Event; Id : in ADO.Identifier) is begin Event.Entity := Id; end Set_Entity_Identifier; -- ------------------------------ -- Set the database entity associated with the event. -- ------------------------------ procedure Set_Entity (Event : in out Module_Event; Entity : in ADO.Objects.Object_Ref'Class; Session : in ADO.Sessions.Session'Class) is Key : constant ADO.Objects.Object_Key := Entity.Get_Key; begin Event.Entity := ADO.Objects.Get_Value (Key); Event.Entity_Type := ADO.Sessions.Entities.Find_Entity_Type (Session, Key); end Set_Entity; -- ------------------------------ -- Copy the event properties to the map passed in <tt>Into</tt>. -- ------------------------------ procedure Copy (Event : in Module_Event; Into : in out Util.Beans.Objects.Maps.Map) is begin Into := Event.Props; end Copy; -- ------------------------------ -- Make and return a copy of the event. -- ------------------------------ function Copy (Event : in Module_Event) return Module_Event_Access is Result : constant Module_Event_Access := new Module_Event; begin Result.Kind := Event.Kind; Result.Props := Event.Props; return Result; end Copy; end AWA.Events;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 4 8 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 48 package System.Pack_48 is pragma Preelaborate; Bits : constant := 48; type Bits_48 is mod 2 ** Bits; for Bits_48'Size use Bits; -- In all subprograms below, Rev_SSO is set True if the array has the -- non-default scalar storage order. function Get_48 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_48 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_48 (Arr : System.Address; N : Natural; E : Bits_48; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_48 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_48 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_48 (Arr : System.Address; N : Natural; E : Bits_48; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_48;
----------------------------------------------------------------------- -- Util.Streams.Files -- File Stream utilities -- Copyright (C) 2010, 2011, 2012 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.IO_Exceptions; package body Util.Streams.Texts is procedure Initialize (Stream : in out Print_Stream; To : in Output_Stream_Access) is begin Stream.Initialize (Output => To, Input => null, Size => 4096); end Initialize; -- ------------------------------ -- Write an integer on the stream. -- ------------------------------ procedure Write (Stream : in out Print_Stream; Item : in Integer) is S : constant String := Integer'Image (Item); begin if Item > 0 then Stream.Write (S (S'First + 1 .. S'Last)); else Stream.Write (S); end if; end Write; -- ------------------------------ -- Write an integer on the stream. -- ------------------------------ procedure Write (Stream : in out Print_Stream; Item : in Long_Long_Integer) is S : constant String := Long_Long_Integer'Image (Item); begin if Item > 0 then Stream.Write (S (S'First + 1 .. S'Last)); else Stream.Write (S); end if; end Write; -- ------------------------------ -- Write a string on the stream. -- ------------------------------ procedure Write (Stream : in out Print_Stream; Item : in Ada.Strings.Unbounded.Unbounded_String) is begin Stream.Write (Ada.Strings.Unbounded.To_String (Item)); end Write; -- ------------------------------ -- Write a date on the stream. -- ------------------------------ procedure Write (Stream : in out Print_Stream; Item : in Ada.Calendar.Time; Format : in GNAT.Calendar.Time_IO.Picture_String := GNAT.Calendar.Time_IO.ISO_Date) is begin Stream.Write (GNAT.Calendar.Time_IO.Image (Item, Format)); end Write; -- ------------------------------ -- Get the output stream content as a string. -- ------------------------------ function To_String (Stream : in Buffered.Buffered_Stream) return String is use Ada.Streams; Size : constant Natural := Stream.Get_Size; Buffer : constant Streams.Buffered.Buffer_Access := Stream.Get_Buffer; Result : String (1 .. Size); begin for I in Result'Range loop Result (I) := Character'Val (Buffer (Stream_Element_Offset (I))); end loop; return Result; end To_String; -- ------------------------------ -- Initialize the reader to read the input from the input stream given in <b>From</b>. -- ------------------------------ procedure Initialize (Stream : in out Reader_Stream; From : in Input_Stream_Access) is begin Stream.Initialize (Output => null, Input => From, Size => 4096); end Initialize; -- ------------------------------ -- Read an input line from the input stream. The line is terminated by ASCII.LF. -- When <b>Strip</b> is set, the line terminators (ASCII.CR, ASCII.LF) are removed. -- ------------------------------ procedure Read_Line (Stream : in out Reader_Stream; Into : out Ada.Strings.Unbounded.Unbounded_String; Strip : in Boolean := False) is C : Character; begin while not Stream.Is_Eof loop Stream.Read (C); if C = ASCII.LF then if not Strip then Ada.Strings.Unbounded.Append (Into, C); end if; return; elsif C /= ASCII.CR or not Strip then Ada.Strings.Unbounded.Append (Into, C); end if; end loop; exception when Ada.IO_Exceptions.Data_Error => return; end Read_Line; end Util.Streams.Texts;
--with HWIF; package body Tasks is --Pressed Button Task task ButtonPressed (this: in Direction) is end ButtonPressed; task body ButtonPressed is (this: in Direction) begin Traffic_Light(this) := 4; delay 1.0; Traffic_Light(this) := 2; delay 1.0; Traffic_Light(this) := 1; end ButtonPressed; end Tasks;
----------------------------------------------------------------------- -- util-serialize-io-csv -- CSV Serialization Driver -- Copyright (C) 2011, 2015, 2016, 2017, 2021 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Characters.Latin_1; with Ada.IO_Exceptions; with Ada.Containers; with Util.Strings; with Util.Dates.ISO8601; package body Util.Serialize.IO.CSV is -- ------------------------------ -- Set the field separator. The default field separator is the comma (','). -- ------------------------------ procedure Set_Field_Separator (Stream : in out Output_Stream; Separator : in Character) is begin Stream.Separator := Separator; end Set_Field_Separator; -- ------------------------------ -- Enable or disable the double quotes by default for strings. -- ------------------------------ procedure Set_Quotes (Stream : in out Output_Stream; Enable : in Boolean) is begin Stream.Quote := Enable; end Set_Quotes; -- ------------------------------ -- Write the value as a CSV cell. Special characters are escaped using the CSV -- escape rules. -- ------------------------------ procedure Write_Cell (Stream : in out Output_Stream; Value : in String) is begin if Stream.Column > 1 then Stream.Write (Stream.Separator); end if; Stream.Column := Stream.Column + 1; if Stream.Quote then Stream.Write ('"'); end if; for I in Value'Range loop if Value (I) = '"' then Stream.Write (""""""); else Stream.Write (Value (I)); end if; end loop; if Stream.Quote then Stream.Write ('"'); end if; end Write_Cell; procedure Write_Cell (Stream : in out Output_Stream; Value : in Integer) is begin if Stream.Column > 1 then Stream.Write (Stream.Separator); end if; Stream.Column := Stream.Column + 1; Stream.Write (Util.Strings.Image (Value)); end Write_Cell; procedure Write_Cell (Stream : in out Output_Stream; Value : in Boolean) is begin if Stream.Column > 1 then Stream.Write (Stream.Separator); end if; Stream.Column := Stream.Column + 1; if Value then Stream.Write ("true"); else Stream.Write ("false"); end if; end Write_Cell; procedure Write_Cell (Stream : in out Output_Stream; Value : in Util.Beans.Objects.Object) is use Util.Beans.Objects; begin case Util.Beans.Objects.Get_Type (Value) is when TYPE_NULL => if Stream.Column > 1 then Stream.Write (Stream.Separator); end if; Stream.Column := Stream.Column + 1; if Stream.Quote then Stream.Write ("""null"""); else Stream.Write ("null"); end if; when TYPE_BOOLEAN => if Stream.Column > 1 then Stream.Write (Stream.Separator); end if; Stream.Column := Stream.Column + 1; if Util.Beans.Objects.To_Boolean (Value) then Stream.Write ("true"); else Stream.Write ("false"); end if; when TYPE_INTEGER => if Stream.Column > 1 then Stream.Write (Stream.Separator); end if; Stream.Column := Stream.Column + 1; -- Stream.Write ('"'); Stream.Write (Util.Beans.Objects.To_Long_Long_Integer (Value)); -- Stream.Write ('"'); when others => Stream.Write_Cell (Util.Beans.Objects.To_String (Value)); end case; end Write_Cell; -- ------------------------------ -- Start a new row. -- ------------------------------ procedure New_Row (Stream : in out Output_Stream) is begin while Stream.Column < Stream.Max_Columns loop Stream.Write (Stream.Separator); Stream.Column := Stream.Column + 1; end loop; Stream.Write (ASCII.CR); Stream.Write (ASCII.LF); Stream.Column := 1; Stream.Row := Stream.Row + 1; end New_Row; -- ----------------------- -- Write the attribute name/value pair. -- ----------------------- overriding procedure Write_Attribute (Stream : in out Output_Stream; Name : in String; Value : in String) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Attribute; overriding procedure Write_Wide_Attribute (Stream : in out Output_Stream; Name : in String; Value : in Wide_Wide_String) is begin null; end Write_Wide_Attribute; overriding procedure Write_Attribute (Stream : in out Output_Stream; Name : in String; Value : in Integer) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Attribute; overriding procedure Write_Attribute (Stream : in out Output_Stream; Name : in String; Value : in Boolean) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Attribute; overriding procedure Write_Attribute (Stream : in out Output_Stream; Name : in String; Value : in Util.Beans.Objects.Object) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Attribute; procedure Write_Entity (Stream : in out Output_Stream; Name : in String; Value : in Util.Beans.Objects.Object) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Entity; -- ----------------------- -- Write the entity value. -- ----------------------- overriding procedure Write_Entity (Stream : in out Output_Stream; Name : in String; Value : in String) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Entity; overriding procedure Write_Wide_Entity (Stream : in out Output_Stream; Name : in String; Value : in Wide_Wide_String) is begin null; end Write_Wide_Entity; overriding procedure Write_Entity (Stream : in out Output_Stream; Name : in String; Value : in Boolean) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Entity; overriding procedure Write_Entity (Stream : in out Output_Stream; Name : in String; Value : in Integer) is pragma Unreferenced (Name); begin Stream.Write_Cell (Value); end Write_Entity; overriding procedure Write_Entity (Stream : in out Output_Stream; Name : in String; Value : in Ada.Calendar.Time) is begin Stream.Write_Entity (Name, Util.Dates.ISO8601.Image (Value, Util.Dates.ISO8601.SUBSECOND)); end Write_Entity; overriding procedure Write_Long_Entity (Stream : in out Output_Stream; Name : in String; Value : in Long_Long_Integer) is begin null; end Write_Long_Entity; overriding procedure Write_Enum_Entity (Stream : in out Output_Stream; Name : in String; Value : in String) is begin Stream.Write_Entity (Name, Value); end Write_Enum_Entity; -- ------------------------------ -- Write the attribute with a null value. -- ------------------------------ overriding procedure Write_Null_Attribute (Stream : in out Output_Stream; Name : in String) is begin Stream.Write_Entity (Name, ""); end Write_Null_Attribute; -- ------------------------------ -- Write an entity with a null value. -- ------------------------------ procedure Write_Null_Entity (Stream : in out Output_Stream; Name : in String) is begin Stream.Write_Null_Attribute (Name); end Write_Null_Entity; -- ------------------------------ -- Get the header name for the given column. -- If there was no header line, build a default header for the column. -- ------------------------------ function Get_Header_Name (Handler : in Parser; Column : in Column_Type) return String is use type Ada.Containers.Count_Type; Default_Header : constant String := "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; Result : String (1 .. 10); N, R : Natural; Pos : Positive := Result'Last; begin if Handler.Headers.Length >= Ada.Containers.Count_Type (Column) then return Handler.Headers.Element (Positive (Column)); end if; N := Natural (Column - 1); loop R := N mod 26; N := N / 26; Result (Pos) := Default_Header (R + 1); exit when N = 0; Pos := Pos - 1; end loop; return Result (Pos .. Result'Last); end Get_Header_Name; -- ------------------------------ -- Set the cell value at the given row and column. -- The default implementation finds the column header name and -- invokes <b>Write_Entity</b> with the header name and the value. -- ------------------------------ procedure Set_Cell (Handler : in out Parser; Value : in String; Row : in Row_Type; Column : in Column_Type) is use Ada.Containers; begin if Row = 0 then -- Build the headers table. declare Missing : constant Integer := Integer (Column) - Integer (Handler.Headers.Length); begin if Missing > 0 then Handler.Headers.Set_Length (Handler.Headers.Length + Count_Type (Missing)); end if; Handler.Headers.Replace_Element (Positive (Column), Value); end; else declare Name : constant String := Handler.Get_Header_Name (Column); begin -- Detect a new row. Close the current object and start a new one. if Handler.Row /= Row then if Row > 1 then Handler.Sink.Finish_Object ("", Handler); else Handler.Sink.Start_Array ("", Handler); end if; Handler.Sink.Start_Object ("", Handler); end if; Handler.Row := Row; Handler.Sink.Set_Member (Name, Util.Beans.Objects.To_Object (Value), Handler); end; end if; end Set_Cell; -- ------------------------------ -- Set the field separator. The default field separator is the comma (','). -- ------------------------------ procedure Set_Field_Separator (Handler : in out Parser; Separator : in Character) is begin Handler.Separator := Separator; end Set_Field_Separator; -- ------------------------------ -- Get the field separator. -- ------------------------------ function Get_Field_Separator (Handler : in Parser) return Character is begin return Handler.Separator; end Get_Field_Separator; -- ------------------------------ -- Set the comment separator. When a comment separator is defined, a line which starts -- with the comment separator will be ignored. The row number will not be incremented. -- ------------------------------ procedure Set_Comment_Separator (Handler : in out Parser; Separator : in Character) is begin Handler.Comment := Separator; end Set_Comment_Separator; -- ------------------------------ -- Get the comment separator. Returns ASCII.NUL if comments are not supported. -- ------------------------------ function Get_Comment_Separator (Handler : in Parser) return Character is begin return Handler.Comment; end Get_Comment_Separator; -- ------------------------------ -- Setup the CSV parser and mapper to use the default column header names. -- When activated, the first row is assumed to contain the first item to de-serialize. -- ------------------------------ procedure Set_Default_Headers (Handler : in out Parser; Mode : in Boolean := True) is begin Handler.Use_Default_Headers := Mode; end Set_Default_Headers; -- ------------------------------ -- Parse the stream using the CSV parser. -- Call <b>Set_Cell</b> for each cell that has been parsed indicating the row and -- column numbers as well as the cell value. -- ------------------------------ overriding procedure Parse (Handler : in out Parser; Stream : in out Util.Streams.Buffered.Input_Buffer_Stream'Class; Sink : in out Reader'Class) is use Ada.Strings.Unbounded; C : Character; Token : Unbounded_String; Column : Column_Type := 1; Row : Row_Type := 0; In_Quote_Token : Boolean := False; In_Escape : Boolean := False; Ignore_Row : Boolean := False; begin if Handler.Use_Default_Headers then Row := 1; end if; Handler.Headers.Clear; Handler.Sink := Sink'Unchecked_Access; loop Stream.Read (Char => C); if C = Ada.Characters.Latin_1.CR or C = Ada.Characters.Latin_1.LF then if C = Ada.Characters.Latin_1.LF then Handler.Line_Number := Handler.Line_Number + 1; end if; if not Ignore_Row then if In_Quote_Token and not In_Escape then Append (Token, C); elsif Column > 1 or else Length (Token) > 0 then Parser'Class (Handler).Set_Cell (To_String (Token), Row, Column); Set_Unbounded_String (Token, ""); Row := Row + 1; Column := 1; In_Quote_Token := False; In_Escape := False; end if; else Ignore_Row := False; end if; elsif C = Handler.Separator and not Ignore_Row then if In_Quote_Token and not In_Escape then Append (Token, C); else Parser'Class (Handler).Set_Cell (To_String (Token), Row, Column); Set_Unbounded_String (Token, ""); Column := Column + 1; In_Quote_Token := False; In_Escape := False; end if; elsif C = '"' and not Ignore_Row then if In_Quote_Token then In_Escape := True; elsif In_Escape then Append (Token, C); In_Escape := False; elsif Ada.Strings.Unbounded.Length (Token) = 0 then In_Quote_Token := True; else Append (Token, C); end if; elsif C = Handler.Comment and Handler.Comment /= ASCII.NUL and Column = 1 and Length (Token) = 0 then Ignore_Row := True; elsif not Ignore_Row then Append (Token, C); In_Escape := False; end if; end loop; exception when Ada.IO_Exceptions.Data_Error => Parser'Class (Handler).Set_Cell (To_String (Token), Row, Column); Handler.Sink := null; return; end Parse; -- ------------------------------ -- Get the current location (file and line) to report an error message. -- ------------------------------ overriding function Get_Location (Handler : in Parser) return String is begin return Util.Strings.Image (Handler.Line_Number); end Get_Location; end Util.Serialize.IO.CSV;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements; with AMF.Internals.Element_Collections; with AMF.Internals.Helpers; with AMF.Internals.Tables.OCL_Attributes; with AMF.String_Collections; with AMF.UML.Classifier_Template_Parameters; with AMF.UML.Classifiers.Collections; with AMF.UML.Collaboration_Uses.Collections; with AMF.UML.Comments.Collections; with AMF.UML.Constraints.Collections; with AMF.UML.Dependencies.Collections; with AMF.UML.Element_Imports.Collections; with AMF.UML.Elements.Collections; with AMF.UML.Features.Collections; with AMF.UML.Generalization_Sets.Collections; with AMF.UML.Generalizations.Collections; with AMF.UML.Named_Elements.Collections; with AMF.UML.Namespaces.Collections; with AMF.UML.Operations.Collections; with AMF.UML.Package_Imports.Collections; with AMF.UML.Packageable_Elements.Collections; with AMF.UML.Packages.Collections; with AMF.UML.Parameterable_Elements.Collections; with AMF.UML.Properties.Collections; with AMF.UML.Redefinable_Elements.Collections; with AMF.UML.Redefinable_Template_Signatures; with AMF.UML.String_Expressions; with AMF.UML.Substitutions.Collections; with AMF.UML.Template_Bindings.Collections; with AMF.UML.Template_Parameters; with AMF.UML.Template_Signatures; with AMF.UML.Types; with AMF.UML.Use_Cases.Collections; with AMF.Visitors.OCL_Iterators; with AMF.Visitors.OCL_Visitors; with League.Strings.Internals; with Matreshka.Internals.Strings; package body AMF.Internals.OCL_Tuple_Types is ------------------------- -- Get_Owned_Attribute -- ------------------------- overriding function Get_Owned_Attribute (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Properties.Collections.Ordered_Set_Of_UML_Property is begin return AMF.UML.Properties.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Attribute (Self.Element))); end Get_Owned_Attribute; ------------------------- -- Get_Owned_Operation -- ------------------------- overriding function Get_Owned_Operation (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Operations.Collections.Ordered_Set_Of_UML_Operation is begin return AMF.UML.Operations.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Operation (Self.Element))); end Get_Owned_Operation; ------------------- -- Get_Attribute -- ------------------- overriding function Get_Attribute (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Properties.Collections.Set_Of_UML_Property is begin return AMF.UML.Properties.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Attribute (Self.Element))); end Get_Attribute; --------------------------- -- Get_Collaboration_Use -- --------------------------- overriding function Get_Collaboration_Use (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Collaboration_Uses.Collections.Set_Of_UML_Collaboration_Use is begin return AMF.UML.Collaboration_Uses.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Collaboration_Use (Self.Element))); end Get_Collaboration_Use; ----------------- -- Get_Feature -- ----------------- overriding function Get_Feature (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Features.Collections.Set_Of_UML_Feature is begin return AMF.UML.Features.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Feature (Self.Element))); end Get_Feature; ----------------- -- Get_General -- ----------------- overriding function Get_General (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is begin return AMF.UML.Classifiers.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_General (Self.Element))); end Get_General; ------------------------ -- Get_Generalization -- ------------------------ overriding function Get_Generalization (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Generalizations.Collections.Set_Of_UML_Generalization is begin return AMF.UML.Generalizations.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Generalization (Self.Element))); end Get_Generalization; -------------------------- -- Get_Inherited_Member -- -------------------------- overriding function Get_Inherited_Member (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin return AMF.UML.Named_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Inherited_Member (Self.Element))); end Get_Inherited_Member; --------------------- -- Get_Is_Abstract -- --------------------- overriding function Get_Is_Abstract (Self : not null access constant OCL_Tuple_Type_Proxy) return Boolean is begin return AMF.Internals.Tables.OCL_Attributes.Internal_Get_Is_Abstract (Self.Element); end Get_Is_Abstract; --------------------- -- Set_Is_Abstract -- --------------------- overriding procedure Set_Is_Abstract (Self : not null access OCL_Tuple_Type_Proxy; To : Boolean) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Is_Abstract (Self.Element, To); end Set_Is_Abstract; --------------------------------- -- Get_Is_Final_Specialization -- --------------------------------- overriding function Get_Is_Final_Specialization (Self : not null access constant OCL_Tuple_Type_Proxy) return Boolean is begin return AMF.Internals.Tables.OCL_Attributes.Internal_Get_Is_Final_Specialization (Self.Element); end Get_Is_Final_Specialization; --------------------------------- -- Set_Is_Final_Specialization -- --------------------------------- overriding procedure Set_Is_Final_Specialization (Self : not null access OCL_Tuple_Type_Proxy; To : Boolean) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Is_Final_Specialization (Self.Element, To); end Set_Is_Final_Specialization; ---------------------------------- -- Get_Owned_Template_Signature -- ---------------------------------- overriding function Get_Owned_Template_Signature (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access is begin return AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Template_Signature (Self.Element))); end Get_Owned_Template_Signature; ---------------------------------- -- Set_Owned_Template_Signature -- ---------------------------------- overriding procedure Set_Owned_Template_Signature (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Owned_Template_Signature (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Owned_Template_Signature; ------------------------ -- Get_Owned_Use_Case -- ------------------------ overriding function Get_Owned_Use_Case (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case is begin return AMF.UML.Use_Cases.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Use_Case (Self.Element))); end Get_Owned_Use_Case; -------------------------- -- Get_Powertype_Extent -- -------------------------- overriding function Get_Powertype_Extent (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Generalization_Sets.Collections.Set_Of_UML_Generalization_Set is begin return AMF.UML.Generalization_Sets.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Powertype_Extent (Self.Element))); end Get_Powertype_Extent; ------------------------------ -- Get_Redefined_Classifier -- ------------------------------ overriding function Get_Redefined_Classifier (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is begin return AMF.UML.Classifiers.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Redefined_Classifier (Self.Element))); end Get_Redefined_Classifier; ------------------------ -- Get_Representation -- ------------------------ overriding function Get_Representation (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access is begin return AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Representation (Self.Element))); end Get_Representation; ------------------------ -- Set_Representation -- ------------------------ overriding procedure Set_Representation (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Representation (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Representation; ---------------------- -- Get_Substitution -- ---------------------- overriding function Get_Substitution (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Substitutions.Collections.Set_Of_UML_Substitution is begin return AMF.UML.Substitutions.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Substitution (Self.Element))); end Get_Substitution; ---------------------------- -- Get_Template_Parameter -- ---------------------------- overriding function Get_Template_Parameter (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access is begin return AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Template_Parameter (Self.Element))); end Get_Template_Parameter; ---------------------------- -- Set_Template_Parameter -- ---------------------------- overriding procedure Set_Template_Parameter (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Template_Parameter (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Template_Parameter; ------------------ -- Get_Use_Case -- ------------------ overriding function Get_Use_Case (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case is begin return AMF.UML.Use_Cases.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Use_Case (Self.Element))); end Get_Use_Case; ------------------------ -- Get_Element_Import -- ------------------------ overriding function Get_Element_Import (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Element_Imports.Collections.Set_Of_UML_Element_Import is begin return AMF.UML.Element_Imports.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Element_Import (Self.Element))); end Get_Element_Import; ------------------------- -- Get_Imported_Member -- ------------------------- overriding function Get_Imported_Member (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is begin return AMF.UML.Packageable_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Imported_Member (Self.Element))); end Get_Imported_Member; ---------------- -- Get_Member -- ---------------- overriding function Get_Member (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin return AMF.UML.Named_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Member (Self.Element))); end Get_Member; ---------------------- -- Get_Owned_Member -- ---------------------- overriding function Get_Owned_Member (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin return AMF.UML.Named_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Member (Self.Element))); end Get_Owned_Member; -------------------- -- Get_Owned_Rule -- -------------------- overriding function Get_Owned_Rule (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint is begin return AMF.UML.Constraints.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Rule (Self.Element))); end Get_Owned_Rule; ------------------------ -- Get_Package_Import -- ------------------------ overriding function Get_Package_Import (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Package_Imports.Collections.Set_Of_UML_Package_Import is begin return AMF.UML.Package_Imports.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Package_Import (Self.Element))); end Get_Package_Import; --------------------------- -- Get_Client_Dependency -- --------------------------- overriding function Get_Client_Dependency (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is begin return AMF.UML.Dependencies.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Client_Dependency (Self.Element))); end Get_Client_Dependency; -------------- -- Get_Name -- -------------- overriding function Get_Name (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.OCL_Attributes.Internal_Get_Name (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Name; -------------- -- Set_Name -- -------------- overriding procedure Set_Name (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.Optional_String) is begin if To.Is_Empty then AMF.Internals.Tables.OCL_Attributes.Internal_Set_Name (Self.Element, null); else AMF.Internals.Tables.OCL_Attributes.Internal_Set_Name (Self.Element, League.Strings.Internals.Internal (To.Value)); end if; end Set_Name; ------------------------- -- Get_Name_Expression -- ------------------------- overriding function Get_Name_Expression (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.String_Expressions.UML_String_Expression_Access is begin return AMF.UML.String_Expressions.UML_String_Expression_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Name_Expression (Self.Element))); end Get_Name_Expression; ------------------------- -- Set_Name_Expression -- ------------------------- overriding procedure Set_Name_Expression (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.String_Expressions.UML_String_Expression_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Name_Expression (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Name_Expression; ------------------- -- Get_Namespace -- ------------------- overriding function Get_Namespace (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin return AMF.UML.Namespaces.UML_Namespace_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Namespace (Self.Element))); end Get_Namespace; ------------------------ -- Get_Qualified_Name -- ------------------------ overriding function Get_Qualified_Name (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.Optional_String is begin declare use type Matreshka.Internals.Strings.Shared_String_Access; Aux : constant Matreshka.Internals.Strings.Shared_String_Access := AMF.Internals.Tables.OCL_Attributes.Internal_Get_Qualified_Name (Self.Element); begin if Aux = null then return (Is_Empty => True); else return (False, League.Strings.Internals.Create (Aux)); end if; end; end Get_Qualified_Name; -------------------- -- Get_Visibility -- -------------------- overriding function Get_Visibility (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Optional_UML_Visibility_Kind is begin return AMF.Internals.Tables.OCL_Attributes.Internal_Get_Visibility (Self.Element); end Get_Visibility; -------------------- -- Set_Visibility -- -------------------- overriding procedure Set_Visibility (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Optional_UML_Visibility_Kind) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Visibility (Self.Element, To); end Set_Visibility; ----------------------- -- Get_Owned_Comment -- ----------------------- overriding function Get_Owned_Comment (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Comments.Collections.Set_Of_UML_Comment is begin return AMF.UML.Comments.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Comment (Self.Element))); end Get_Owned_Comment; ----------------------- -- Get_Owned_Element -- ----------------------- overriding function Get_Owned_Element (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element is begin return AMF.UML.Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Element (Self.Element))); end Get_Owned_Element; --------------- -- Get_Owner -- --------------- overriding function Get_Owner (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Elements.UML_Element_Access is begin return AMF.UML.Elements.UML_Element_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owner (Self.Element))); end Get_Owner; ----------------- -- Get_Package -- ----------------- overriding function Get_Package (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Packages.UML_Package_Access is begin return AMF.UML.Packages.UML_Package_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Package (Self.Element))); end Get_Package; ----------------- -- Set_Package -- ----------------- overriding procedure Set_Package (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Packages.UML_Package_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Package (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Package; -------------------- -- Get_Visibility -- -------------------- overriding function Get_Visibility (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.UML_Visibility_Kind is begin return AMF.Internals.Tables.OCL_Attributes.Internal_Get_Visibility (Self.Element).Value; end Get_Visibility; -------------------- -- Set_Visibility -- -------------------- overriding procedure Set_Visibility (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.UML_Visibility_Kind) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Visibility (Self.Element, (False, To)); end Set_Visibility; ----------------------------------- -- Get_Owning_Template_Parameter -- ----------------------------------- overriding function Get_Owning_Template_Parameter (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Template_Parameters.UML_Template_Parameter_Access is begin return AMF.UML.Template_Parameters.UML_Template_Parameter_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owning_Template_Parameter (Self.Element))); end Get_Owning_Template_Parameter; ----------------------------------- -- Set_Owning_Template_Parameter -- ----------------------------------- overriding procedure Set_Owning_Template_Parameter (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Owning_Template_Parameter (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Owning_Template_Parameter; ---------------------------- -- Get_Template_Parameter -- ---------------------------- overriding function Get_Template_Parameter (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Template_Parameters.UML_Template_Parameter_Access is begin return AMF.UML.Template_Parameters.UML_Template_Parameter_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Template_Parameter (Self.Element))); end Get_Template_Parameter; ---------------------------- -- Set_Template_Parameter -- ---------------------------- overriding procedure Set_Template_Parameter (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Template_Parameter (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Template_Parameter; ---------------------------------- -- Get_Owned_Template_Signature -- ---------------------------------- overriding function Get_Owned_Template_Signature (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Template_Signatures.UML_Template_Signature_Access is begin return AMF.UML.Template_Signatures.UML_Template_Signature_Access (AMF.Internals.Helpers.To_Element (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Owned_Template_Signature (Self.Element))); end Get_Owned_Template_Signature; ---------------------------------- -- Set_Owned_Template_Signature -- ---------------------------------- overriding procedure Set_Owned_Template_Signature (Self : not null access OCL_Tuple_Type_Proxy; To : AMF.UML.Template_Signatures.UML_Template_Signature_Access) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Owned_Template_Signature (Self.Element, AMF.Internals.Helpers.To_Element (AMF.Elements.Element_Access (To))); end Set_Owned_Template_Signature; -------------------------- -- Get_Template_Binding -- -------------------------- overriding function Get_Template_Binding (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Template_Bindings.Collections.Set_Of_UML_Template_Binding is begin return AMF.UML.Template_Bindings.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Template_Binding (Self.Element))); end Get_Template_Binding; ----------------- -- Get_Is_Leaf -- ----------------- overriding function Get_Is_Leaf (Self : not null access constant OCL_Tuple_Type_Proxy) return Boolean is begin return AMF.Internals.Tables.OCL_Attributes.Internal_Get_Is_Leaf (Self.Element); end Get_Is_Leaf; ----------------- -- Set_Is_Leaf -- ----------------- overriding procedure Set_Is_Leaf (Self : not null access OCL_Tuple_Type_Proxy; To : Boolean) is begin AMF.Internals.Tables.OCL_Attributes.Internal_Set_Is_Leaf (Self.Element, To); end Set_Is_Leaf; --------------------------- -- Get_Redefined_Element -- --------------------------- overriding function Get_Redefined_Element (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element is begin return AMF.UML.Redefinable_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Redefined_Element (Self.Element))); end Get_Redefined_Element; ------------------------------ -- Get_Redefinition_Context -- ------------------------------ overriding function Get_Redefinition_Context (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is begin return AMF.UML.Classifiers.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (AMF.Internals.Tables.OCL_Attributes.Internal_Get_Redefinition_Context (Self.Element))); end Get_Redefinition_Context; ------------- -- Inherit -- ------------- overriding function Inherit (Self : not null access constant OCL_Tuple_Type_Proxy; Inhs : AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Inherit unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Inherit"; return Inherit (Self, Inhs); end Inherit; ------------------ -- All_Features -- ------------------ overriding function All_Features (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Features.Collections.Set_Of_UML_Feature is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Features unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.All_Features"; return All_Features (Self); end All_Features; ----------------- -- All_Parents -- ----------------- overriding function All_Parents (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Parents unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.All_Parents"; return All_Parents (Self); end All_Parents; ----------------- -- Conforms_To -- ----------------- overriding function Conforms_To (Self : not null access constant OCL_Tuple_Type_Proxy; Other : AMF.UML.Classifiers.UML_Classifier_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Conforms_To unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Conforms_To"; return Conforms_To (Self, Other); end Conforms_To; ------------- -- General -- ------------- overriding function General (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "General unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.General"; return General (Self); end General; ----------------------- -- Has_Visibility_Of -- ----------------------- overriding function Has_Visibility_Of (Self : not null access constant OCL_Tuple_Type_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Has_Visibility_Of unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Has_Visibility_Of"; return Has_Visibility_Of (Self, N); end Has_Visibility_Of; ------------------------- -- Inheritable_Members -- ------------------------- overriding function Inheritable_Members (Self : not null access constant OCL_Tuple_Type_Proxy; C : AMF.UML.Classifiers.UML_Classifier_Access) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Inheritable_Members unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Inheritable_Members"; return Inheritable_Members (Self, C); end Inheritable_Members; ---------------------- -- Inherited_Member -- ---------------------- overriding function Inherited_Member (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Inherited_Member unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Inherited_Member"; return Inherited_Member (Self); end Inherited_Member; ----------------- -- Is_Template -- ----------------- overriding function Is_Template (Self : not null access constant OCL_Tuple_Type_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Template unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Is_Template"; return Is_Template (Self); end Is_Template; ------------------------- -- May_Specialize_Type -- ------------------------- overriding function May_Specialize_Type (Self : not null access constant OCL_Tuple_Type_Proxy; C : AMF.UML.Classifiers.UML_Classifier_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "May_Specialize_Type unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.May_Specialize_Type"; return May_Specialize_Type (Self, C); end May_Specialize_Type; ------------- -- Parents -- ------------- overriding function Parents (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Parents unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Parents"; return Parents (Self); end Parents; ------------------------ -- Exclude_Collisions -- ------------------------ overriding function Exclude_Collisions (Self : not null access constant OCL_Tuple_Type_Proxy; Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element) return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Exclude_Collisions unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Exclude_Collisions"; return Exclude_Collisions (Self, Imps); end Exclude_Collisions; ------------------------- -- Get_Names_Of_Member -- ------------------------- overriding function Get_Names_Of_Member (Self : not null access constant OCL_Tuple_Type_Proxy; Element : AMF.UML.Named_Elements.UML_Named_Element_Access) return AMF.String_Collections.Set_Of_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Get_Names_Of_Member unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Get_Names_Of_Member"; return Get_Names_Of_Member (Self, Element); end Get_Names_Of_Member; -------------------- -- Import_Members -- -------------------- overriding function Import_Members (Self : not null access constant OCL_Tuple_Type_Proxy; Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element) return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Import_Members unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Import_Members"; return Import_Members (Self, Imps); end Import_Members; --------------------- -- Imported_Member -- --------------------- overriding function Imported_Member (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Imported_Member unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Imported_Member"; return Imported_Member (Self); end Imported_Member; --------------------------------- -- Members_Are_Distinguishable -- --------------------------------- overriding function Members_Are_Distinguishable (Self : not null access constant OCL_Tuple_Type_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Members_Are_Distinguishable unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Members_Are_Distinguishable"; return Members_Are_Distinguishable (Self); end Members_Are_Distinguishable; ------------------ -- Owned_Member -- ------------------ overriding function Owned_Member (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Owned_Member unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Owned_Member"; return Owned_Member (Self); end Owned_Member; -------------------- -- All_Namespaces -- -------------------- overriding function All_Namespaces (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Namespaces.Collections.Ordered_Set_Of_UML_Namespace is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Namespaces unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.All_Namespaces"; return All_Namespaces (Self); end All_Namespaces; ------------------------- -- All_Owning_Packages -- ------------------------- overriding function All_Owning_Packages (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Packages.Collections.Set_Of_UML_Package is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.All_Owning_Packages"; return All_Owning_Packages (Self); end All_Owning_Packages; ----------------------------- -- Is_Distinguishable_From -- ----------------------------- overriding function Is_Distinguishable_From (Self : not null access constant OCL_Tuple_Type_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access; Ns : AMF.UML.Namespaces.UML_Namespace_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Is_Distinguishable_From"; return Is_Distinguishable_From (Self, N, Ns); end Is_Distinguishable_From; --------------- -- Namespace -- --------------- overriding function Namespace (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Namespace"; return Namespace (Self); end Namespace; -------------------- -- Qualified_Name -- -------------------- overriding function Qualified_Name (Self : not null access constant OCL_Tuple_Type_Proxy) return League.Strings.Universal_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Qualified_Name unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Qualified_Name"; return Qualified_Name (Self); end Qualified_Name; --------------- -- Separator -- --------------- overriding function Separator (Self : not null access constant OCL_Tuple_Type_Proxy) return League.Strings.Universal_String is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Separator unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Separator"; return Separator (Self); end Separator; ------------------------ -- All_Owned_Elements -- ------------------------ overriding function All_Owned_Elements (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "All_Owned_Elements unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.All_Owned_Elements"; return All_Owned_Elements (Self); end All_Owned_Elements; ------------------- -- Must_Be_Owned -- ------------------- overriding function Must_Be_Owned (Self : not null access constant OCL_Tuple_Type_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Must_Be_Owned unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Must_Be_Owned"; return Must_Be_Owned (Self); end Must_Be_Owned; ----------------- -- Conforms_To -- ----------------- overriding function Conforms_To (Self : not null access constant OCL_Tuple_Type_Proxy; Other : AMF.UML.Types.UML_Type_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Conforms_To unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Conforms_To"; return Conforms_To (Self, Other); end Conforms_To; ------------------------ -- Is_Compatible_With -- ------------------------ overriding function Is_Compatible_With (Self : not null access constant OCL_Tuple_Type_Proxy; P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Compatible_With unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Is_Compatible_With"; return Is_Compatible_With (Self, P); end Is_Compatible_With; --------------------------- -- Is_Template_Parameter -- --------------------------- overriding function Is_Template_Parameter (Self : not null access constant OCL_Tuple_Type_Proxy) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Template_Parameter unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Is_Template_Parameter"; return Is_Template_Parameter (Self); end Is_Template_Parameter; ---------------------------- -- Parameterable_Elements -- ---------------------------- overriding function Parameterable_Elements (Self : not null access constant OCL_Tuple_Type_Proxy) return AMF.UML.Parameterable_Elements.Collections.Set_Of_UML_Parameterable_Element is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Parameterable_Elements unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Parameterable_Elements"; return Parameterable_Elements (Self); end Parameterable_Elements; ------------------------ -- Is_Consistent_With -- ------------------------ overriding function Is_Consistent_With (Self : not null access constant OCL_Tuple_Type_Proxy; Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Consistent_With unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Is_Consistent_With"; return Is_Consistent_With (Self, Redefinee); end Is_Consistent_With; ----------------------------------- -- Is_Redefinition_Context_Valid -- ----------------------------------- overriding function Is_Redefinition_Context_Valid (Self : not null access constant OCL_Tuple_Type_Proxy; Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Redefinition_Context_Valid unimplemented"); raise Program_Error with "Unimplemented procedure OCL_Tuple_Type_Proxy.Is_Redefinition_Context_Valid"; return Is_Redefinition_Context_Valid (Self, Redefined); end Is_Redefinition_Context_Valid; ------------------- -- Enter_Element -- ------------------- overriding procedure Enter_Element (Self : not null access constant OCL_Tuple_Type_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.OCL_Visitors.OCL_Visitor'Class then AMF.Visitors.OCL_Visitors.OCL_Visitor'Class (Visitor).Enter_Tuple_Type (AMF.OCL.Tuple_Types.OCL_Tuple_Type_Access (Self), Control); end if; end Enter_Element; ------------------- -- Leave_Element -- ------------------- overriding procedure Leave_Element (Self : not null access constant OCL_Tuple_Type_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Visitor in AMF.Visitors.OCL_Visitors.OCL_Visitor'Class then AMF.Visitors.OCL_Visitors.OCL_Visitor'Class (Visitor).Leave_Tuple_Type (AMF.OCL.Tuple_Types.OCL_Tuple_Type_Access (Self), Control); end if; end Leave_Element; ------------------- -- Visit_Element -- ------------------- overriding procedure Visit_Element (Self : not null access constant OCL_Tuple_Type_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control) is begin if Iterator in AMF.Visitors.OCL_Iterators.OCL_Iterator'Class then AMF.Visitors.OCL_Iterators.OCL_Iterator'Class (Iterator).Visit_Tuple_Type (Visitor, AMF.OCL.Tuple_Types.OCL_Tuple_Type_Access (Self), Control); end if; end Visit_Element; end AMF.Internals.OCL_Tuple_Types;
package openGL.Conversions is function to_Vector_4 (From : in rgba_Color) return Vector_4; function to_Vector_4 (From : in lucid_Color) return Vector_4; function to_Vector_3 (From : in rgb_Color) return Vector_3; function to_Vector_3 (From : in Color) return Vector_3; end openGL.Conversions;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Ada.Streams; with League.Stream_Element_Vectors; with League.Strings; private with Matreshka.FastCGI; package FastCGI.Replies is -- pragma Preelaborate; type Reply is tagged limited private; function Has_Raw_Header (Self : Reply; Name : League.Stream_Element_Vectors.Stream_Element_Vector) return Boolean; function Raw_Header (Self : Reply; Name : League.Stream_Element_Vectors.Stream_Element_Vector) return League.Stream_Element_Vectors.Stream_Element_Vector; procedure Set_Raw_Header (Self : in out Reply; Name : League.Stream_Element_Vectors.Stream_Element_Vector; Value : League.Stream_Element_Vectors.Stream_Element_Vector); procedure Set_Content_Type (Self : in out Reply; Value : League.Strings.Universal_String); function Stream (Self : Reply) return not null access Ada.Streams.Root_Stream_Type'Class; -- Returns stream to write reply's data to server. function Error_Stream (Self : Reply) return not null access Ada.Streams.Root_Stream_Type'Class; -- Returns stream to read error data to server. private type Output_Stream is new Ada.Streams.Root_Stream_Type with record Descriptor : Matreshka.FastCGI.Descriptor_Access; end record; type Output_Stream_Access is access all Output_Stream; overriding procedure Read (Self : in out Output_Stream; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); overriding procedure Write (Self : in out Output_Stream; Item : Ada.Streams.Stream_Element_Array); type Reply is tagged limited record Descriptor : Matreshka.FastCGI.Descriptor_Access; Out_Stream : Output_Stream_Access; end record; end FastCGI.Replies;
with Ada.Text_IO; with Ada.Integer_Text_IO; with Ada.Numerics.Long_Elementary_Functions; with Riemann; procedure Main is Xs : array(1..4) of Float := (1.0, 2.0, 3.0, 4.0); Results : array(1..4) of Long_Float := (0.74682413, 0.8820813907, 0.88620734825952, 0.8862269117895); package TIO renames Ada.Text_IO; package IIO renames Ada.Integer_Text_IO; package FIO is new Ada.Text_IO.Float_IO(Float); package LFIO is new Ada.Text_IO.Float_IO(Long_Float); package LFElem renames Ada.Numerics.Long_Elementary_Functions; begin for XI in Xs'Range loop declare X : Float := Xs(XI); XL : Long_Float := Long_Float(X); begin for N in 1 .. 10 loop declare partitionSize : Integer := 2 ** N; Res : Long_Float := Long_Float(Riemann.erf_Riemann(X,N)); begin TIO.Put("erf_Riemann("); FIO.Put(X, 1, 1, 0); TIO.Put(", "); IIO.Put(N, 2); TIO.Put(") = "); LFIO.Put(Res, 1, 6, 0); TIO.New_Line; end; end loop; TIO.New_Line; TIO.Put("the integral for x = "); FIO.Put(X, 1, 1, 0); TIO.Put(": "); LFIO.Put(Results(XI), 1, 6, 0); TIO.New_Line; TIO.Put("--------------------------------------------------------"); TIO.New_Line; end; end loop; end Main;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>aes16_bidir</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>key_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>key_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>key_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[2]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>key_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>key[3]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>inout_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>inout_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>inout_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[2]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>inout_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>inout[3]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>iv_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>iv_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>iv_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[2]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>iv_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>iv[3]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>145</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_13"> <Value> <Obj> <type>0</type> <id>27</id> <name>ctx_RoundKey</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>19</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>19</second> </item> </second> </item> </inlineStackInfo> <originalName>ctx.RoundKey</originalName> <rtlName>ctx_RoundKey_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>175</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>28</id> <name>ctx_Iv</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>19</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>19</second> </item> </second> </item> </inlineStackInfo> <originalName>ctx.Iv</originalName> <rtlName>ctx_Iv_U</rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>176</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>30</id> <name>key_0_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>178</item> <item>179</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>31</id> <name>inout_0_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>180</item> <item>181</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>32</id> <name>iv_0_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>182</item> <item>183</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>33</id> <name>p_key_0</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[0]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_0_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>34</id> <name>p_text_0</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[0]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_0_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>185</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>35</id> <name>p_iv_0</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[0]</originalName> <rtlName>p_iv_0_fu_426_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>186</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>36</id> <name>p_key_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[1]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_1_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>188</item> <item>189</item> <item>191</item> <item>193</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_text_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[1]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_1_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>194</item> <item>195</item> <item>196</item> <item>197</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>38</id> <name>p_iv_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[1]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>198</item> <item>199</item> <item>200</item> <item>201</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>39</id> <name>p_key_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[2]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_2_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>202</item> <item>203</item> <item>205</item> <item>207</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>40</id> <name>p_text_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[2]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_2_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>208</item> <item>209</item> <item>210</item> <item>211</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>41</id> <name>p_iv_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[2]</originalName> <rtlName>p_iv_2_reg_1028</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>212</item> <item>213</item> <item>214</item> <item>215</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>42</id> <name>p_key_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[3]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_3_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>216</item> <item>217</item> <item>219</item> <item>221</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>43</id> <name>p_text_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[3]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_3_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>222</item> <item>223</item> <item>224</item> <item>225</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>44</id> <name>p_iv_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[3]</originalName> <rtlName>p_iv_3_reg_1038</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>226</item> <item>227</item> <item>228</item> <item>229</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>45</id> <name>key_1_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>230</item> <item>231</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>46</id> <name>inout_1_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>232</item> <item>233</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>47</id> <name>iv_1_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>234</item> <item>235</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>48</id> <name>p_key_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[4]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_4_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>236</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>49</id> <name>p_text_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[4]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_4_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>237</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>50</id> <name>p_iv_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[4]</originalName> <rtlName>p_iv_4_fu_609_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>238</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>51</id> <name>p_key_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[5]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_5_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>239</item> <item>240</item> <item>241</item> <item>242</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>52</id> <name>p_text_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[5]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_5_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>243</item> <item>244</item> <item>245</item> <item>246</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_iv_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[5]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>247</item> <item>248</item> <item>249</item> <item>250</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>54</id> <name>p_key_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[6]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_6_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>251</item> <item>252</item> <item>253</item> <item>254</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>55</id> <name>p_text_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[6]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_6_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>255</item> <item>256</item> <item>257</item> <item>258</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>56</id> <name>p_iv_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[6]</originalName> <rtlName>p_iv_6_reg_1118</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>259</item> <item>260</item> <item>261</item> <item>262</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>57</id> <name>p_key_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[7]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_7_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>263</item> <item>264</item> <item>265</item> <item>266</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>58</id> <name>p_text_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[7]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_7_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>267</item> <item>268</item> <item>269</item> <item>270</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>59</id> <name>p_iv_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[7]</originalName> <rtlName>p_iv_7_reg_1123</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>271</item> <item>272</item> <item>273</item> <item>274</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>60</id> <name>key_2_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>275</item> <item>276</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>61</id> <name>inout_2_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>277</item> <item>278</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>62</id> <name>iv_2_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>279</item> <item>280</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>63</id> <name>p_key_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[8]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_8_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>281</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>64</id> <name>p_text_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[8]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_8_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>282</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>65</id> <name>p_iv_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[8]</originalName> <rtlName>p_iv_8_fu_645_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>283</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>66</id> <name>p_key_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[9]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_9_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>284</item> <item>285</item> <item>286</item> <item>287</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>67</id> <name>p_text_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[9]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_9_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>288</item> <item>289</item> <item>290</item> <item>291</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>68</id> <name>p_iv_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[9]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>292</item> <item>293</item> <item>294</item> <item>295</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>69</id> <name>p_key_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[10]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_10_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>296</item> <item>297</item> <item>298</item> <item>299</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>70</id> <name>p_text_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[10]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_10_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>300</item> <item>301</item> <item>302</item> <item>303</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>71</id> <name>p_iv_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[10]</originalName> <rtlName>p_iv_10_reg_1148</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>304</item> <item>305</item> <item>306</item> <item>307</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>72</id> <name>p_key_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[11]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_11_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>308</item> <item>309</item> <item>310</item> <item>311</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>73</id> <name>p_text_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[11]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_11_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>314</item> <item>315</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>74</id> <name>p_iv_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[11]</originalName> <rtlName>p_iv_11_reg_1153</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>316</item> <item>317</item> <item>318</item> <item>319</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>75</id> <name>key_3_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>320</item> <item>321</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>76</id> <name>inout_3_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>322</item> <item>323</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>77</id> <name>iv_3_read</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>324</item> <item>325</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>78</id> <name>p_key_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[12]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_12_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>326</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>79</id> <name>p_text_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[12]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_12_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>327</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>80</id> <name>p_iv_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[12]</originalName> <rtlName>p_iv_12_fu_681_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>328</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>81</id> <name>p_key_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[13]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_13_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>329</item> <item>330</item> <item>331</item> <item>332</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>82</id> <name>p_text_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[13]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_13_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>333</item> <item>334</item> <item>335</item> <item>336</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>83</id> <name>p_iv_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[13]</originalName> <rtlName>ctx_Iv_d1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>337</item> <item>338</item> <item>339</item> <item>340</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>84</id> <name>p_key_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[14]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_14_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>341</item> <item>342</item> <item>343</item> <item>344</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>85</id> <name>p_text_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[14]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_14_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>345</item> <item>346</item> <item>347</item> <item>348</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>86</id> <name>p_iv_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[14]</originalName> <rtlName>p_iv_14_reg_1178</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>349</item> <item>350</item> <item>351</item> <item>352</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>87</id> <name>p_key_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>25</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>25</second> </item> </second> </item> </inlineStackInfo> <originalName>_key[15]</originalName> <rtlName>grp_KeyExpansion_fu_373_Key_15_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>353</item> <item>354</item> <item>355</item> <item>356</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>88</id> <name>p_text_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>26</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[15]</originalName> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397_buf_15_read</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>357</item> <item>358</item> <item>359</item> <item>360</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>95</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>89</id> <name>p_iv_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>27</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>27</second> </item> </second> </item> </inlineStackInfo> <originalName>_iv[15]</originalName> <rtlName>p_iv_15_reg_1183</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>361</item> <item>362</item> <item>363</item> <item>364</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>90</id> <name>_ln248</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>248</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>248</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_KeyExpansion_fu_373</rtlName> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>19</count> <item_version>0</item_version> <item>366</item> <item>367</item> <item>368</item> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>373</item> <item>374</item> <item>375</item> <item>376</item> <item>377</item> <item>378</item> <item>379</item> <item>380</item> <item>381</item> <item>382</item> <item>383</item> <item>597</item> </oprand_edges> <opcode>call</opcode> <m_Display>1</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>1</m_isLCDNode> <m_isStartOfPath>1</m_isStartOfPath> <m_delay>4.36</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>91</id> <name>ctx_Iv_addr</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>384</item> <item>386</item> <item>387</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>92</id> <name>ctx_Iv_addr_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>388</item> <item>389</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>93</id> <name>ctx_Iv_addr_1</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>390</item> <item>391</item> <item>392</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>94</id> <name>ctx_Iv_addr_1_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>393</item> <item>394</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>95</id> <name>ctx_Iv_addr_2</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>395</item> <item>396</item> <item>398</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>96</id> <name>ctx_Iv_addr_2_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>399</item> <item>400</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>97</id> <name>ctx_Iv_addr_3</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>401</item> <item>402</item> <item>404</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>98</id> <name>ctx_Iv_addr_3_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>405</item> <item>406</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>99</id> <name>ctx_Iv_addr_4</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>407</item> <item>408</item> <item>410</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>100</id> <name>ctx_Iv_addr_4_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>411</item> <item>412</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>101</id> <name>ctx_Iv_addr_5</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>413</item> <item>414</item> <item>416</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>102</id> <name>ctx_Iv_addr_5_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>417</item> <item>418</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>103</id> <name>ctx_Iv_addr_6</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>419</item> <item>420</item> <item>422</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>104</id> <name>ctx_Iv_addr_6_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>423</item> <item>424</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>105</id> <name>ctx_Iv_addr_7</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>425</item> <item>426</item> <item>428</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>106</id> <name>ctx_Iv_addr_7_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>429</item> <item>430</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>107</id> <name>ctx_Iv_addr_8</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>431</item> <item>432</item> <item>434</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>108</id> <name>ctx_Iv_addr_8_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>435</item> <item>436</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>109</id> <name>ctx_Iv_addr_9</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>437</item> <item>438</item> <item>440</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>110</id> <name>ctx_Iv_addr_9_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>441</item> <item>442</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>111</id> <name>ctx_Iv_addr_10</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>443</item> <item>444</item> <item>446</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>112</id> <name>ctx_Iv_addr_10_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>447</item> <item>448</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>113</id> <name>ctx_Iv_addr_11</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>449</item> <item>450</item> <item>452</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>114</id> <name>ctx_Iv_addr_11_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>453</item> <item>454</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>115</id> <name>ctx_Iv_addr_12</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>455</item> <item>456</item> <item>458</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>116</id> <name>ctx_Iv_addr_12_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>459</item> <item>460</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>117</id> <name>ctx_Iv_addr_13</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>461</item> <item>462</item> <item>464</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>118</id> <name>ctx_Iv_addr_13_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>465</item> <item>466</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>119</id> <name>ctx_Iv_addr_14</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>467</item> <item>468</item> <item>470</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>120</id> <name>ctx_Iv_addr_14_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>471</item> <item>472</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>121</id> <name>ctx_Iv_addr_15</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>473</item> <item>474</item> <item>476</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>122</id> <name>ctx_Iv_addr_15_write_ln249</name> <fileName>c_src/aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>249</lineNumber> <contextFuncName>AES_init_ctx_iv</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>c_src/aes.c</first> <second>AES_init_ctx_iv</second> </first> <second>249</second> </item> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>477</item> <item>478</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>123</id> <name>call_ret</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_AES_CTR_xcrypt_buffe_fu_397</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>39</count> <item_version>0</item_version> <item>480</item> <item>481</item> <item>482</item> <item>483</item> <item>484</item> <item>485</item> <item>486</item> <item>487</item> <item>488</item> <item>489</item> <item>490</item> <item>491</item> <item>492</item> <item>493</item> <item>494</item> <item>495</item> <item>496</item> <item>497</item> <item>498</item> <item>598</item> <item>655</item> <item>656</item> <item>657</item> <item>658</item> <item>659</item> <item>660</item> <item>661</item> <item>662</item> <item>663</item> <item>664</item> <item>665</item> <item>666</item> <item>667</item> <item>668</item> <item>669</item> <item>670</item> <item>671</item> <item>680</item> <item>2147483647</item> </oprand_edges> <opcode>call</opcode> <m_Display>1</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>1</m_isLCDNode> <m_isStartOfPath>1</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>124</id> <name>p_text_14_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[14]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>499</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>97</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>125</id> <name>p_text_13_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[13]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>500</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>126</id> <name>p_text_12_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[12]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>501</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>99</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>127</id> <name>p_text_11_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[11]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>502</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>100</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>128</id> <name>p_text_10_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[10]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>503</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>101</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>129</id> <name>p_text_9_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[9]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>504</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>130</id> <name>p_text_8_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[8]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>505</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>131</id> <name>p_text_7_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[7]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>506</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>104</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>132</id> <name>p_text_6_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[6]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>507</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>133</id> <name>p_text_5_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[5]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>508</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>134</id> <name>p_text_4_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[4]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>509</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>135</id> <name>p_text_3_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[3]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>510</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>136</id> <name>p_text_2_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[2]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>511</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>137</id> <name>p_text_1_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[1]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>512</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>110</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>138</id> <name>p_text_0_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[0]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>513</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>111</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>139</id> <name>p_text_15_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>_text[15]</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>514</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>112</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>140</id> <name>or_ln55_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_0_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>516</item> <item>517</item> <item>518</item> <item>519</item> <item>520</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>113</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>141</id> <name>inout_0_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>522</item> <item>523</item> <item>524</item> <item>679</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>114</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>142</id> <name>ctx_Iv_load</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>525</item> <item>639</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>121</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>143</id> <name>ctx_Iv_load_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>526</item> <item>640</item> </oprand_edges> <opcode>load</opcode> <m_Display>1</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>1</m_isLCDNode> <m_isStartOfPath>1</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>122</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>144</id> <name>ctx_Iv_load_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>527</item> <item>641</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>123</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>145</id> <name>ctx_Iv_load_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>528</item> <item>642</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>124</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>146</id> <name>or_ln59_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_0_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>529</item> <item>530</item> <item>531</item> <item>532</item> <item>533</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>137</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>147</id> <name>iv_0_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>534</item> <item>535</item> <item>536</item> <item>678</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>138</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>148</id> <name>or_ln55_5_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_1_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>537</item> <item>538</item> <item>539</item> <item>540</item> <item>541</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>149</id> <name>inout_1_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>542</item> <item>543</item> <item>544</item> <item>677</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>150</id> <name>ctx_Iv_load_4</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>545</item> <item>643</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>151</id> <name>ctx_Iv_load_5</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>546</item> <item>644</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>126</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>152</id> <name>ctx_Iv_load_6</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>547</item> <item>645</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>127</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>153</id> <name>ctx_Iv_load_7</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>548</item> <item>646</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>154</id> <name>or_ln59_2_1</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_1_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>549</item> <item>550</item> <item>551</item> <item>552</item> <item>553</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>139</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>155</id> <name>iv_1_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>554</item> <item>555</item> <item>556</item> <item>676</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>140</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>156</id> <name>or_ln55_5_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_2_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>557</item> <item>558</item> <item>559</item> <item>560</item> <item>561</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>117</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>157</id> <name>inout_2_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>562</item> <item>563</item> <item>564</item> <item>675</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>118</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>158</id> <name>ctx_Iv_load_8</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>565</item> <item>647</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>129</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>159</id> <name>ctx_Iv_load_9</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>566</item> <item>648</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>130</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>160</id> <name>ctx_Iv_load_10</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>567</item> <item>649</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>131</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>161</id> <name>ctx_Iv_load_11</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>568</item> <item>650</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>132</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>162</id> <name>or_ln59_2_2</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_2_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>569</item> <item>570</item> <item>571</item> <item>572</item> <item>573</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>141</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>163</id> <name>iv_2_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>574</item> <item>575</item> <item>576</item> <item>674</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>142</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>164</id> <name>or_ln55_5_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>inout_3_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>577</item> <item>578</item> <item>579</item> <item>580</item> <item>581</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>119</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>165</id> <name>inout_3_write_ln55</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>582</item> <item>583</item> <item>584</item> <item>673</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>120</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>166</id> <name>ctx_Iv_load_12</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>585</item> <item>651</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>133</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>167</id> <name>ctx_Iv_load_13</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>586</item> <item>652</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>134</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>168</id> <name>ctx_Iv_load_14</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>587</item> <item>653</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>135</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>169</id> <name>ctx_Iv_load_15</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>588</item> <item>654</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>136</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>170</id> <name>or_ln59_2_3</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>iv_3_o</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>589</item> <item>590</item> <item>591</item> <item>592</item> <item>593</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>143</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>171</id> <name>iv_3_write_ln59</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>594</item> <item>595</item> <item>596</item> <item>672</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>144</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>172</id> <name>_ln74</name> <fileName>hls/top_aes.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>aes16_bidir</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nas/ei/share/TUEIEDA/LabSDS/WS20/ge46bod/lab3_aes_hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls/top_aes.c</first> <second>aes16_bidir</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>145</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>24</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_158"> <Value> <Obj> <type>2</type> <id>174</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_159"> <Value> <Obj> <type>2</type> <id>190</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_160"> <Value> <Obj> <type>2</type> <id>192</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_161"> <Value> <Obj> <type>2</type> <id>204</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>16</content> </item> <item class_id_reference="16" object_id="_162"> <Value> <Obj> <type>2</type> <id>206</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>23</content> </item> <item class_id_reference="16" object_id="_163"> <Value> <Obj> <type>2</type> <id>218</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>24</content> </item> <item class_id_reference="16" object_id="_164"> <Value> <Obj> <type>2</type> <id>220</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_165"> <Value> <Obj> <type>2</type> <id>365</id> <name>KeyExpansion</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:KeyExpansion&gt;</content> </item> <item class_id_reference="16" object_id="_166"> <Value> <Obj> <type>2</type> <id>385</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_167"> <Value> <Obj> <type>2</type> <id>397</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_168"> <Value> <Obj> <type>2</type> <id>403</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_169"> <Value> <Obj> <type>2</type> <id>409</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_170"> <Value> <Obj> <type>2</type> <id>415</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_171"> <Value> <Obj> <type>2</type> <id>421</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_172"> <Value> <Obj> <type>2</type> <id>427</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_173"> <Value> <Obj> <type>2</type> <id>433</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_174"> <Value> <Obj> <type>2</type> <id>439</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_175"> <Value> <Obj> <type>2</type> <id>445</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_176"> <Value> <Obj> <type>2</type> <id>451</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_177"> <Value> <Obj> <type>2</type> <id>457</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>12</content> </item> <item class_id_reference="16" object_id="_178"> <Value> <Obj> <type>2</type> <id>463</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>13</content> </item> <item class_id_reference="16" object_id="_179"> <Value> <Obj> <type>2</type> <id>469</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>14</content> </item> <item class_id_reference="16" object_id="_180"> <Value> <Obj> <type>2</type> <id>475</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_181"> <Value> <Obj> <type>2</type> <id>479</id> <name>AES_CTR_xcrypt_buffe</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:AES_CTR_xcrypt_buffe&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_182"> <Obj> <type>3</type> <id>173</id> <name>aes16_bidir</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>145</count> <item_version>0</item_version> <item>27</item> <item>28</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>376</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_183"> <id>175</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>176</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>179</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>181</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>183</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>184</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>185</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>186</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>189</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>191</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>193</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>195</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>196</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>197</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>199</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>200</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>201</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>203</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>205</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>207</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>209</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>210</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>211</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>213</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>214</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>215</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>217</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>219</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>221</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>223</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>224</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>225</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>227</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>228</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>229</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>231</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>233</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>235</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>236</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>237</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>238</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>240</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>241</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>242</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>244</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>245</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>246</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>248</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>249</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>250</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>252</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>253</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>254</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>256</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>257</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>258</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>260</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>261</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>262</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>264</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>265</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>266</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>268</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>269</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>270</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>272</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>273</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>274</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>276</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>278</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>280</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>281</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>282</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>283</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>285</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>286</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>287</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>289</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>290</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>291</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>293</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>294</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>295</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>297</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>298</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>299</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>301</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>302</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>303</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>305</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>306</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>307</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>309</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>310</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>311</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>313</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>314</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>315</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>317</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>318</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>319</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>321</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>323</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>325</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>326</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>327</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>328</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>330</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>331</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>332</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>334</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>335</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>336</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>338</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>339</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>340</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>342</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>343</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>344</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>346</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>347</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>348</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>350</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>351</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>352</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>354</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>355</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>356</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>358</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>359</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>360</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>362</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>363</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>364</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>366</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>367</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>368</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>369</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>370</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>371</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>372</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>373</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>374</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>375</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>376</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>377</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>378</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>379</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>380</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>381</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>382</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>383</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>384</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>386</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>387</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>388</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>389</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>390</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>391</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>392</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>393</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>394</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>395</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>396</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>398</id> <edge_type>1</edge_type> <source_obj>397</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>399</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>400</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>401</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>402</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>404</id> <edge_type>1</edge_type> <source_obj>403</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>405</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>406</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>407</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>408</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>410</id> <edge_type>1</edge_type> <source_obj>409</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>411</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>412</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>413</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>414</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>416</id> <edge_type>1</edge_type> <source_obj>415</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>417</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>418</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>419</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>420</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>422</id> <edge_type>1</edge_type> <source_obj>421</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>423</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>424</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>425</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>426</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>428</id> <edge_type>1</edge_type> <source_obj>427</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>429</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>430</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>431</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>432</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>434</id> <edge_type>1</edge_type> <source_obj>433</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>435</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>436</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>437</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>438</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>440</id> <edge_type>1</edge_type> <source_obj>439</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>441</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>442</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>443</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>444</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>446</id> <edge_type>1</edge_type> <source_obj>445</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>447</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>448</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>449</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>450</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>452</id> <edge_type>1</edge_type> <source_obj>451</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>453</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>454</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>455</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>456</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>458</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>459</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>460</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>461</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>462</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>464</id> <edge_type>1</edge_type> <source_obj>463</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>465</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>466</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>467</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>468</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>470</id> <edge_type>1</edge_type> <source_obj>469</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>471</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>472</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>473</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>474</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>476</id> <edge_type>1</edge_type> <source_obj>475</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>477</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>478</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>480</id> <edge_type>1</edge_type> <source_obj>479</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>481</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>482</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>483</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>484</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>485</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>486</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>487</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>488</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>489</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>490</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>491</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>492</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>493</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>494</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>495</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>496</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>497</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>498</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>499</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>500</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>501</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>502</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>503</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>504</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>505</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>506</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>507</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>508</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>509</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>510</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>511</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>512</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>513</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>514</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>517</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>518</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>519</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>520</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>523</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>524</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>525</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>526</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>527</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>528</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>530</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>531</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>532</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>533</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>535</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>536</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>538</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>539</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>540</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>541</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>543</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>544</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>545</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>546</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>547</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>548</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>550</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>551</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>552</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>553</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>555</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>556</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>558</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>559</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>560</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>561</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>563</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>564</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>565</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>566</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>567</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>568</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>570</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>571</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>572</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>573</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>575</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>576</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>578</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>579</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>580</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>581</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>583</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>584</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>585</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>586</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>587</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>588</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>590</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>591</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>592</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>593</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>595</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>596</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>597</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>598</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>639</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>640</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>641</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>642</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>643</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>644</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>645</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>646</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>647</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>648</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>649</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>650</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>651</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>166</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>652</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>653</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>654</id> <edge_type>4</edge_type> <source_obj>123</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>655</id> <edge_type>4</edge_type> <source_obj>122</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>656</id> <edge_type>4</edge_type> <source_obj>120</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>657</id> <edge_type>4</edge_type> <source_obj>118</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>658</id> <edge_type>4</edge_type> <source_obj>116</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>659</id> <edge_type>4</edge_type> <source_obj>114</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>660</id> <edge_type>4</edge_type> <source_obj>112</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>661</id> <edge_type>4</edge_type> <source_obj>110</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>662</id> <edge_type>4</edge_type> <source_obj>108</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>663</id> <edge_type>4</edge_type> <source_obj>106</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>664</id> <edge_type>4</edge_type> <source_obj>104</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>665</id> <edge_type>4</edge_type> <source_obj>102</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>666</id> <edge_type>4</edge_type> <source_obj>100</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>667</id> <edge_type>4</edge_type> <source_obj>98</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>668</id> <edge_type>4</edge_type> <source_obj>96</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>669</id> <edge_type>4</edge_type> <source_obj>94</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>670</id> <edge_type>4</edge_type> <source_obj>92</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>671</id> <edge_type>4</edge_type> <source_obj>90</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>672</id> <edge_type>4</edge_type> <source_obj>77</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>673</id> <edge_type>4</edge_type> <source_obj>76</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>674</id> <edge_type>4</edge_type> <source_obj>62</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>675</id> <edge_type>4</edge_type> <source_obj>61</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>676</id> <edge_type>4</edge_type> <source_obj>47</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>677</id> <edge_type>4</edge_type> <source_obj>46</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>678</id> <edge_type>4</edge_type> <source_obj>32</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>679</id> <edge_type>4</edge_type> <source_obj>31</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>680</id> <edge_type>4</edge_type> <source_obj>90</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>2147483647</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>90</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_559"> <mId>1</mId> <mTag>aes16_bidir</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>173</item> </basic_blocks> <mII>204</mII> <mDepth>204</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>203</mMinLatency> <mMaxLatency>203</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_560"> <states class_id="25" tracking_level="0" version="0"> <count>204</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_561"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>32</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_562"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_563"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_564"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_565"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_566"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_567"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_568"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_569"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_570"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_571"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_572"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_573"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_574"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_575"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_576"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_577"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_578"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_579"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_580"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_581"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_582"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_583"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_584"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_585"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_586"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_587"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_588"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_589"> <id>90</id> <stage>88</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_590"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_591"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_592"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_593"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_594"> <id>2</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_595"> <id>90</id> <stage>87</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_596"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_597"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_598"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_599"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_600"> <id>3</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_601"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_602"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_603"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_604"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_605"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_606"> <id>90</id> <stage>86</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_607"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_608"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_609"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_610"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_611"> <id>4</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_612"> <id>90</id> <stage>85</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_613"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_614"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_615"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_616"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_617"> <id>5</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_618"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_619"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_620"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_621"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_622"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_623"> <id>90</id> <stage>84</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_624"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_625"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_626"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_627"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_628"> <id>6</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_629"> <id>90</id> <stage>83</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_630"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_631"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_632"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_633"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_634"> <id>7</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_635"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_636"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_637"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_638"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_639"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_640"> <id>90</id> <stage>82</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_641"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_642"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_643"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_644"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_645"> <id>8</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_646"> <id>90</id> <stage>81</stage> <latency>88</latency> </item> <item class_id_reference="28" object_id="_647"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_648"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_649"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_650"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_651"> <id>9</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_652"> <id>90</id> <stage>80</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_653"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_654"> <id>90</id> <stage>79</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_655"> <id>11</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_656"> <id>90</id> <stage>78</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_657"> <id>12</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_658"> <id>90</id> <stage>77</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_659"> <id>13</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_660"> <id>90</id> <stage>76</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_661"> <id>14</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_662"> <id>90</id> <stage>75</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_663"> <id>15</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_664"> <id>90</id> <stage>74</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_665"> <id>16</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_666"> <id>90</id> <stage>73</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_667"> <id>17</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_668"> <id>90</id> <stage>72</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_669"> <id>18</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_670"> <id>90</id> <stage>71</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_671"> <id>19</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_672"> <id>90</id> <stage>70</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_673"> <id>20</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_674"> <id>90</id> <stage>69</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_675"> <id>21</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_676"> <id>90</id> <stage>68</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_677"> <id>22</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_678"> <id>90</id> <stage>67</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_679"> <id>23</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_680"> <id>90</id> <stage>66</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_681"> <id>24</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_682"> <id>90</id> <stage>65</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_683"> <id>25</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_684"> <id>90</id> <stage>64</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_685"> <id>26</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_686"> <id>90</id> <stage>63</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_687"> <id>27</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_688"> <id>90</id> <stage>62</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_689"> <id>28</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_690"> <id>90</id> <stage>61</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_691"> <id>29</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_692"> <id>90</id> <stage>60</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_693"> <id>30</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_694"> <id>90</id> <stage>59</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_695"> <id>31</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_696"> <id>90</id> <stage>58</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_697"> <id>32</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_698"> <id>90</id> <stage>57</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_699"> <id>33</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_700"> <id>90</id> <stage>56</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_701"> <id>34</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_702"> <id>90</id> <stage>55</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_703"> <id>35</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_704"> <id>90</id> <stage>54</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_705"> <id>36</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_706"> <id>90</id> <stage>53</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_707"> <id>37</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_708"> <id>90</id> <stage>52</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_709"> <id>38</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_710"> <id>90</id> <stage>51</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_711"> <id>39</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_712"> <id>90</id> <stage>50</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_713"> <id>40</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_714"> <id>90</id> <stage>49</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_715"> <id>41</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_716"> <id>90</id> <stage>48</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_717"> <id>42</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_718"> <id>90</id> <stage>47</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_719"> <id>43</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_720"> <id>90</id> <stage>46</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_721"> <id>44</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_722"> <id>90</id> <stage>45</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_723"> <id>45</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_724"> <id>90</id> <stage>44</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_725"> <id>46</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_726"> <id>90</id> <stage>43</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_727"> <id>47</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_728"> <id>90</id> <stage>42</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_729"> <id>48</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_730"> <id>90</id> <stage>41</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_731"> <id>49</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_732"> <id>90</id> <stage>40</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_733"> <id>50</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_734"> <id>90</id> <stage>39</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_735"> <id>51</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_736"> <id>90</id> <stage>38</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_737"> <id>52</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_738"> <id>90</id> <stage>37</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_739"> <id>53</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_740"> <id>90</id> <stage>36</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_741"> <id>54</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_742"> <id>90</id> <stage>35</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_743"> <id>55</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_744"> <id>90</id> <stage>34</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_745"> <id>56</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_746"> <id>90</id> <stage>33</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_747"> <id>57</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_748"> <id>90</id> <stage>32</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_749"> <id>58</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_750"> <id>90</id> <stage>31</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_751"> <id>59</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_752"> <id>90</id> <stage>30</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_753"> <id>60</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_754"> <id>90</id> <stage>29</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_755"> <id>61</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_756"> <id>90</id> <stage>28</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_757"> <id>62</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_758"> <id>90</id> <stage>27</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_759"> <id>63</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_760"> <id>90</id> <stage>26</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_761"> <id>64</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_762"> <id>90</id> <stage>25</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_763"> <id>65</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_764"> <id>90</id> <stage>24</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_765"> <id>66</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_766"> <id>90</id> <stage>23</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_767"> <id>67</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_768"> <id>90</id> <stage>22</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_769"> <id>68</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_770"> <id>90</id> <stage>21</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_771"> <id>69</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_772"> <id>90</id> <stage>20</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_773"> <id>70</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_774"> <id>90</id> <stage>19</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_775"> <id>71</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_776"> <id>90</id> <stage>18</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_777"> <id>72</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_778"> <id>90</id> <stage>17</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_779"> <id>73</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_780"> <id>90</id> <stage>16</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_781"> <id>74</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_782"> <id>90</id> <stage>15</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_783"> <id>75</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_784"> <id>90</id> <stage>14</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_785"> <id>76</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_786"> <id>90</id> <stage>13</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_787"> <id>77</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_788"> <id>90</id> <stage>12</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_789"> <id>78</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_790"> <id>90</id> <stage>11</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_791"> <id>79</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_792"> <id>90</id> <stage>10</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_793"> <id>80</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_794"> <id>90</id> <stage>9</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_795"> <id>81</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_796"> <id>90</id> <stage>8</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_797"> <id>82</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_798"> <id>90</id> <stage>7</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_799"> <id>83</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_800"> <id>90</id> <stage>6</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_801"> <id>84</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_802"> <id>90</id> <stage>5</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_803"> <id>85</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_804"> <id>90</id> <stage>4</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_805"> <id>86</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_806"> <id>90</id> <stage>3</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_807"> <id>87</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_808"> <id>90</id> <stage>2</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_809"> <id>88</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_810"> <id>90</id> <stage>1</stage> <latency>88</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_811"> <id>89</id> <operations> <count>21</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_812"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_813"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_814"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_815"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_816"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_817"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_818"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_819"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_820"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_821"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_822"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_823"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_824"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_825"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_826"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_827"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_828"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_829"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_830"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_831"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_832"> <id>123</id> <stage>107</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_833"> <id>90</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_834"> <id>123</id> <stage>106</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_835"> <id>91</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_836"> <id>123</id> <stage>105</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_837"> <id>92</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_838"> <id>123</id> <stage>104</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_839"> <id>93</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_840"> <id>123</id> <stage>103</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_841"> <id>94</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_842"> <id>123</id> <stage>102</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_843"> <id>95</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_844"> <id>123</id> <stage>101</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_845"> <id>96</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_846"> <id>123</id> <stage>100</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_847"> <id>97</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_848"> <id>123</id> <stage>99</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_849"> <id>98</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_850"> <id>123</id> <stage>98</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_851"> <id>99</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_852"> <id>123</id> <stage>97</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_853"> <id>100</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_854"> <id>123</id> <stage>96</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_855"> <id>101</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_856"> <id>123</id> <stage>95</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_857"> <id>102</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_858"> <id>123</id> <stage>94</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_859"> <id>103</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_860"> <id>123</id> <stage>93</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_861"> <id>104</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_862"> <id>123</id> <stage>92</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_863"> <id>105</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_864"> <id>123</id> <stage>91</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_865"> <id>106</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_866"> <id>123</id> <stage>90</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_867"> <id>107</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_868"> <id>123</id> <stage>89</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_869"> <id>108</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_870"> <id>123</id> <stage>88</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_871"> <id>109</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_872"> <id>123</id> <stage>87</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_873"> <id>110</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_874"> <id>123</id> <stage>86</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_875"> <id>111</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_876"> <id>123</id> <stage>85</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_877"> <id>112</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_878"> <id>123</id> <stage>84</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_879"> <id>113</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_880"> <id>123</id> <stage>83</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_881"> <id>114</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_882"> <id>123</id> <stage>82</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_883"> <id>115</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_884"> <id>123</id> <stage>81</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_885"> <id>116</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_886"> <id>123</id> <stage>80</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_887"> <id>117</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_888"> <id>123</id> <stage>79</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_889"> <id>118</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_890"> <id>123</id> <stage>78</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_891"> <id>119</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_892"> <id>123</id> <stage>77</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_893"> <id>120</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_894"> <id>123</id> <stage>76</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_895"> <id>121</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_896"> <id>123</id> <stage>75</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_897"> <id>122</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_898"> <id>123</id> <stage>74</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_899"> <id>123</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_900"> <id>123</id> <stage>73</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_901"> <id>124</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_902"> <id>123</id> <stage>72</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_903"> <id>125</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_904"> <id>123</id> <stage>71</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_905"> <id>126</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_906"> <id>123</id> <stage>70</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_907"> <id>127</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_908"> <id>123</id> <stage>69</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_909"> <id>128</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_910"> <id>123</id> <stage>68</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_911"> <id>129</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_912"> <id>123</id> <stage>67</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_913"> <id>130</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_914"> <id>123</id> <stage>66</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_915"> <id>131</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_916"> <id>123</id> <stage>65</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_917"> <id>132</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_918"> <id>123</id> <stage>64</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_919"> <id>133</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_920"> <id>123</id> <stage>63</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_921"> <id>134</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_922"> <id>123</id> <stage>62</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_923"> <id>135</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_924"> <id>123</id> <stage>61</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_925"> <id>136</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_926"> <id>123</id> <stage>60</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_927"> <id>137</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_928"> <id>123</id> <stage>59</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_929"> <id>138</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_930"> <id>123</id> <stage>58</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_931"> <id>139</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_932"> <id>123</id> <stage>57</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_933"> <id>140</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_934"> <id>123</id> <stage>56</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_935"> <id>141</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_936"> <id>123</id> <stage>55</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_937"> <id>142</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_938"> <id>123</id> <stage>54</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_939"> <id>143</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_940"> <id>123</id> <stage>53</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_941"> <id>144</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_942"> <id>123</id> <stage>52</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_943"> <id>145</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_944"> <id>123</id> <stage>51</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_945"> <id>146</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_946"> <id>123</id> <stage>50</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_947"> <id>147</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_948"> <id>123</id> <stage>49</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_949"> <id>148</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_950"> <id>123</id> <stage>48</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_951"> <id>149</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_952"> <id>123</id> <stage>47</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_953"> <id>150</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_954"> <id>123</id> <stage>46</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_955"> <id>151</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_956"> <id>123</id> <stage>45</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_957"> <id>152</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_958"> <id>123</id> <stage>44</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_959"> <id>153</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_960"> <id>123</id> <stage>43</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_961"> <id>154</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_962"> <id>123</id> <stage>42</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_963"> <id>155</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_964"> <id>123</id> <stage>41</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_965"> <id>156</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_966"> <id>123</id> <stage>40</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_967"> <id>157</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_968"> <id>123</id> <stage>39</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_969"> <id>158</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_970"> <id>123</id> <stage>38</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_971"> <id>159</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_972"> <id>123</id> <stage>37</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_973"> <id>160</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_974"> <id>123</id> <stage>36</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_975"> <id>161</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_976"> <id>123</id> <stage>35</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_977"> <id>162</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_978"> <id>123</id> <stage>34</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_979"> <id>163</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_980"> <id>123</id> <stage>33</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_981"> <id>164</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_982"> <id>123</id> <stage>32</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_983"> <id>165</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_984"> <id>123</id> <stage>31</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_985"> <id>166</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_986"> <id>123</id> <stage>30</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_987"> <id>167</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_988"> <id>123</id> <stage>29</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_989"> <id>168</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_990"> <id>123</id> <stage>28</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_991"> <id>169</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_992"> <id>123</id> <stage>27</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_993"> <id>170</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_994"> <id>123</id> <stage>26</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_995"> <id>171</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_996"> <id>123</id> <stage>25</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_997"> <id>172</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_998"> <id>123</id> <stage>24</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_999"> <id>173</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1000"> <id>123</id> <stage>23</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1001"> <id>174</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1002"> <id>123</id> <stage>22</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1003"> <id>175</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1004"> <id>123</id> <stage>21</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1005"> <id>176</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1006"> <id>123</id> <stage>20</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1007"> <id>177</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1008"> <id>123</id> <stage>19</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1009"> <id>178</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1010"> <id>123</id> <stage>18</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1011"> <id>179</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1012"> <id>123</id> <stage>17</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1013"> <id>180</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1014"> <id>123</id> <stage>16</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1015"> <id>181</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1016"> <id>123</id> <stage>15</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1017"> <id>182</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1018"> <id>123</id> <stage>14</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1019"> <id>183</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1020"> <id>123</id> <stage>13</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1021"> <id>184</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1022"> <id>123</id> <stage>12</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1023"> <id>185</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1024"> <id>123</id> <stage>11</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1025"> <id>186</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1026"> <id>123</id> <stage>10</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1027"> <id>187</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1028"> <id>123</id> <stage>9</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1029"> <id>188</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1030"> <id>123</id> <stage>8</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1031"> <id>189</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1032"> <id>123</id> <stage>7</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1033"> <id>190</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1034"> <id>123</id> <stage>6</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1035"> <id>191</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1036"> <id>123</id> <stage>5</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1037"> <id>192</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1038"> <id>123</id> <stage>4</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1039"> <id>193</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1040"> <id>123</id> <stage>3</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1041"> <id>194</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1042"> <id>123</id> <stage>2</stage> <latency>107</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1043"> <id>195</id> <operations> <count>25</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1044"> <id>123</id> <stage>1</stage> <latency>107</latency> </item> <item class_id_reference="28" object_id="_1045"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1046"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1047"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1048"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1049"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1050"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1051"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1052"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1053"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1054"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1055"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1056"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1057"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1058"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1059"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1060"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1061"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1062"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1063"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1064"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1065"> <id>156</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1066"> <id>157</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1067"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1068"> <id>165</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1069"> <id>196</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1070"> <id>142</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1071"> <id>143</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1072"> <id>197</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1073"> <id>142</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1074"> <id>143</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1075"> <id>144</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1076"> <id>145</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1077"> <id>198</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1078"> <id>144</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1079"> <id>145</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1080"> <id>150</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1081"> <id>151</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1082"> <id>199</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1083"> <id>150</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1084"> <id>151</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1085"> <id>152</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1086"> <id>153</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1087"> <id>200</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1088"> <id>152</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1089"> <id>153</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1090"> <id>158</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1091"> <id>159</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1092"> <id>201</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1093"> <id>158</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1094"> <id>159</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1095"> <id>160</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1096"> <id>161</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1097"> <id>202</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1098"> <id>160</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1099"> <id>161</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1100"> <id>166</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1101"> <id>167</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1102"> <id>203</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1103"> <id>166</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1104"> <id>167</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1105"> <id>168</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1106"> <id>169</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_1107"> <id>204</id> <operations> <count>25</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_1108"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1109"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1110"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1111"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1112"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1113"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1114"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1115"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1116"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1117"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1118"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1119"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1120"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1121"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1122"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1123"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1124"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1125"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1126"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1127"> <id>163</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1128"> <id>168</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1129"> <id>169</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_1130"> <id>170</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1131"> <id>171</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_1132"> <id>172</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>203</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_1133"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1134"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1135"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1136"> <inState>4</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1137"> <inState>5</inState> <outState>6</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1138"> <inState>6</inState> <outState>7</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1139"> <inState>7</inState> <outState>8</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1140"> <inState>8</inState> <outState>9</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1141"> <inState>9</inState> <outState>10</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1142"> <inState>10</inState> <outState>11</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1143"> <inState>11</inState> <outState>12</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1144"> <inState>12</inState> <outState>13</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1145"> <inState>13</inState> <outState>14</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1146"> <inState>14</inState> <outState>15</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1147"> <inState>15</inState> <outState>16</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1148"> <inState>16</inState> <outState>17</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1149"> <inState>17</inState> <outState>18</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1150"> <inState>18</inState> <outState>19</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1151"> <inState>19</inState> <outState>20</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1152"> <inState>20</inState> <outState>21</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1153"> <inState>21</inState> <outState>22</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1154"> <inState>22</inState> <outState>23</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1155"> <inState>23</inState> <outState>24</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1156"> <inState>24</inState> <outState>25</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1157"> <inState>25</inState> <outState>26</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1158"> <inState>26</inState> <outState>27</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1159"> <inState>27</inState> <outState>28</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1160"> <inState>28</inState> <outState>29</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1161"> <inState>29</inState> <outState>30</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1162"> <inState>30</inState> <outState>31</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1163"> <inState>31</inState> <outState>32</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1164"> <inState>32</inState> <outState>33</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1165"> <inState>33</inState> <outState>34</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1166"> <inState>34</inState> <outState>35</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1167"> <inState>35</inState> <outState>36</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1168"> <inState>36</inState> <outState>37</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1169"> <inState>37</inState> <outState>38</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1170"> <inState>38</inState> <outState>39</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1171"> <inState>39</inState> <outState>40</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1172"> <inState>40</inState> <outState>41</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1173"> <inState>41</inState> <outState>42</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1174"> <inState>42</inState> <outState>43</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1175"> <inState>43</inState> <outState>44</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1176"> <inState>44</inState> <outState>45</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1177"> <inState>45</inState> <outState>46</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1178"> <inState>46</inState> <outState>47</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1179"> <inState>47</inState> <outState>48</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1180"> <inState>48</inState> <outState>49</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1181"> <inState>49</inState> <outState>50</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1182"> <inState>50</inState> <outState>51</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1183"> <inState>51</inState> <outState>52</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1184"> <inState>52</inState> <outState>53</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1185"> <inState>53</inState> <outState>54</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1186"> <inState>54</inState> <outState>55</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1187"> <inState>55</inState> <outState>56</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1188"> <inState>56</inState> <outState>57</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1189"> <inState>57</inState> <outState>58</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1190"> <inState>58</inState> <outState>59</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1191"> <inState>59</inState> <outState>60</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1192"> <inState>60</inState> <outState>61</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1193"> <inState>61</inState> <outState>62</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1194"> <inState>62</inState> <outState>63</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1195"> <inState>63</inState> <outState>64</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1196"> <inState>64</inState> <outState>65</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1197"> <inState>65</inState> <outState>66</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1198"> <inState>66</inState> <outState>67</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1199"> <inState>67</inState> <outState>68</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1200"> <inState>68</inState> <outState>69</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1201"> <inState>69</inState> <outState>70</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1202"> <inState>70</inState> <outState>71</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1203"> <inState>71</inState> <outState>72</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1204"> <inState>72</inState> <outState>73</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1205"> <inState>73</inState> <outState>74</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1206"> <inState>74</inState> <outState>75</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1207"> <inState>75</inState> <outState>76</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1208"> <inState>76</inState> <outState>77</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1209"> <inState>77</inState> <outState>78</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1210"> <inState>78</inState> <outState>79</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1211"> <inState>79</inState> <outState>80</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1212"> <inState>80</inState> <outState>81</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1213"> <inState>81</inState> <outState>82</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1214"> <inState>82</inState> <outState>83</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1215"> <inState>83</inState> <outState>84</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1216"> <inState>84</inState> <outState>85</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1217"> <inState>85</inState> <outState>86</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1218"> <inState>86</inState> <outState>87</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1219"> <inState>87</inState> <outState>88</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1220"> <inState>88</inState> <outState>89</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1221"> <inState>89</inState> <outState>90</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1222"> <inState>90</inState> <outState>91</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1223"> <inState>91</inState> <outState>92</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1224"> <inState>92</inState> <outState>93</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1225"> <inState>93</inState> <outState>94</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1226"> <inState>94</inState> <outState>95</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1227"> <inState>95</inState> <outState>96</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1228"> <inState>96</inState> <outState>97</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1229"> <inState>97</inState> <outState>98</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1230"> <inState>98</inState> <outState>99</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1231"> <inState>99</inState> <outState>100</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1232"> <inState>100</inState> <outState>101</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1233"> <inState>101</inState> <outState>102</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1234"> <inState>102</inState> <outState>103</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1235"> <inState>103</inState> <outState>104</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1236"> <inState>104</inState> <outState>105</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1237"> <inState>105</inState> <outState>106</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1238"> <inState>106</inState> <outState>107</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1239"> <inState>107</inState> <outState>108</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1240"> <inState>108</inState> <outState>109</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1241"> <inState>109</inState> <outState>110</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1242"> <inState>110</inState> <outState>111</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1243"> <inState>111</inState> <outState>112</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1244"> <inState>112</inState> <outState>113</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1245"> <inState>113</inState> <outState>114</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1246"> <inState>114</inState> <outState>115</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1247"> <inState>115</inState> <outState>116</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1248"> <inState>116</inState> <outState>117</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1249"> <inState>117</inState> <outState>118</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1250"> <inState>118</inState> <outState>119</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1251"> <inState>119</inState> <outState>120</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1252"> <inState>120</inState> <outState>121</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1253"> <inState>121</inState> <outState>122</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1254"> <inState>122</inState> <outState>123</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1255"> <inState>123</inState> <outState>124</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1256"> <inState>124</inState> <outState>125</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1257"> <inState>125</inState> <outState>126</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1258"> <inState>126</inState> <outState>127</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1259"> <inState>127</inState> <outState>128</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1260"> <inState>128</inState> <outState>129</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1261"> <inState>129</inState> <outState>130</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1262"> <inState>130</inState> <outState>131</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1263"> <inState>131</inState> <outState>132</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1264"> <inState>132</inState> <outState>133</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1265"> <inState>133</inState> <outState>134</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1266"> <inState>134</inState> <outState>135</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1267"> <inState>135</inState> <outState>136</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1268"> <inState>136</inState> <outState>137</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1269"> <inState>137</inState> <outState>138</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1270"> <inState>138</inState> <outState>139</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1271"> <inState>139</inState> <outState>140</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1272"> <inState>140</inState> <outState>141</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1273"> <inState>141</inState> <outState>142</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1274"> <inState>142</inState> <outState>143</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1275"> <inState>143</inState> <outState>144</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1276"> <inState>144</inState> <outState>145</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1277"> <inState>145</inState> <outState>146</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1278"> <inState>146</inState> <outState>147</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1279"> <inState>147</inState> <outState>148</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1280"> <inState>148</inState> <outState>149</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1281"> <inState>149</inState> <outState>150</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1282"> <inState>150</inState> <outState>151</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1283"> <inState>151</inState> <outState>152</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1284"> <inState>152</inState> <outState>153</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1285"> <inState>153</inState> <outState>154</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1286"> <inState>154</inState> <outState>155</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1287"> <inState>155</inState> <outState>156</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1288"> <inState>156</inState> <outState>157</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1289"> <inState>157</inState> <outState>158</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1290"> <inState>158</inState> <outState>159</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1291"> <inState>159</inState> <outState>160</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1292"> <inState>160</inState> <outState>161</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1293"> <inState>161</inState> <outState>162</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1294"> <inState>162</inState> <outState>163</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1295"> <inState>163</inState> <outState>164</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1296"> <inState>164</inState> <outState>165</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1297"> <inState>165</inState> <outState>166</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1298"> <inState>166</inState> <outState>167</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1299"> <inState>167</inState> <outState>168</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1300"> <inState>168</inState> <outState>169</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1301"> <inState>169</inState> <outState>170</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1302"> <inState>170</inState> <outState>171</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1303"> <inState>171</inState> <outState>172</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1304"> <inState>172</inState> <outState>173</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1305"> <inState>173</inState> <outState>174</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1306"> <inState>174</inState> <outState>175</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1307"> <inState>175</inState> <outState>176</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1308"> <inState>176</inState> <outState>177</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1309"> <inState>177</inState> <outState>178</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1310"> <inState>178</inState> <outState>179</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1311"> <inState>179</inState> <outState>180</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1312"> <inState>180</inState> <outState>181</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1313"> <inState>181</inState> <outState>182</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1314"> <inState>182</inState> <outState>183</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1315"> <inState>183</inState> <outState>184</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1316"> <inState>184</inState> <outState>185</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1317"> <inState>185</inState> <outState>186</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1318"> <inState>186</inState> <outState>187</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1319"> <inState>187</inState> <outState>188</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1320"> <inState>188</inState> <outState>189</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1321"> <inState>189</inState> <outState>190</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1322"> <inState>190</inState> <outState>191</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1323"> <inState>191</inState> <outState>192</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1324"> <inState>192</inState> <outState>193</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1325"> <inState>193</inState> <outState>194</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1326"> <inState>194</inState> <outState>195</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1327"> <inState>195</inState> <outState>196</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1328"> <inState>196</inState> <outState>197</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1329"> <inState>197</inState> <outState>198</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1330"> <inState>198</inState> <outState>199</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1331"> <inState>199</inState> <outState>200</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1332"> <inState>200</inState> <outState>201</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1333"> <inState>201</inState> <outState>202</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1334"> <inState>202</inState> <outState>203</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_1335"> <inState>203</inState> <outState>204</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_1336"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>grp_AES_CTR_xcrypt_buffe_fu_397 (AES_CTR_xcrypt_buffe)</first> <second class_id="37" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>BRAM</first> <second>8</second> </item> <item> <first>FF</first> <second>975</second> </item> <item> <first>LUT</first> <second>3669</second> </item> </second> </item> <item> <first>grp_KeyExpansion_fu_373 (KeyExpansion)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>1504</second> </item> <item> <first>LUT</first> <second>3487</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>2</count> <item_version>0</item_version> <item> <first>ctx_Iv_U</first> <second> <count>8</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>16</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>128</second> </item> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> <item> <first>URAM</first> <second>0</second> </item> </second> </item> <item> <first>ctx_RoundKey_U</first> <second> <count>8</count> <item_version>0</item_version> <item> <first>(0Words)</first> <second>176</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Banks)</first> <second>1</second> </item> <item> <first>(3W*Bits*Banks)</first> <second>1408</second> </item> <item> <first>BRAM</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>0</second> </item> <item> <first>URAM</first> <second>0</second> </item> </second> </item> </dp_memory_resource> <dp_multiplexer_resource> <count>15</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>205</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>205</second> </item> <item> <first>LUT</first> <second>885</second> </item> </second> </item> <item> <first>ctx_Iv_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>18</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>72</second> </item> <item> <first>LUT</first> <second>89</second> </item> </second> </item> <item> <first>ctx_Iv_address1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>18</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>72</second> </item> <item> <first>LUT</first> <second>89</second> </item> </second> </item> <item> <first>ctx_Iv_ce0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_Iv_ce1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_Iv_d0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>10</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>80</second> </item> <item> <first>LUT</first> <second>47</second> </item> </second> </item> <item> <first>ctx_Iv_d1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>10</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>80</second> </item> <item> <first>LUT</first> <second>47</second> </item> </second> </item> <item> <first>ctx_Iv_we0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_Iv_we1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_address1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>24</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_ce0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_ce1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ctx_RoundKey_we0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ctx_RoundKey_we1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>24</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>204</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>204</second> </item> </second> </item> <item> <first>ctx_Iv_load_10_reg_1338</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_11_reg_1343</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_12_reg_1348</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_13_reg_1353</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_1_reg_1293</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_2_reg_1298</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_3_reg_1303</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_4_reg_1308</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_5_reg_1313</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_6_reg_1318</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_7_reg_1323</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_8_reg_1328</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_9_reg_1333</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>ctx_Iv_load_reg_1288</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>grp_AES_CTR_xcrypt_buffe_fu_397_ap_start_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>p_iv_10_reg_1148</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_11_reg_1153</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_14_reg_1178</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_15_reg_1183</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_2_reg_1028</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_3_reg_1038</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_6_reg_1118</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> <item> <first>p_iv_7_reg_1123</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>2</count> <item_version>0</item_version> <item> <first>grp_AES_CTR_xcrypt_buffe_fu_397</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>grp_KeyExpansion_fu_373</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="39" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>grp_AES_CTR_xcrypt_buffe_fu_397 (AES_CTR_xcrypt_buffe)</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>grp_KeyExpansion_fu_373 (KeyExpansion)</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>2</count> <item_version>0</item_version> <item> <first>ctx_Iv_U</first> <second> <count>1</count> <item_version>0</item_version> <item>467</item> </second> </item> <item> <first>ctx_RoundKey_U</first> <second> <count>1</count> <item_version>0</item_version> <item>452</item> </second> </item> </dp_memory_map> </res> <node_label_latency class_id="41" tracking_level="0" version="0"> <count>145</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>27</first> <second class_id="43" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>88</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>0</first> <second>87</second> </second> </item> <item> <first>91</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>88</first> <second>106</second> </second> </item> <item> <first>124</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>195</first> <second>1</second> </second> </item> <item> <first>143</first> <second> <first>195</first> <second>1</second> </second> </item> <item> <first>144</first> <second> <first>196</first> <second>1</second> </second> </item> <item> <first>145</first> <second> <first>196</first> <second>1</second> </second> </item> <item> <first>146</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>197</first> <second>1</second> </second> </item> <item> <first>151</first> <second> <first>197</first> <second>1</second> </second> </item> <item> <first>152</first> <second> <first>198</first> <second>1</second> </second> </item> <item> <first>153</first> <second> <first>198</first> <second>1</second> </second> </item> <item> <first>154</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>199</first> <second>1</second> </second> </item> <item> <first>159</first> <second> <first>199</first> <second>1</second> </second> </item> <item> <first>160</first> <second> <first>200</first> <second>1</second> </second> </item> <item> <first>161</first> <second> <first>200</first> <second>1</second> </second> </item> <item> <first>162</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>194</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>201</first> <second>1</second> </second> </item> <item> <first>167</first> <second> <first>201</first> <second>1</second> </second> </item> <item> <first>168</first> <second> <first>202</first> <second>1</second> </second> </item> <item> <first>169</first> <second> <first>202</first> <second>1</second> </second> </item> <item> <first>170</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>203</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>203</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="44" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>173</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>203</second> </second> </item> </bblk_ent_exit> <regions class_id="47" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="48" tracking_level="1" version="0" object_id="_1337"> <region_name>aes16_bidir</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>173</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>204</interval> <pipe_depth>204</pipe_depth> </item> </regions> <dp_fu_nodes class_id="49" tracking_level="0" version="0"> <count>113</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>102</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>106</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>136</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>185</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>192</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>199</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>206</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>220</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>227</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> <item> <first>234</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>242</first> <second> <count>48</count> <item_version>0</item_version> <item>92</item> <item>94</item> <item>96</item> <item>98</item> <item>100</item> <item>102</item> <item>104</item> <item>106</item> <item>108</item> <item>110</item> <item>112</item> <item>114</item> <item>116</item> <item>118</item> <item>120</item> <item>122</item> <item>142</item> <item>142</item> <item>143</item> <item>143</item> <item>144</item> <item>144</item> <item>145</item> <item>145</item> <item>150</item> <item>150</item> <item>151</item> <item>151</item> <item>152</item> <item>152</item> <item>153</item> <item>153</item> <item>158</item> <item>158</item> <item>159</item> <item>159</item> <item>160</item> <item>160</item> <item>161</item> <item>161</item> <item>166</item> <item>166</item> <item>167</item> <item>167</item> <item>168</item> <item>168</item> <item>169</item> <item>169</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>285</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>293</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>309</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>317</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>325</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>333</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>341</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>349</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>365</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>373</first> <second> <count>88</count> <item_version>0</item_version> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> </second> </item> <item> <first>397</first> <second> <count>107</count> <item_version>0</item_version> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> </second> </item> <item> <first>421</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>426</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>431</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>442</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>453</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>464</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>474</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>485</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>495</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>500</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>511</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>522</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>533</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>538</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>549</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>560</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>571</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>576</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>587</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>598</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>609</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>614</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>625</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>635</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>645</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>650</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>661</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>671</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>681</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>686</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>697</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>707</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>717</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>722</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>733</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>744</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>755</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>760</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>771</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>782</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>793</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>798</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>809</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>820</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>831</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>836</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>847</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>858</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>869</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>873</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>877</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>881</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>885</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>889</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>893</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>897</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>901</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>905</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>909</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>913</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>917</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>921</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>925</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>929</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>933</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>946</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>959</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>972</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>985</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>994</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>1003</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>1012</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="52" tracking_level="0" version="0"> <count>90</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>ctx_Iv_addr_10_gep_fu_325</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>ctx_Iv_addr_11_gep_fu_333</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>ctx_Iv_addr_12_gep_fu_341</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>ctx_Iv_addr_13_gep_fu_349</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>ctx_Iv_addr_14_gep_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>ctx_Iv_addr_15_gep_fu_365</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>ctx_Iv_addr_1_gep_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>ctx_Iv_addr_2_gep_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>ctx_Iv_addr_3_gep_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>ctx_Iv_addr_4_gep_fu_277</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>ctx_Iv_addr_5_gep_fu_285</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>ctx_Iv_addr_6_gep_fu_293</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>ctx_Iv_addr_7_gep_fu_301</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>ctx_Iv_addr_8_gep_fu_309</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>ctx_Iv_addr_9_gep_fu_317</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>ctx_Iv_addr_gep_fu_234</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>ctx_Iv_alloca_fu_102</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>ctx_RoundKey_alloca_fu_98</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>or_ln55_5_1_fu_946</first> <second> <count>1</count> <item_version>0</item_version> <item>148</item> </second> </item> <item> <first>or_ln55_5_2_fu_959</first> <second> <count>1</count> <item_version>0</item_version> <item>156</item> </second> </item> <item> <first>or_ln55_5_3_fu_972</first> <second> <count>1</count> <item_version>0</item_version> <item>164</item> </second> </item> <item> <first>or_ln55_5_fu_933</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>or_ln59_2_1_fu_994</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>or_ln59_2_2_fu_1003</first> <second> <count>1</count> <item_version>0</item_version> <item>162</item> </second> </item> <item> <first>or_ln59_2_3_fu_1012</first> <second> <count>1</count> <item_version>0</item_version> <item>170</item> </second> </item> <item> <first>or_ln59_2_fu_985</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>p_iv_0_fu_426</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>p_iv_10_fu_661</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>p_iv_11_fu_671</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>p_iv_12_fu_681</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>p_iv_13_fu_686</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>p_iv_14_fu_697</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>p_iv_15_fu_707</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>p_iv_1_fu_442</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>p_iv_2_fu_464</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_iv_3_fu_485</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_iv_4_fu_609</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>p_iv_5_fu_614</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_iv_6_fu_625</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>p_iv_7_fu_635</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>p_iv_8_fu_645</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>p_iv_9_fu_650</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>p_key_0_fu_421</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>p_key_10_fu_549</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_key_11_fu_560</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_key_12_fu_571</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_key_13_fu_576</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>p_key_14_fu_587</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>p_key_15_fu_598</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>p_key_1_fu_431</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>p_key_2_fu_453</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_key_3_fu_474</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_key_4_fu_495</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_key_5_fu_500</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>p_key_6_fu_511</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>p_key_7_fu_522</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>p_key_8_fu_533</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>p_key_9_fu_538</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>p_text_0_1_fu_925</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>p_text_0_fu_717</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>p_text_10_1_fu_885</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>p_text_10_fu_809</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_text_11_1_fu_881</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>p_text_11_fu_820</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>p_text_12_1_fu_877</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>p_text_12_fu_831</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_text_13_1_fu_873</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>p_text_13_fu_836</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>p_text_14_1_fu_869</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>p_text_14_fu_847</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>p_text_15_1_fu_929</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>p_text_15_fu_858</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_text_1_1_fu_921</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>p_text_1_fu_722</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_text_2_1_fu_917</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>p_text_2_fu_733</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>p_text_3_1_fu_913</first> <second> <count>1</count> <item_version>0</item_version> <item>135</item> </second> </item> <item> <first>p_text_3_fu_744</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>p_text_4_1_fu_909</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>p_text_4_fu_755</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>p_text_5_1_fu_905</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>p_text_5_fu_760</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>p_text_6_1_fu_901</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>p_text_6_fu_771</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>p_text_7_1_fu_897</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>p_text_7_fu_782</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_text_8_1_fu_893</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>p_text_8_fu_793</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>p_text_9_1_fu_889</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>p_text_9_fu_798</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>2</count> <item_version>0</item_version> <item> <first>grp_AES_CTR_xcrypt_buffe_fu_397</first> <second> <count>107</count> <item_version>0</item_version> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> <item>123</item> </second> </item> <item> <first>grp_KeyExpansion_fu_373</first> <second> <count>88</count> <item_version>0</item_version> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> <item>90</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>20</count> <item_version>0</item_version> <item> <first>inout_0_read_read_fu_154</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>inout_1_read_read_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>inout_2_read_read_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>inout_3_read_read_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>iv_0_read_read_fu_112</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>iv_1_read_read_fu_136</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>iv_2_read_read_fu_142</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>iv_3_read_read_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>key_0_read_read_fu_106</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>key_1_read_read_fu_118</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>key_2_read_read_fu_124</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>key_3_read_read_fu_130</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>write_ln55_write_fu_178</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>write_ln55_write_fu_185</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>write_ln55_write_fu_192</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>write_ln55_write_fu_199</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> <item> <first>write_ln59_write_fu_206</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>write_ln59_write_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> <item> <first>write_ln59_write_fu_220</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> <item> <first>write_ln59_write_fu_227</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="54" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first class_id="56" tracking_level="0" version="0"> <first>ctx_Iv</first> <second>0</second> </first> <second> <count>24</count> <item_version>0</item_version> <item>92</item> <item>96</item> <item>100</item> <item>104</item> <item>108</item> <item>112</item> <item>116</item> <item>120</item> <item>142</item> <item>142</item> <item>144</item> <item>144</item> <item>150</item> <item>150</item> <item>152</item> <item>152</item> <item>158</item> <item>158</item> <item>160</item> <item>160</item> <item>166</item> <item>166</item> <item>168</item> <item>168</item> </second> </item> <item> <first> <first>ctx_Iv</first> <second>1</second> </first> <second> <count>24</count> <item_version>0</item_version> <item>94</item> <item>98</item> <item>102</item> <item>106</item> <item>110</item> <item>114</item> <item>118</item> <item>122</item> <item>143</item> <item>143</item> <item>145</item> <item>145</item> <item>151</item> <item>151</item> <item>153</item> <item>153</item> <item>159</item> <item>159</item> <item>161</item> <item>161</item> <item>167</item> <item>167</item> <item>169</item> <item>169</item> </second> </item> <item> <first> <first>ctx_Iv</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first> <first>sbox</first> <second>100</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>90</item> <item>123</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>67</count> <item_version>0</item_version> <item> <first>1023</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>1028</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>1033</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>1038</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>1043</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>1048</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>1053</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>1058</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>1063</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>1068</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>1073</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>1078</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>1083</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>1088</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>1093</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>1098</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>1103</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>1108</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>1113</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>1118</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>1123</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>1128</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>1133</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>1138</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>1143</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>1148</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>1153</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>1158</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>1163</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>1168</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>1173</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>1178</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>1183</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>1188</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>1193</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>1198</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>1203</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>1208</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>1213</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>1218</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>1223</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>1228</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>1233</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>1238</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>1243</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>1248</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>1253</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>1258</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>1263</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>1268</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>1273</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>1278</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>1283</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>1288</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>1293</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>1298</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>1303</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>1308</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>1313</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>1318</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>1323</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>1328</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>1333</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>1338</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>1343</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>1348</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>1353</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>67</count> <item_version>0</item_version> <item> <first>ctx_Iv_addr_10_reg_1168</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>ctx_Iv_addr_11_reg_1173</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>ctx_Iv_addr_12_reg_1188</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>ctx_Iv_addr_13_reg_1193</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>ctx_Iv_addr_14_reg_1198</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>ctx_Iv_addr_15_reg_1203</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>ctx_Iv_addr_1_reg_1103</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>ctx_Iv_addr_2_reg_1108</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>ctx_Iv_addr_3_reg_1113</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>ctx_Iv_addr_4_reg_1128</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>ctx_Iv_addr_5_reg_1133</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>ctx_Iv_addr_6_reg_1138</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>ctx_Iv_addr_7_reg_1143</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>ctx_Iv_addr_8_reg_1158</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>ctx_Iv_addr_9_reg_1163</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>ctx_Iv_addr_reg_1098</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>ctx_Iv_load_10_reg_1338</first> <second> <count>1</count> <item_version>0</item_version> <item>160</item> </second> </item> <item> <first>ctx_Iv_load_11_reg_1343</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>ctx_Iv_load_12_reg_1348</first> <second> <count>1</count> <item_version>0</item_version> <item>166</item> </second> </item> <item> <first>ctx_Iv_load_13_reg_1353</first> <second> <count>1</count> <item_version>0</item_version> <item>167</item> </second> </item> <item> <first>ctx_Iv_load_1_reg_1293</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>ctx_Iv_load_2_reg_1298</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>ctx_Iv_load_3_reg_1303</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>ctx_Iv_load_4_reg_1308</first> <second> <count>1</count> <item_version>0</item_version> <item>150</item> </second> </item> <item> <first>ctx_Iv_load_5_reg_1313</first> <second> <count>1</count> <item_version>0</item_version> <item>151</item> </second> </item> <item> <first>ctx_Iv_load_6_reg_1318</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>ctx_Iv_load_7_reg_1323</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>ctx_Iv_load_8_reg_1328</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>ctx_Iv_load_9_reg_1333</first> <second> <count>1</count> <item_version>0</item_version> <item>159</item> </second> </item> <item> <first>ctx_Iv_load_reg_1288</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>p_iv_10_reg_1148</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>p_iv_11_reg_1153</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>p_iv_14_reg_1178</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>p_iv_15_reg_1183</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>p_iv_2_reg_1028</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_iv_3_reg_1038</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_iv_6_reg_1118</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>p_iv_7_reg_1123</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>p_key_10_reg_1073</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_key_11_reg_1078</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_key_12_reg_1083</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>p_key_14_reg_1088</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>p_key_15_reg_1093</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>p_key_2_reg_1023</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_key_3_reg_1033</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_key_4_reg_1043</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>p_key_5_reg_1048</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>p_key_6_reg_1053</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>p_key_7_reg_1058</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>p_key_8_reg_1063</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>p_key_9_reg_1068</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>p_text_0_reg_1208</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>p_text_10_reg_1258</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_text_11_reg_1263</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>p_text_12_reg_1268</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_text_13_reg_1273</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>p_text_14_reg_1278</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>p_text_15_reg_1283</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>p_text_1_reg_1213</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_text_2_reg_1218</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>p_text_3_reg_1223</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>p_text_4_reg_1228</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>p_text_5_reg_1233</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>p_text_6_reg_1238</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>p_text_7_reg_1243</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_text_8_reg_1248</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>p_text_9_reg_1253</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="57" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>inout_0</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> </second> </item> <item> <first>inout_1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> </second> </item> <item> <first>inout_2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> </second> </item> <item> <first>inout_3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>165</item> </second> </item> </second> </item> <item> <first>iv_0</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> </second> </item> <item> <first>iv_1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>155</item> </second> </item> </second> </item> <item> <first>iv_2</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>163</item> </second> </item> </second> </item> <item> <first>iv_3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>171</item> </second> </item> </second> </item> <item> <first>key_0</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </second> </item> <item> <first>key_1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> </second> </item> <item> <first>key_2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> </second> </item> <item> <first>key_3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="59" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>2</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>27</first> <second>RAM</second> </item> <item> <first>28</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.BOUNDED_SYNCHRONIZED_QUEUES -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011-2020, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with System; with Ada.Containers.Synchronized_Queue_Interfaces; generic with package Queue_Interfaces is new Ada.Containers.Synchronized_Queue_Interfaces (<>); Default_Capacity : Count_Type; Default_Ceiling : System.Any_Priority := System.Priority'Last; package Ada.Containers.Bounded_Synchronized_Queues with SPARK_Mode => Off is pragma Annotate (CodePeer, Skip_Analysis); pragma Preelaborate; package Implementation is -- All identifiers in this unit are implementation defined pragma Implementation_Defined; type List_Type (Capacity : Count_Type) is tagged limited private; procedure Enqueue (List : in out List_Type; New_Item : Queue_Interfaces.Element_Type); procedure Dequeue (List : in out List_Type; Element : out Queue_Interfaces.Element_Type); function Length (List : List_Type) return Count_Type; function Max_Length (List : List_Type) return Count_Type; private -- Need proper heap data structure here ??? type Element_Array is array (Count_Type range <>) of Queue_Interfaces.Element_Type; type List_Type (Capacity : Count_Type) is tagged limited record First, Last : Count_Type := 0; Length : Count_Type := 0; Max_Length : Count_Type := 0; Elements : Element_Array (1 .. Capacity); end record; end Implementation; protected type Queue (Capacity : Count_Type := Default_Capacity; Ceiling : System.Any_Priority := Default_Ceiling) with Priority => Ceiling is new Queue_Interfaces.Queue with overriding entry Enqueue (New_Item : Queue_Interfaces.Element_Type); overriding entry Dequeue (Element : out Queue_Interfaces.Element_Type); overriding function Current_Use return Count_Type; overriding function Peak_Use return Count_Type; private List : Implementation.List_Type (Capacity); end Queue; end Ada.Containers.Bounded_Synchronized_Queues;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>Loop_1_proc</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>p_hw_input_stencil_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_hw_input_stencil_stream_to_mul.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>288</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>p_mul_stencil_update_stream_V_value_V</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="8" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second class_id="9" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first class_id="11" tracking_level="0" version="0"> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName>_mul_stencil_update_stream.V.value.V</originalName> <rtlName></rtlName> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="12" tracking_level="0" version="0"> <count>31</count> <item_version>0</item_version> <item class_id="13" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>7</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>46</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_4"> <Value> <Obj> <type>0</type> <id>9</id> <name>indvar_flatten</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>143</item> <item>144</item> <item>145</item> <item>146</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_5"> <Value> <Obj> <type>0</type> <id>10</id> <name>exitcond_flatten</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>147</item> <item>149</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>indvar_flatten_next</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>150</item> <item>152</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>153</item> <item>154</item> <item>155</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_8"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_value_V</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>288</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>48</item> <item>49</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_9"> <Value> <Obj> <type>0</type> <id>18</id> <name>p_327</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName>_327</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>50</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_10"> <Value> <Obj> <type>0</type> <id>19</id> <name>p_339</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName>_339</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>52</item> <item>53</item> <item>55</item> <item>57</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>p_363</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName>_363</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>61</item> <item>63</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>p_375</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName>_375</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>64</item> <item>65</item> <item>67</item> <item>69</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_5</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>71</item> <item>72</item> <item>74</item> <item>76</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_14"> <Value> <Obj> <type>0</type> <id>23</id> <name>p_336</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName>_336</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>78</item> <item>79</item> <item>81</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_15"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>82</item> <item>83</item> <item>85</item> <item>87</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_16"> <Value> <Obj> <type>0</type> <id>25</id> <name>p_348</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName>_348</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>88</item> <item>89</item> <item>90</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_17"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>92</item> <item>93</item> <item>95</item> <item>97</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_18"> <Value> <Obj> <type>0</type> <id>27</id> <name>p_354</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName>_354</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>99</item> <item>100</item> <item>102</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_19"> <Value> <Obj> <type>0</type> <id>28</id> <name>tmp_8</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>103</item> <item>104</item> <item>106</item> <item>108</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_20"> <Value> <Obj> <type>0</type> <id>29</id> <name>p_360</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName>_360</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>109</item> <item>110</item> <item>111</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_21"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_9</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>112</item> <item>113</item> <item>115</item> <item>117</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_22"> <Value> <Obj> <type>0</type> <id>31</id> <name>p_372</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>131</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>131</second> </item> </second> </item> </inlineStackInfo> <originalName>_372</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>118</item> <item>119</item> <item>120</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_23"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp2</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>121</item> <item>122</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_24"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp3</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>123</item> <item>124</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_25"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>125</item> <item>126</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_26"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp5</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>127</item> <item>128</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_27"> <Value> <Obj> <type>0</type> <id>36</id> <name>tmp7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>129</item> <item>130</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_28"> <Value> <Obj> <type>0</type> <id>37</id> <name>tmp6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>131</item> <item>132</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_29"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp4</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>133</item> <item>134</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_30"> <Value> <Obj> <type>0</type> <id>39</id> <name>p_379</name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName>_379</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>135</item> <item>136</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_31"> <Value> <Obj> <type>0</type> <id>40</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>141</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>138</item> <item>139</item> <item>140</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_32"> <Value> <Obj> <type>0</type> <id>42</id> <name></name> <fileName>hls_target.cpp</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>141</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="13" object_id="_33"> <Value> <Obj> <type>0</type> <id>44</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>21</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_34"> <Value> <Obj> <type>2</type> <id>54</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_35"> <Value> <Obj> <type>2</type> <id>56</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>95</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>60</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>192</content> </item> <item class_id_reference="16" object_id="_37"> <Value> <Obj> <type>2</type> <id>62</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>223</content> </item> <item class_id_reference="16" object_id="_38"> <Value> <Obj> <type>2</type> <id>66</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>256</content> </item> <item class_id_reference="16" object_id="_39"> <Value> <Obj> <type>2</type> <id>68</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>287</content> </item> <item class_id_reference="16" object_id="_40"> <Value> <Obj> <type>2</type> <id>73</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_41"> <Value> <Obj> <type>2</type> <id>75</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>62</content> </item> <item class_id_reference="16" object_id="_42"> <Value> <Obj> <type>2</type> <id>80</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_43"> <Value> <Obj> <type>2</type> <id>84</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>96</content> </item> <item class_id_reference="16" object_id="_44"> <Value> <Obj> <type>2</type> <id>86</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>126</content> </item> <item class_id_reference="16" object_id="_45"> <Value> <Obj> <type>2</type> <id>94</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_46"> <Value> <Obj> <type>2</type> <id>96</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>157</content> </item> <item class_id_reference="16" object_id="_47"> <Value> <Obj> <type>2</type> <id>101</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_48"> <Value> <Obj> <type>2</type> <id>105</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>160</content> </item> <item class_id_reference="16" object_id="_49"> <Value> <Obj> <type>2</type> <id>107</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>190</content> </item> <item class_id_reference="16" object_id="_50"> <Value> <Obj> <type>2</type> <id>114</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>224</content> </item> <item class_id_reference="16" object_id="_51"> <Value> <Obj> <type>2</type> <id>116</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>254</content> </item> <item class_id_reference="16" object_id="_52"> <Value> <Obj> <type>2</type> <id>142</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_53"> <Value> <Obj> <type>2</type> <id>148</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>2067604</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>151</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_55"> <Obj> <type>3</type> <id>8</id> <name>newFuncRoot</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>7</item> </node_objs> </item> <item class_id_reference="18" object_id="_56"> <Obj> <type>3</type> <id>13</id> <name>.preheader39</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>9</item> <item>10</item> <item>11</item> <item>12</item> </node_objs> </item> <item class_id_reference="18" object_id="_57"> <Obj> <type>3</type> <id>43</id> <name>.preheader39.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>25</count> <item_version>0</item_version> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>42</item> </node_objs> </item> <item class_id_reference="18" object_id="_58"> <Obj> <type>3</type> <id>45</id> <name>.exitStub</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>44</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>71</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_59"> <id>46</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>49</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>50</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>53</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>55</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>57</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_65"> <id>59</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_66"> <id>61</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_67"> <id>63</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_68"> <id>65</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_69"> <id>67</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_70"> <id>69</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>72</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>74</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>76</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>79</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>81</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>83</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>85</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>87</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>89</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>90</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>93</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>95</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>97</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>100</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>104</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>108</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>110</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>111</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>113</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>115</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>117</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>119</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>120</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>121</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>122</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>123</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>124</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>125</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>126</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>127</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>128</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>129</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>130</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>131</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>132</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>133</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>134</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>135</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>136</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>139</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>140</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>141</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>143</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>144</id> <edge_type>2</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>145</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>146</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>147</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>149</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>150</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>152</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>153</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>154</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>155</id> <edge_type>2</edge_type> <source_obj>45</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>243</id> <edge_type>2</edge_type> <source_obj>8</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>244</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>245</id> <edge_type>2</edge_type> <source_obj>13</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>246</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>13</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_130"> <mId>1</mId> <mTag>Loop_1_proc</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2067610</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_131"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>8</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_132"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>13</item> <item>43</item> </basic_blocks> <mII>1</mII> <mDepth>6</mDepth> <mMinTripCount>2067604</mMinTripCount> <mMaxTripCount>2067604</mMaxTripCount> <mMinLatency>2067608</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_133"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>45</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_134"> <states class_id="25" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_135"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_136"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_137"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_138"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_139"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_140"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_141"> <id>2</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_142"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_143"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_144"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_145"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_146"> <id>3</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_147"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_148"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_149"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_150"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_151"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_152"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_153"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_154"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_155"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_156"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_157"> <id>4</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_158"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_159"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_160"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_161"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_162"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_163"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_164"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_165"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_166"> <id>5</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_167"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_168"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_169"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_170"> <id>6</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_171"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_172"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_173"> <id>7</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_174"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_175"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_176"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_177"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_178"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_179"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_180"> <id>8</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_181"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_182"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>12</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_183"> <inState>3</inState> <outState>4</outState> <condition> <id>23</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_184"> <inState>4</inState> <outState>5</outState> <condition> <id>24</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_185"> <inState>5</inState> <outState>6</outState> <condition> <id>25</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_186"> <inState>6</inState> <outState>7</outState> <condition> <id>26</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_187"> <inState>7</inState> <outState>2</outState> <condition> <id>27</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_188"> <inState>2</inState> <outState>8</outState> <condition> <id>22</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>10</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_189"> <inState>2</inState> <outState>3</outState> <condition> <id>28</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>10</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>31</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>7</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>8</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>6</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_190"> <region_name>Loop 1</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>13</item> <item>43</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>6</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>27</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>92</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>109</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>116</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>152</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>162</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>182</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>192</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>202</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>219</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>226</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>233</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>240</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>245</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>251</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>256</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>273</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>278</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>282</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>25</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>exitcond_flatten_fu_116</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_next_fu_122</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>indvar_flatten_phi_fu_109</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>p_327_fu_128</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>p_336_fu_212</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>p_339_fu_132</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>p_348_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>p_354_fu_219</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>p_360_fu_226</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>p_363_fu_142</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>p_372_fu_233</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>p_375_fu_152</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_379_fu_282</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp1_fu_273</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp2_fu_240</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp3_fu_268</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>tmp4_fu_278</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp5_fu_245</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp6_fu_256</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>tmp7_fu_251</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>tmp_5_fu_162</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_6_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tmp_7_fu_182</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_8_fu_192</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_9_fu_202</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>StgValue_44_write_fu_98</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_value_V_read_fu_92</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>17</count> <item_version>0</item_version> <item> <first>105</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>287</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>291</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>306</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>311</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>321</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>326</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>331</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>336</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>341</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>356</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>361</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>17</count> <item_version>0</item_version> <item> <first>exitcond_flatten_reg_287</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_next_reg_291</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>indvar_flatten_reg_105</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>p_327_reg_296</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>p_339_reg_301</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>p_363_reg_306</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>p_375_reg_311</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>p_379_reg_361</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp1_reg_356</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp2_reg_341</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp5_reg_346</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp6_reg_351</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>tmp_5_reg_316</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp_6_reg_321</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tmp_7_reg_326</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_8_reg_331</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_9_reg_336</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>105</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>indvar_flatten_reg_105</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="51" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>p_hw_input_stencil_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </second> </item> <item> <first>p_mul_stencil_update_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="53" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>2</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
with Ada.Unchecked_Conversion; with Interfaces; package body C.Ops is function "and" (I1, I2: Char) return Char is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "and" (I1, I2: Short) return Short is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "and" (I1, I2: Int) return Int is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "and" (I1, I2: Long) return Long is begin return To_Signed(To_Unsigned(I1) and To_Unsigned(I2)); end "and"; function "or" (I1, I2: Char) return Char is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "or" (I1, I2: Short) return Short is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "or" (I1, I2: Int) return Int is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "or" (I1, I2: Long) return Long is begin return To_Signed(To_Unsigned(I1) or To_Unsigned(I2)); end "or"; function "xor" (I1, I2: Char) return Char is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "xor" (I1, I2: Short) return Short is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "xor" (I1, I2: Int) return Int is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "xor" (I1, I2: Long) return Long is begin return To_Signed(To_Unsigned(I1) xor To_Unsigned(I2)); end "xor"; function "not" (I1: Char) return Char is begin return To_Signed(not To_Unsigned(I1)); end "not"; function "not" (I1: Short) return Short is begin return To_Signed(not To_Unsigned(I1)); end "not"; function "not" (I1: Int) return Int is begin return To_Signed(not To_Unsigned(I1)); end "not"; function "not" (I1: Long) return Long is begin return To_Signed(not To_Unsigned(I1)); end "not"; package I renames Interfaces; -- this would have to change on a machine with 64 bit integers. function U8 is new Ada.Unchecked_Conversion (Uchar, I.Unsigned_8); function U16 is new Ada.Unchecked_Conversion (Ushort, I.Unsigned_16); function U32 is new Ada.Unchecked_Conversion (Uint, I.Unsigned_32); function U32 is new Ada.Unchecked_Conversion (Ulong, I.Unsigned_32); function UC is new Ada.Unchecked_Conversion (I.Unsigned_8, Uchar); function US is new Ada.Unchecked_Conversion (I.Unsigned_16, Ushort); function UI is new Ada.Unchecked_Conversion (I.Unsigned_32, Uint); function UL is new Ada.Unchecked_Conversion (I.Unsigned_32, Ulong); function Shift_Left (Value: Uchar; Amount: Natural) return Unsigned_Char is begin return UC(I.Shift_Left(U8(Value), Amount)); end Shift_Left; function Shift_Left (Value: Ushort; Amount: Natural) return Unsigned_Short is begin return US(I.Shift_Left(U16(Value), Amount)); end Shift_Left; function Shift_Left (Value: Uint; Amount: Natural) return Unsigned_Int is begin return UI(I.Shift_Left(U32(Value), Amount)); end Shift_Left; function Shift_Left (Value: Ulong; Amount: Natural) return Unsigned_Long is begin return UL(I.Shift_Left(U32(Value), Amount)); end Shift_Left; function Shift_Right (Value: Uchar; Amount: Natural) return Unsigned_Char is begin return UC(I.Shift_Right(U8(Value), Amount)); end Shift_Right; function Shift_Right (Value: Ushort; Amount: Natural) return Unsigned_Short is begin return US(I.Shift_Right(U16(Value), Amount)); end Shift_Right; function Shift_Right (Value: Uint; Amount: Natural) return Unsigned_Int is begin return UI(I.Shift_Right(U32(Value), Amount)); end Shift_Right; function Shift_Right (Value: Ulong; Amount: Natural) return Unsigned_Long is begin return UL(I.Shift_Right(U32(Value), Amount)); end Shift_Right; function Shift_Right_Arithmetic (Value: Uchar; Amount: Natural) return Unsigned_Char is begin return UC(I.Shift_Right_Arithmetic(U8(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Ushort; Amount: Natural) return Ushort is begin return US(I.Shift_Right_Arithmetic(U16(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Uint; Amount: Natural) return Unsigned_Int is begin return UI(I.Shift_Right_Arithmetic(U32(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Ulong; Amount: Natural) return Unsigned_Long is begin return UL(I.Shift_Right_Arithmetic(U32(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Left (Value: Char; Amount: Natural) return Char is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Left (Value: Short; Amount: Natural) return Short is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Left (Value: Int; Amount: Natural) return Int is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Left (Value: Long; Amount: Natural) return Long is begin return To_Signed(Shift_Left(To_Unsigned(Value), Amount)); end Shift_Left; function Shift_Right (Value: Char; Amount: Natural) return Char is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right (Value: Short; Amount: Natural) return Short is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right (Value: Int; Amount: Natural) return Int is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right (Value: Long; Amount: Natural) return Long is begin return To_Signed(Shift_Right(To_Unsigned(Value), Amount)); end Shift_Right; function Shift_Right_Arithmetic (Value: Char; Amount: Natural) return Char is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Short; Amount: Natural) return Short is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Int; Amount: Natural) return Int is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; function Shift_Right_Arithmetic (Value: Long; Amount: Natural) return Long is begin return To_Signed(Shift_Right_Arithmetic(To_Unsigned(Value), Amount)); end Shift_Right_Arithmetic; end C.Ops;
with TEXT_IO; with STRINGS_PACKAGE; use STRINGS_PACKAGE; with LATIN_FILE_NAMES; use LATIN_FILE_NAMES; with INFLECTIONS_PACKAGE; use INFLECTIONS_PACKAGE; with DICTIONARY_PACKAGE; use DICTIONARY_PACKAGE; with LINE_STUFF; use LINE_STUFF; procedure MAKEDICT is package INTEGER_IO is new TEXT_IO.INTEGER_IO(INTEGER); use TEXT_IO; use STEM_KEY_TYPE_IO; use DICTIONARY_ENTRY_IO; use PART_ENTRY_IO; use KIND_ENTRY_IO; use TRANSLATION_RECORD_IO; use AGE_TYPE_IO; use AREA_TYPE_IO; use GEO_TYPE_IO; use FREQUENCY_TYPE_IO; use SOURCE_TYPE_IO; use DICT_IO; PORTING : constant BOOLEAN := TRUE; BE_VE : VERB_ENTRY := (CON => (5, 1), KIND => TO_BE); D_K : DICTIONARY_KIND := XXX; -- ###################### START_STEM_1 : constant := 1; START_STEM_2 : constant := START_STEM_1 + MAX_STEM_SIZE + 1; START_STEM_3 : constant := START_STEM_2 + MAX_STEM_SIZE + 1; START_STEM_4 : constant := START_STEM_3 + MAX_STEM_SIZE + 1; START_PART : constant := START_STEM_4 + MAX_STEM_SIZE + 1; START_TRAN : constant INTEGER := START_PART + INTEGER(PART_ENTRY_IO.DEFAULT_WIDTH + 1); FINISH_LINE : constant INTEGER := START_TRAN + TRANSLATION_RECORD_IO.DEFAULT_WIDTH - 1; DICTFILE : DICT_IO.FILE_TYPE; INPUT, STEMLIST : TEXT_IO.FILE_TYPE; DE : DICTIONARY_ENTRY; S, LINE, BLANK_LINE : STRING(1..400) := (others => ' '); L, LL, LAST : INTEGER := 0; J : DICT_IO.COUNT := 0; MEAN_TO_BE : constant MEANING_TYPE := HEAD("be; exist; (also used to form verb perfect passive tenses)" & " with NOM PERF PPL", MAX_MEANING_SIZE); begin PUT_LINE( "Takes a DICTLINE.D_K and produces a STEMLIST.D_K and DICTFILE.D_K"); PUT_LINE("This version inserts ESSE when D_K = GEN"); PUT("What dictionary to list, GENERAL or SPECIAL (Reply G or S) =>"); GET_LINE(LINE, LAST); if LAST > 0 then if TRIM(LINE(1..LAST))(1) = 'G' or else TRIM(LINE(1..LAST))(1) = 'g' then D_K := GENERAL; elsif TRIM(LINE(1..LAST))(1) = 'S' or else TRIM(LINE(1..LAST))(1) = 's' then D_K := SPECIAL; else PUT_LINE("No such dictionary"); raise TEXT_IO.DATA_ERROR; end if; end if; OPEN(INPUT, IN_FILE, ADD_FILE_NAME_EXTENSION(DICT_LINE_NAME, DICTIONARY_KIND'IMAGE(D_K))); if not PORTING then CREATE(STEMLIST, OUT_FILE, ADD_FILE_NAME_EXTENSION(STEM_LIST_NAME, DICTIONARY_KIND'IMAGE(D_K))); end if; CREATE(DICTFILE, OUT_FILE, ADD_FILE_NAME_EXTENSION(DICT_FILE_NAME, DICTIONARY_KIND'IMAGE(D_K))); -- if D_K = GENERAL then -- PUT_LINE("WAKEDICT reads DICTLINE.d_k and produces DICTFILE.d_k"); -- PUT_LINE("WAKEDICT also produces STEMLIST.d_k"); -- PUT_LINE("This version inserts ESSE when d_k = GEN"); -- -- J := J + 1; -- -- -- First construct ESSE -- DE.STEMS(1) := "s "; -- DE.STEMS(2) := " "; -- DE.STEMS(3) := "fu "; -- DE.STEMS(4) := "fut "; -- --DE.PART := (PART => V, CON => (5, 10)); -- --DE.PART := (V, ((5, 1))); -- DE.PART := (V, BE_VE); -- DE.KIND := (V, TO_BE); -- DE.TRAN := (X, X, X, A, X); -- DE.MEAN := MEAN_TO_BE; -- -- -- if not PORTING then -- -- Load ESSE -- for I in STEM_KEY_TYPE range 1..4 loop -- PUT(STEMLIST, DE.STEMS(I)); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); -- SET_COL(STEMLIST, 45); -- PUT(STEMLIST, I, 2); PUT(STEMLIST, ' '); -- -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); -- SET_COL(STEMLIST, 50); -- INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); -- end loop; -- end if; -- -- WRITE(DICTFILE, DE, J); -- J = 1 -- end if; -- -- Now do the rest OVER_LINES: while not END_OF_FILE(INPUT) loop S := BLANK_LINE; GET_LINE(INPUT, S, LAST); if TRIM(S(1..LAST)) /= "" then L := 0; FORM_DE: begin DE.STEMS(1) := S(START_STEM_1..MAX_STEM_SIZE); --NEW_LINE; PUT(DE.STEMS(1)); DE.STEMS(2) := S(START_STEM_2..START_STEM_2+MAX_STEM_SIZE-1); DE.STEMS(3) := S(START_STEM_3..START_STEM_3+MAX_STEM_SIZE-1); DE.STEMS(4) := S(START_STEM_4..START_STEM_4+MAX_STEM_SIZE-1); --PUT('#'); PUT(INTEGER'IMAGE(L)); PUT(INTEGER'IMAGE(LAST)); --PUT('@'); GET(S(START_PART..LAST), DE.PART, L); --PUT('%'); PUT(INTEGER'IMAGE(L)); PUT(INTEGER'IMAGE(LAST)); --PUT('&'); PUT(S(L+1..LAST)); PUT('3'); --GET(S(L+1..LAST), DE.PART.POFS, DE.PART.POFS.KIND, L); GET(S(L+1..LAST), DE.TRAN.AGE, L); GET(S(L+1..LAST), DE.TRAN.AREA, L); GET(S(L+1..LAST), DE.TRAN.GEO, L); GET(S(L+1..LAST), DE.TRAN.FREQ, L); GET(S(L+1..LAST), DE.TRAN.SOURCE, L); DE.MEAN := HEAD(S(L+2..LAST), MAX_MEANING_SIZE); -- Note that this allows initial blanks -- L+2 skips over the SPACER, required because this is STRING, not ENUM exception when others => NEW_LINE; PUT_LINE("Exception"); PUT_LINE(S(1..LAST)); INTEGER_IO.PUT(INTEGER(J)); NEW_LINE; PUT(DE); NEW_LINE; end FORM_DE; J := J + 1; WRITE(DICTFILE, DE, J); if not PORTING then if DE.PART.POFS = N and then DE.STEMS(1) = DE.STEMS(2) and then DE.STEMS(1) /= ZZZ_STEM then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 0, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); -- if DE.STEMS(3) /= NULL_STEM_TYPE and DE.STEMS(3) /= ZZZ_STEM then -- PUT(STEMLIST, DE.STEMS(3)); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); -- SET_COL(STEMLIST, 45); -- INTEGER_IO.PUT(STEMLIST, 3, 2); PUT(STEMLIST, ' '); ---- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); ---- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); ---- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); ---- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); ---- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); -- INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); -- end if; -- if DE.STEMS(4) /= NULL_STEM_TYPE and DE.STEMS(4) /= ZZZ_STEM then -- PUT(STEMLIST, DE.STEMS(4)); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); -- SET_COL(STEMLIST, 45); -- INTEGER_IO.PUT(STEMLIST, 4, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); -- INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); -- end if; elsif DE.PART.POFS = ADJ and then DE.STEMS(1) = DE.STEMS(2) and then DE.STEMS(1) /= ZZZ_STEM then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 0, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); if DE.STEMS(3) /= NULL_STEM_TYPE and DE.STEMS(3) /= ZZZ_STEM then PUT(STEMLIST, DE.STEMS(3)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 3, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); end if; if DE.STEMS(4) /= NULL_STEM_TYPE and DE.STEMS(4) /= ZZZ_STEM then PUT(STEMLIST, DE.STEMS(4)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 4, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); end if; elsif DE.PART.POFS = ADJ and then -- POS taken care of by position DE.PART.ADJ.CO = COMP then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 3, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); elsif DE.PART.POFS = ADJ and then DE.PART.ADJ.CO = SUPER then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 4, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); elsif DE.PART.POFS = ADV and then -- POS taken care of by position DE.PART.ADV.CO = COMP then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 2, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); elsif DE.PART.POFS = ADV and then DE.PART.ADV.CO = SUPER then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 3, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); elsif DE.PART.POFS = V and then DE.STEMS(1) = DE.STEMS(2) and then DE.STEMS(1) /= ZZZ_STEM then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 0, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); if DE.STEMS(3) /= NULL_STEM_TYPE and DE.STEMS(3) /= ZZZ_STEM then PUT(STEMLIST, DE.STEMS(3)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 3, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); end if; if DE.STEMS(4) /= NULL_STEM_TYPE and DE.STEMS(4) /= ZZZ_STEM then PUT(STEMLIST, DE.STEMS(4)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 4, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); end if; elsif DE.PART.POFS = NUM and then DE.PART.NUM.SORT = CARD then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 1, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); elsif DE.PART.POFS = NUM and then DE.PART.NUM.SORT = ORD then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 2, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); elsif DE.PART.POFS = NUM and then DE.PART.NUM.SORT = DIST then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 3, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); elsif DE.PART.POFS = NUM and then DE.PART.NUM.SORT = ADVERB then PUT(STEMLIST, DE.STEMS(1)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); INTEGER_IO.PUT(STEMLIST, 4, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); else for I in STEM_KEY_TYPE range 1..4 loop if DE.STEMS(I) /= ZZZ_STEM and DE.STEMS(I) /= NULL_STEM_TYPE then PUT(STEMLIST, DE.STEMS(I)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); PUT(STEMLIST, I, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); end if; end loop; end if; end if; -- PORTING end if; end loop OVER_LINES; if D_K = GENERAL then J := J + 1; -- First construct ESSE DE.STEMS(1) := "s "; DE.STEMS(2) := " "; DE.STEMS(3) := "fu "; DE.STEMS(4) := "fut "; --DE.PART := (PART => V, CON => (5, 10)); --DE.PART := (V, ((5, 1))); DE.PART := (V, BE_VE); --DE.KIND := (V, TO_BE); DE.TRAN := (X, X, X, A, X); DE.MEAN := MEAN_TO_BE; if not PORTING then -- Load ESSE for I in STEM_KEY_TYPE range 1..4 loop PUT(STEMLIST, DE.STEMS(I)); PUT(STEMLIST, ' '); PUT(STEMLIST, DE.PART); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 45); PUT(STEMLIST, I, 2); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AGE); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.AREA); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.GEO); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.FREQ); PUT(STEMLIST, ' '); -- PUT(STEMLIST, DE.TRAN.SOURCE); PUT(STEMLIST, ' '); SET_COL(STEMLIST, 50); INTEGER_IO.PUT(STEMLIST, INTEGER(J), 6); NEW_LINE(STEMLIST); end loop; end if; WRITE(DICTFILE, DE, J); end if; if not PORTING then CLOSE(STEMLIST); end if; exception when TEXT_IO.DATA_ERROR => null; when others => PUT_LINE(S(1..LAST)); INTEGER_IO.PUT(INTEGER(J)); NEW_LINE; CLOSE(STEMLIST); end MAKEDICT;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . I N D E F I N I T E _ V E C T O R S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with Ada.Containers.Generic_Array_Sort; with Ada.Unchecked_Deallocation; with System; use type System.Address; package body Ada.Containers.Indefinite_Vectors is pragma Warnings (Off, "variable ""Busy*"" is not referenced"); pragma Warnings (Off, "variable ""Lock*"" is not referenced"); -- See comment in Ada.Containers.Helpers procedure Free is new Ada.Unchecked_Deallocation (Elements_Type, Elements_Access); procedure Free is new Ada.Unchecked_Deallocation (Element_Type, Element_Access); procedure Append_Slow_Path (Container : in out Vector; New_Item : Element_Type; Count : Count_Type); -- This is the slow path for Append. This is split out to minimize the size -- of Append, because we have Inline (Append). --------- -- "&" -- --------- -- We decide that the capacity of the result of "&" is the minimum needed -- -- the sum of the lengths of the vector parameters. We could decide to -- make it larger, but we have no basis for knowing how much larger, so we -- just allocate the minimum amount of storage. function "&" (Left, Right : Vector) return Vector is begin return Result : Vector do Reserve_Capacity (Result, Length (Left) + Length (Right)); Append (Result, Left); Append (Result, Right); end return; end "&"; function "&" (Left : Vector; Right : Element_Type) return Vector is begin return Result : Vector do Reserve_Capacity (Result, Length (Left) + 1); Append (Result, Left); Append (Result, Right); end return; end "&"; function "&" (Left : Element_Type; Right : Vector) return Vector is begin return Result : Vector do Reserve_Capacity (Result, 1 + Length (Right)); Append (Result, Left); Append (Result, Right); end return; end "&"; function "&" (Left, Right : Element_Type) return Vector is begin return Result : Vector do Reserve_Capacity (Result, 1 + 1); Append (Result, Left); Append (Result, Right); end return; end "&"; --------- -- "=" -- --------- overriding function "=" (Left, Right : Vector) return Boolean is begin if Left.Last /= Right.Last then return False; end if; if Left.Length = 0 then return True; end if; declare -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. Lock_Left : With_Lock (Left.TC'Unrestricted_Access); Lock_Right : With_Lock (Right.TC'Unrestricted_Access); begin for J in Index_Type range Index_Type'First .. Left.Last loop if Left.Elements.EA (J) = null then if Right.Elements.EA (J) /= null then return False; end if; elsif Right.Elements.EA (J) = null then return False; elsif Left.Elements.EA (J).all /= Right.Elements.EA (J).all then return False; end if; end loop; end; return True; end "="; ------------ -- Adjust -- ------------ procedure Adjust (Container : in out Vector) is begin -- If the counts are nonzero, execution is technically erroneous, but -- it seems friendly to allow things like concurrent "=" on shared -- constants. Zero_Counts (Container.TC); if Container.Last = No_Index then Container.Elements := null; return; end if; declare L : constant Index_Type := Container.Last; E : Elements_Array renames Container.Elements.EA (Index_Type'First .. L); begin Container.Elements := null; Container.Last := No_Index; Container.Elements := new Elements_Type (L); for J in E'Range loop if E (J) /= null then Container.Elements.EA (J) := new Element_Type'(E (J).all); end if; Container.Last := J; end loop; end; end Adjust; ------------ -- Append -- ------------ procedure Append (Container : in out Vector; New_Item : Vector) is begin if Is_Empty (New_Item) then return; elsif Checks and then Container.Last = Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; else Insert (Container, Container.Last + 1, New_Item); end if; end Append; procedure Append (Container : in out Vector; New_Item : Element_Type; Count : Count_Type := 1) is begin -- In the general case, we pass the buck to Insert, but for efficiency, -- we check for the usual case where Count = 1 and the vector has enough -- room for at least one more element. if Count = 1 and then Container.Elements /= null and then Container.Last /= Container.Elements.Last then TC_Check (Container.TC); -- Increment Container.Last after assigning the New_Item, so we -- leave the Container unmodified in case Finalize/Adjust raises -- an exception. declare New_Last : constant Index_Type := Container.Last + 1; -- The element allocator may need an accessibility check in the -- case actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Container.Elements.EA (New_Last) := new Element_Type'(New_Item); Container.Last := New_Last; end; else Append_Slow_Path (Container, New_Item, Count); end if; end Append; ---------------------- -- Append_Slow_Path -- ---------------------- procedure Append_Slow_Path (Container : in out Vector; New_Item : Element_Type; Count : Count_Type) is begin if Count = 0 then return; elsif Checks and then Container.Last = Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; else Insert (Container, Container.Last + 1, New_Item, Count); end if; end Append_Slow_Path; ------------ -- Assign -- ------------ procedure Assign (Target : in out Vector; Source : Vector) is begin if Target'Address = Source'Address then return; else Target.Clear; Target.Append (Source); end if; end Assign; -------------- -- Capacity -- -------------- function Capacity (Container : Vector) return Count_Type is begin if Container.Elements = null then return 0; else return Container.Elements.EA'Length; end if; end Capacity; ----------- -- Clear -- ----------- procedure Clear (Container : in out Vector) is begin TC_Check (Container.TC); while Container.Last >= Index_Type'First loop declare X : Element_Access := Container.Elements.EA (Container.Last); begin Container.Elements.EA (Container.Last) := null; Container.Last := Container.Last - 1; Free (X); end; end loop; end Clear; ------------------------ -- Constant_Reference -- ------------------------ function Constant_Reference (Container : aliased Vector; Position : Cursor) return Constant_Reference_Type is begin if Checks then if Position.Container = null then raise Constraint_Error with "Position cursor has no element"; end if; if Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor denotes wrong container"; end if; if Position.Index > Position.Container.Last then raise Constraint_Error with "Position cursor is out of range"; end if; end if; declare TC : constant Tamper_Counts_Access := Container.TC'Unrestricted_Access; begin -- The following will raise Constraint_Error if Element is null return R : constant Constant_Reference_Type := (Element => Container.Elements.EA (Position.Index), Control => (Controlled with TC)) do Lock (TC.all); end return; end; end Constant_Reference; function Constant_Reference (Container : aliased Vector; Index : Index_Type) return Constant_Reference_Type is begin if Checks and then Index > Container.Last then raise Constraint_Error with "Index is out of range"; end if; declare TC : constant Tamper_Counts_Access := Container.TC'Unrestricted_Access; begin -- The following will raise Constraint_Error if Element is null return R : constant Constant_Reference_Type := (Element => Container.Elements.EA (Index), Control => (Controlled with TC)) do Lock (TC.all); end return; end; end Constant_Reference; -------------- -- Contains -- -------------- function Contains (Container : Vector; Item : Element_Type) return Boolean is begin return Find_Index (Container, Item) /= No_Index; end Contains; ---------- -- Copy -- ---------- function Copy (Source : Vector; Capacity : Count_Type := 0) return Vector is C : Count_Type; begin if Capacity < Source.Length then if Checks and then Capacity /= 0 then raise Capacity_Error with "Requested capacity is less than Source length"; end if; C := Source.Length; else C := Capacity; end if; return Target : Vector do Target.Reserve_Capacity (C); Target.Assign (Source); end return; end Copy; ------------ -- Delete -- ------------ procedure Delete (Container : in out Vector; Index : Extended_Index; Count : Count_Type := 1) is Old_Last : constant Index_Type'Base := Container.Last; New_Last : Index_Type'Base; Count2 : Count_Type'Base; -- count of items from Index to Old_Last J : Index_Type'Base; -- first index of items that slide down begin -- Delete removes items from the vector, the number of which is the -- minimum of the specified Count and the items (if any) that exist from -- Index to Container.Last. There are no constraints on the specified -- value of Count (it can be larger than what's available at this -- position in the vector, for example), but there are constraints on -- the allowed values of the Index. -- As a precondition on the generic actual Index_Type, the base type -- must include Index_Type'Pred (Index_Type'First); this is the value -- that Container.Last assumes when the vector is empty. However, we do -- not allow that as the value for Index when specifying which items -- should be deleted, so we must manually check. (That the user is -- allowed to specify the value at all here is a consequence of the -- declaration of the Extended_Index subtype, which includes the values -- in the base range that immediately precede and immediately follow the -- values in the Index_Type.) if Checks and then Index < Index_Type'First then raise Constraint_Error with "Index is out of range (too small)"; end if; -- We do allow a value greater than Container.Last to be specified as -- the Index, but only if it's immediately greater. This allows the -- corner case of deleting no items from the back end of the vector to -- be treated as a no-op. (It is assumed that specifying an index value -- greater than Last + 1 indicates some deeper flaw in the caller's -- algorithm, so that case is treated as a proper error.) if Index > Old_Last then if Checks and then Index > Old_Last + 1 then raise Constraint_Error with "Index is out of range (too large)"; else return; end if; end if; -- Here and elsewhere we treat deleting 0 items from the container as a -- no-op, even when the container is busy, so we simply return. if Count = 0 then return; end if; -- The internal elements array isn't guaranteed to exist unless we have -- elements, so we handle that case here in order to avoid having to -- check it later. (Note that an empty vector can never be busy, so -- there's no semantic harm in returning early.) if Container.Is_Empty then return; end if; -- The tampering bits exist to prevent an item from being deleted (or -- otherwise harmfully manipulated) while it is being visited. Query, -- Update, and Iterate increment the busy count on entry, and decrement -- the count on exit. Delete checks the count to determine whether it is -- being called while the associated callback procedure is executing. TC_Check (Container.TC); -- We first calculate what's available for deletion starting at -- Index. Here and elsewhere we use the wider of Index_Type'Base and -- Count_Type'Base as the type for intermediate values. (See function -- Length for more information.) if Count_Type'Base'Last >= Index_Type'Pos (Index_Type'Base'Last) then Count2 := Count_Type'Base (Old_Last) - Count_Type'Base (Index) + 1; else Count2 := Count_Type'Base (Old_Last - Index + 1); end if; -- If the number of elements requested (Count) for deletion is equal to -- (or greater than) the number of elements available (Count2) for -- deletion beginning at Index, then everything from Index to -- Container.Last is deleted (this is equivalent to Delete_Last). if Count >= Count2 then -- Elements in an indefinite vector are allocated, so we must iterate -- over the loop and deallocate elements one-at-a-time. We work from -- back to front, deleting the last element during each pass, in -- order to gracefully handle deallocation failures. declare EA : Elements_Array renames Container.Elements.EA; begin while Container.Last >= Index loop declare K : constant Index_Type := Container.Last; X : Element_Access := EA (K); begin -- We first isolate the element we're deleting, removing it -- from the vector before we attempt to deallocate it, in -- case the deallocation fails. EA (K) := null; Container.Last := K - 1; -- Container invariants have been restored, so it is now -- safe to attempt to deallocate the element. Free (X); end; end loop; end; return; end if; -- There are some elements that aren't being deleted (the requested -- count was less than the available count), so we must slide them down -- to Index. We first calculate the index values of the respective array -- slices, using the wider of Index_Type'Base and Count_Type'Base as the -- type for intermediate calculations. For the elements that slide down, -- index value New_Last is the last index value of their new home, and -- index value J is the first index of their old home. if Index_Type'Base'Last >= Count_Type_Last then New_Last := Old_Last - Index_Type'Base (Count); J := Index + Index_Type'Base (Count); else New_Last := Index_Type'Base (Count_Type'Base (Old_Last) - Count); J := Index_Type'Base (Count_Type'Base (Index) + Count); end if; -- The internal elements array isn't guaranteed to exist unless we have -- elements, but we have that guarantee here because we know we have -- elements to slide. The array index values for each slice have -- already been determined, so what remains to be done is to first -- deallocate the elements that are being deleted, and then slide down -- to Index the elements that aren't being deleted. declare EA : Elements_Array renames Container.Elements.EA; begin -- Before we can slide down the elements that aren't being deleted, -- we need to deallocate the elements that are being deleted. for K in Index .. J - 1 loop declare X : Element_Access := EA (K); begin -- First we remove the element we're about to deallocate from -- the vector, in case the deallocation fails, in order to -- preserve representation invariants. EA (K) := null; -- The element has been removed from the vector, so it is now -- safe to attempt to deallocate it. Free (X); end; end loop; EA (Index .. New_Last) := EA (J .. Old_Last); Container.Last := New_Last; end; end Delete; procedure Delete (Container : in out Vector; Position : in out Cursor; Count : Count_Type := 1) is begin if Checks then if Position.Container = null then raise Constraint_Error with "Position cursor has no element"; elsif Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor denotes wrong container"; elsif Position.Index > Container.Last then raise Program_Error with "Position index is out of range"; end if; end if; Delete (Container, Position.Index, Count); Position := No_Element; end Delete; ------------------ -- Delete_First -- ------------------ procedure Delete_First (Container : in out Vector; Count : Count_Type := 1) is begin if Count = 0 then return; elsif Count >= Length (Container) then Clear (Container); return; else Delete (Container, Index_Type'First, Count); end if; end Delete_First; ----------------- -- Delete_Last -- ----------------- procedure Delete_Last (Container : in out Vector; Count : Count_Type := 1) is begin -- It is not permitted to delete items while the container is busy (for -- example, we're in the middle of a passive iteration). However, we -- always treat deleting 0 items as a no-op, even when we're busy, so we -- simply return without checking. if Count = 0 then return; end if; -- We cannot simply subsume the empty case into the loop below (the loop -- would iterate 0 times), because we rename the internal array object -- (which is allocated), but an empty vector isn't guaranteed to have -- actually allocated an array. (Note that an empty vector can never be -- busy, so there's no semantic harm in returning early here.) if Container.Is_Empty then return; end if; -- The tampering bits exist to prevent an item from being deleted (or -- otherwise harmfully manipulated) while it is being visited. Query, -- Update, and Iterate increment the busy count on entry, and decrement -- the count on exit. Delete_Last checks the count to determine whether -- it is being called while the associated callback procedure is -- executing. TC_Check (Container.TC); -- Elements in an indefinite vector are allocated, so we must iterate -- over the loop and deallocate elements one-at-a-time. We work from -- back to front, deleting the last element during each pass, in order -- to gracefully handle deallocation failures. declare E : Elements_Array renames Container.Elements.EA; begin for Indx in 1 .. Count_Type'Min (Count, Container.Length) loop declare J : constant Index_Type := Container.Last; X : Element_Access := E (J); begin -- Note that we first isolate the element we're deleting, -- removing it from the vector, before we actually deallocate -- it, in order to preserve representation invariants even if -- the deallocation fails. E (J) := null; Container.Last := J - 1; -- Container invariants have been restored, so it is now safe -- to deallocate the element. Free (X); end; end loop; end; end Delete_Last; ------------- -- Element -- ------------- function Element (Container : Vector; Index : Index_Type) return Element_Type is begin if Checks and then Index > Container.Last then raise Constraint_Error with "Index is out of range"; end if; declare EA : constant Element_Access := Container.Elements.EA (Index); begin if Checks and then EA = null then raise Constraint_Error with "element is empty"; else return EA.all; end if; end; end Element; function Element (Position : Cursor) return Element_Type is begin if Checks then if Position.Container = null then raise Constraint_Error with "Position cursor has no element"; end if; if Position.Index > Position.Container.Last then raise Constraint_Error with "Position cursor is out of range"; end if; end if; declare EA : constant Element_Access := Position.Container.Elements.EA (Position.Index); begin if Checks and then EA = null then raise Constraint_Error with "element is empty"; else return EA.all; end if; end; end Element; -------------- -- Finalize -- -------------- procedure Finalize (Container : in out Vector) is begin Clear (Container); -- Checks busy-bit declare X : Elements_Access := Container.Elements; begin Container.Elements := null; Free (X); end; end Finalize; procedure Finalize (Object : in out Iterator) is begin Unbusy (Object.Container.TC); end Finalize; ---------- -- Find -- ---------- function Find (Container : Vector; Item : Element_Type; Position : Cursor := No_Element) return Cursor is begin if Checks and then Position.Container /= null then if Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor denotes wrong container"; end if; if Position.Index > Container.Last then raise Program_Error with "Position index is out of range"; end if; end if; -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. declare Lock : With_Lock (Container.TC'Unrestricted_Access); begin for J in Position.Index .. Container.Last loop if Container.Elements.EA (J).all = Item then return Cursor'(Container'Unrestricted_Access, J); end if; end loop; return No_Element; end; end Find; ---------------- -- Find_Index -- ---------------- function Find_Index (Container : Vector; Item : Element_Type; Index : Index_Type := Index_Type'First) return Extended_Index is -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. Lock : With_Lock (Container.TC'Unrestricted_Access); begin for Indx in Index .. Container.Last loop if Container.Elements.EA (Indx).all = Item then return Indx; end if; end loop; return No_Index; end Find_Index; ----------- -- First -- ----------- function First (Container : Vector) return Cursor is begin if Is_Empty (Container) then return No_Element; end if; return (Container'Unrestricted_Access, Index_Type'First); end First; function First (Object : Iterator) return Cursor is begin -- The value of the iterator object's Index component influences the -- behavior of the First (and Last) selector function. -- When the Index component is No_Index, this means the iterator -- object was constructed without a start expression, in which case the -- (forward) iteration starts from the (logical) beginning of the entire -- sequence of items (corresponding to Container.First, for a forward -- iterator). -- Otherwise, this is iteration over a partial sequence of items. -- When the Index component isn't No_Index, the iterator object was -- constructed with a start expression, that specifies the position -- from which the (forward) partial iteration begins. if Object.Index = No_Index then return First (Object.Container.all); else return Cursor'(Object.Container, Object.Index); end if; end First; ------------------- -- First_Element -- ------------------- function First_Element (Container : Vector) return Element_Type is begin if Checks and then Container.Last = No_Index then raise Constraint_Error with "Container is empty"; end if; declare EA : constant Element_Access := Container.Elements.EA (Index_Type'First); begin if Checks and then EA = null then raise Constraint_Error with "first element is empty"; else return EA.all; end if; end; end First_Element; ----------------- -- First_Index -- ----------------- function First_Index (Container : Vector) return Index_Type is pragma Unreferenced (Container); begin return Index_Type'First; end First_Index; --------------------- -- Generic_Sorting -- --------------------- package body Generic_Sorting is ----------------------- -- Local Subprograms -- ----------------------- function Is_Less (L, R : Element_Access) return Boolean; pragma Inline (Is_Less); ------------- -- Is_Less -- ------------- function Is_Less (L, R : Element_Access) return Boolean is begin if L = null then return R /= null; elsif R = null then return False; else return L.all < R.all; end if; end Is_Less; --------------- -- Is_Sorted -- --------------- function Is_Sorted (Container : Vector) return Boolean is begin if Container.Last <= Index_Type'First then return True; end if; -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. declare Lock : With_Lock (Container.TC'Unrestricted_Access); E : Elements_Array renames Container.Elements.EA; begin for J in Index_Type'First .. Container.Last - 1 loop if Is_Less (E (J + 1), E (J)) then return False; end if; end loop; return True; end; end Is_Sorted; ----------- -- Merge -- ----------- procedure Merge (Target, Source : in out Vector) is I, J : Index_Type'Base; begin -- The semantics of Merge changed slightly per AI05-0021. It was -- originally the case that if Target and Source denoted the same -- container object, then the GNAT implementation of Merge did -- nothing. However, it was argued that RM05 did not precisely -- specify the semantics for this corner case. The decision of the -- ARG was that if Target and Source denote the same non-empty -- container object, then Program_Error is raised. if Source.Last < Index_Type'First then -- Source is empty return; end if; if Checks and then Target'Address = Source'Address then raise Program_Error with "Target and Source denote same non-empty container"; end if; if Target.Last < Index_Type'First then -- Target is empty Move (Target => Target, Source => Source); return; end if; TC_Check (Source.TC); I := Target.Last; -- original value (before Set_Length) Target.Set_Length (Length (Target) + Length (Source)); -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. declare TA : Elements_Array renames Target.Elements.EA; SA : Elements_Array renames Source.Elements.EA; Lock_Target : With_Lock (Target.TC'Unchecked_Access); Lock_Source : With_Lock (Source.TC'Unchecked_Access); begin J := Target.Last; -- new value (after Set_Length) while Source.Last >= Index_Type'First loop pragma Assert (Source.Last <= Index_Type'First or else not (Is_Less (SA (Source.Last), SA (Source.Last - 1)))); if I < Index_Type'First then declare Src : Elements_Array renames SA (Index_Type'First .. Source.Last); begin TA (Index_Type'First .. J) := Src; Src := (others => null); end; Source.Last := No_Index; exit; end if; pragma Assert (I <= Index_Type'First or else not (Is_Less (TA (I), TA (I - 1)))); declare Src : Element_Access renames SA (Source.Last); Tgt : Element_Access renames TA (I); begin if Is_Less (Src, Tgt) then Target.Elements.EA (J) := Tgt; Tgt := null; I := I - 1; else Target.Elements.EA (J) := Src; Src := null; Source.Last := Source.Last - 1; end if; end; J := J - 1; end loop; end; end Merge; ---------- -- Sort -- ---------- procedure Sort (Container : in out Vector) is procedure Sort is new Generic_Array_Sort (Index_Type => Index_Type, Element_Type => Element_Access, Array_Type => Elements_Array, "<" => Is_Less); -- Start of processing for Sort begin if Container.Last <= Index_Type'First then return; end if; -- The exception behavior for the vector container must match that -- for the list container, so we check for cursor tampering here -- (which will catch more things) instead of for element tampering -- (which will catch fewer things). It's true that the elements of -- this vector container could be safely moved around while (say) an -- iteration is taking place (iteration only increments the busy -- counter), and so technically all we would need here is a test for -- element tampering (indicated by the lock counter), that's simply -- an artifact of our array-based implementation. Logically Sort -- requires a check for cursor tampering. TC_Check (Container.TC); -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. declare Lock : With_Lock (Container.TC'Unchecked_Access); begin Sort (Container.Elements.EA (Index_Type'First .. Container.Last)); end; end Sort; end Generic_Sorting; ------------------------ -- Get_Element_Access -- ------------------------ function Get_Element_Access (Position : Cursor) return not null Element_Access is Ptr : constant Element_Access := Position.Container.Elements.EA (Position.Index); begin -- An indefinite vector may contain spaces that hold no elements. -- Any iteration over an indefinite vector with spaces will raise -- Constraint_Error. if Ptr = null then raise Constraint_Error; else return Ptr; end if; end Get_Element_Access; ----------------- -- Has_Element -- ----------------- function Has_Element (Position : Cursor) return Boolean is begin if Position.Container = null then return False; else return Position.Index <= Position.Container.Last; end if; end Has_Element; ------------ -- Insert -- ------------ procedure Insert (Container : in out Vector; Before : Extended_Index; New_Item : Element_Type; Count : Count_Type := 1) is Old_Length : constant Count_Type := Container.Length; Max_Length : Count_Type'Base; -- determined from range of Index_Type New_Length : Count_Type'Base; -- sum of current length and Count New_Last : Index_Type'Base; -- last index of vector after insertion Index : Index_Type'Base; -- scratch for intermediate values J : Count_Type'Base; -- scratch New_Capacity : Count_Type'Base; -- length of new, expanded array Dst_Last : Index_Type'Base; -- last index of new, expanded array Dst : Elements_Access; -- new, expanded internal array begin if Checks then -- As a precondition on the generic actual Index_Type, the base type -- must include Index_Type'Pred (Index_Type'First); this is the value -- that Container.Last assumes when the vector is empty. However, we -- do not allow that as the value for Index when specifying where the -- new items should be inserted, so we must manually check. (That the -- user is allowed to specify the value at all here is a consequence -- of the declaration of the Extended_Index subtype, which includes -- the values in the base range that immediately precede and -- immediately follow the values in the Index_Type.) if Before < Index_Type'First then raise Constraint_Error with "Before index is out of range (too small)"; end if; -- We do allow a value greater than Container.Last to be specified as -- the Index, but only if it's immediately greater. This allows for -- the case of appending items to the back end of the vector. (It is -- assumed that specifying an index value greater than Last + 1 -- indicates some deeper flaw in the caller's algorithm, so that case -- is treated as a proper error.) if Before > Container.Last + 1 then raise Constraint_Error with "Before index is out of range (too large)"; end if; end if; -- We treat inserting 0 items into the container as a no-op, even when -- the container is busy, so we simply return. if Count = 0 then return; end if; -- There are two constraints we need to satisfy. The first constraint is -- that a container cannot have more than Count_Type'Last elements, so -- we must check the sum of the current length and the insertion count. -- Note: we cannot simply add these values, because of the possibility -- of overflow. if Checks and then Old_Length > Count_Type'Last - Count then raise Constraint_Error with "Count is out of range"; end if; -- It is now safe compute the length of the new vector, without fear of -- overflow. New_Length := Old_Length + Count; -- The second constraint is that the new Last index value cannot exceed -- Index_Type'Last. In each branch below, we calculate the maximum -- length (computed from the range of values in Index_Type), and then -- compare the new length to the maximum length. If the new length is -- acceptable, then we compute the new last index from that. if Index_Type'Base'Last >= Count_Type_Last then -- We have to handle the case when there might be more values in the -- range of Index_Type than in the range of Count_Type. if Index_Type'First <= 0 then -- We know that No_Index (the same as Index_Type'First - 1) is -- less than 0, so it is safe to compute the following sum without -- fear of overflow. Index := No_Index + Index_Type'Base (Count_Type'Last); if Index <= Index_Type'Last then -- We have determined that range of Index_Type has at least as -- many values as in Count_Type, so Count_Type'Last is the -- maximum number of items that are allowed. Max_Length := Count_Type'Last; else -- The range of Index_Type has fewer values than in Count_Type, -- so the maximum number of items is computed from the range of -- the Index_Type. Max_Length := Count_Type'Base (Index_Type'Last - No_Index); end if; else -- No_Index is equal or greater than 0, so we can safely compute -- the difference without fear of overflow (which we would have to -- worry about if No_Index were less than 0, but that case is -- handled above). if Index_Type'Last - No_Index >= Count_Type_Last then -- We have determined that range of Index_Type has at least as -- many values as in Count_Type, so Count_Type'Last is the -- maximum number of items that are allowed. Max_Length := Count_Type'Last; else -- The range of Index_Type has fewer values than in Count_Type, -- so the maximum number of items is computed from the range of -- the Index_Type. Max_Length := Count_Type'Base (Index_Type'Last - No_Index); end if; end if; elsif Index_Type'First <= 0 then -- We know that No_Index (the same as Index_Type'First - 1) is less -- than 0, so it is safe to compute the following sum without fear of -- overflow. J := Count_Type'Base (No_Index) + Count_Type'Last; if J <= Count_Type'Base (Index_Type'Last) then -- We have determined that range of Index_Type has at least as -- many values as in Count_Type, so Count_Type'Last is the maximum -- number of items that are allowed. Max_Length := Count_Type'Last; else -- The range of Index_Type has fewer values than Count_Type does, -- so the maximum number of items is computed from the range of -- the Index_Type. Max_Length := Count_Type'Base (Index_Type'Last) - Count_Type'Base (No_Index); end if; else -- No_Index is equal or greater than 0, so we can safely compute the -- difference without fear of overflow (which we would have to worry -- about if No_Index were less than 0, but that case is handled -- above). Max_Length := Count_Type'Base (Index_Type'Last) - Count_Type'Base (No_Index); end if; -- We have just computed the maximum length (number of items). We must -- now compare the requested length to the maximum length, as we do not -- allow a vector expand beyond the maximum (because that would create -- an internal array with a last index value greater than -- Index_Type'Last, with no way to index those elements). if Checks and then New_Length > Max_Length then raise Constraint_Error with "Count is out of range"; end if; -- New_Last is the last index value of the items in the container after -- insertion. Use the wider of Index_Type'Base and Count_Type'Base to -- compute its value from the New_Length. if Index_Type'Base'Last >= Count_Type_Last then New_Last := No_Index + Index_Type'Base (New_Length); else New_Last := Index_Type'Base (Count_Type'Base (No_Index) + New_Length); end if; if Container.Elements = null then pragma Assert (Container.Last = No_Index); -- This is the simplest case, with which we must always begin: we're -- inserting items into an empty vector that hasn't allocated an -- internal array yet. Note that we don't need to check the busy bit -- here, because an empty container cannot be busy. -- In an indefinite vector, elements are allocated individually, and -- stored as access values on the internal array (the length of which -- represents the vector "capacity"), which is separately allocated. Container.Elements := new Elements_Type (New_Last); -- The element backbone has been successfully allocated, so now we -- allocate the elements. for Idx in Container.Elements.EA'Range loop -- In order to preserve container invariants, we always attempt -- the element allocation first, before setting the Last index -- value, in case the allocation fails (either because there is no -- storage available, or because element initialization fails). declare -- The element allocator may need an accessibility check in the -- case actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Container.Elements.EA (Idx) := new Element_Type'(New_Item); end; -- The allocation of the element succeeded, so it is now safe to -- update the Last index, restoring container invariants. Container.Last := Idx; end loop; return; end if; -- The tampering bits exist to prevent an item from being harmfully -- manipulated while it is being visited. Query, Update, and Iterate -- increment the busy count on entry, and decrement the count on -- exit. Insert checks the count to determine whether it is being called -- while the associated callback procedure is executing. TC_Check (Container.TC); if New_Length <= Container.Elements.EA'Length then -- In this case, we're inserting elements into a vector that has -- already allocated an internal array, and the existing array has -- enough unused storage for the new items. declare E : Elements_Array renames Container.Elements.EA; K : Index_Type'Base; begin if Before > Container.Last then -- The new items are being appended to the vector, so no -- sliding of existing elements is required. for Idx in Before .. New_Last loop -- In order to preserve container invariants, we always -- attempt the element allocation first, before setting the -- Last index value, in case the allocation fails (either -- because there is no storage available, or because element -- initialization fails). declare -- The element allocator may need an accessibility check -- in case the actual type is class-wide or has access -- discriminants (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin E (Idx) := new Element_Type'(New_Item); end; -- The allocation of the element succeeded, so it is now -- safe to update the Last index, restoring container -- invariants. Container.Last := Idx; end loop; else -- The new items are being inserted before some existing -- elements, so we must slide the existing elements up to their -- new home. We use the wider of Index_Type'Base and -- Count_Type'Base as the type for intermediate index values. if Index_Type'Base'Last >= Count_Type_Last then Index := Before + Index_Type'Base (Count); else Index := Index_Type'Base (Count_Type'Base (Before) + Count); end if; -- The new items are being inserted in the middle of the array, -- in the range [Before, Index). Copy the existing elements to -- the end of the array, to make room for the new items. E (Index .. New_Last) := E (Before .. Container.Last); Container.Last := New_Last; -- We have copied the existing items up to the end of the -- array, to make room for the new items in the middle of -- the array. Now we actually allocate the new items. -- Note: initialize K outside loop to make it clear that -- K always has a value if the exception handler triggers. K := Before; declare -- The element allocator may need an accessibility check in -- the case the actual type is class-wide or has access -- discriminants (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin while K < Index loop E (K) := new Element_Type'(New_Item); K := K + 1; end loop; exception when others => -- Values in the range [Before, K) were successfully -- allocated, but values in the range [K, Index) are -- stale (these array positions contain copies of the -- old items, that did not get assigned a new item, -- because the allocation failed). We must finish what -- we started by clearing out all of the stale values, -- leaving a "hole" in the middle of the array. E (K .. Index - 1) := (others => null); raise; end; end if; end; return; end if; -- In this case, we're inserting elements into a vector that has already -- allocated an internal array, but the existing array does not have -- enough storage, so we must allocate a new, longer array. In order to -- guarantee that the amortized insertion cost is O(1), we always -- allocate an array whose length is some power-of-two factor of the -- current array length. (The new array cannot have a length less than -- the New_Length of the container, but its last index value cannot be -- greater than Index_Type'Last.) New_Capacity := Count_Type'Max (1, Container.Elements.EA'Length); while New_Capacity < New_Length loop if New_Capacity > Count_Type'Last / 2 then New_Capacity := Count_Type'Last; exit; end if; New_Capacity := 2 * New_Capacity; end loop; if New_Capacity > Max_Length then -- We have reached the limit of capacity, so no further expansion -- will occur. (This is not a problem, as there is never a need to -- have more capacity than the maximum container length.) New_Capacity := Max_Length; end if; -- We have computed the length of the new internal array (and this is -- what "vector capacity" means), so use that to compute its last index. if Index_Type'Base'Last >= Count_Type_Last then Dst_Last := No_Index + Index_Type'Base (New_Capacity); else Dst_Last := Index_Type'Base (Count_Type'Base (No_Index) + New_Capacity); end if; -- Now we allocate the new, longer internal array. If the allocation -- fails, we have not changed any container state, so no side-effect -- will occur as a result of propagating the exception. Dst := new Elements_Type (Dst_Last); -- We have our new internal array. All that needs to be done now is to -- copy the existing items (if any) from the old array (the "source" -- array) to the new array (the "destination" array), and then -- deallocate the old array. declare Src : Elements_Access := Container.Elements; begin Dst.EA (Index_Type'First .. Before - 1) := Src.EA (Index_Type'First .. Before - 1); if Before > Container.Last then -- The new items are being appended to the vector, so no -- sliding of existing elements is required. -- We have copied the elements from to the old source array to the -- new destination array, so we can now deallocate the old array. Container.Elements := Dst; Free (Src); -- Now we append the new items. for Idx in Before .. New_Last loop -- In order to preserve container invariants, we always attempt -- the element allocation first, before setting the Last index -- value, in case the allocation fails (either because there -- is no storage available, or because element initialization -- fails). declare -- The element allocator may need an accessibility check in -- the case the actual type is class-wide or has access -- discriminants (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Dst.EA (Idx) := new Element_Type'(New_Item); end; -- The allocation of the element succeeded, so it is now safe -- to update the Last index, restoring container invariants. Container.Last := Idx; end loop; else -- The new items are being inserted before some existing elements, -- so we must slide the existing elements up to their new home. if Index_Type'Base'Last >= Count_Type_Last then Index := Before + Index_Type'Base (Count); else Index := Index_Type'Base (Count_Type'Base (Before) + Count); end if; Dst.EA (Index .. New_Last) := Src.EA (Before .. Container.Last); -- We have copied the elements from to the old source array to the -- new destination array, so we can now deallocate the old array. Container.Elements := Dst; Container.Last := New_Last; Free (Src); -- The new array has a range in the middle containing null access -- values. Fill in that partition of the array with the new items. for Idx in Before .. Index - 1 loop -- Note that container invariants have already been satisfied -- (in particular, the Last index value of the vector has -- already been updated), so if this allocation fails we simply -- let it propagate. declare -- The element allocator may need an accessibility check in -- the case the actual type is class-wide or has access -- discriminants (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Dst.EA (Idx) := new Element_Type'(New_Item); end; end loop; end if; end; end Insert; procedure Insert (Container : in out Vector; Before : Extended_Index; New_Item : Vector) is N : constant Count_Type := Length (New_Item); J : Index_Type'Base; begin -- Use Insert_Space to create the "hole" (the destination slice) into -- which we copy the source items. Insert_Space (Container, Before, Count => N); if N = 0 then -- There's nothing else to do here (vetting of parameters was -- performed already in Insert_Space), so we simply return. return; end if; if Container'Address /= New_Item'Address then -- This is the simple case. New_Item denotes an object different -- from Container, so there's nothing special we need to do to copy -- the source items to their destination, because all of the source -- items are contiguous. declare subtype Src_Index_Subtype is Index_Type'Base range Index_Type'First .. New_Item.Last; Src : Elements_Array renames New_Item.Elements.EA (Src_Index_Subtype); Dst : Elements_Array renames Container.Elements.EA; Dst_Index : Index_Type'Base; begin Dst_Index := Before - 1; for Src_Index in Src'Range loop Dst_Index := Dst_Index + 1; if Src (Src_Index) /= null then Dst (Dst_Index) := new Element_Type'(Src (Src_Index).all); end if; end loop; end; return; end if; -- New_Item denotes the same object as Container, so an insertion has -- potentially split the source items. The first source slice is -- [Index_Type'First, Before), and the second source slice is -- [J, Container.Last], where index value J is the first index of the -- second slice. (J gets computed below, but only after we have -- determined that the second source slice is non-empty.) The -- destination slice is always the range [Before, J). We perform the -- copy in two steps, using each of the two slices of the source items. declare L : constant Index_Type'Base := Before - 1; subtype Src_Index_Subtype is Index_Type'Base range Index_Type'First .. L; Src : Elements_Array renames Container.Elements.EA (Src_Index_Subtype); Dst : Elements_Array renames Container.Elements.EA; Dst_Index : Index_Type'Base; begin -- We first copy the source items that precede the space we -- inserted. (If Before equals Index_Type'First, then this first -- source slice will be empty, which is harmless.) Dst_Index := Before - 1; for Src_Index in Src'Range loop Dst_Index := Dst_Index + 1; if Src (Src_Index) /= null then Dst (Dst_Index) := new Element_Type'(Src (Src_Index).all); end if; end loop; if Src'Length = N then -- The new items were effectively appended to the container, so we -- have already copied all of the items that need to be copied. -- We return early here, even though the source slice below is -- empty (so the assignment would be harmless), because we want to -- avoid computing J, which will overflow if J is greater than -- Index_Type'Base'Last. return; end if; end; -- Index value J is the first index of the second source slice. (It is -- also 1 greater than the last index of the destination slice.) Note: -- avoid computing J if J is greater than Index_Type'Base'Last, in order -- to avoid overflow. Prevent that by returning early above, immediately -- after copying the first slice of the source, and determining that -- this second slice of the source is empty. if Index_Type'Base'Last >= Count_Type_Last then J := Before + Index_Type'Base (N); else J := Index_Type'Base (Count_Type'Base (Before) + N); end if; declare subtype Src_Index_Subtype is Index_Type'Base range J .. Container.Last; Src : Elements_Array renames Container.Elements.EA (Src_Index_Subtype); Dst : Elements_Array renames Container.Elements.EA; Dst_Index : Index_Type'Base; begin -- We next copy the source items that follow the space we inserted. -- Index value Dst_Index is the first index of that portion of the -- destination that receives this slice of the source. (For the -- reasons given above, this slice is guaranteed to be non-empty.) if Index_Type'Base'Last >= Count_Type_Last then Dst_Index := J - Index_Type'Base (Src'Length); else Dst_Index := Index_Type'Base (Count_Type'Base (J) - Src'Length); end if; for Src_Index in Src'Range loop if Src (Src_Index) /= null then Dst (Dst_Index) := new Element_Type'(Src (Src_Index).all); end if; Dst_Index := Dst_Index + 1; end loop; end; end Insert; procedure Insert (Container : in out Vector; Before : Cursor; New_Item : Vector) is Index : Index_Type'Base; begin if Checks and then Before.Container /= null and then Before.Container /= Container'Unrestricted_Access then raise Program_Error with "Before cursor denotes wrong container"; end if; if Is_Empty (New_Item) then return; end if; if Before.Container = null or else Before.Index > Container.Last then if Checks and then Container.Last = Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; end if; Index := Container.Last + 1; else Index := Before.Index; end if; Insert (Container, Index, New_Item); end Insert; procedure Insert (Container : in out Vector; Before : Cursor; New_Item : Vector; Position : out Cursor) is Index : Index_Type'Base; begin if Checks and then Before.Container /= null and then Before.Container /= Container'Unrestricted_Access then raise Program_Error with "Before cursor denotes wrong container"; end if; if Is_Empty (New_Item) then if Before.Container = null or else Before.Index > Container.Last then Position := No_Element; else Position := (Container'Unrestricted_Access, Before.Index); end if; return; end if; if Before.Container = null or else Before.Index > Container.Last then if Checks and then Container.Last = Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; end if; Index := Container.Last + 1; else Index := Before.Index; end if; Insert (Container, Index, New_Item); Position := (Container'Unrestricted_Access, Index); end Insert; procedure Insert (Container : in out Vector; Before : Cursor; New_Item : Element_Type; Count : Count_Type := 1) is Index : Index_Type'Base; begin if Checks and then Before.Container /= null and then Before.Container /= Container'Unrestricted_Access then raise Program_Error with "Before cursor denotes wrong container"; end if; if Count = 0 then return; end if; if Before.Container = null or else Before.Index > Container.Last then if Checks and then Container.Last = Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; end if; Index := Container.Last + 1; else Index := Before.Index; end if; Insert (Container, Index, New_Item, Count); end Insert; procedure Insert (Container : in out Vector; Before : Cursor; New_Item : Element_Type; Position : out Cursor; Count : Count_Type := 1) is Index : Index_Type'Base; begin if Checks and then Before.Container /= null and then Before.Container /= Container'Unrestricted_Access then raise Program_Error with "Before cursor denotes wrong container"; end if; if Count = 0 then if Before.Container = null or else Before.Index > Container.Last then Position := No_Element; else Position := (Container'Unrestricted_Access, Before.Index); end if; return; end if; if Before.Container = null or else Before.Index > Container.Last then if Checks and then Container.Last = Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; end if; Index := Container.Last + 1; else Index := Before.Index; end if; Insert (Container, Index, New_Item, Count); Position := (Container'Unrestricted_Access, Index); end Insert; ------------------ -- Insert_Space -- ------------------ procedure Insert_Space (Container : in out Vector; Before : Extended_Index; Count : Count_Type := 1) is Old_Length : constant Count_Type := Container.Length; Max_Length : Count_Type'Base; -- determined from range of Index_Type New_Length : Count_Type'Base; -- sum of current length and Count New_Last : Index_Type'Base; -- last index of vector after insertion Index : Index_Type'Base; -- scratch for intermediate values J : Count_Type'Base; -- scratch New_Capacity : Count_Type'Base; -- length of new, expanded array Dst_Last : Index_Type'Base; -- last index of new, expanded array Dst : Elements_Access; -- new, expanded internal array begin if Checks then -- As a precondition on the generic actual Index_Type, the base type -- must include Index_Type'Pred (Index_Type'First); this is the value -- that Container.Last assumes when the vector is empty. However, we -- do not allow that as the value for Index when specifying where the -- new items should be inserted, so we must manually check. (That the -- user is allowed to specify the value at all here is a consequence -- of the declaration of the Extended_Index subtype, which includes -- the values in the base range that immediately precede and -- immediately follow the values in the Index_Type.) if Before < Index_Type'First then raise Constraint_Error with "Before index is out of range (too small)"; end if; -- We do allow a value greater than Container.Last to be specified as -- the Index, but only if it's immediately greater. This allows for -- the case of appending items to the back end of the vector. (It is -- assumed that specifying an index value greater than Last + 1 -- indicates some deeper flaw in the caller's algorithm, so that case -- is treated as a proper error.) if Before > Container.Last + 1 then raise Constraint_Error with "Before index is out of range (too large)"; end if; end if; -- We treat inserting 0 items into the container as a no-op, even when -- the container is busy, so we simply return. if Count = 0 then return; end if; -- There are two constraints we need to satisfy. The first constraint is -- that a container cannot have more than Count_Type'Last elements, so -- we must check the sum of the current length and the insertion count. -- Note: we cannot simply add these values, because of the possibility -- of overflow. if Checks and then Old_Length > Count_Type'Last - Count then raise Constraint_Error with "Count is out of range"; end if; -- It is now safe compute the length of the new vector, without fear of -- overflow. New_Length := Old_Length + Count; -- The second constraint is that the new Last index value cannot exceed -- Index_Type'Last. In each branch below, we calculate the maximum -- length (computed from the range of values in Index_Type), and then -- compare the new length to the maximum length. If the new length is -- acceptable, then we compute the new last index from that. if Index_Type'Base'Last >= Count_Type_Last then -- We have to handle the case when there might be more values in the -- range of Index_Type than in the range of Count_Type. if Index_Type'First <= 0 then -- We know that No_Index (the same as Index_Type'First - 1) is -- less than 0, so it is safe to compute the following sum without -- fear of overflow. Index := No_Index + Index_Type'Base (Count_Type'Last); if Index <= Index_Type'Last then -- We have determined that range of Index_Type has at least as -- many values as in Count_Type, so Count_Type'Last is the -- maximum number of items that are allowed. Max_Length := Count_Type'Last; else -- The range of Index_Type has fewer values than in Count_Type, -- so the maximum number of items is computed from the range of -- the Index_Type. Max_Length := Count_Type'Base (Index_Type'Last - No_Index); end if; else -- No_Index is equal or greater than 0, so we can safely compute -- the difference without fear of overflow (which we would have to -- worry about if No_Index were less than 0, but that case is -- handled above). if Index_Type'Last - No_Index >= Count_Type_Last then -- We have determined that range of Index_Type has at least as -- many values as in Count_Type, so Count_Type'Last is the -- maximum number of items that are allowed. Max_Length := Count_Type'Last; else -- The range of Index_Type has fewer values than in Count_Type, -- so the maximum number of items is computed from the range of -- the Index_Type. Max_Length := Count_Type'Base (Index_Type'Last - No_Index); end if; end if; elsif Index_Type'First <= 0 then -- We know that No_Index (the same as Index_Type'First - 1) is less -- than 0, so it is safe to compute the following sum without fear of -- overflow. J := Count_Type'Base (No_Index) + Count_Type'Last; if J <= Count_Type'Base (Index_Type'Last) then -- We have determined that range of Index_Type has at least as -- many values as in Count_Type, so Count_Type'Last is the maximum -- number of items that are allowed. Max_Length := Count_Type'Last; else -- The range of Index_Type has fewer values than Count_Type does, -- so the maximum number of items is computed from the range of -- the Index_Type. Max_Length := Count_Type'Base (Index_Type'Last) - Count_Type'Base (No_Index); end if; else -- No_Index is equal or greater than 0, so we can safely compute the -- difference without fear of overflow (which we would have to worry -- about if No_Index were less than 0, but that case is handled -- above). Max_Length := Count_Type'Base (Index_Type'Last) - Count_Type'Base (No_Index); end if; -- We have just computed the maximum length (number of items). We must -- now compare the requested length to the maximum length, as we do not -- allow a vector expand beyond the maximum (because that would create -- an internal array with a last index value greater than -- Index_Type'Last, with no way to index those elements). if Checks and then New_Length > Max_Length then raise Constraint_Error with "Count is out of range"; end if; -- New_Last is the last index value of the items in the container after -- insertion. Use the wider of Index_Type'Base and Count_Type'Base to -- compute its value from the New_Length. if Index_Type'Base'Last >= Count_Type_Last then New_Last := No_Index + Index_Type'Base (New_Length); else New_Last := Index_Type'Base (Count_Type'Base (No_Index) + New_Length); end if; if Container.Elements = null then pragma Assert (Container.Last = No_Index); -- This is the simplest case, with which we must always begin: we're -- inserting items into an empty vector that hasn't allocated an -- internal array yet. Note that we don't need to check the busy bit -- here, because an empty container cannot be busy. -- In an indefinite vector, elements are allocated individually, and -- stored as access values on the internal array (the length of which -- represents the vector "capacity"), which is separately allocated. -- We have no elements here (because we're inserting "space"), so all -- we need to do is allocate the backbone. Container.Elements := new Elements_Type (New_Last); Container.Last := New_Last; return; end if; -- The tampering bits exist to prevent an item from being harmfully -- manipulated while it is being visited. Query, Update, and Iterate -- increment the busy count on entry, and decrement the count on exit. -- Insert checks the count to determine whether it is being called while -- the associated callback procedure is executing. TC_Check (Container.TC); if New_Length <= Container.Elements.EA'Length then -- In this case, we are inserting elements into a vector that has -- already allocated an internal array, and the existing array has -- enough unused storage for the new items. declare E : Elements_Array renames Container.Elements.EA; begin if Before <= Container.Last then -- The new space is being inserted before some existing -- elements, so we must slide the existing elements up to -- their new home. We use the wider of Index_Type'Base and -- Count_Type'Base as the type for intermediate index values. if Index_Type'Base'Last >= Count_Type_Last then Index := Before + Index_Type'Base (Count); else Index := Index_Type'Base (Count_Type'Base (Before) + Count); end if; E (Index .. New_Last) := E (Before .. Container.Last); E (Before .. Index - 1) := (others => null); end if; end; Container.Last := New_Last; return; end if; -- In this case, we're inserting elements into a vector that has already -- allocated an internal array, but the existing array does not have -- enough storage, so we must allocate a new, longer array. In order to -- guarantee that the amortized insertion cost is O(1), we always -- allocate an array whose length is some power-of-two factor of the -- current array length. (The new array cannot have a length less than -- the New_Length of the container, but its last index value cannot be -- greater than Index_Type'Last.) New_Capacity := Count_Type'Max (1, Container.Elements.EA'Length); while New_Capacity < New_Length loop if New_Capacity > Count_Type'Last / 2 then New_Capacity := Count_Type'Last; exit; end if; New_Capacity := 2 * New_Capacity; end loop; if New_Capacity > Max_Length then -- We have reached the limit of capacity, so no further expansion -- will occur. (This is not a problem, as there is never a need to -- have more capacity than the maximum container length.) New_Capacity := Max_Length; end if; -- We have computed the length of the new internal array (and this is -- what "vector capacity" means), so use that to compute its last index. if Index_Type'Base'Last >= Count_Type_Last then Dst_Last := No_Index + Index_Type'Base (New_Capacity); else Dst_Last := Index_Type'Base (Count_Type'Base (No_Index) + New_Capacity); end if; -- Now we allocate the new, longer internal array. If the allocation -- fails, we have not changed any container state, so no side-effect -- will occur as a result of propagating the exception. Dst := new Elements_Type (Dst_Last); -- We have our new internal array. All that needs to be done now is to -- copy the existing items (if any) from the old array (the "source" -- array) to the new array (the "destination" array), and then -- deallocate the old array. declare Src : Elements_Access := Container.Elements; begin Dst.EA (Index_Type'First .. Before - 1) := Src.EA (Index_Type'First .. Before - 1); if Before <= Container.Last then -- The new items are being inserted before some existing elements, -- so we must slide the existing elements up to their new home. if Index_Type'Base'Last >= Count_Type_Last then Index := Before + Index_Type'Base (Count); else Index := Index_Type'Base (Count_Type'Base (Before) + Count); end if; Dst.EA (Index .. New_Last) := Src.EA (Before .. Container.Last); end if; -- We have copied the elements from to the old, source array to the -- new, destination array, so we can now restore invariants, and -- deallocate the old array. Container.Elements := Dst; Container.Last := New_Last; Free (Src); end; end Insert_Space; procedure Insert_Space (Container : in out Vector; Before : Cursor; Position : out Cursor; Count : Count_Type := 1) is Index : Index_Type'Base; begin if Checks and then Before.Container /= null and then Before.Container /= Container'Unrestricted_Access then raise Program_Error with "Before cursor denotes wrong container"; end if; if Count = 0 then if Before.Container = null or else Before.Index > Container.Last then Position := No_Element; else Position := (Container'Unrestricted_Access, Before.Index); end if; return; end if; if Before.Container = null or else Before.Index > Container.Last then if Checks and then Container.Last = Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; end if; Index := Container.Last + 1; else Index := Before.Index; end if; Insert_Space (Container, Index, Count); Position := (Container'Unrestricted_Access, Index); end Insert_Space; -------------- -- Is_Empty -- -------------- function Is_Empty (Container : Vector) return Boolean is begin return Container.Last < Index_Type'First; end Is_Empty; ------------- -- Iterate -- ------------- procedure Iterate (Container : Vector; Process : not null access procedure (Position : Cursor)) is Busy : With_Busy (Container.TC'Unrestricted_Access); begin for Indx in Index_Type'First .. Container.Last loop Process (Cursor'(Container'Unrestricted_Access, Indx)); end loop; end Iterate; function Iterate (Container : Vector) return Vector_Iterator_Interfaces.Reversible_Iterator'Class is V : constant Vector_Access := Container'Unrestricted_Access; begin -- The value of its Index component influences the behavior of the First -- and Last selector functions of the iterator object. When the Index -- component is No_Index (as is the case here), this means the iterator -- object was constructed without a start expression. This is a complete -- iterator, meaning that the iteration starts from the (logical) -- beginning of the sequence of items. -- Note: For a forward iterator, Container.First is the beginning, and -- for a reverse iterator, Container.Last is the beginning. return It : constant Iterator := (Limited_Controlled with Container => V, Index => No_Index) do Busy (Container.TC'Unrestricted_Access.all); end return; end Iterate; function Iterate (Container : Vector; Start : Cursor) return Vector_Iterator_Interfaces.Reversible_Iterator'Class is V : constant Vector_Access := Container'Unrestricted_Access; begin -- It was formerly the case that when Start = No_Element, the partial -- iterator was defined to behave the same as for a complete iterator, -- and iterate over the entire sequence of items. However, those -- semantics were unintuitive and arguably error-prone (it is too easy -- to accidentally create an endless loop), and so they were changed, -- per the ARG meeting in Denver on 2011/11. However, there was no -- consensus about what positive meaning this corner case should have, -- and so it was decided to simply raise an exception. This does imply, -- however, that it is not possible to use a partial iterator to specify -- an empty sequence of items. if Checks then if Start.Container = null then raise Constraint_Error with "Start position for iterator equals No_Element"; end if; if Start.Container /= V then raise Program_Error with "Start cursor of Iterate designates wrong vector"; end if; if Start.Index > V.Last then raise Constraint_Error with "Start position for iterator equals No_Element"; end if; end if; -- The value of its Index component influences the behavior of the First -- and Last selector functions of the iterator object. When the Index -- component is not No_Index (as is the case here), it means that this -- is a partial iteration, over a subset of the complete sequence of -- items. The iterator object was constructed with a start expression, -- indicating the position from which the iteration begins. Note that -- the start position has the same value irrespective of whether this -- is a forward or reverse iteration. return It : constant Iterator := (Limited_Controlled with Container => V, Index => Start.Index) do Busy (Container.TC'Unrestricted_Access.all); end return; end Iterate; ---------- -- Last -- ---------- function Last (Container : Vector) return Cursor is begin if Is_Empty (Container) then return No_Element; end if; return (Container'Unrestricted_Access, Container.Last); end Last; function Last (Object : Iterator) return Cursor is begin -- The value of the iterator object's Index component influences the -- behavior of the Last (and First) selector function. -- When the Index component is No_Index, this means the iterator -- object was constructed without a start expression, in which case the -- (reverse) iteration starts from the (logical) beginning of the entire -- sequence (corresponding to Container.Last, for a reverse iterator). -- Otherwise, this is iteration over a partial sequence of items. -- When the Index component is not No_Index, the iterator object was -- constructed with a start expression, that specifies the position -- from which the (reverse) partial iteration begins. if Object.Index = No_Index then return Last (Object.Container.all); else return Cursor'(Object.Container, Object.Index); end if; end Last; ------------------ -- Last_Element -- ------------------ function Last_Element (Container : Vector) return Element_Type is begin if Checks and then Container.Last = No_Index then raise Constraint_Error with "Container is empty"; end if; declare EA : constant Element_Access := Container.Elements.EA (Container.Last); begin if Checks and then EA = null then raise Constraint_Error with "last element is empty"; else return EA.all; end if; end; end Last_Element; ---------------- -- Last_Index -- ---------------- function Last_Index (Container : Vector) return Extended_Index is begin return Container.Last; end Last_Index; ------------ -- Length -- ------------ function Length (Container : Vector) return Count_Type is L : constant Index_Type'Base := Container.Last; F : constant Index_Type := Index_Type'First; begin -- The base range of the index type (Index_Type'Base) might not include -- all values for length (Count_Type). Contrariwise, the index type -- might include values outside the range of length. Hence we use -- whatever type is wider for intermediate values when calculating -- length. Note that no matter what the index type is, the maximum -- length to which a vector is allowed to grow is always the minimum -- of Count_Type'Last and (IT'Last - IT'First + 1). -- For example, an Index_Type with range -127 .. 127 is only guaranteed -- to have a base range of -128 .. 127, but the corresponding vector -- would have lengths in the range 0 .. 255. In this case we would need -- to use Count_Type'Base for intermediate values. -- Another case would be the index range -2**63 + 1 .. -2**63 + 10. The -- vector would have a maximum length of 10, but the index values lie -- outside the range of Count_Type (which is only 32 bits). In this -- case we would need to use Index_Type'Base for intermediate values. if Count_Type'Base'Last >= Index_Type'Pos (Index_Type'Base'Last) then return Count_Type'Base (L) - Count_Type'Base (F) + 1; else return Count_Type (L - F + 1); end if; end Length; ---------- -- Move -- ---------- procedure Move (Target : in out Vector; Source : in out Vector) is begin if Target'Address = Source'Address then return; end if; TC_Check (Source.TC); Clear (Target); -- Checks busy-bit declare Target_Elements : constant Elements_Access := Target.Elements; begin Target.Elements := Source.Elements; Source.Elements := Target_Elements; end; Target.Last := Source.Last; Source.Last := No_Index; end Move; ---------- -- Next -- ---------- function Next (Position : Cursor) return Cursor is begin if Position.Container = null then return No_Element; elsif Position.Index < Position.Container.Last then return (Position.Container, Position.Index + 1); else return No_Element; end if; end Next; function Next (Object : Iterator; Position : Cursor) return Cursor is begin if Position.Container = null then return No_Element; elsif Checks and then Position.Container /= Object.Container then raise Program_Error with "Position cursor of Next designates wrong vector"; else return Next (Position); end if; end Next; procedure Next (Position : in out Cursor) is begin if Position.Container = null then return; elsif Position.Index < Position.Container.Last then Position.Index := Position.Index + 1; else Position := No_Element; end if; end Next; ------------- -- Prepend -- ------------- procedure Prepend (Container : in out Vector; New_Item : Vector) is begin Insert (Container, Index_Type'First, New_Item); end Prepend; procedure Prepend (Container : in out Vector; New_Item : Element_Type; Count : Count_Type := 1) is begin Insert (Container, Index_Type'First, New_Item, Count); end Prepend; -------------- -- Previous -- -------------- function Previous (Position : Cursor) return Cursor is begin if Position.Container = null then return No_Element; elsif Position.Index > Index_Type'First then return (Position.Container, Position.Index - 1); else return No_Element; end if; end Previous; function Previous (Object : Iterator; Position : Cursor) return Cursor is begin if Position.Container = null then return No_Element; elsif Checks and then Position.Container /= Object.Container then raise Program_Error with "Position cursor of Previous designates wrong vector"; else return Previous (Position); end if; end Previous; procedure Previous (Position : in out Cursor) is begin if Position.Container = null then return; elsif Position.Index > Index_Type'First then Position.Index := Position.Index - 1; else Position := No_Element; end if; end Previous; ---------------------- -- Pseudo_Reference -- ---------------------- function Pseudo_Reference (Container : aliased Vector'Class) return Reference_Control_Type is TC : constant Tamper_Counts_Access := Container.TC'Unrestricted_Access; begin return R : constant Reference_Control_Type := (Controlled with TC) do Lock (TC.all); end return; end Pseudo_Reference; ------------------- -- Query_Element -- ------------------- procedure Query_Element (Container : Vector; Index : Index_Type; Process : not null access procedure (Element : Element_Type)) is Lock : With_Lock (Container.TC'Unrestricted_Access); V : Vector renames Container'Unrestricted_Access.all; begin if Checks and then Index > Container.Last then raise Constraint_Error with "Index is out of range"; end if; if Checks and then V.Elements.EA (Index) = null then raise Constraint_Error with "element is null"; end if; Process (V.Elements.EA (Index).all); end Query_Element; procedure Query_Element (Position : Cursor; Process : not null access procedure (Element : Element_Type)) is begin if Checks and then Position.Container = null then raise Constraint_Error with "Position cursor has no element"; else Query_Element (Position.Container.all, Position.Index, Process); end if; end Query_Element; ---------- -- Read -- ---------- procedure Read (Stream : not null access Root_Stream_Type'Class; Container : out Vector) is Length : Count_Type'Base; Last : Index_Type'Base := Index_Type'Pred (Index_Type'First); B : Boolean; begin Clear (Container); Count_Type'Base'Read (Stream, Length); if Length > Capacity (Container) then Reserve_Capacity (Container, Capacity => Length); end if; for J in Count_Type range 1 .. Length loop Last := Last + 1; Boolean'Read (Stream, B); if B then Container.Elements.EA (Last) := new Element_Type'(Element_Type'Input (Stream)); end if; Container.Last := Last; end loop; end Read; procedure Read (Stream : not null access Root_Stream_Type'Class; Position : out Cursor) is begin raise Program_Error with "attempt to stream vector cursor"; end Read; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Read; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Constant_Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Read; --------------- -- Reference -- --------------- function Reference (Container : aliased in out Vector; Position : Cursor) return Reference_Type is begin if Checks then if Position.Container = null then raise Constraint_Error with "Position cursor has no element"; end if; if Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor denotes wrong container"; end if; if Position.Index > Position.Container.Last then raise Constraint_Error with "Position cursor is out of range"; end if; end if; declare TC : constant Tamper_Counts_Access := Container.TC'Unrestricted_Access; begin -- The following will raise Constraint_Error if Element is null return R : constant Reference_Type := (Element => Container.Elements.EA (Position.Index), Control => (Controlled with TC)) do Lock (TC.all); end return; end; end Reference; function Reference (Container : aliased in out Vector; Index : Index_Type) return Reference_Type is begin if Checks and then Index > Container.Last then raise Constraint_Error with "Index is out of range"; end if; declare TC : constant Tamper_Counts_Access := Container.TC'Unrestricted_Access; begin -- The following will raise Constraint_Error if Element is null return R : constant Reference_Type := (Element => Container.Elements.EA (Index), Control => (Controlled with TC)) do Lock (TC.all); end return; end; end Reference; --------------------- -- Replace_Element -- --------------------- procedure Replace_Element (Container : in out Vector; Index : Index_Type; New_Item : Element_Type) is begin if Checks and then Index > Container.Last then raise Constraint_Error with "Index is out of range"; end if; TE_Check (Container.TC); declare X : Element_Access := Container.Elements.EA (Index); -- The element allocator may need an accessibility check in the case -- where the actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Container.Elements.EA (Index) := new Element_Type'(New_Item); Free (X); end; end Replace_Element; procedure Replace_Element (Container : in out Vector; Position : Cursor; New_Item : Element_Type) is begin if Checks then if Position.Container = null then raise Constraint_Error with "Position cursor has no element"; end if; if Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor denotes wrong container"; end if; if Position.Index > Container.Last then raise Constraint_Error with "Position cursor is out of range"; end if; end if; TE_Check (Container.TC); declare X : Element_Access := Container.Elements.EA (Position.Index); -- The element allocator may need an accessibility check in the case -- where the actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Container.Elements.EA (Position.Index) := new Element_Type'(New_Item); Free (X); end; end Replace_Element; ---------------------- -- Reserve_Capacity -- ---------------------- procedure Reserve_Capacity (Container : in out Vector; Capacity : Count_Type) is N : constant Count_Type := Length (Container); Index : Count_Type'Base; Last : Index_Type'Base; begin -- Reserve_Capacity can be used to either expand the storage available -- for elements (this would be its typical use, in anticipation of -- future insertion), or to trim back storage. In the latter case, -- storage can only be trimmed back to the limit of the container -- length. Note that Reserve_Capacity neither deletes (active) elements -- nor inserts elements; it only affects container capacity, never -- container length. if Capacity = 0 then -- This is a request to trim back storage, to the minimum amount -- possible given the current state of the container. if N = 0 then -- The container is empty, so in this unique case we can -- deallocate the entire internal array. Note that an empty -- container can never be busy, so there's no need to check the -- tampering bits. declare X : Elements_Access := Container.Elements; begin -- First we remove the internal array from the container, to -- handle the case when the deallocation raises an exception -- (although that's unlikely, since this is simply an array of -- access values, all of which are null). Container.Elements := null; -- Container invariants have been restored, so it is now safe -- to attempt to deallocate the internal array. Free (X); end; elsif N < Container.Elements.EA'Length then -- The container is not empty, and the current length is less than -- the current capacity, so there's storage available to trim. In -- this case, we allocate a new internal array having a length -- that exactly matches the number of items in the -- container. (Reserve_Capacity does not delete active elements, -- so this is the best we can do with respect to minimizing -- storage). TC_Check (Container.TC); declare subtype Array_Index_Subtype is Index_Type'Base range Index_Type'First .. Container.Last; Src : Elements_Array renames Container.Elements.EA (Array_Index_Subtype); X : Elements_Access := Container.Elements; begin -- Although we have isolated the old internal array that we're -- going to deallocate, we don't deallocate it until we have -- successfully allocated a new one. If there is an exception -- during allocation (because there is not enough storage), we -- let it propagate without causing any side-effect. Container.Elements := new Elements_Type'(Container.Last, Src); -- We have successfully allocated a new internal array (with a -- smaller length than the old one, and containing a copy of -- just the active elements in the container), so we can -- deallocate the old array. Free (X); end; end if; return; end if; -- Reserve_Capacity can be used to expand the storage available for -- elements, but we do not let the capacity grow beyond the number of -- values in Index_Type'Range. (Were it otherwise, there would be no way -- to refer to the elements with index values greater than -- Index_Type'Last, so that storage would be wasted.) Here we compute -- the Last index value of the new internal array, in a way that avoids -- any possibility of overflow. if Index_Type'Base'Last >= Count_Type_Last then -- We perform a two-part test. First we determine whether the -- computed Last value lies in the base range of the type, and then -- determine whether it lies in the range of the index (sub)type. -- Last must satisfy this relation: -- First + Length - 1 <= Last -- We regroup terms: -- First - 1 <= Last - Length -- Which can rewrite as: -- No_Index <= Last - Length if Checks and then Index_Type'Base'Last - Index_Type'Base (Capacity) < No_Index then raise Constraint_Error with "Capacity is out of range"; end if; -- We now know that the computed value of Last is within the base -- range of the type, so it is safe to compute its value: Last := No_Index + Index_Type'Base (Capacity); -- Finally we test whether the value is within the range of the -- generic actual index subtype: if Checks and then Last > Index_Type'Last then raise Constraint_Error with "Capacity is out of range"; end if; elsif Index_Type'First <= 0 then -- Here we can compute Last directly, in the normal way. We know that -- No_Index is less than 0, so there is no danger of overflow when -- adding the (positive) value of Capacity. Index := Count_Type'Base (No_Index) + Capacity; -- Last if Checks and then Index > Count_Type'Base (Index_Type'Last) then raise Constraint_Error with "Capacity is out of range"; end if; -- We know that the computed value (having type Count_Type) of Last -- is within the range of the generic actual index subtype, so it is -- safe to convert to Index_Type: Last := Index_Type'Base (Index); else -- Here Index_Type'First (and Index_Type'Last) is positive, so we -- must test the length indirectly (by working backwards from the -- largest possible value of Last), in order to prevent overflow. Index := Count_Type'Base (Index_Type'Last) - Capacity; -- No_Index if Checks and then Index < Count_Type'Base (No_Index) then raise Constraint_Error with "Capacity is out of range"; end if; -- We have determined that the value of Capacity would not create a -- Last index value outside of the range of Index_Type, so we can now -- safely compute its value. Last := Index_Type'Base (Count_Type'Base (No_Index) + Capacity); end if; -- The requested capacity is non-zero, but we don't know yet whether -- this is a request for expansion or contraction of storage. if Container.Elements = null then -- The container is empty (it doesn't even have an internal array), -- so this represents a request to allocate storage having the given -- capacity. Container.Elements := new Elements_Type (Last); return; end if; if Capacity <= N then -- This is a request to trim back storage, but only to the limit of -- what's already in the container. (Reserve_Capacity never deletes -- active elements, it only reclaims excess storage.) if N < Container.Elements.EA'Length then -- The container is not empty (because the requested capacity is -- positive, and less than or equal to the container length), and -- the current length is less than the current capacity, so there -- is storage available to trim. In this case, we allocate a new -- internal array having a length that exactly matches the number -- of items in the container. TC_Check (Container.TC); declare subtype Array_Index_Subtype is Index_Type'Base range Index_Type'First .. Container.Last; Src : Elements_Array renames Container.Elements.EA (Array_Index_Subtype); X : Elements_Access := Container.Elements; begin -- Although we have isolated the old internal array that we're -- going to deallocate, we don't deallocate it until we have -- successfully allocated a new one. If there is an exception -- during allocation (because there is not enough storage), we -- let it propagate without causing any side-effect. Container.Elements := new Elements_Type'(Container.Last, Src); -- We have successfully allocated a new internal array (with a -- smaller length than the old one, and containing a copy of -- just the active elements in the container), so it is now -- safe to deallocate the old array. Free (X); end; end if; return; end if; -- The requested capacity is larger than the container length (the -- number of active elements). Whether this represents a request for -- expansion or contraction of the current capacity depends on what the -- current capacity is. if Capacity = Container.Elements.EA'Length then -- The requested capacity matches the existing capacity, so there's -- nothing to do here. We treat this case as a no-op, and simply -- return without checking the busy bit. return; end if; -- There is a change in the capacity of a non-empty container, so a new -- internal array will be allocated. (The length of the new internal -- array could be less or greater than the old internal array. We know -- only that the length of the new internal array is greater than the -- number of active elements in the container.) We must check whether -- the container is busy before doing anything else. TC_Check (Container.TC); -- We now allocate a new internal array, having a length different from -- its current value. declare X : Elements_Access := Container.Elements; subtype Index_Subtype is Index_Type'Base range Index_Type'First .. Container.Last; begin -- We now allocate a new internal array, having a length different -- from its current value. Container.Elements := new Elements_Type (Last); -- We have successfully allocated the new internal array, so now we -- move the existing elements from the existing the old internal -- array onto the new one. Note that we're just copying access -- values, to this should not raise any exceptions. Container.Elements.EA (Index_Subtype) := X.EA (Index_Subtype); -- We have moved the elements from the old internal array, so now we -- can deallocate it. Free (X); end; end Reserve_Capacity; ---------------------- -- Reverse_Elements -- ---------------------- procedure Reverse_Elements (Container : in out Vector) is begin if Container.Length <= 1 then return; end if; -- The exception behavior for the vector container must match that for -- the list container, so we check for cursor tampering here (which will -- catch more things) instead of for element tampering (which will catch -- fewer things). It's true that the elements of this vector container -- could be safely moved around while (say) an iteration is taking place -- (iteration only increments the busy counter), and so technically all -- we would need here is a test for element tampering (indicated by the -- lock counter), that's simply an artifact of our array-based -- implementation. Logically Reverse_Elements requires a check for -- cursor tampering. TC_Check (Container.TC); declare I : Index_Type; J : Index_Type; E : Elements_Array renames Container.Elements.EA; begin I := Index_Type'First; J := Container.Last; while I < J loop declare EI : constant Element_Access := E (I); begin E (I) := E (J); E (J) := EI; end; I := I + 1; J := J - 1; end loop; end; end Reverse_Elements; ------------------ -- Reverse_Find -- ------------------ function Reverse_Find (Container : Vector; Item : Element_Type; Position : Cursor := No_Element) return Cursor is Last : Index_Type'Base; begin if Checks and then Position.Container /= null and then Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor denotes wrong container"; end if; Last := (if Position.Container = null or else Position.Index > Container.Last then Container.Last else Position.Index); -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. declare Lock : With_Lock (Container.TC'Unrestricted_Access); begin for Indx in reverse Index_Type'First .. Last loop if Container.Elements.EA (Indx) /= null and then Container.Elements.EA (Indx).all = Item then return Cursor'(Container'Unrestricted_Access, Indx); end if; end loop; return No_Element; end; end Reverse_Find; ------------------------ -- Reverse_Find_Index -- ------------------------ function Reverse_Find_Index (Container : Vector; Item : Element_Type; Index : Index_Type := Index_Type'Last) return Extended_Index is -- Per AI05-0022, the container implementation is required to detect -- element tampering by a generic actual subprogram. Lock : With_Lock (Container.TC'Unrestricted_Access); Last : constant Index_Type'Base := Index_Type'Min (Container.Last, Index); begin for Indx in reverse Index_Type'First .. Last loop if Container.Elements.EA (Indx) /= null and then Container.Elements.EA (Indx).all = Item then return Indx; end if; end loop; return No_Index; end Reverse_Find_Index; --------------------- -- Reverse_Iterate -- --------------------- procedure Reverse_Iterate (Container : Vector; Process : not null access procedure (Position : Cursor)) is Busy : With_Busy (Container.TC'Unrestricted_Access); begin for Indx in reverse Index_Type'First .. Container.Last loop Process (Cursor'(Container'Unrestricted_Access, Indx)); end loop; end Reverse_Iterate; ---------------- -- Set_Length -- ---------------- procedure Set_Length (Container : in out Vector; Length : Count_Type) is Count : constant Count_Type'Base := Container.Length - Length; begin -- Set_Length allows the user to set the length explicitly, instead of -- implicitly as a side-effect of deletion or insertion. If the -- requested length is less than the current length, this is equivalent -- to deleting items from the back end of the vector. If the requested -- length is greater than the current length, then this is equivalent to -- inserting "space" (nonce items) at the end. if Count >= 0 then Container.Delete_Last (Count); elsif Checks and then Container.Last >= Index_Type'Last then raise Constraint_Error with "vector is already at its maximum length"; else Container.Insert_Space (Container.Last + 1, -Count); end if; end Set_Length; ---------- -- Swap -- ---------- procedure Swap (Container : in out Vector; I, J : Index_Type) is begin if Checks then if I > Container.Last then raise Constraint_Error with "I index is out of range"; end if; if J > Container.Last then raise Constraint_Error with "J index is out of range"; end if; end if; if I = J then return; end if; TE_Check (Container.TC); declare EI : Element_Access renames Container.Elements.EA (I); EJ : Element_Access renames Container.Elements.EA (J); EI_Copy : constant Element_Access := EI; begin EI := EJ; EJ := EI_Copy; end; end Swap; procedure Swap (Container : in out Vector; I, J : Cursor) is begin if Checks then if I.Container = null then raise Constraint_Error with "I cursor has no element"; end if; if J.Container = null then raise Constraint_Error with "J cursor has no element"; end if; if I.Container /= Container'Unrestricted_Access then raise Program_Error with "I cursor denotes wrong container"; end if; if J.Container /= Container'Unrestricted_Access then raise Program_Error with "J cursor denotes wrong container"; end if; end if; Swap (Container, I.Index, J.Index); end Swap; --------------- -- To_Cursor -- --------------- function To_Cursor (Container : Vector; Index : Extended_Index) return Cursor is begin if Index not in Index_Type'First .. Container.Last then return No_Element; end if; return Cursor'(Container'Unrestricted_Access, Index); end To_Cursor; -------------- -- To_Index -- -------------- function To_Index (Position : Cursor) return Extended_Index is begin if Position.Container = null then return No_Index; elsif Position.Index <= Position.Container.Last then return Position.Index; else return No_Index; end if; end To_Index; --------------- -- To_Vector -- --------------- function To_Vector (Length : Count_Type) return Vector is Index : Count_Type'Base; Last : Index_Type'Base; Elements : Elements_Access; begin if Length = 0 then return Empty_Vector; end if; -- We create a vector object with a capacity that matches the specified -- Length, but we do not allow the vector capacity (the length of the -- internal array) to exceed the number of values in Index_Type'Range -- (otherwise, there would be no way to refer to those components via an -- index). We must therefore check whether the specified Length would -- create a Last index value greater than Index_Type'Last. if Index_Type'Base'Last >= Count_Type_Last then -- We perform a two-part test. First we determine whether the -- computed Last value lies in the base range of the type, and then -- determine whether it lies in the range of the index (sub)type. -- Last must satisfy this relation: -- First + Length - 1 <= Last -- We regroup terms: -- First - 1 <= Last - Length -- Which can rewrite as: -- No_Index <= Last - Length if Checks and then Index_Type'Base'Last - Index_Type'Base (Length) < No_Index then raise Constraint_Error with "Length is out of range"; end if; -- We now know that the computed value of Last is within the base -- range of the type, so it is safe to compute its value: Last := No_Index + Index_Type'Base (Length); -- Finally we test whether the value is within the range of the -- generic actual index subtype: if Checks and then Last > Index_Type'Last then raise Constraint_Error with "Length is out of range"; end if; elsif Index_Type'First <= 0 then -- Here we can compute Last directly, in the normal way. We know that -- No_Index is less than 0, so there is no danger of overflow when -- adding the (positive) value of Length. Index := Count_Type'Base (No_Index) + Length; -- Last if Checks and then Index > Count_Type'Base (Index_Type'Last) then raise Constraint_Error with "Length is out of range"; end if; -- We know that the computed value (having type Count_Type) of Last -- is within the range of the generic actual index subtype, so it is -- safe to convert to Index_Type: Last := Index_Type'Base (Index); else -- Here Index_Type'First (and Index_Type'Last) is positive, so we -- must test the length indirectly (by working backwards from the -- largest possible value of Last), in order to prevent overflow. Index := Count_Type'Base (Index_Type'Last) - Length; -- No_Index if Checks and then Index < Count_Type'Base (No_Index) then raise Constraint_Error with "Length is out of range"; end if; -- We have determined that the value of Length would not create a -- Last index value outside of the range of Index_Type, so we can now -- safely compute its value. Last := Index_Type'Base (Count_Type'Base (No_Index) + Length); end if; Elements := new Elements_Type (Last); return Vector'(Controlled with Elements, Last, TC => <>); end To_Vector; function To_Vector (New_Item : Element_Type; Length : Count_Type) return Vector is Index : Count_Type'Base; Last : Index_Type'Base; Elements : Elements_Access; begin if Length = 0 then return Empty_Vector; end if; -- We create a vector object with a capacity that matches the specified -- Length, but we do not allow the vector capacity (the length of the -- internal array) to exceed the number of values in Index_Type'Range -- (otherwise, there would be no way to refer to those components via an -- index). We must therefore check whether the specified Length would -- create a Last index value greater than Index_Type'Last. if Index_Type'Base'Last >= Count_Type_Last then -- We perform a two-part test. First we determine whether the -- computed Last value lies in the base range of the type, and then -- determine whether it lies in the range of the index (sub)type. -- Last must satisfy this relation: -- First + Length - 1 <= Last -- We regroup terms: -- First - 1 <= Last - Length -- Which can rewrite as: -- No_Index <= Last - Length if Checks and then Index_Type'Base'Last - Index_Type'Base (Length) < No_Index then raise Constraint_Error with "Length is out of range"; end if; -- We now know that the computed value of Last is within the base -- range of the type, so it is safe to compute its value: Last := No_Index + Index_Type'Base (Length); -- Finally we test whether the value is within the range of the -- generic actual index subtype: if Checks and then Last > Index_Type'Last then raise Constraint_Error with "Length is out of range"; end if; elsif Index_Type'First <= 0 then -- Here we can compute Last directly, in the normal way. We know that -- No_Index is less than 0, so there is no danger of overflow when -- adding the (positive) value of Length. Index := Count_Type'Base (No_Index) + Length; -- Last if Checks and then Index > Count_Type'Base (Index_Type'Last) then raise Constraint_Error with "Length is out of range"; end if; -- We know that the computed value (having type Count_Type) of Last -- is within the range of the generic actual index subtype, so it is -- safe to convert to Index_Type: Last := Index_Type'Base (Index); else -- Here Index_Type'First (and Index_Type'Last) is positive, so we -- must test the length indirectly (by working backwards from the -- largest possible value of Last), in order to prevent overflow. Index := Count_Type'Base (Index_Type'Last) - Length; -- No_Index if Checks and then Index < Count_Type'Base (No_Index) then raise Constraint_Error with "Length is out of range"; end if; -- We have determined that the value of Length would not create a -- Last index value outside of the range of Index_Type, so we can now -- safely compute its value. Last := Index_Type'Base (Count_Type'Base (No_Index) + Length); end if; Elements := new Elements_Type (Last); -- We use Last as the index of the loop used to populate the internal -- array with items. In general, we prefer to initialize the loop index -- immediately prior to entering the loop. However, Last is also used in -- the exception handler (to reclaim elements that have been allocated, -- before propagating the exception), and the initialization of Last -- after entering the block containing the handler confuses some static -- analysis tools, with respect to whether Last has been properly -- initialized when the handler executes. So here we initialize our loop -- variable earlier than we prefer, before entering the block, so there -- is no ambiguity. Last := Index_Type'First; declare -- The element allocator may need an accessibility check in the case -- where the actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin loop Elements.EA (Last) := new Element_Type'(New_Item); exit when Last = Elements.Last; Last := Last + 1; end loop; exception when others => for J in Index_Type'First .. Last - 1 loop Free (Elements.EA (J)); end loop; Free (Elements); raise; end; return (Controlled with Elements, Last, TC => <>); end To_Vector; -------------------- -- Update_Element -- -------------------- procedure Update_Element (Container : in out Vector; Index : Index_Type; Process : not null access procedure (Element : in out Element_Type)) is Lock : With_Lock (Container.TC'Unchecked_Access); begin if Checks and then Index > Container.Last then raise Constraint_Error with "Index is out of range"; end if; if Checks and then Container.Elements.EA (Index) = null then raise Constraint_Error with "element is null"; end if; Process (Container.Elements.EA (Index).all); end Update_Element; procedure Update_Element (Container : in out Vector; Position : Cursor; Process : not null access procedure (Element : in out Element_Type)) is begin if Checks then if Position.Container = null then raise Constraint_Error with "Position cursor has no element"; elsif Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor denotes wrong container"; end if; end if; Update_Element (Container, Position.Index, Process); end Update_Element; ----------- -- Write -- ----------- procedure Write (Stream : not null access Root_Stream_Type'Class; Container : Vector) is N : constant Count_Type := Length (Container); begin Count_Type'Base'Write (Stream, N); if N = 0 then return; end if; declare E : Elements_Array renames Container.Elements.EA; begin for Indx in Index_Type'First .. Container.Last loop if E (Indx) = null then Boolean'Write (Stream, False); else Boolean'Write (Stream, True); Element_Type'Output (Stream, E (Indx).all); end if; end loop; end; end Write; procedure Write (Stream : not null access Root_Stream_Type'Class; Position : Cursor) is begin raise Program_Error with "attempt to stream vector cursor"; end Write; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Write; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Constant_Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Write; end Ada.Containers.Indefinite_Vectors;
-- Abstract : -- -- See spec -- -- Copyright (C) 2012, 2013, 2015, 2017 - 2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or -- modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 3, or (at -- your option) any later version. This program is distributed in the -- hope that it will be useful, but WITHOUT ANY WARRANTY; without even -- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -- PURPOSE. See the GNU General Public License for more details. You -- should have received a copy of the GNU General Public License -- distributed with this program; see file COPYING. If not, write to -- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, -- MA 02110-1335, USA. pragma License (GPL); with Ada.Text_IO; with WisiToken.Generate; package body WisiToken.BNF.Output_Elisp_Common is function Find_Elisp_ID (List : in String_Lists.List; Elisp_Name : in String) return Integer is I : Integer := 0; -- match elisp array begin for Name of List loop if Name = Elisp_Name then return I; end if; I := I + 1; end loop; raise Not_Found with "unknown elisp name: '" & Elisp_Name & "'"; end Find_Elisp_ID; function Elisp_Name_To_Ada (Elisp_Name : in String; Append_ID : in Boolean; Trim : in Integer) return String is Result : String := Elisp_Name (Elisp_Name'First + Trim .. Elisp_Name'Last); begin Result (Result'First) := To_Upper (Result (Result'First)); for I in Result'Range loop if Result (I) = '-' then Result (I) := '_'; Result (I + 1) := To_Upper (Result (I + 1)); elsif Result (I) = '_' then Result (I + 1) := To_Upper (Result (I + 1)); end if; end loop; if Append_ID then return Result & "_ID"; -- Some elisp names may be Ada reserved words; else return Result; end if; end Elisp_Name_To_Ada; procedure Indent_Keyword_Table (Output_File_Root : in String; Label : in String; Keywords : in String_Pair_Lists.List; Image : access function (Name : in Ada.Strings.Unbounded.Unbounded_String) return String) is use Ada.Text_IO; use WisiToken.Generate; begin Indent_Line ("(defconst " & Output_File_Root & "-" & Label & "-keyword-table-raw"); Indent_Line (" '("); Indent := Indent + 3; for Pair of Keywords loop Indent_Line ("(" & (-Pair.Value) & " . " & Image (Pair.Name) & ")"); end loop; Indent_Line ("))"); Indent := Indent - 3; end Indent_Keyword_Table; procedure Indent_Token_Table (Output_File_Root : in String; Label : in String; Tokens : in Token_Lists.List; Image : access function (Name : in Ada.Strings.Unbounded.Unbounded_String) return String) is use Ada.Strings.Unbounded; use Ada.Text_IO; use WisiToken.Generate; function To_Double_Quotes (Item : in String) return String is Result : String := Item; begin if Result (Result'First) = ''' then Result (Result'First) := '"'; end if; if Result (Result'Last) = ''' then Result (Result'Last) := '"'; end if; return Result; end To_Double_Quotes; begin Indent_Line ("(defconst " & Output_File_Root & "-" & Label & "-token-table-raw"); Indent_Line (" '("); Indent := Indent + 3; for Kind of Tokens loop if not (-Kind.Kind = "line_comment" or -Kind.Kind = "whitespace") then Indent_Line ("(""" & (-Kind.Kind) & """"); Indent := Indent + 1; for Token of Kind.Tokens loop if 0 = Length (Token.Value) then Indent_Line ("(" & Image (Token.Name) & ")"); else if -Kind.Kind = "number" then -- allow for (<token> <number-p> <require>) Indent_Line ("(" & Image (Token.Name) & " " & (-Token.Value) & ")"); elsif -Kind.Kind = "symbol" or -Kind.Kind = "string-double" or -Kind.Kind = "string-single" then -- value not used by elisp Indent_Line ("(" & Image (Token.Name) & " . """")"); else Indent_Line ("(" & Image (Token.Name) & " . " & To_Double_Quotes (-Token.Value) & ")"); end if; end if; end loop; Indent_Line (")"); Indent := Indent - 1; end if; end loop; Indent_Line ("))"); Indent := Indent - 3; end Indent_Token_Table; procedure Indent_Name_Table (Output_File_Root : in String; Label : in String; Names : in String_Lists.List) is use Ada.Text_IO; use WisiToken.Generate; begin Indent_Line ("(defconst " & Output_File_Root & "-" & Label); Indent_Line (" ["); Indent := Indent + 3; for Name of Names loop Indent_Line (Name); end loop; Indent_Line ("])"); Indent := Indent - 3; end Indent_Name_Table; procedure Indent_Repair_Image (Output_File_Root : in String; Label : in String; Tokens : in WisiToken.BNF.Tokens) is use all type Ada.Text_IO.Count; use Ada.Strings.Unbounded; use WisiToken.Generate; function re2c_To_Elisp (Item : in String) return String is Result : String (1 .. Item'Length * 2); Last : Integer := Result'First - 1; begin -- Convert re2c case-insensitive string '...' to elisp string "...", -- with '"' escaped. if Item (Item'First) /= ''' then return Item; end if; for C of Item loop if C = ''' then Result (Last + 1) := '"'; Last := Last + 1; elsif C = '"' then Result (Last + 1) := '\'; Result (Last + 2) := '"'; Last := Last + 2; else Result (Last + 1) := C; Last := Last + 1; end if; end loop; return Result (1 .. Last); end re2c_To_Elisp; begin Indent_Line ("(defconst " & Output_File_Root & "-" & Label & "-repair-image"); Indent_Line (" '("); Indent := Indent + 3; for Pair of Tokens.Keywords loop Indent_Line ("(" & (-Pair.Name) & " . " & (-Pair.Value) & ")"); end loop; for Kind of Tokens.Tokens loop for Token of Kind.Tokens loop if Length (Token.Repair_Image) > 0 then Indent_Line ("(" & (-Token.Name) & " . " & re2c_To_Elisp (-Token.Repair_Image) & ")"); else Indent_Line ("(" & (-Token.Name) & " . " & (-Token.Value) & ")"); end if; end loop; end loop; Indent_Line ("))"); Indent := Indent - 3; end Indent_Repair_Image; end WisiToken.BNF.Output_Elisp_Common;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2013, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.OCL.Boolean_Literal_Exps.Hash is new AMF.Elements.Generic_Hash (OCL_Boolean_Literal_Exp, OCL_Boolean_Literal_Exp_Access);
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2020-2021, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with System; with System.Machine_Code; use System.Machine_Code; with SAM_SVD.QSPI; use SAM_SVD.QSPI; package body SAM.QSPI is QSPI_Region : constant := 16#04000000#; Empty : UInt8_Array (1 .. 0); ------------ -- Enable -- ------------ procedure Enable is begin QSPI_Periph.CTRLA.ENABLE := True; end Enable; ----------- -- Reset -- ----------- procedure Reset is begin QSPI_Periph.CTRLA.SWRST := True; end Reset; --------------- -- Configure -- --------------- procedure Configure (Baud : UInt8) is begin QSPI_Periph.BAUD.BAUD := Baud; QSPI_Periph.CTRLB.MODE := MEMORY; QSPI_Periph.CTRLB.DATALEN := Val_8BITS; QSPI_Periph.CTRLB.CSMODE := LASTXFER; end Configure; --------- -- Run -- --------- procedure Run (Command : UInt8) is Iframe : QSPI_INSTRFRAME_Register := (others => <>); begin Iframe.WIDTH := SINGLE_BIT_SPI; Iframe.ADDRLEN := Val_24BITS; Iframe.TFRTYPE := READ; Iframe.INSTREN := True; Run_Instruction (Command, Iframe, 0, Empty); end Run; ---------- -- Read -- ---------- procedure Read (Command : UInt8; Data : out UInt8_Array) is Iframe : QSPI_INSTRFRAME_Register := (others => <>); begin Iframe.WIDTH := SINGLE_BIT_SPI; Iframe.ADDRLEN := Val_24BITS; Iframe.TFRTYPE := READ; Iframe.DATAEN := True; Iframe.INSTREN := True; Run_Instruction (Command, Iframe, 0, Data); end Read; ----------- -- Write -- ----------- procedure Write (Command : UInt8; Data : in out UInt8_Array) is Iframe : QSPI_INSTRFRAME_Register := (others => <>); begin Iframe.WIDTH := SINGLE_BIT_SPI; Iframe.ADDRLEN := Val_24BITS; Iframe.TFRTYPE := WRITE; Iframe.DATAEN := Data'Length /= 0; Iframe.INSTREN := True; Run_Instruction (Command, Iframe, 0, Data); end Write; ----------- -- Erase -- ----------- procedure Erase (Command : UInt8; Addr : UInt32) is Iframe : QSPI_INSTRFRAME_Register := (others => <>); begin Iframe.WIDTH := SINGLE_BIT_SPI; Iframe.ADDRLEN := Val_24BITS; Iframe.TFRTYPE := WRITE; Iframe.ADDREN := True; Iframe.INSTREN := True; Run_Instruction (Command, Iframe, Addr, Empty); end Erase; ----------------- -- Read_Memory -- ----------------- procedure Read_Memory (Addr : UInt32; Data : out UInt8_Array) is Iframe : QSPI_INSTRFRAME_Register := (others => <>); begin Iframe.WIDTH := QUAD_OUTPUT; Iframe.ADDRLEN := Val_24BITS; Iframe.TFRTYPE := READMEMORY; Iframe.ADDREN := True; Iframe.DATAEN := True; Iframe.INSTREN := True; Iframe.DUMMYLEN := 8; Run_Instruction (16#6B#, Iframe, Addr, Data); end Read_Memory; ------------------ -- Write_Memory -- ------------------ procedure Write_Memory (Addr : UInt32; Data : in out UInt8_Array) is Iframe : QSPI_INSTRFRAME_Register := (others => <>); begin Iframe.WIDTH := QUAD_OUTPUT; Iframe.ADDRLEN := Val_24BITS; Iframe.TFRTYPE := WRITEMEMORY; Iframe.ADDREN := True; Iframe.DATAEN := True; Iframe.INSTREN := True; Run_Instruction (16#32#, Iframe, Addr, Data); end Write_Memory; --------------------- -- Run_Instruction -- --------------------- procedure Run_Instruction (Command : UInt8; Iframe : SAM_SVD.QSPI.QSPI_INSTRFRAME_Register; Addr : UInt32; Buffer : in out UInt8_Array) is Unused : QSPI_INSTRFRAME_Register; begin -- WTF?!? -- if Command in 16#20# | 16#D8# then -- QSPI_Periph.INSTRADDR := Addr; -- end if; QSPI_Periph.INSTRCTRL.INSTR := Command; QSPI_Periph.INSTRADDR := Addr; QSPI_Periph.INSTRFRAME := Iframe; -- Dummy read of INSTRFRAME needed to synchronize. -- See Instruction Transmission Flow Diagram, figure 37.9, page 995 -- and Example 4, page 998, section 37.6.8.5. Unused := QSPI_Periph.INSTRFRAME; if Buffer'Length /= 0 then declare Mem : UInt8_Array (Buffer'First .. Buffer'Last) with Address => System'To_Address (QSPI_Region + Addr); begin case Iframe.TFRTYPE is when READ | READMEMORY => Buffer := Mem; when WRITE | WRITEMEMORY => Mem := Buffer; end case; end; end if; Asm ("dsb" & ASCII.LF & ASCII.HT & "isb", Volatile => True); QSPI_Periph.CTRLA := (SWRST => False, ENABLE => True, LASTXFER => True, others => <>); while not QSPI_Periph.INTFLAG.INSTREND loop null; end loop; QSPI_Periph.INTFLAG.INSTREND := True; end Run_Instruction; end SAM.QSPI;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with HAL.I2C; use HAL.I2C; package body MCP23x08.I2C is -------------- -- IO_Write -- -------------- overriding procedure IO_Write (This : in out MCP23008_IO_Expander; WriteAddr : Register_Address; Value : UInt8) is Status : I2C_Status; begin This.Port.Mem_Write (BASE_ADDRESS or I2C_Address (This.Addr), UInt16 (WriteAddr), Memory_Size_8b, (1 => Value), Status, 1000); if Status /= Ok then -- No error handling... raise Program_Error; end if; end IO_Write; ------------- -- IO_Read -- ------------- overriding procedure IO_Read (This : MCP23008_IO_Expander; ReadAddr : Register_Address; Value : out UInt8) is Ret : I2C_Data (1 .. 1); Status : I2C_Status; begin This.Port.Mem_Read (BASE_ADDRESS or I2C_Address (This.Addr), UInt16 (ReadAddr), Memory_Size_8b, Ret, Status, 1000); if Status /= Ok then -- No error handling... raise Program_Error; end if; Value := Ret (1); end IO_Read; end MCP23x08.I2C;
with Ada.Text_IO; use Ada.Text_IO; package body SPARKNaCl.PDebug is On : constant Boolean := True; package I64IO is new Ada.Text_IO.Integer_IO (Integer_64); procedure DH16 (S : in String; D : in Normal_GF) is begin if On then Put_Line (S); for I in D'Range loop I64IO.Put (I64 (D (I)), Width => 0); Put (' '); I64IO.Put (I64 (D (I)), Width => 0, Base => 16); New_Line; end loop; end if; end DH16; procedure DH32 (S : in String; D : in GF32) is begin if On then Put_Line (S); for I in D'Range loop I64IO.Put (I64 (D (I)), Width => 0); Put (' '); I64IO.Put (I64 (D (I)), Width => 0, Base => 16); New_Line; end loop; end if; end DH32; procedure DH64 (S : in String; D : in GF64) is begin if On then Put_Line (S); for I in D'Range loop I64IO.Put (D (I), Width => 0); Put (' '); I64IO.Put (D (I), Width => 0, Base => 16); New_Line; end loop; end if; end DH64; end SPARKNaCl.PDebug;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- I N T E R F A C E S . C . S T R I N G S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System; use System; with System.Storage_Elements; use System.Storage_Elements; with Unchecked_Conversion; package body Interfaces.C.Strings is -- Note that the type chars_ptr has a pragma No_Strict_Aliasing in the -- spec, to prevent any assumptions about aliasing for values of this type, -- since arbitrary addresses can be converted, and it is quite likely that -- this type will in fact be used for aliasing values of other types. function To_chars_ptr is new Unchecked_Conversion (Address, chars_ptr); function To_Address is new Unchecked_Conversion (chars_ptr, Address); ----------------------- -- Local Subprograms -- ----------------------- function Peek (From : chars_ptr) return char; pragma Inline (Peek); -- Given a chars_ptr value, obtain referenced character procedure Poke (Value : char; Into : chars_ptr); pragma Inline (Poke); -- Given a chars_ptr, modify referenced Character value function "+" (Left : chars_ptr; Right : size_t) return chars_ptr; pragma Inline ("+"); -- Address arithmetic on chars_ptr value function Position_Of_Nul (Into : char_array) return size_t; -- Returns position of the first Nul in Into or Into'Last + 1 if none -- We can't use directly System.Memory because the categorization is not -- compatible, so we directly import here the malloc and free routines. function Memory_Alloc (Size : size_t) return chars_ptr; pragma Import (C, Memory_Alloc, "__gnat_malloc"); procedure Memory_Free (Address : chars_ptr); pragma Import (C, Memory_Free, "__gnat_free"); --------- -- "+" -- --------- function "+" (Left : chars_ptr; Right : size_t) return chars_ptr is begin return To_chars_ptr (To_Address (Left) + Storage_Offset (Right)); end "+"; ---------- -- Free -- ---------- procedure Free (Item : in out chars_ptr) is begin if Item = Null_Ptr then return; end if; Memory_Free (Item); Item := Null_Ptr; end Free; -------------------- -- New_Char_Array -- -------------------- function New_Char_Array (Chars : char_array) return chars_ptr is Index : size_t; Pointer : chars_ptr; begin -- Get index of position of null. If Index > Chars'last, -- nul is absent and must be added explicitly. Index := Position_Of_Nul (Into => Chars); Pointer := Memory_Alloc ((Index - Chars'First + 1)); -- If nul is present, transfer string up to and including nul if Index <= Chars'Last then Update (Item => Pointer, Offset => 0, Chars => Chars (Chars'First .. Index), Check => False); else -- If original string has no nul, transfer whole string and add -- terminator explicitly. Update (Item => Pointer, Offset => 0, Chars => Chars, Check => False); Poke (nul, into => Pointer + size_t'(Chars'Length)); end if; return Pointer; end New_Char_Array; ---------------- -- New_String -- ---------------- function New_String (Str : String) return chars_ptr is begin return New_Char_Array (To_C (Str)); end New_String; ---------- -- Peek -- ---------- function Peek (From : chars_ptr) return char is begin return char (From.all); end Peek; ---------- -- Poke -- ---------- procedure Poke (Value : char; Into : chars_ptr) is begin Into.all := Character (Value); end Poke; --------------------- -- Position_Of_Nul -- --------------------- function Position_Of_Nul (Into : char_array) return size_t is begin for J in Into'Range loop if Into (J) = nul then return J; end if; end loop; return Into'Last + 1; end Position_Of_Nul; ------------ -- Strlen -- ------------ function Strlen (Item : chars_ptr) return size_t is Item_Index : size_t := 0; begin if Item = Null_Ptr then raise Dereference_Error; end if; loop if Peek (Item + Item_Index) = nul then return Item_Index; end if; Item_Index := Item_Index + 1; end loop; end Strlen; ------------------ -- To_Chars_Ptr -- ------------------ function To_Chars_Ptr (Item : char_array_access; Nul_Check : Boolean := False) return chars_ptr is begin if Item = null then return Null_Ptr; elsif Nul_Check and then Position_Of_Nul (Into => Item.all) > Item'Last then raise Terminator_Error; else return To_chars_ptr (Item (Item'First)'Address); end if; end To_Chars_Ptr; ------------ -- Update -- ------------ procedure Update (Item : chars_ptr; Offset : size_t; Chars : char_array; Check : Boolean := True) is Index : chars_ptr := Item + Offset; begin if Check and then Offset + Chars'Length > Strlen (Item) then raise Update_Error; end if; for J in Chars'Range loop Poke (Chars (J), Into => Index); Index := Index + size_t'(1); end loop; end Update; procedure Update (Item : chars_ptr; Offset : size_t; Str : String; Check : Boolean := True) is begin -- Note: in RM 95, the Append_Nul => False parameter is omitted. But -- this has the unintended consequence of truncating the string after -- an update. As discussed in Ada 2005 AI-242, this was unintended, -- and should be corrected. Since this is a clear error, it seems -- appropriate to apply the correction in Ada 95 mode as well. Update (Item, Offset, To_C (Str, Append_Nul => False), Check); end Update; ----------- -- Value -- ----------- function Value (Item : chars_ptr) return char_array is Result : char_array (0 .. Strlen (Item)); begin if Item = Null_Ptr then raise Dereference_Error; end if; -- Note that the following loop will also copy the terminating Nul for J in Result'Range loop Result (J) := Peek (Item + J); end loop; return Result; end Value; function Value (Item : chars_ptr; Length : size_t) return char_array is begin if Item = Null_Ptr then raise Dereference_Error; end if; -- ACATS cxb3010 checks that Constraint_Error gets raised when Length -- is 0. Seems better to check that Length is not null before declaring -- an array with size_t bounds of 0 .. Length - 1 anyway. if Length = 0 then raise Constraint_Error; end if; declare Result : char_array (0 .. Length - 1); begin for J in Result'Range loop Result (J) := Peek (Item + J); if Result (J) = nul then return Result (0 .. J); end if; end loop; return Result; end; end Value; function Value (Item : chars_ptr) return String is begin return To_Ada (Value (Item)); end Value; function Value (Item : chars_ptr; Length : size_t) return String is Result : char_array (0 .. Length); begin -- As per AI-00177, this is equivalent to: -- To_Ada (Value (Item, Length) & nul); if Item = Null_Ptr then raise Dereference_Error; end if; for J in 0 .. Length - 1 loop Result (J) := Peek (Item + J); if Result (J) = nul then return To_Ada (Result (0 .. J)); end if; end loop; Result (Length) := nul; return To_Ada (Result); end Value; end Interfaces.C.Strings;
-- Lumen.Program -- Helper routines fr working with shader programs. -- -- darkestkhan, Winter 2014 -- This code is covered by the ISC License: -- -- Copyright © 2014, darkestkhan -- -- Permission to use, copy, modify, and/or distribute this software for any -- purpose with or without fee is hereby granted, provided that the above -- copyright notice and this permission notice appear in all copies. -- -- The software is provided "as is" and the author disclaims all warranties -- with regard to this software including all implied warranties of -- merchantability and fitness. In no event shall the author be liable for any -- special, direct, indirect, or consequential damages or any damages -- whatsoever resulting from loss of use, data or profits, whether in an -- action of contract, negligence or other tortious action, arising out of or -- in connection with the use or performance of this software. with Interfaces.C; with Lumen.Binary; use type Lumen.Binary.Byte; package body Lumen.Program is --------------------------------------------------------------------------- function Get_Info_Log (Program : in GL.UInt) return String is Log_Len : GL.Int; begin -- Get_Info_Log GL.Get_Program (Program, GL.GL_INFO_LOG_LENGTH, Log_Len'Address); declare Log : Interfaces.C.char_array (1 .. Interfaces.C.size_t (Log_Len)); Got : GL.SizeI; begin GL.Get_Program_Info_Log (Program, Log'Length, Got'Address, Log'Address); return Interfaces.C.To_Ada (Log); end; end Get_Info_Log; --------------------------------------------------------------------------- end Lumen.Program;
package body Logic is -- type Ternary is (True, Unknown, False); function Image(Value: Ternary) return Character is begin case Value is when True => return 'T'; when False => return 'F'; when Unknown => return '?'; end case; end Image; function "and"(Left, Right: Ternary) return Ternary is begin return Ternary'max(Left, Right); end "and"; function "or"(Left, Right: Ternary) return Ternary is begin return Ternary'min(Left, Right); end "or"; function "not"(T: Ternary) return Ternary is begin case T is when False => return True; when Unknown => return Unknown; when True => return False; end case; end "not"; function To_Bool(X: Ternary) return Boolean is begin case X is when True => return True; when False => return False; when Unknown => raise Constraint_Error; end case; end To_Bool; function To_Ternary(B: Boolean) return Ternary is begin if B then return True; else return False; end if; end To_Ternary; function Equivalent(Left, Right: Ternary) return Ternary is begin return To_Ternary(To_Bool(Left) = To_Bool(Right)); exception when Constraint_Error => return Unknown; end Equivalent; function Implies(Condition, Conclusion: Ternary) return Ternary is begin return (not Condition) or Conclusion; end Implies; end Logic;
with Protypo.Api.Engine_Values.Handlers; with Protypo.Api.Engine_Values.Engine_Value_Holders; with Protypo.Api.Engine_Values.Engine_Value_Vectors; with Protypo.Api.Engine_Values.Array_Wrappers; with Ada.Containers.Indefinite_Ordered_Maps; package Protypo.Api.Engine_Values.Table_Wrappers is use type Ada.Containers.Count_Type; type Table_Wrapper (<>) is new Handlers.Ambivalent_Interface with private; type Table_Wrapper_Access is access Table_Wrapper; type Title_Array is array (Positive range <>) of Unbounded_String; type Label_Array is array (Positive range <>) of Unbounded_ID; function Make_Table (N_Columns : Positive) return Table_Wrapper_Access with Post => Make_Table'Result.N_Columns = N_Columns and Make_Table'Result.N_Rows = 0; function Make_Table (Column_Names : Title_Array) return Table_Wrapper_Access with Post => Make_Table'Result.N_Columns = Column_Names'Length and Make_Table'Result.N_Rows = 0; function Make_Table (Labels : Label_Array) return Table_Wrapper_Access with Post => Make_Table'Result.N_Columns = Labels'Length and Make_Table'Result.N_Rows = 0; function Make_Table (Column_Names : Title_Array; Labels : Label_Array) return Table_Wrapper_Access with Pre => Column_Names'Length = Labels'Length, Post => Make_Table'Result.N_Columns = Column_Names'Length and Make_Table'Result.N_Rows = 0; function N_Columns (Item : Table_Wrapper) return Positive; function N_Rows (Item : Table_Wrapper) return Natural; procedure Append (Table : in out Table_Wrapper; Row : Engine_Value_Vectors.Vector) with Pre => Natural(Row.Length) = Table.N_Columns, Post => Table.N_Rows = Table.N_Rows'Old + 1; function Get (X : Table_Wrapper; Index : Engine_Value_Vectors.Vector) return Handler_Value with Pre => Index.Length = 1 and then Index.First_Element.Class = Int and then Get_Integer (Index.First_Element) > 0 and then Get_Integer (Index.First_Element) <= X.N_Rows, Post => Get'Result.Class = Ambivalent_Handler; function Get (X : Table_Wrapper; Field : ID) return Handler_Value; function Is_Field (X : Table_Wrapper; Field : Id) return Boolean; generic type Field_Type is (<>); package Enumerated_Rows is type Aggregate_Type is array (Field_Type) of Engine_Value_Holders.Holder; type Enumerated_Title_Array is array (Field_Type) of Unbounded_String; N_Fields : constant Integer := Field_Type'Pos (Field_Type'Last)-Field_Type'Pos (Field_Type'First)+1; function Make_Table return Table_Wrapper_Access with Post => Make_Table'Result.N_Columns = N_Fields; function Make_Table (Titles : Enumerated_Title_Array) return Table_Wrapper_Access with Post => Make_Table'Result.N_Columns = N_Fields; procedure Append (Table : in out Table_Wrapper; Item : Aggregate_Type); generic type Ada_Aggregate is limited private; type Aggregate_Index is (<>); type Generic_Aggregate_Array is array (Aggregate_Index range <>) of Ada_Aggregate; with function Convert (X : Ada_Aggregate) return Aggregate_Type; procedure Append_Array (Table : in out Table_Wrapper; Item : Generic_Aggregate_Array); private function Default_Titles return Enumerated_Title_Array; function Make_Table return Table_Wrapper_Access is (Make_Table (Default_Titles)); end Enumerated_Rows; private package Label_Maps is new Ada.Containers.Indefinite_Ordered_Maps (Key_Type => ID, Element_Type => Positive); type Row_Wrapper is new Array_Wrappers.Array_Wrapper with record Label_To_Column : Label_Maps.Map; end record; type Row_Wrapper_Access is access Row_Wrapper; function Make_Row (Data : Engine_Value_Vectors.Vector; Labels : Label_Maps.Map) return Row_Wrapper_Access; function Make_Map (Labels : Label_Array) return Label_Maps.Map with Pre => (for all I in Labels'Range => (for all J in I + 1 .. Labels'Last => Labels (I) /= Labels (J))), Post => Integer (Make_Map'Result.Length) = Labels'Length; overriding function Get (X : Row_Wrapper; Field : ID) return Handler_Value; overriding function Get (X : Row_Wrapper; Index : Engine_Value_Vectors.Vector) return Handler_Value; overriding function Is_Field (X : Row_Wrapper; Field : Id) return Boolean; type Table_Wrapper (N_Columns : Positive) is new Ambivalent_Interface with record Titles : Engine_Value_Vectors.Vector_Handler_Access; Labels : Label_Array (1 .. N_Columns); Rows : Engine_Value_Vectors.Vector_Handler_Access; end record; function Default_Titles (N_Columns : Positive) return Title_Array with Post => Default_Titles'Result'Length = N_Columns; function Default_Titles (Labels : Label_Array) return Title_Array with Post => Default_Titles'Result'Length = Labels'Length; function Default_Labels (N_Columns : Positive) return Label_Array with Post => Default_Labels'Result'Length = N_Columns; function Create (Titles : Title_Array) return Engine_Value_Vectors.Vector_Handler_Access; -- function Make_Table (Column_Names : Title_Array; -- Labels : Label_Array) return Table_Wrapper_Access -- is (new Table_Wrapper'(Titles => Create (Column_Names), -- Rows => new Row_Wrapper'(Engine_Value_Vectors.Vector_Handler with -- Label_To_Column => Make_Map (Labels)))); function Make_Table (Column_Names : Title_Array; Labels : Label_Array) return Table_Wrapper_Access is (new Table_Wrapper'(N_Columns => Column_Names'Length, Titles => Create (Column_Names), Labels => Labels, Rows => new Engine_Value_Vectors.Vector_Handler)); function Make_Table (N_Columns : Positive) return Table_Wrapper_Access is (Make_Table (Default_Titles (N_Columns), Default_Labels (N_Columns))); function Make_Table (Column_Names : Title_Array) return Table_Wrapper_Access is (Make_Table (Column_Names, Default_Labels (Column_Names'Length))); function Make_Table (Labels : Label_Array) return Table_Wrapper_Access is (Make_Table (Default_Titles (Labels), Labels)); function N_Columns (Item : Table_Wrapper) return Positive is (Integer (Item.Titles.Vector.Length)); function N_Rows (Item : Table_Wrapper) return Natural is (Natural (Item.Rows.Vector.Length)); end Protypo.Api.Engine_Values.Table_Wrappers;
with openGL.Visual, openGL.Model.Capsule.lit_colored_textured, openGL.Palette, openGL.Light.directional, openGL.Demo; procedure launch_render_Capsules -- -- Exercise the render of capsule models. -- is use openGL, openGL.Model, openGL.Math, openGL.linear_Algebra_3d; begin Demo.print_Usage; Demo.define ("openGL 'Render Capsules' Demo"); Demo.Camera.Position_is ((0.0, 3.0, 10.0), y_Rotation_from (to_Radians (-0.0))); Demo.Dolly.Speed_is (0.1); declare use openGL.Palette; Light : openGL.Light.directional.item := Demo.Renderer.Light (Id => 1); the_Texture : constant asset_Name := to_Asset ("assets/opengl/texture/Face1.bmp"); -- The Models. -- the_Capsule_Model : constant Model.Capsule.lit_colored_textured.view := Model.Capsule.lit_colored_textured.new_Capsule (Radius => 0.5, Height => 2.0, Color => (White, Opaque), Image => the_Texture); -- The Visuals. -- use openGL.Visual.Forge; the_Visuals : constant openGL.Visual.views := (1 => new_Visual (the_Capsule_Model.all'Access)); begin Light.Site_is ((0.0, 5.0, 10.0)); Demo.Renderer.Light_is (Id => 1, Now => Light); -- Main loop. -- while not Demo.Done loop -- Handle user commands. -- Demo.Dolly.evolve; Demo.Done := Demo.Dolly.quit_Requested; -- Render the sprites. -- Demo.Camera.render (the_Visuals); while not Demo.Camera.cull_Completed loop delay Duration'Small; end loop; Demo.Renderer.render; Demo.FPS_Counter.increment; -- Frames per second display. end loop; end; Demo.destroy; end launch_render_Capsules;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . R I D E N T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package defines the set of restriction identifiers. It is a generic -- package that is instantiated by the compiler/binder in package Rident, and -- is instantiated in package System.Restrictions for use at run-time. -- The reason that we make this a generic package is so that in the case of -- the instantiation in Rident for use at compile time and bind time, we can -- generate normal image tables for the enumeration types, which are needed -- for diagnostic and informational messages. At run-time we really do not -- want to waste the space for these image tables, and they are not needed, -- so we can do the instantiation under control of Discard_Names to remove -- the tables. pragma Compiler_Unit; generic package System.Rident is pragma Preelaborate; -- The following enumeration type defines the set of restriction -- identifiers that are implemented in GNAT. -- To add a new restriction identifier, add an entry with the name to be -- used in the pragma, and add calls to the Restrict.Check_Restriction -- routine as appropriate. type Restriction_Id is -- The following cases are checked for consistency in the binder. The -- binder will check that every unit either has the restriction set, or -- does not violate the restriction. (Simple_Barriers, -- GNAT (Ravenscar) No_Abort_Statements, -- (RM D.7(5), H.4(3)) No_Access_Subprograms, -- (RM H.4(17)) No_Allocators, -- (RM H.4(7)) No_Allocators_After_Elaboration, -- Ada 2012 (RM D.7(19.1/2)) No_Anonymous_Allocators, -- Ada 2012 (RM H.4(8/1)) No_Asynchronous_Control, -- (RM D.7(10)) No_Calendar, -- GNAT No_Default_Stream_Attributes, -- Ada 2012 (RM 13.12.1(4/2)) No_Delay, -- (RM H.4(21)) No_Direct_Boolean_Operators, -- GNAT No_Dispatch, -- (RM H.4(19)) No_Dispatching_Calls, -- GNAT No_Dynamic_Attachment, -- GNAT No_Dynamic_Priorities, -- (RM D.9(9)) No_Enumeration_Maps, -- GNAT No_Entry_Calls_In_Elaboration_Code, -- GNAT No_Entry_Queue, -- GNAT (Ravenscar) No_Exception_Handlers, -- GNAT No_Exception_Propagation, -- GNAT No_Exception_Registration, -- GNAT No_Exceptions, -- (RM H.4(12)) No_Finalization, -- GNAT No_Fixed_Point, -- (RM H.4(15)) No_Floating_Point, -- (RM H.4(14)) No_IO, -- (RM H.4(20)) No_Implicit_Conditionals, -- GNAT No_Implicit_Dynamic_Code, -- GNAT No_Implicit_Heap_Allocations, -- (RM D.8(8), H.4(3)) No_Implicit_Loops, -- GNAT No_Initialize_Scalars, -- GNAT No_Local_Allocators, -- (RM H.4(8)) No_Local_Timing_Events, -- (RM D.7(10.2/2)) No_Local_Protected_Objects, -- GNAT No_Nested_Finalization, -- (RM D.7(4)) No_Protected_Type_Allocators, -- GNAT No_Protected_Types, -- (RM H.4(5)) No_Recursion, -- (RM H.4(22)) No_Reentrancy, -- (RM H.4(23)) No_Relative_Delay, -- GNAT (Ravenscar) No_Requeue_Statements, -- GNAT No_Secondary_Stack, -- GNAT No_Select_Statements, -- GNAT (Ravenscar) No_Specific_Termination_Handlers, -- (RM D.7(10.7/2)) No_Standard_Storage_Pools, -- GNAT No_Stream_Optimizations, -- GNAT No_Streams, -- GNAT No_Task_Allocators, -- (RM D.7(7)) No_Task_Attributes_Package, -- GNAT No_Task_Hierarchy, -- (RM D.7(3), H.4(3)) No_Task_Termination, -- GNAT (Ravenscar) No_Tasking, -- GNAT No_Terminate_Alternatives, -- (RM D.7(6)) No_Unchecked_Access, -- (RM H.4(18)) No_Unchecked_Conversion, -- (RM H.4(16)) No_Unchecked_Deallocation, -- (RM H.4(9)) Static_Priorities, -- GNAT Static_Storage_Size, -- GNAT -- The following require consistency checking with special rules. See -- individual routines in unit Bcheck for details of what is required. No_Default_Initialization, -- GNAT -- The following cases do not require consistency checking and if used -- as a configuration pragma within a specific unit, apply only to that -- unit (e.g. if used in the package spec, do not apply to the body) -- Note: No_Elaboration_Code is handled specially. Like the other -- non-partition-wide restrictions, it can only be set in a unit that -- is part of the extended main source unit (body/spec/subunits). But -- it is sticky, in that if it is found anywhere within any of these -- units, it applies to all units in this extended main source. Immediate_Reclamation, -- (RM H.4(10)) No_Implementation_Aspect_Specifications, -- Ada 2012 AI-241 No_Implementation_Attributes, -- Ada 2005 AI-257 No_Implementation_Identifiers, -- Ada 2012 AI-246 No_Implementation_Pragmas, -- Ada 2005 AI-257 No_Implementation_Restrictions, -- GNAT No_Implementation_Units, -- Ada 2012 AI-242 No_Implicit_Aliasing, -- GNAT No_Elaboration_Code, -- GNAT No_Obsolescent_Features, -- Ada 2005 AI-368 No_Wide_Characters, -- GNAT SPARK, -- GNAT -- The following cases require a parameter value -- The following entries are fully checked at compile/bind time, which -- means that the compiler can in general tell the minimum value which -- could be used with a restrictions pragma. The binder can deduce the -- appropriate minimum value for the partition by taking the maximum -- value required by any unit. Max_Protected_Entries, -- (RM D.7(14)) Max_Select_Alternatives, -- (RM D.7(12)) Max_Task_Entries, -- (RM D.7(13), H.4(3)) -- The following entries are also fully checked at compile/bind time, -- and the compiler can also at least in some cases tell the minimum -- value which could be used with a restriction pragma. The difference -- is that the contributions are additive, so the binder deduces this -- value by adding the unit contributions. Max_Tasks, -- (RM D.7(19), H.4(3)) -- The following entries are checked at compile time only for zero/ -- nonzero entries. This means that the compiler can tell at compile -- time if a restriction value of zero is (would be) violated, but that -- the compiler cannot distinguish between different non-zero values. Max_Asynchronous_Select_Nesting, -- (RM D.7(18), H.4(3)) Max_Entry_Queue_Length, -- GNAT -- The remaining entries are not checked at compile/bind time Max_Storage_At_Blocking, -- (RM D.7(17)) Not_A_Restriction_Id); -- Synonyms permitted for historical purposes of compatibility. -- Must be coordinated with Restrict.Process_Restriction_Synonym. Boolean_Entry_Barriers : Restriction_Id renames Simple_Barriers; Max_Entry_Queue_Depth : Restriction_Id renames Max_Entry_Queue_Length; No_Dynamic_Interrupts : Restriction_Id renames No_Dynamic_Attachment; No_Requeue : Restriction_Id renames No_Requeue_Statements; No_Task_Attributes : Restriction_Id renames No_Task_Attributes_Package; subtype All_Restrictions is Restriction_Id range Simple_Barriers .. Max_Storage_At_Blocking; -- All restrictions (excluding only Not_A_Restriction_Id) subtype All_Boolean_Restrictions is Restriction_Id range Simple_Barriers .. SPARK; -- All restrictions which do not take a parameter subtype Partition_Boolean_Restrictions is All_Boolean_Restrictions range Simple_Barriers .. Static_Storage_Size; -- Boolean restrictions that are checked for partition consistency. -- Note that all parameter restrictions are checked for partition -- consistency by default, so this distinction is only needed in the -- case of Boolean restrictions. subtype Cunit_Boolean_Restrictions is All_Boolean_Restrictions range Immediate_Reclamation .. SPARK; -- Boolean restrictions that are not checked for partition consistency -- and that thus apply only to the current unit. Note that for these -- restrictions, the compiler does not apply restrictions found in -- with'ed units, parent specs etc. to the main unit, and vice versa. subtype All_Parameter_Restrictions is Restriction_Id range Max_Protected_Entries .. Max_Storage_At_Blocking; -- All restrictions that take a parameter subtype Checked_Parameter_Restrictions is All_Parameter_Restrictions range Max_Protected_Entries .. Max_Entry_Queue_Length; -- These are the parameter restrictions that can be at least partially -- checked at compile/binder time. Minimally, the compiler can detect -- violations of a restriction pragma with a value of zero reliably. subtype Checked_Max_Parameter_Restrictions is Checked_Parameter_Restrictions range Max_Protected_Entries .. Max_Task_Entries; -- Restrictions with parameters that can be checked in some cases by -- maximizing among statically detected instances where the compiler -- can determine the count. subtype Checked_Add_Parameter_Restrictions is Checked_Parameter_Restrictions range Max_Tasks .. Max_Tasks; -- Restrictions with parameters that can be checked in some cases by -- summing the statically detected instances where the compiler can -- determine the count. subtype Checked_Val_Parameter_Restrictions is Checked_Parameter_Restrictions range Max_Protected_Entries .. Max_Tasks; -- Restrictions with parameter where the count is known at least in some -- cases by the compiler/binder. subtype Checked_Zero_Parameter_Restrictions is Checked_Parameter_Restrictions range Max_Asynchronous_Select_Nesting .. Max_Entry_Queue_Length; -- Restrictions with parameters where the compiler can detect the use of -- the feature, and hence violations of a restriction specifying a value -- of zero, but cannot detect specific values other than zero/nonzero. subtype Unchecked_Parameter_Restrictions is All_Parameter_Restrictions range Max_Storage_At_Blocking .. Max_Storage_At_Blocking; -- Restrictions with parameters where the compiler cannot ever detect -- corresponding compile time usage, so the binder and compiler never -- detect violations of any restriction. ------------------------------------- -- Restriction Status Declarations -- ------------------------------------- -- The following declarations are used to record the current status or -- restrictions (for the current unit, or related units, at compile time, -- and for all units in a partition at bind time or run time). type Restriction_Flags is array (All_Restrictions) of Boolean; type Restriction_Values is array (All_Parameter_Restrictions) of Natural; type Parameter_Flags is array (All_Parameter_Restrictions) of Boolean; type Restrictions_Info is record Set : Restriction_Flags; -- An entry is True in the Set array if a restrictions pragma has been -- encountered for the given restriction. If the value is True for a -- parameter restriction, then the corresponding entry in the Value -- array gives the minimum value encountered for any such restriction. Value : Restriction_Values; -- If the entry for a parameter restriction in Set is True (i.e. a -- restrictions pragma for the restriction has been encountered), then -- the corresponding entry in the Value array is the minimum value -- specified by any such restrictions pragma. Note that a restrictions -- pragma specifying a value greater than Int'Last is simply ignored. Violated : Restriction_Flags; -- An entry is True in the violations array if the compiler has detected -- a violation of the restriction. For a parameter restriction, the -- Count and Unknown arrays have additional information. Count : Restriction_Values; -- If an entry for a parameter restriction is True in Violated, the -- corresponding entry in the Count array may record additional -- information. If the actual minimum count is known (by taking -- maximums, or sums, depending on the restriction), it will be -- recorded in this array. If not, then the value will remain zero. -- The value is also zero for a non-violated restriction. Unknown : Parameter_Flags; -- If an entry for a parameter restriction is True in Violated, the -- corresponding entry in the Unknown array may record additional -- information. If the actual count is not known by the compiler (but -- is known to be non-zero), then the entry in Unknown will be True. -- This indicates that the value in Count is not known to be exact, -- and the actual violation count may be higher. -- Note: If Violated (K) is True, then either Count (K) > 0 or -- Unknown (K) = True. It is possible for both these to be set. -- For example, if Count (K) = 3 and Unknown (K) is True, it means -- that the actual violation count is at least 3 but might be higher. end record; No_Restrictions : constant Restrictions_Info := (Set => (others => False), Value => (others => 0), Violated => (others => False), Count => (others => 0), Unknown => (others => False)); -- Used to initialize Restrictions_Info variables ---------------------------------- -- Profile Definitions and Data -- ---------------------------------- -- Note: to add a profile, modify the following declarations appropriately, -- add Name_xxx to Snames, and add a branch to the conditions for pragmas -- Profile and Profile_Warnings in the body of Sem_Prag. type Profile_Name is (No_Profile, No_Implementation_Extensions, Ravenscar, Restricted); -- Names of recognized profiles. No_Profile is used to indicate that a -- restriction came from pragma Restrictions[_Warning], as opposed to -- pragma Profile[_Warning]. subtype Profile_Name_Actual is Profile_Name range No_Implementation_Extensions .. Restricted; -- Actual used profile names type Profile_Data is record Set : Restriction_Flags; -- Set to True if given restriction must be set for the profile, and -- False if it need not be set (False does not mean that it must not be -- set, just that it need not be set). If the flag is True for a -- parameter restriction, then the Value array gives the maximum value -- permitted by the profile. Value : Restriction_Values; -- An entry in this array is meaningful only if the corresponding flag -- in Set is True. In that case, the value in this array is the maximum -- value of the parameter permitted by the profile. end record; Profile_Info : constant array (Profile_Name_Actual) of Profile_Data := (No_Implementation_Extensions => -- Restrictions for Restricted profile (Set => (No_Implementation_Aspect_Specifications => True, No_Implementation_Attributes => True, No_Implementation_Identifiers => True, No_Implementation_Pragmas => True, No_Implementation_Units => True, others => False), -- Value settings for Restricted profile (none Value => (others => 0)), -- Restricted Profile Restricted => -- Restrictions for Restricted profile (Set => (No_Abort_Statements => True, No_Asynchronous_Control => True, No_Dynamic_Attachment => True, No_Dynamic_Priorities => True, No_Entry_Queue => True, No_Local_Protected_Objects => True, No_Protected_Type_Allocators => True, No_Requeue_Statements => True, No_Task_Allocators => True, No_Task_Attributes_Package => True, No_Task_Hierarchy => True, No_Terminate_Alternatives => True, Max_Asynchronous_Select_Nesting => True, Max_Protected_Entries => True, Max_Select_Alternatives => True, Max_Task_Entries => True, others => False), -- Value settings for Restricted profile Value => (Max_Asynchronous_Select_Nesting => 0, Max_Protected_Entries => 1, Max_Select_Alternatives => 0, Max_Task_Entries => 0, others => 0)), -- Ravenscar Profile -- Note: the table entries here only represent the -- required restriction profile for Ravenscar. The -- full Ravenscar profile also requires: -- pragma Dispatching_Policy (FIFO_Within_Priorities); -- pragma Locking_Policy (Ceiling_Locking); -- pragma Detect_Blocking Ravenscar => -- Restrictions for Ravenscar = Restricted profile .. (Set => (No_Abort_Statements => True, No_Asynchronous_Control => True, No_Dynamic_Attachment => True, No_Dynamic_Priorities => True, No_Entry_Queue => True, No_Local_Protected_Objects => True, No_Protected_Type_Allocators => True, No_Requeue_Statements => True, No_Task_Allocators => True, No_Task_Attributes_Package => True, No_Task_Hierarchy => True, No_Terminate_Alternatives => True, Max_Asynchronous_Select_Nesting => True, Max_Protected_Entries => True, Max_Select_Alternatives => True, Max_Task_Entries => True, -- plus these additional restrictions: No_Calendar => True, No_Implicit_Heap_Allocations => True, No_Relative_Delay => True, No_Select_Statements => True, No_Task_Termination => True, Simple_Barriers => True, others => False), -- Value settings for Ravenscar (same as Restricted) Value => (Max_Asynchronous_Select_Nesting => 0, Max_Protected_Entries => 1, Max_Select_Alternatives => 0, Max_Task_Entries => 0, others => 0))); end System.Rident;
-- CE3905C.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT GET FOR ENUMERATION TYPES RAISES DATA_ERROR WHEN THE -- ELEMENT RETRIEVED IS NOT OF THE TYPE EXPECTED OR IS OUT OF THE -- RANGE OF A SUBTYPE. ALSO CHECK THAT CONSTRAINT_ERROR IS RAISED -- IF THE VALUE READ IS OUT OF RANGE OF THE ITEM PARAMETER, BUT -- WITHIN THE RANGE OF THE INSTANTIATED TYPE. -- APPLICABILITY CRITERIA: -- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS WHICH -- SUPPORT TEXT FILES. -- HISTORY: -- SPS 10/08/82 -- SPS 12/14/82 -- JBG 02/22/84 CHANGED TO .ADA TEST. -- TBN 11/10/86 REVISED TEST TO OUTPUT A NON_APPLICABLE -- RESULT WHEN FILES ARE NOT SUPPORTED. -- DWC 09/16/87 REMOVED DEPENDENCE ON RESET AND CORRECTED -- EXCEPTION HANDLING. WITH REPORT; USE REPORT; WITH TEXT_IO; USE TEXT_IO; PROCEDURE CE3905C IS INCOMPLETE : EXCEPTION; BEGIN TEST ("CE3905C", "CHECK THAT GET FOR ENUMERATION TYPES RAISES " & "DATA_ERROR WHEN THE ELEMENT RETRIEVED IS NOT " & "OF THE TYPE EXPECTED OR IS OUT OF THE RANGE " & "OF A SUBTYPE. ALSO CHECK THAT " & "CONSTRAINT_ERROR IS RAISED IF THE VALUE READ " & "IS OUT OF RANGE OF THE ITEM PARAMETER, BUT " & "WITHIN THE RANGE OF THE INSTANTIATED TYPE"); DECLARE FT : FILE_TYPE; TYPE COLOR IS (RED, BLUE, YELLOW, WHITE, ORANGE, GREEN, PURPLE, BLACK); SUBTYPE P_COLOR IS COLOR RANGE RED .. YELLOW; CRAYON : COLOR := BLACK; PAINT : P_COLOR := BLUE; ST : STRING (1 .. 2); PACKAGE COLOR_IO IS NEW ENUMERATION_IO (COLOR); USE COLOR_IO; BEGIN -- CREATE AND INITIALIZE DATA FILE BEGIN CREATE (FT, OUT_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED; TEXT CREATE " & "WITH OUT_FILE MODE"); RAISE INCOMPLETE; WHEN NAME_ERROR => NOT_APPLICABLE ("NAME_ERROR RAISED; TEXT CREATE " & "WITH OUT_FILE MODE"); RAISE INCOMPLETE; END; PUT (FT, "BROWN"); NEW_LINE (FT); PUT (FT, "ORANGE"); NEW_LINE (FT); PUT (FT, "GREEN"); NEW_LINE (FT); PUT (FT, "WHITE"); NEW_LINE (FT); PUT (FT, "WHI"); NEW_LINE (FT); PUT (FT, "TE"); NEW_LINE (FT); PUT (FT, "RED"); CLOSE (FT); BEGIN OPEN (FT, IN_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED; OPEN WITH " & "IN_FILE MODE"); RAISE INCOMPLETE; END; -- START TEST BEGIN GET (FT, CRAYON); -- BROWN FAILED ("DATA_ERROR NOT RAISED - 1"); EXCEPTION WHEN DATA_ERROR => IF CRAYON /= BLACK THEN FAILED ("ITEM CRAYON AFFECTED - 1"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED - 1"); END; BEGIN GET (FT, PAINT); -- ORANGE FAILED ("CONSTRAINT_ERROR NOT RAISED"); EXCEPTION WHEN CONSTRAINT_ERROR => IF PAINT /= BLUE THEN FAILED ("ITEM PAINT AFFECTED - 2"); END IF; WHEN DATA_ERROR => FAILED ("DATA_ERROR RAISED FOR ITEM SUBTYPE"); WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED - 2"); END; DECLARE PACKAGE P_COLOR_IO IS NEW ENUMERATION_IO (P_COLOR); USE P_COLOR_IO; BEGIN BEGIN P_COLOR_IO.GET (FT, PAINT); -- GREEN FAILED ("DATA_ERROR NOT RAISED - 3"); EXCEPTION WHEN DATA_ERROR => IF PAINT /= BLUE THEN FAILED ("ITEM PAINT AFFECTED - 3"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED - 3"); END; BEGIN P_COLOR_IO.GET (FT, PAINT); -- WHITE FAILED ("DATA_ERROR NOT RAISED - 3A"); EXCEPTION WHEN DATA_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED - 3A"); END; END; BEGIN GET (FT, CRAYON); -- WHI FAILED ("DATA_ERROR NOT RAISED - 4"); EXCEPTION WHEN DATA_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED - 4"); END; GET (FT, ST); -- TE GET (FT, CRAYON); -- RED IF CRAYON /= RED THEN FAILED ("READING NOT CONTINUED CORRECTLY AFTER" & "DATA_ERROR EXCEPTION"); END IF; BEGIN DELETE (FT); EXCEPTION WHEN USE_ERROR => NULL; END; EXCEPTION WHEN INCOMPLETE => NULL; END; RESULT; END CE3905C;
-- Abstract : -- -- Image for unconstrained Ada array types -- -- Copyright (C) 2019 Free Software Foundation, Inc. -- -- This library is free software; you can redistribute it and/or modify it -- under terms of the GNU General Public License as published by the Free -- Software Foundation; either version 3, or (at your option) any later -- version. This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- As a special exception under Section 7 of GPL version 3, you are granted -- additional permissions described in the GCC Runtime Library Exception, -- version 3.1, as published by the Free Software Foundation. pragma License (Modified_GPL); generic type Index_Type is (<>); type Element_Type is private; type Array_Type is array (Index_Type range <>) of Element_Type; with function Element_Image (Item : in Element_Type) return String; function SAL.Gen_Unconstrained_Array_Image (Item : in Array_Type) return String;
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ package body Gela.Character_Class_Buffers is --------- -- Put -- --------- procedure Put (Object : in out Character_Class_Buffer; Item : in Character_Class; Full : in out Boolean) is begin Object.Data (Object.Free) := Item; Object.Free := Object.Free + 1; Full := Full or (Object.Free <= Array_Index'Last / 2) /= (Object.Index <= Array_Index'Last / 2); if Full then Object.Data (Object.Free) := End_Of_Buffer; end if; end Put; --------- -- Get -- --------- procedure Get (Object : in out Character_Class_Buffer; Item : out Character_Class) is begin Object.Index := Object.Index + 1; Item := Object.Data (Object.Index); if Item = End_Of_Buffer then Object.Index := Object.Index - 1; end if; end Get; ---------- -- Mark -- ---------- procedure Mark (Object : in out Character_Class_Buffer) is begin Object.Mark := Object.Index; end Mark; ------------------ -- Back_To_Mark -- ------------------ procedure Back_To_Mark (Object : in out Character_Class_Buffer) is begin Object.Index := Object.Mark; end Back_To_Mark; end Gela.Character_Class_Buffers; ------------------------------------------------------------------------------ -- Copyright (c) 2008, Maxim Reznik -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * Neither the name of the Maxim Reznik, IE nor the names of its -- contributors may be used to endorse or promote products derived from -- this software without specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. -- ------------------------------------------------------------------------------
-- Copyright 2017 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local json = require("json") name = "C99" type = "api" function start() setratelimit(10) end function check() if (api ~= nil and api.key ~= nil and api.key ~= "") then return true end return false end function vertical(ctx, domain) if (api == nil or api.key == nil or api.key == "") then return end local resp local vurl = buildurl(domain) -- Check if the response data is in the graph database if (api.ttl ~= nil and api.ttl > 0) then resp = obtain_response(vurl, api.ttl) end if (resp == nil or resp == "") then local err resp, err = request({ url=vurl, headers={['Content-Type']="application/json"}, }) if (err ~= nil and err ~= "") then return end if (api.ttl ~= nil and api.ttl > 0) then cache_response(vurl, resp) end end local d = json.decode(resp) if (d == nil or d.success ~= true or #(d.subdomains) == 0) then return end for i, s in pairs(d.subdomains) do sendnames(ctx, s.subdomain) end end function buildurl(domain) return "https://api.c99.nl/subdomainfinder?key=" .. api.key .. "&domain=" .. domain .. "&json" end function sendnames(ctx, content) local names = find(content, subdomainre) if names == nil then return end for i, v in pairs(names) do newname(ctx, v) end end
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2013, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with League.Strings; with WSDL.AST.Bindings; pragma Unreferenced (WSDL.AST.Bindings); -- GNAT Pro 7.2.0w (20130423): package is needed to access to type's -- components. with WSDL.AST.Descriptions; pragma Unreferenced (WSDL.AST.Descriptions); -- GNAT Pro 7.2.0w (20130423): package is needed to access to type's -- components. with WSDL.AST.Faults; pragma Unreferenced (WSDL.AST.Faults); -- GNAT Pro 7.2.0w (20130423): package is needed to access to type's -- components. with WSDL.AST.Interfaces; pragma Unreferenced (WSDL.AST.Interfaces); -- XXX GNAT 20130108 reports that unit is not referenced. with WSDL.AST.Operations; pragma Unreferenced (WSDL.AST.Operations); -- XXX GNAT 20130108 reports that unit is not referenced. package body WSDL.Name_Resolvers is use type League.Strings.Universal_String; use type WSDL.AST.Interface_Operation_Access; function Resolve_Binding (Root : not null WSDL.AST.Description_Access; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String) return WSDL.AST.Binding_Access; -- Resolves binding component by qualified name. function Resolve_Interface (Root : not null WSDL.AST.Description_Access; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String) return WSDL.AST.Interface_Access; -- Resolves name of interface component. function Resolve_Interface_Fault (Node : not null WSDL.AST.Interface_Access; Name : WSDL.AST.Qualified_Name) return WSDL.AST.Interface_Fault_Access; -- Resolves name of interface operation component. function Resolve_Interface_Operation (Node : not null WSDL.AST.Interface_Access; Local_Name : League.Strings.Universal_String) return WSDL.AST.Interface_Operation_Access; -- Resolves name of interface operation component. procedure Resolve_Interface_Operation (Node : not null WSDL.AST.Interface_Access; Local_Name : League.Strings.Universal_String; Result : out WSDL.AST.Interface_Operation_Access); ------------------- -- Enter_Binding -- ------------------- overriding procedure Enter_Binding (Self : in out Name_Resolver; Node : not null WSDL.AST.Binding_Access; Control : in out WSDL.Iterators.Traverse_Control) is pragma Unreferenced (Control); begin -- Resolve interface component when necessary. if not Node.Interface_Name.Local_Name.Is_Empty then Node.Interface_Node := Resolve_Interface (Self.Root, Node.Interface_Name.Namespace_URI, Node.Interface_Name.Local_Name); end if; end Enter_Binding; ------------------------- -- Enter_Binding_Fault -- ------------------------- overriding procedure Enter_Binding_Fault (Self : in out Name_Resolver; Node : not null WSDL.AST.Binding_Fault_Access; Control : in out WSDL.Iterators.Traverse_Control) is begin -- Resolve interface fault component. Node.Interface_Fault := Resolve_Interface_Fault (Node.Parent.Interface_Node, Node.Ref); end Enter_Binding_Fault; ----------------------------- -- Enter_Binding_Operation -- ----------------------------- overriding procedure Enter_Binding_Operation (Self : in out Name_Resolver; Node : not null WSDL.AST.Binding_Operation_Access; Control : in out WSDL.Iterators.Traverse_Control) is pragma Unreferenced (Self); pragma Unreferenced (Control); begin -- It is unclear from the specification how namespace URI should be -- used. From the other side, operations are identified uniquely in the -- interface. Node.Interface_Operation := Resolve_Interface_Operation (Node.Parent.Interface_Node, Node.Ref.Local_Name); end Enter_Binding_Operation; -------------------- -- Enter_Endpoint -- -------------------- overriding procedure Enter_Endpoint (Self : in out Name_Resolver; Node : not null WSDL.AST.Endpoints.Endpoint_Access; Control : in out WSDL.Iterators.Traverse_Control) is pragma Unreferenced (Control); begin Node.Binding := Resolve_Binding (Self.Root, Node.Binding_Name.Namespace_URI, Node.Binding_Name.Local_Name); end Enter_Endpoint; --------------------- -- Enter_Interface -- --------------------- overriding procedure Enter_Interface (Self : in out Name_Resolver; Node : not null WSDL.AST.Interface_Access; Control : in out WSDL.Iterators.Traverse_Control) is pragma Unreferenced (Control); begin for J of Node.Extends loop Node.Extended_Interfaces.Append (Resolve_Interface (Self.Root, J.Namespace_URI, J.Local_Name)); end loop; end Enter_Interface; ------------------- -- Enter_Service -- ------------------- overriding procedure Enter_Service (Self : in out Name_Resolver; Node : not null WSDL.AST.Services.Service_Access; Control : in out WSDL.Iterators.Traverse_Control) is pragma Unreferenced (Control); begin -- Resolve interface by qualified name. Node.Interface_Node := Resolve_Interface (Self.Root, Node.Interface_Name.Namespace_URI, Node.Interface_Name.Local_Name); end Enter_Service; --------------------- -- Resolve_Binding -- --------------------- function Resolve_Binding (Root : not null WSDL.AST.Description_Access; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String) return WSDL.AST.Binding_Access is begin -- QName-resolution-1064: "A Description component MUST NOT have such -- broken references." if Root.Target_Namespace /= Namespace_URI then raise Program_Error; end if; if not Root.Bindings.Contains (Local_Name) then raise Program_Error; end if; return Root.Bindings.Element (Local_Name); end Resolve_Binding; ----------------------- -- Resolve_Interface -- ----------------------- function Resolve_Interface (Root : not null WSDL.AST.Description_Access; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String) return WSDL.AST.Interface_Access is begin -- QName-resolution-1064: "A Description component MUST NOT have such -- broken references." if Root.Target_Namespace /= Namespace_URI then raise Program_Error; end if; if not Root.Interfaces.Contains (Local_Name) then raise Program_Error; end if; return Root.Interfaces.Element (Local_Name); end Resolve_Interface; ----------------------------- -- Resolve_Interface_Fault -- ----------------------------- function Resolve_Interface_Fault (Node : not null WSDL.AST.Interface_Access; Name : WSDL.AST.Qualified_Name) return WSDL.AST.Interface_Fault_Access is use type WSDL.AST.Interface_Fault_Access; Result : WSDL.AST.Interface_Fault_Access; begin if Node.Parent.Target_Namespace = Name.Namespace_URI and then Node.Interface_Faults.Contains (Name.Local_Name) then return Node.Interface_Faults.Element (Name.Local_Name); end if; for J of Node.Extended_Interfaces loop Result := Resolve_Interface_Fault (J, Name); if Result /= null then return Result; end if; end loop; raise Program_Error; end Resolve_Interface_Fault; --------------------------------- -- Resolve_Interface_Operation -- --------------------------------- procedure Resolve_Interface_Operation (Node : not null WSDL.AST.Interface_Access; Local_Name : League.Strings.Universal_String; Result : out WSDL.AST.Interface_Operation_Access) is begin Result := null; if Node.Interface_Operations.Contains (Local_Name) then Result := Node.Interface_Operations.Element (Local_Name); return; end if; for J of Node.Extended_Interfaces loop Resolve_Interface_Operation (J, Local_Name, Result); if Result /= null then return; end if; end loop; end Resolve_Interface_Operation; --------------------------------- -- Resolve_Interface_Operation -- --------------------------------- function Resolve_Interface_Operation (Node : not null WSDL.AST.Interface_Access; Local_Name : League.Strings.Universal_String) return WSDL.AST.Interface_Operation_Access is Aux : WSDL.AST.Interface_Operation_Access; begin Resolve_Interface_Operation (Node, Local_Name, Aux); if Aux /= null then return Aux; else raise Program_Error; end if; end Resolve_Interface_Operation; -------------- -- Set_Root -- -------------- procedure Set_Root (Self : in out Name_Resolver'Class; Root : WSDL.AST.Description_Access) is begin Self.Root := Root; end Set_Root; end WSDL.Name_Resolvers;
-- This spec has been automatically generated from STM32WB55x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.LPTIM1 is pragma Preelaborate; --------------- -- Registers -- --------------- type ISR_Register is record CMPM : Boolean := False; ARRM : Boolean := False; EXTTRIG : Boolean := False; CMPOK : Boolean := False; ARROK : Boolean := False; UP : Boolean := False; DOWN : Boolean := False; -- unspecified Reserved_7_31 : HAL.UInt25 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record CMPM at 0 range 0 .. 0; ARRM at 0 range 1 .. 1; EXTTRIG at 0 range 2 .. 2; CMPOK at 0 range 3 .. 3; ARROK at 0 range 4 .. 4; UP at 0 range 5 .. 5; DOWN at 0 range 6 .. 6; Reserved_7_31 at 0 range 7 .. 31; end record; type ICR_Register is record CMPMCF : Boolean := False; ARRMCF : Boolean := False; EXTTRIGCF : Boolean := False; CMPOKCF : Boolean := False; ARROKCF : Boolean := False; UPCF : Boolean := False; DOWNCF : Boolean := False; -- unspecified Reserved_7_31 : HAL.UInt25 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ICR_Register use record CMPMCF at 0 range 0 .. 0; ARRMCF at 0 range 1 .. 1; EXTTRIGCF at 0 range 2 .. 2; CMPOKCF at 0 range 3 .. 3; ARROKCF at 0 range 4 .. 4; UPCF at 0 range 5 .. 5; DOWNCF at 0 range 6 .. 6; Reserved_7_31 at 0 range 7 .. 31; end record; type IER_Register is record CMPMIE : Boolean := False; ARRMIE : Boolean := False; EXTTRIGIE : Boolean := False; CMPOKIE : Boolean := False; ARROKIE : Boolean := False; UPIE : Boolean := False; DOWNIE : Boolean := False; -- unspecified Reserved_7_31 : HAL.UInt25 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IER_Register use record CMPMIE at 0 range 0 .. 0; ARRMIE at 0 range 1 .. 1; EXTTRIGIE at 0 range 2 .. 2; CMPOKIE at 0 range 3 .. 3; ARROKIE at 0 range 4 .. 4; UPIE at 0 range 5 .. 5; DOWNIE at 0 range 6 .. 6; Reserved_7_31 at 0 range 7 .. 31; end record; subtype CFGR_CKPOL_Field is HAL.UInt2; subtype CFGR_CKFLT_Field is HAL.UInt2; subtype CFGR_TRGFLT_Field is HAL.UInt2; subtype CFGR_PRESC_Field is HAL.UInt3; subtype CFGR_TRIGSEL_Field is HAL.UInt3; subtype CFGR_TRIGEN_Field is HAL.UInt2; type CFGR_Register is record CKSEL : Boolean := False; CKPOL : CFGR_CKPOL_Field := 16#0#; CKFLT : CFGR_CKFLT_Field := 16#0#; -- unspecified Reserved_5_5 : HAL.Bit := 16#0#; TRGFLT : CFGR_TRGFLT_Field := 16#0#; -- unspecified Reserved_8_8 : HAL.Bit := 16#0#; PRESC : CFGR_PRESC_Field := 16#0#; -- unspecified Reserved_12_12 : HAL.Bit := 16#0#; TRIGSEL : CFGR_TRIGSEL_Field := 16#0#; -- unspecified Reserved_16_16 : HAL.Bit := 16#0#; TRIGEN : CFGR_TRIGEN_Field := 16#0#; TIMOUT : Boolean := False; WAVE : Boolean := False; WAVEPOL : Boolean := False; PRELOAD : Boolean := False; COUNTMODE : Boolean := False; ENC : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CFGR_Register use record CKSEL at 0 range 0 .. 0; CKPOL at 0 range 1 .. 2; CKFLT at 0 range 3 .. 4; Reserved_5_5 at 0 range 5 .. 5; TRGFLT at 0 range 6 .. 7; Reserved_8_8 at 0 range 8 .. 8; PRESC at 0 range 9 .. 11; Reserved_12_12 at 0 range 12 .. 12; TRIGSEL at 0 range 13 .. 15; Reserved_16_16 at 0 range 16 .. 16; TRIGEN at 0 range 17 .. 18; TIMOUT at 0 range 19 .. 19; WAVE at 0 range 20 .. 20; WAVEPOL at 0 range 21 .. 21; PRELOAD at 0 range 22 .. 22; COUNTMODE at 0 range 23 .. 23; ENC at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; type CR_Register is record ENABLE : Boolean := False; SNGSTRT : Boolean := False; CNTSTRT : Boolean := False; COUNTRST : Boolean := False; RSTARE : Boolean := False; -- unspecified Reserved_5_31 : HAL.UInt27 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record ENABLE at 0 range 0 .. 0; SNGSTRT at 0 range 1 .. 1; CNTSTRT at 0 range 2 .. 2; COUNTRST at 0 range 3 .. 3; RSTARE at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; subtype CMP_CMP_Field is HAL.UInt16; type CMP_Register is record CMP : CMP_CMP_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CMP_Register use record CMP at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype ARR_ARR_Field is HAL.UInt16; type ARR_Register is record ARR : ARR_ARR_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ARR_Register use record ARR at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype CNT_CNT_Field is HAL.UInt16; type CNT_Register is record CNT : CNT_CNT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CNT_Register use record CNT at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; type OR_Register is record OR_0 : Boolean := False; OR_1 : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OR_Register use record OR_0 at 0 range 0 .. 0; OR_1 at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; ----------------- -- Peripherals -- ----------------- type LPTIM1_Peripheral is record ISR : aliased ISR_Register; ICR : aliased ICR_Register; IER : aliased IER_Register; CFGR : aliased CFGR_Register; CR : aliased CR_Register; CMP : aliased CMP_Register; ARR : aliased ARR_Register; CNT : aliased CNT_Register; OR_k : aliased OR_Register; end record with Volatile; for LPTIM1_Peripheral use record ISR at 16#0# range 0 .. 31; ICR at 16#4# range 0 .. 31; IER at 16#8# range 0 .. 31; CFGR at 16#C# range 0 .. 31; CR at 16#10# range 0 .. 31; CMP at 16#14# range 0 .. 31; ARR at 16#18# range 0 .. 31; CNT at 16#1C# range 0 .. 31; OR_k at 16#20# range 0 .. 31; end record; LPTIM1_Periph : aliased LPTIM1_Peripheral with Import, Address => System'To_Address (16#40007C00#); end STM32_SVD.LPTIM1;
-- This spec has been automatically generated from STM32F7x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.DCMI is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_FCRC_Field is HAL.UInt2; subtype CR_EDM_Field is HAL.UInt2; -- control register 1 type CR_Register is record -- Capture enable CAPTURE : Boolean := False; -- Capture mode CM : Boolean := False; -- Crop feature CROP : Boolean := False; -- JPEG format JPEG : Boolean := False; -- Embedded synchronization select ESS : Boolean := False; -- Pixel clock polarity PCKPOL : Boolean := False; -- Horizontal synchronization polarity HSPOL : Boolean := False; -- Vertical synchronization polarity VSPOL : Boolean := False; -- Frame capture rate control FCRC : CR_FCRC_Field := 16#0#; -- Extended data mode EDM : CR_EDM_Field := 16#0#; -- unspecified Reserved_12_13 : HAL.UInt2 := 16#0#; -- DCMI enable ENABLE : Boolean := False; -- unspecified Reserved_15_31 : HAL.UInt17 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record CAPTURE at 0 range 0 .. 0; CM at 0 range 1 .. 1; CROP at 0 range 2 .. 2; JPEG at 0 range 3 .. 3; ESS at 0 range 4 .. 4; PCKPOL at 0 range 5 .. 5; HSPOL at 0 range 6 .. 6; VSPOL at 0 range 7 .. 7; FCRC at 0 range 8 .. 9; EDM at 0 range 10 .. 11; Reserved_12_13 at 0 range 12 .. 13; ENABLE at 0 range 14 .. 14; Reserved_15_31 at 0 range 15 .. 31; end record; -- status register type SR_Register is record -- Read-only. HSYNC HSYNC : Boolean; -- Read-only. VSYNC VSYNC : Boolean; -- Read-only. FIFO not empty FNE : Boolean; -- unspecified Reserved_3_31 : HAL.UInt29; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR_Register use record HSYNC at 0 range 0 .. 0; VSYNC at 0 range 1 .. 1; FNE at 0 range 2 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; -- raw interrupt status register type RIS_Register is record -- Read-only. Capture complete raw interrupt status FRAME_RIS : Boolean; -- Read-only. Overrun raw interrupt status OVR_RIS : Boolean; -- Read-only. Synchronization error raw interrupt status ERR_RIS : Boolean; -- Read-only. VSYNC raw interrupt status VSYNC_RIS : Boolean; -- Read-only. Line raw interrupt status LINE_RIS : Boolean; -- unspecified Reserved_5_31 : HAL.UInt27; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RIS_Register use record FRAME_RIS at 0 range 0 .. 0; OVR_RIS at 0 range 1 .. 1; ERR_RIS at 0 range 2 .. 2; VSYNC_RIS at 0 range 3 .. 3; LINE_RIS at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; -- interrupt enable register type IER_Register is record -- Capture complete interrupt enable FRAME_IE : Boolean := False; -- Overrun interrupt enable OVR_IE : Boolean := False; -- Synchronization error interrupt enable ERR_IE : Boolean := False; -- VSYNC interrupt enable VSYNC_IE : Boolean := False; -- Line interrupt enable LINE_IE : Boolean := False; -- unspecified Reserved_5_31 : HAL.UInt27 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IER_Register use record FRAME_IE at 0 range 0 .. 0; OVR_IE at 0 range 1 .. 1; ERR_IE at 0 range 2 .. 2; VSYNC_IE at 0 range 3 .. 3; LINE_IE at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; -- masked interrupt status register type MIS_Register is record -- Read-only. Capture complete masked interrupt status FRAME_MIS : Boolean; -- Read-only. Overrun masked interrupt status OVR_MIS : Boolean; -- Read-only. Synchronization error masked interrupt status ERR_MIS : Boolean; -- Read-only. VSYNC masked interrupt status VSYNC_MIS : Boolean; -- Read-only. Line masked interrupt status LINE_MIS : Boolean; -- unspecified Reserved_5_31 : HAL.UInt27; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for MIS_Register use record FRAME_MIS at 0 range 0 .. 0; OVR_MIS at 0 range 1 .. 1; ERR_MIS at 0 range 2 .. 2; VSYNC_MIS at 0 range 3 .. 3; LINE_MIS at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; -- interrupt clear register type ICR_Register is record -- Write-only. Capture complete interrupt status clear FRAME_ISC : Boolean := False; -- Write-only. Overrun interrupt status clear OVR_ISC : Boolean := False; -- Write-only. Synchronization error interrupt status clear ERR_ISC : Boolean := False; -- Write-only. Vertical synch interrupt status clear VSYNC_ISC : Boolean := False; -- Write-only. line interrupt status clear LINE_ISC : Boolean := False; -- unspecified Reserved_5_31 : HAL.UInt27 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ICR_Register use record FRAME_ISC at 0 range 0 .. 0; OVR_ISC at 0 range 1 .. 1; ERR_ISC at 0 range 2 .. 2; VSYNC_ISC at 0 range 3 .. 3; LINE_ISC at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; subtype ESCR_FSC_Field is HAL.UInt8; subtype ESCR_LSC_Field is HAL.UInt8; subtype ESCR_LEC_Field is HAL.UInt8; subtype ESCR_FEC_Field is HAL.UInt8; -- embedded synchronization code register type ESCR_Register is record -- Frame start delimiter code FSC : ESCR_FSC_Field := 16#0#; -- Line start delimiter code LSC : ESCR_LSC_Field := 16#0#; -- Line end delimiter code LEC : ESCR_LEC_Field := 16#0#; -- Frame end delimiter code FEC : ESCR_FEC_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ESCR_Register use record FSC at 0 range 0 .. 7; LSC at 0 range 8 .. 15; LEC at 0 range 16 .. 23; FEC at 0 range 24 .. 31; end record; subtype ESUR_FSU_Field is HAL.UInt8; subtype ESUR_LSU_Field is HAL.UInt8; subtype ESUR_LEU_Field is HAL.UInt8; subtype ESUR_FEU_Field is HAL.UInt8; -- embedded synchronization unmask register type ESUR_Register is record -- Frame start delimiter unmask FSU : ESUR_FSU_Field := 16#0#; -- Line start delimiter unmask LSU : ESUR_LSU_Field := 16#0#; -- Line end delimiter unmask LEU : ESUR_LEU_Field := 16#0#; -- Frame end delimiter unmask FEU : ESUR_FEU_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ESUR_Register use record FSU at 0 range 0 .. 7; LSU at 0 range 8 .. 15; LEU at 0 range 16 .. 23; FEU at 0 range 24 .. 31; end record; subtype CWSTRT_HOFFCNT_Field is HAL.UInt14; subtype CWSTRT_VST_Field is HAL.UInt13; -- crop window start type CWSTRT_Register is record -- Horizontal offset count HOFFCNT : CWSTRT_HOFFCNT_Field := 16#0#; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- Vertical start line count VST : CWSTRT_VST_Field := 16#0#; -- unspecified Reserved_29_31 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CWSTRT_Register use record HOFFCNT at 0 range 0 .. 13; Reserved_14_15 at 0 range 14 .. 15; VST at 0 range 16 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype CWSIZE_CAPCNT_Field is HAL.UInt14; subtype CWSIZE_VLINE_Field is HAL.UInt14; -- crop window size type CWSIZE_Register is record -- Capture count CAPCNT : CWSIZE_CAPCNT_Field := 16#0#; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- Vertical line count VLINE : CWSIZE_VLINE_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CWSIZE_Register use record CAPCNT at 0 range 0 .. 13; Reserved_14_15 at 0 range 14 .. 15; VLINE at 0 range 16 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; -- DR_Byte array element subtype DR_Byte_Element is HAL.UInt8; -- DR_Byte array type DR_Byte_Field_Array is array (0 .. 3) of DR_Byte_Element with Component_Size => 8, Size => 32; -- data register type DR_Register (As_Array : Boolean := False) is record case As_Array is when False => -- Byte as a value Val : HAL.UInt32; when True => -- Byte as an array Arr : DR_Byte_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for DR_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Digital camera interface type DCMI_Peripheral is record -- control register 1 CR : aliased CR_Register; -- status register SR : aliased SR_Register; -- raw interrupt status register RIS : aliased RIS_Register; -- interrupt enable register IER : aliased IER_Register; -- masked interrupt status register MIS : aliased MIS_Register; -- interrupt clear register ICR : aliased ICR_Register; -- embedded synchronization code register ESCR : aliased ESCR_Register; -- embedded synchronization unmask register ESUR : aliased ESUR_Register; -- crop window start CWSTRT : aliased CWSTRT_Register; -- crop window size CWSIZE : aliased CWSIZE_Register; -- data register DR : aliased DR_Register; end record with Volatile; for DCMI_Peripheral use record CR at 16#0# range 0 .. 31; SR at 16#4# range 0 .. 31; RIS at 16#8# range 0 .. 31; IER at 16#C# range 0 .. 31; MIS at 16#10# range 0 .. 31; ICR at 16#14# range 0 .. 31; ESCR at 16#18# range 0 .. 31; ESUR at 16#1C# range 0 .. 31; CWSTRT at 16#20# range 0 .. 31; CWSIZE at 16#24# range 0 .. 31; DR at 16#28# range 0 .. 31; end record; -- Digital camera interface DCMI_Periph : aliased DCMI_Peripheral with Import, Address => System'To_Address (16#50050000#); end STM32_SVD.DCMI;
-- This spec has been automatically generated from STM32WB55x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.QUADSPI is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_FTHRES_Field is HAL.UInt4; subtype CR_PRESCALER_Field is HAL.UInt8; type CR_Register is record EN : Boolean := False; ABORT_k : Boolean := False; DMAEN : Boolean := False; TCEN : Boolean := False; SSHIFT : Boolean := False; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; FTHRES : CR_FTHRES_Field := 16#0#; -- unspecified Reserved_12_15 : HAL.UInt4 := 16#0#; TEIE : Boolean := False; TCIE : Boolean := False; FTIE : Boolean := False; SMIE : Boolean := False; TOIE : Boolean := False; -- unspecified Reserved_21_21 : HAL.Bit := 16#0#; APMS : Boolean := False; PMM : Boolean := False; PRESCALER : CR_PRESCALER_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record EN at 0 range 0 .. 0; ABORT_k at 0 range 1 .. 1; DMAEN at 0 range 2 .. 2; TCEN at 0 range 3 .. 3; SSHIFT at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; FTHRES at 0 range 8 .. 11; Reserved_12_15 at 0 range 12 .. 15; TEIE at 0 range 16 .. 16; TCIE at 0 range 17 .. 17; FTIE at 0 range 18 .. 18; SMIE at 0 range 19 .. 19; TOIE at 0 range 20 .. 20; Reserved_21_21 at 0 range 21 .. 21; APMS at 0 range 22 .. 22; PMM at 0 range 23 .. 23; PRESCALER at 0 range 24 .. 31; end record; subtype DCR_CSHT_Field is HAL.UInt3; subtype DCR_FSIZE_Field is HAL.UInt5; type DCR_Register is record CKMODE : Boolean := False; -- unspecified Reserved_1_7 : HAL.UInt7 := 16#0#; CSHT : DCR_CSHT_Field := 16#0#; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; FSIZE : DCR_FSIZE_Field := 16#0#; -- unspecified Reserved_21_31 : HAL.UInt11 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DCR_Register use record CKMODE at 0 range 0 .. 0; Reserved_1_7 at 0 range 1 .. 7; CSHT at 0 range 8 .. 10; Reserved_11_15 at 0 range 11 .. 15; FSIZE at 0 range 16 .. 20; Reserved_21_31 at 0 range 21 .. 31; end record; subtype SR_FLEVEL_Field is HAL.UInt6; type SR_Register is record TEF : Boolean := False; TCF : Boolean := False; FTF : Boolean := False; SMF : Boolean := False; TOF : Boolean := False; BUSY : Boolean := False; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; FLEVEL : SR_FLEVEL_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SR_Register use record TEF at 0 range 0 .. 0; TCF at 0 range 1 .. 1; FTF at 0 range 2 .. 2; SMF at 0 range 3 .. 3; TOF at 0 range 4 .. 4; BUSY at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; FLEVEL at 0 range 8 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; type FCR_Register is record CTEF : Boolean := False; CTCF : Boolean := False; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; CSMF : Boolean := False; CTOF : Boolean := False; -- unspecified Reserved_5_31 : HAL.UInt27 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FCR_Register use record CTEF at 0 range 0 .. 0; CTCF at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; CSMF at 0 range 3 .. 3; CTOF at 0 range 4 .. 4; Reserved_5_31 at 0 range 5 .. 31; end record; subtype CCR_INSTRUCTION_Field is HAL.UInt8; subtype CCR_IMODE_Field is HAL.UInt2; subtype CCR_ADMODE_Field is HAL.UInt2; subtype CCR_ADSIZE_Field is HAL.UInt2; subtype CCR_ABMODE_Field is HAL.UInt2; subtype CCR_ABSIZE_Field is HAL.UInt2; subtype CCR_DCYC_Field is HAL.UInt5; subtype CCR_DMODE_Field is HAL.UInt2; subtype CCR_FMODE_Field is HAL.UInt2; type CCR_Register is record INSTRUCTION : CCR_INSTRUCTION_Field := 16#0#; IMODE : CCR_IMODE_Field := 16#0#; ADMODE : CCR_ADMODE_Field := 16#0#; ADSIZE : CCR_ADSIZE_Field := 16#0#; ABMODE : CCR_ABMODE_Field := 16#0#; ABSIZE : CCR_ABSIZE_Field := 16#0#; DCYC : CCR_DCYC_Field := 16#0#; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; DMODE : CCR_DMODE_Field := 16#0#; FMODE : CCR_FMODE_Field := 16#0#; SIOO : Boolean := False; -- unspecified Reserved_29_30 : HAL.UInt2 := 16#0#; DDRM : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CCR_Register use record INSTRUCTION at 0 range 0 .. 7; IMODE at 0 range 8 .. 9; ADMODE at 0 range 10 .. 11; ADSIZE at 0 range 12 .. 13; ABMODE at 0 range 14 .. 15; ABSIZE at 0 range 16 .. 17; DCYC at 0 range 18 .. 22; Reserved_23_23 at 0 range 23 .. 23; DMODE at 0 range 24 .. 25; FMODE at 0 range 26 .. 27; SIOO at 0 range 28 .. 28; Reserved_29_30 at 0 range 29 .. 30; DDRM at 0 range 31 .. 31; end record; subtype PIR_INTERVAL_Field is HAL.UInt16; type PIR_Register is record INTERVAL : PIR_INTERVAL_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PIR_Register use record INTERVAL at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype LPTR_TIMEOUT_Field is HAL.UInt16; type LPTR_Register is record TIMEOUT : LPTR_TIMEOUT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for LPTR_Register use record TIMEOUT at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ----------------- -- Peripherals -- ----------------- type QUADSPI_Peripheral is record CR : aliased CR_Register; DCR : aliased DCR_Register; SR : aliased SR_Register; FCR : aliased FCR_Register; DLR : aliased HAL.UInt32; CCR : aliased CCR_Register; AR : aliased HAL.UInt32; ABR : aliased HAL.UInt32; DR : aliased HAL.UInt32; PSMKR : aliased HAL.UInt32; PSMAR : aliased HAL.UInt32; PIR : aliased PIR_Register; LPTR : aliased LPTR_Register; end record with Volatile; for QUADSPI_Peripheral use record CR at 16#0# range 0 .. 31; DCR at 16#4# range 0 .. 31; SR at 16#8# range 0 .. 31; FCR at 16#C# range 0 .. 31; DLR at 16#10# range 0 .. 31; CCR at 16#14# range 0 .. 31; AR at 16#18# range 0 .. 31; ABR at 16#1C# range 0 .. 31; DR at 16#20# range 0 .. 31; PSMKR at 16#24# range 0 .. 31; PSMAR at 16#28# range 0 .. 31; PIR at 16#2C# range 0 .. 31; LPTR at 16#30# range 0 .. 31; end record; QUADSPI_Periph : aliased QUADSPI_Peripheral with Import, Address => System'To_Address (16#A0001000#); end STM32_SVD.QUADSPI;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . D S A _ S E R V I C E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2006-2019, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package is for distributed system annex services, which require the -- partition communication sub-system to be initialized before they are used. with System.Partition_Interface; with System.RPC; package System.DSA_Services is function Get_Active_Partition_ID (Name : Partition_Interface.Unit_Name) return RPC.Partition_ID renames Partition_Interface.Get_Active_Partition_ID; -- Return the partition ID of the partition in which unit Name resides function Get_Local_Partition_ID return RPC.Partition_ID renames Partition_Interface.Get_Local_Partition_ID; -- Return the Partition_ID of the current partition function Get_Passive_Partition_ID (Name : Partition_Interface.Unit_Name) return RPC.Partition_ID renames Partition_Interface.Get_Passive_Partition_ID; -- Return the Partition_ID of the given shared passive partition end System.DSA_Services;
with Resources1; with Ada.Command_Line; with Ada.Text_IO; procedure Test1 is use Resources1; C : Content_Access := Get_Content ("main.html"); begin if C = null then Ada.Text_IO.Put_Line ("FAIL: No content 'main.html'"); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); return; end if; if C'Length /= 356 then Ada.Text_IO.Put_Line ("FAIL: Invalid length for 'main.html'"); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); end if; C := Get_Content ("js/main.js"); if C = null then Ada.Text_IO.Put_Line ("FAIL: No content 'js/main.js'"); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); return; end if; if C'Length /= 87 then Ada.Text_IO.Put_Line ("FAIL: Invalid length for 'js/main.js'"); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); end if; C := Get_Content ("css/main.css"); if C = null then Ada.Text_IO.Put_Line ("FAIL: No content 'css/main.css'"); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); return; end if; if C'Length /= 60 then Ada.Text_IO.Put_Line ("FAIL: Invalid length for 'css/main.css'"); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); end if; Ada.Text_IO.Put ("PASS: "); for Val of C.all loop if Character'Val (Val) /= ASCII.LF then Ada.Text_IO.Put (Character'Val (Val)); end if; end loop; Ada.Text_IO.New_Line; end Test1;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Elements.Identifiers; with Program.Elements.Variants; with Program.Elements.Variant_Parts; with Program.Element_Visitors; package Program.Nodes.Variant_Parts is pragma Preelaborate; type Variant_Part is new Program.Nodes.Node and Program.Elements.Variant_Parts.Variant_Part and Program.Elements.Variant_Parts.Variant_Part_Text with private; function Create (Case_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Discriminant : not null Program.Elements.Identifiers.Identifier_Access; Is_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Variants : not null Program.Elements.Variants .Variant_Vector_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Case_Token_2 : not null Program.Lexical_Elements .Lexical_Element_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Variant_Part; type Implicit_Variant_Part is new Program.Nodes.Node and Program.Elements.Variant_Parts.Variant_Part with private; function Create (Discriminant : not null Program.Elements.Identifiers .Identifier_Access; Variants : not null Program.Elements.Variants .Variant_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Variant_Part with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_Variant_Part is abstract new Program.Nodes.Node and Program.Elements.Variant_Parts.Variant_Part with record Discriminant : not null Program.Elements.Identifiers.Identifier_Access; Variants : not null Program.Elements.Variants .Variant_Vector_Access; end record; procedure Initialize (Self : aliased in out Base_Variant_Part'Class); overriding procedure Visit (Self : not null access Base_Variant_Part; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Discriminant (Self : Base_Variant_Part) return not null Program.Elements.Identifiers.Identifier_Access; overriding function Variants (Self : Base_Variant_Part) return not null Program.Elements.Variants.Variant_Vector_Access; overriding function Is_Variant_Part_Element (Self : Base_Variant_Part) return Boolean; overriding function Is_Definition_Element (Self : Base_Variant_Part) return Boolean; type Variant_Part is new Base_Variant_Part and Program.Elements.Variant_Parts.Variant_Part_Text with record Case_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Is_Token : not null Program.Lexical_Elements .Lexical_Element_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Case_Token_2 : not null Program.Lexical_Elements .Lexical_Element_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access; end record; overriding function To_Variant_Part_Text (Self : aliased in out Variant_Part) return Program.Elements.Variant_Parts.Variant_Part_Text_Access; overriding function Case_Token (Self : Variant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Is_Token (Self : Variant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function End_Token (Self : Variant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Case_Token_2 (Self : Variant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Semicolon_Token (Self : Variant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_Variant_Part is new Base_Variant_Part with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_Variant_Part_Text (Self : aliased in out Implicit_Variant_Part) return Program.Elements.Variant_Parts.Variant_Part_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_Variant_Part) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_Variant_Part) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_Variant_Part) return Boolean; end Program.Nodes.Variant_Parts;
with Ada.Text_IO; procedure Hello is begin Ada.Text_IO.Put_Line ("Hello, World!"); end Hello;
-- CE3705E.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT DATA_ERROR, NOT END_ERROR, IS RAISED WHEN FEWER THAN -- WIDTH CHARACTERS REMAIN IN THE FILE, AND THE REMAINING CHARACTERS -- SATISFY THE SYNTAX FOR A REAL LITERAL. -- APPLICABILITY CRITERIA: -- THIS TEST IS ONLY APPLICABLE TO IMPLEMENTATIONS WHICH SUPPORT -- TEXT FILES. -- HISTORY: -- JLH 07/20/88 CREATED ORIGINAL TEST. WITH REPORT; USE REPORT; WITH TEXT_IO; USE TEXT_IO; PROCEDURE CE3705E IS PACKAGE IIO IS NEW INTEGER_IO (INTEGER); USE IIO; FILE : FILE_TYPE; ITEM : INTEGER; INCOMPLETE : EXCEPTION; BEGIN TEST ("CE3705E", "CHECK THAT DATA_ERROR, NOT END_ERROR, IS " & "RAISED WHEN FEWER THAN WIDTH CHARACTERS " & "REMAIN IN THE FILE, AND THE REMAINING " & "CHARACTERS SATISFY THE SYNTAX FOR A REAL " & "LITERAL"); BEGIN BEGIN CREATE (FILE, OUT_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED ON CREATE " & "WITH MODE OUT_FILE"); RAISE INCOMPLETE; WHEN NAME_ERROR => NOT_APPLICABLE ("NAME_ERROR RAISED ON CREATE " & "WITH MODE OUT_FILE"); RAISE INCOMPLETE; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED ON CREATE"); RAISE INCOMPLETE; END; PUT (FILE, "16#FFF#"); NEW_LINE (FILE); PUT (FILE, "3.14159_26"); CLOSE (FILE); BEGIN OPEN (FILE, IN_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED ON OPEN " & "WITH MODE IN_FILE"); RAISE INCOMPLETE; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED ON OPEN"); RAISE INCOMPLETE; END; GET (FILE, ITEM); IF ITEM /= 4095 THEN FAILED ("INCORRECT VALUE READ"); END IF; BEGIN GET (FILE, ITEM, WIDTH => 11); FAILED ("DATA_ERROR NOT RAISED"); EXCEPTION WHEN END_ERROR => FAILED ("END_ERROR INSTEAD OF DATA_ERROR RAISED"); WHEN DATA_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED ON GET"); END; BEGIN DELETE (FILE); EXCEPTION WHEN USE_ERROR => NULL; END; EXCEPTION WHEN INCOMPLETE => NULL; END; RESULT; END CE3705E;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . S O C K E T S . L I N K E R _ O P T I O N S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2001-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package is used to provide target specific linker_options for the -- support of sockets as required by the package GNAT.Sockets. -- This is the LynxOS version of this package -- This package should not be directly with'ed by an application program package GNAT.Sockets.Linker_Options is private pragma Linker_Options ("-lbsd"); end GNAT.Sockets.Linker_Options;
-- Abstract : -- -- See spec. -- -- Copyright (C) 2017 - 2020 Free Software Foundation, Inc. -- -- This library is free software; you can redistribute it and/or modify it -- under terms of the GNU General Public License as published by the Free -- Software Foundation; either version 3, or (at your option) any later -- version. This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- As a special exception under Section 7 of GPL version 3, you are granted -- additional permissions described in the GCC Runtime Library Exception, -- version 3.1, as published by the Free Software Foundation. pragma License (Modified_GPL); with Ada.Exceptions; with Ada.Strings.Bounded; with Ada.Strings.Unbounded; with Ada.Text_IO; with SAL; with WisiToken.Semantic_Checks; package body Wisi is use WisiToken; Chars_Per_Int : constant Integer := Integer'Width; ---------- -- body subprogram specs (as needed), alphabetical function Indent_Nil_P (Indent : in Indent_Type) return Boolean; function Max_Anchor_ID (Data : in out Parse_Data_Type; First_Line : in Line_Number_Type; Last_Line : in Line_Number_Type) return Integer; function Paren_In_Anchor_Line (Data : in out Parse_Data_Type'Class; Anchor_Token : in Augmented_Token; Offset : in Integer) return Integer; ---------- -- body subprograms bodies, alphabetical function Image (Anchor_IDs : in Anchor_ID_Vectors.Vector) return String is use Ada.Strings.Unbounded; Result : Unbounded_String := +"("; begin for I in Anchor_IDs.First_Index .. Anchor_IDs.Last_Index loop Result := Result & Integer'Image (Anchor_IDs (I)); if I /= Anchor_IDs.Last_Index then Result := Result & ", "; else Result := Result & ")"; end if; end loop; return -Result; end Image; function Image (Indent : in Indent_Type) return String is begin case Indent.Label is when Not_Set => return "(" & Indent_Label'Image (Indent.Label) & ")"; when Int => return "(" & Indent_Label'Image (Indent.Label) & Integer'Image (Indent.Int_Indent) & ")"; when Anchor_Nil => return "(" & Indent_Label'Image (Indent.Label) & ", " & Image (Indent.Anchor_Nil_IDs) & ", nil)"; when Anchor_Int => return "(" & Indent_Label'Image (Indent.Label) & ", " & Image (Indent.Anchor_Int_IDs) & ", " & Integer'Image (Indent.Anchor_Int_Indent) & ")"; when Anchored => return "(" & Indent_Label'Image (Indent.Label) & ", " & Integer'Image (Indent.Anchored_ID) & ", " & Integer'Image (Indent.Anchored_Delta) & ")"; when Anchor_Anchored => return "(" & Indent_Label'Image (Indent.Label) & ", " & Image (Indent.Anchor_Anchored_IDs) & Integer'Image (Indent.Anchor_Anchored_ID) & ", " & Integer'Image (Indent.Anchor_Anchored_Delta) & ")"; end case; end Image; procedure Indent_Apply_Anchored (Delta_Indent : in Simple_Delta_Type; Indent : in out Indent_Type) with Pre => Delta_Indent.Label = Anchored is begin -- Add Delta_Indent to Indent case Indent.Label is when Not_Set => Indent := (Anchored, Delta_Indent.Anchored_ID, Delta_Indent.Anchored_Delta); when Int => if Delta_Indent.Anchored_Accumulate then Indent := (Anchored, Delta_Indent.Anchored_ID, Indent.Int_Indent + Delta_Indent.Anchored_Delta); end if; when Anchor_Nil => Indent := (Anchor_Anchored, Indent.Anchor_Nil_IDs, Delta_Indent.Anchored_ID, Delta_Indent.Anchored_Delta); when Anchor_Int => if Delta_Indent.Anchored_Accumulate then Indent := (Anchor_Anchored, Indent.Anchor_Int_IDs, Delta_Indent.Anchored_ID, Delta_Indent.Anchored_Delta + Indent.Anchor_Int_Indent); end if; when Anchored | Anchor_Anchored => -- already anchored null; end case; end Indent_Apply_Anchored; procedure Indent_Apply_Int (Indent : in out Indent_Type; Offset : in Integer) is begin -- Add an Int indent to Indent case Indent.Label is when Not_Set => Indent := (Int, Offset); when Int => Indent.Int_Indent := Indent.Int_Indent + Offset; when Anchor_Nil => Indent := (Label => Anchor_Int, Anchor_Int_IDs => Indent.Anchor_Nil_IDs, Anchor_Int_Indent => Offset); when Anchor_Int => Indent.Anchor_Int_Indent := Indent.Anchor_Int_Indent + Offset; when Anchored | Anchor_Anchored => null; end case; end Indent_Apply_Int; procedure Indent_Line (Data : in out Parse_Data_Type; Line : in Line_Number_Type; Delta_Indent : in Delta_Type) is -- See note in Indent_Anchored_2 for why we can't use renames here. Indent : Indent_Type := Data.Indents (Line); begin case Delta_Indent.Label is when Simple => case Delta_Indent.Simple_Delta.Label is when None => null; when Int => Indent_Apply_Int (Indent, Delta_Indent.Simple_Delta.Int_Delta); when Anchored => Indent_Apply_Anchored (Delta_Indent.Simple_Delta, Indent); end case; when Hanging => if Delta_Indent.Hanging_Accumulate or Indent_Nil_P (Data.Indents (Line)) then if Line = Delta_Indent.Hanging_First_Line then -- Apply delta_1 case Delta_Indent.Hanging_Delta_1.Label is when None => null; when Int => Indent_Apply_Int (Indent, Delta_Indent.Hanging_Delta_1.Int_Delta); when Anchored => Indent_Apply_Anchored (Delta_Indent.Hanging_Delta_1, Indent); end case; else if Delta_Indent.Hanging_Paren_State = Data.Line_Paren_State (Line) then case Delta_Indent.Hanging_Delta_2.Label is when None => null; when Int => Indent_Apply_Int (Indent, Delta_Indent.Hanging_Delta_2.Int_Delta); when Anchored => Indent_Apply_Anchored (Delta_Indent.Hanging_Delta_2, Indent); end case; end if; end if; end if; end case; if Trace_Action > Extra then Ada.Text_IO.Put_Line (";; indent_line: " & Line_Number_Type'Image (Line) & " => " & Image (Indent)); end if; Data.Indents.Replace_Element (Line, Indent); end Indent_Line; function Indent_Nil_P (Indent : in Indent_Type) return Boolean is begin return Indent.Label in Not_Set | Anchor_Nil; end Indent_Nil_P; function Max_Anchor_ID (Data : in out Parse_Data_Type; First_Line : in Line_Number_Type; Last_Line : in Line_Number_Type) return Integer is Result : Integer := First_Anchor_ID - 1; begin for Line in First_Line .. Last_Line loop declare Indent : Indent_Type renames Data.Indents (Line); begin case Indent.Label is when Not_Set | Int => null; when Anchor_Nil => Result := Integer'Max (Result, Indent.Anchor_Nil_IDs (Indent.Anchor_Nil_IDs.First_Index)); when Anchor_Int => Result := Integer'Max (Result, Indent.Anchor_Int_IDs (Indent.Anchor_Int_IDs.First_Index)); when Anchored => Result := Integer'Max (Result, Indent.Anchored_ID); when Anchor_Anchored => Result := Integer'Max (Result, Indent.Anchor_Anchored_ID); end case; end; end loop; return Result; end Max_Anchor_ID; function Paren_In_Anchor_Line (Data : in out Parse_Data_Type'Class; Anchor_Token : in Augmented_Token; Offset : in Integer) return Integer is Left_Paren_ID : Token_ID renames Data.Left_Paren_ID; Right_Paren_ID : Token_ID renames Data.Right_Paren_ID; I : Base_Token_Index := Anchor_Token.First_Terminals_Index; Paren_Count : Integer := 0; Paren_Char_Pos : Buffer_Pos := Invalid_Buffer_Pos; Text_Begin_Pos : Buffer_Pos := Invalid_Buffer_Pos; begin loop declare Tok : Augmented_Token renames Data.Terminals (I); begin if Tok.ID = Left_Paren_ID then Paren_Count := Paren_Count + 1; if Paren_Count = 1 then Paren_Char_Pos := Tok.Char_Region.First; end if; elsif Tok.ID = Right_Paren_ID then Paren_Count := Paren_Count - 1; end if; if Tok.First then Text_Begin_Pos := Tok.Char_Region.First; exit; end if; end; I := I - 1; end loop; if Paren_Char_Pos /= Invalid_Buffer_Pos and Text_Begin_Pos /= Invalid_Buffer_Pos then return 1 + Offset + Integer (Paren_Char_Pos - Text_Begin_Pos); else return Offset; end if; end Paren_In_Anchor_Line; procedure Put (Cache : in Navigate_Cache_Type) is package Bounded is new Ada.Strings.Bounded.Generic_Bounded_Length (Max => 2 + 11 * Chars_Per_Int); use Bounded; Line : Bounded_String := To_Bounded_String ("["); procedure Append (Item : in Nil_Buffer_Pos) is begin if Item.Set then Append (Line, Buffer_Pos'Image (Item.Item)); else Append (Line, " -1"); end if; end Append; begin Append (Line, Navigate_Cache_Code); Append (Line, Buffer_Pos'Image (Cache.Pos)); Append (Line, Token_ID'Image (Cache.Statement_ID)); Append (Line, Token_ID'Image (Cache.ID)); Append (Line, Integer'Image (Cache.Length)); Append (Line, Integer'Image (Navigate_Class_Type'Pos (Cache.Class))); Append (Cache.Containing_Pos); Append (Cache.Prev_Pos); Append (Cache.Next_Pos); Append (Cache.End_Pos); Append (Line, ']'); Ada.Text_IO.Put_Line (To_String (Line)); end Put; procedure Put (Cache : in WisiToken.Buffer_Region) is begin Ada.Text_IO.Put_Line ("[" & Name_Property_Code & Buffer_Pos'Image (Cache.First) & Buffer_Pos'Image (Cache.Last) & "]"); end Put; procedure Put (Cache : in Face_Cache_Type) is package Bounded is new Ada.Strings.Bounded.Generic_Bounded_Length (Max => 2 + 4 * Chars_Per_Int); use Bounded; Line : Bounded_String := To_Bounded_String ("["); begin if Cache.Face.Set then Append (Line, Face_Property_Code); Append (Line, Buffer_Pos'Image (Cache.Char_Region.First)); Append (Line, Buffer_Pos'Image (Cache.Char_Region.Last)); Append (Line, Integer'Image (Cache.Face.Item)); Append (Line, ']'); Ada.Text_IO.Put_Line (To_String (Line)); end if; end Put; procedure Put (Line_Number : in Line_Number_Type; Item : in Indent_Type) is begin -- All Anchors must be resolved at this point, but not all lines have -- an indent computed. A negative indent is an error in either the -- grammar indent rules or the algorithms in this package. case Item.Label is when Not_Set => -- Especially with partial parse, we have no idea what this indent should be. null; when Int => declare -- We can easily get negative indents when there are syntax errors. Ind : constant Integer := Integer'Max (0, Item.Int_Indent); begin Ada.Text_IO.Put_Line ('[' & Indent_Code & Line_Number_Type'Image (Line_Number) & Integer'Image (Ind) & ']'); end; when Anchor_Nil | Anchor_Int | Anchored | Anchor_Anchored => raise SAL.Programmer_Error with "Indent item has non-int label: " & Indent_Label'Image (Item.Label); end case; end Put; procedure Put (Item : in Parse.LR.Configuration; Terminals : in Augmented_Token_Arrays.Vector; Descriptor : in WisiToken.Descriptor; Embedded_Quote_Escape_Doubled : in Boolean) is use Ada.Strings.Unbounded; use Parse.LR; use Parse.LR.Config_Op_Arrays, Parse.LR.Config_Op_Array_Refs; -- Output is a sequence of edit regions; each is: -- [edit-pos [inserted token-ids] [deleted token-ids] deleted-region] type State_Label is (None, -- not started yet Inserted, -- edit-pos, some insert ids appended Deleted); -- some delete ids appended State : State_Label := None; -- State of the current edit region. Line : Unbounded_String := To_Unbounded_String ("["); Deleted_Region : Buffer_Region := Null_Buffer_Region; Last_Deleted : Config_Op (Delete) := (Delete, Invalid_Token_ID, Invalid_Token_Index); procedure Start_Edit_Region (Op : in Insert_Delete_Op) is begin Append (Line, "["); Append (Line, Buffer_Pos'Image (Terminals (WisiToken.Parse.LR.Token_Index (Op)).Char_Region.First)); Append (Line, "["); end Start_Edit_Region; function Deleted_Region_Image return String is begin return "(" & Deleted_Region.First'Image & " . " & Buffer_Pos'Image (Deleted_Region.Last + 1) & ")"; end Deleted_Region_Image; procedure Terminate_Edit_Region is begin case State is when None => null; when Inserted => Append (Line, "][]" & Deleted_Region_Image & "]"); when Deleted => Append (Line, "]" & Deleted_Region_Image & "]"); end case; Deleted_Region := Null_Buffer_Region; end Terminate_Edit_Region; begin if Trace_Action > Detail then Ada.Text_IO.Put_Line (";; " & Parse.LR.Image (Item.Ops, Descriptor)); end if; Append (Line, Recover_Code); for I in First_Index (Item.Ops) .. Last_Index (Item.Ops) loop declare Op : Config_Op renames Constant_Ref (Item.Ops, I); begin case Op.Op is when Fast_Forward => Terminate_Edit_Region; State := None; when Undo_Reduce | Push_Back => null; when Insert => case State is when None => Start_Edit_Region (Op); when Inserted => null; when Deleted => Terminate_Edit_Region; Start_Edit_Region (Op); end case; Append (Line, Token_ID'Image (Op.Ins_ID)); State := Inserted; when Delete => Deleted_Region := Deleted_Region and Terminals (Op.Del_Token_Index).Char_Region; declare Skip : Boolean := False; begin case State is when None => Start_Edit_Region (Op); Append (Line, "]["); when Inserted => Append (Line, "]["); when Deleted => if Embedded_Quote_Escape_Doubled and then ((Last_Deleted.Del_ID = Descriptor.String_1_ID and Op.Del_ID = Descriptor.String_1_ID) or (Last_Deleted.Del_ID = Descriptor.String_2_ID and Op.Del_ID = Descriptor.String_2_ID)) then declare Tok_1 : Augmented_Token renames Terminals (Last_Deleted.Del_Token_Index); Tok_2 : Augmented_Token renames Terminals (Op.Del_Token_Index); begin if Tok_1.Char_Region.Last + 1 = Tok_2.Char_Region.First then -- Buffer text was '"""', lexer repair changed it to '""""'. The -- repaired text looks like a single string with an embedded quote. -- But here, it is two STRING_LITERAL tokens. Don't send the second -- delete to elisp. See test/ada_mode-recover_string_quote_1.adb Skip := True; end if; end; end if; end case; State := Deleted; if not Skip then Append (Line, Token_ID'Image (Op.Del_ID)); end if; end; Last_Deleted := Op; end case; end; end loop; case State is when None => null; when Inserted | Deleted => Terminate_Edit_Region; end case; Append (Line, "]"); Ada.Text_IO.Put_Line (To_String (Line)); end Put; procedure Resolve_Anchors (Data : in out Parse_Data_Type) is Begin_Indent : Integer renames Data.Begin_Indent; Anchor_Indent : array (First_Anchor_ID .. Data.Max_Anchor_ID) of Integer; begin if Trace_Action > Outline then Ada.Text_IO.New_Line; Ada.Text_IO.Put_Line (";; Begin_Indent: " & Integer'Image (Data.Begin_Indent)); for I in Data.Indents.First_Index .. Data.Indents.Last_Index loop Ada.Text_IO.Put_Line (";; " & Line_Number_Type'Image (I) & ", " & Image (Data.Indents (I))); end loop; Ada.Text_IO.Put_Line (";; resolve anchors"); end if; for I in Data.Indents.First_Index .. Data.Indents.Last_Index loop declare Indent : constant Indent_Type := Data.Indents (I); begin case Indent.Label is when Not_Set => -- Indent not computed, therefore not output. null; when Int => Data.Indents.Replace_Element (I, (Int, Indent.Int_Indent + Begin_Indent)); when Anchor_Nil => for I of Indent.Anchor_Nil_IDs loop Anchor_Indent (I) := Begin_Indent; end loop; Data.Indents.Replace_Element (I, (Int, Begin_Indent)); when Anchor_Int => for I of Indent.Anchor_Int_IDs loop Anchor_Indent (I) := Indent.Anchor_Int_Indent + Begin_Indent; end loop; Data.Indents.Replace_Element (I, (Int, Indent.Anchor_Int_Indent + Begin_Indent)); when Anchored => Data.Indents.Replace_Element (I, (Int, Anchor_Indent (Indent.Anchored_ID) + Indent.Anchored_Delta)); when Anchor_Anchored => declare Temp : constant Integer := Anchor_Indent (Indent.Anchor_Anchored_ID) + Indent.Anchor_Anchored_Delta; begin for I of Indent.Anchor_Anchored_IDs loop Anchor_Indent (I) := Temp; end loop; Data.Indents.Replace_Element (I, (Int, Temp)); end; end case; end; end loop; end Resolve_Anchors; procedure Set_End (Data : in out Parse_Data_Type; Containing_Pos : in Buffer_Pos; End_Pos : in Buffer_Pos) is use Navigate_Cursor_Lists; I : Cursor := Data.End_Positions.First; Delete_Cache : Boolean; Temp : Cursor; begin loop exit when not Has_Element (I); declare Cache : Navigate_Cache_Type renames Data.Navigate_Caches (Element (I)); begin if Cache.Pos in Containing_Pos .. End_Pos then Cache.End_Pos := (True, End_Pos); Delete_Cache := True; else Delete_Cache := False; end if; end; if Delete_Cache then Temp := Next (I); Delete (Data.End_Positions, I); I := Temp; else Next (I); end if; end loop; end Set_End; ---------- -- public subprograms (declaration order) procedure Initialize (Data : in out Parse_Data_Type; Lexer : in WisiToken.Lexer.Handle; Descriptor : access constant WisiToken.Descriptor; Base_Terminals : in Base_Token_Array_Access; Post_Parse_Action : in Post_Parse_Action_Type; Begin_Line : in Line_Number_Type; End_Line : in Line_Number_Type; Begin_Indent : in Integer; Params : in String) is pragma Unreferenced (Params); begin Data.Line_Begin_Pos.Set_First_Last (First => Begin_Line, Last => End_Line); -- + 1 for data on line following last line; see Lexer_To_Augmented. Data.Line_Paren_State.Set_First_Last (First => Begin_Line, Last => End_Line + 1); Data.Lexer := Lexer; Data.Descriptor := Descriptor; Data.Base_Terminals := Base_Terminals; Data.Post_Parse_Action := Post_Parse_Action; case Post_Parse_Action is when Navigate | Face => null; when Indent => Data.Indents.Set_First_Last (First => Begin_Line, Last => End_Line); Data.Begin_Indent := Begin_Indent; end case; Data.Reset; exception when E : others => raise SAL.Programmer_Error with "wisi.initialize: " & Ada.Exceptions.Exception_Name (E) & ": " & Ada.Exceptions.Exception_Message (E); end Initialize; overriding procedure Reset (Data : in out Parse_Data_Type) is begin Data.Terminals.Clear; Data.Leading_Non_Grammar.Clear; -- Data.Line_Begin_Pos set in Initialize, overwritten in Lexer_To_Augmented -- Data.Line_Begin_Token set in WisiToken.Parse.Next_Grammar_Token. for S of Data.Line_Paren_State loop S := 0; end loop; Data.Current_Paren_State := 0; Data.Navigate_Caches.Finalize; Data.Navigate_Caches.Initialize; Data.End_Positions.Clear; Data.Name_Caches.Finalize; Data.Name_Caches.Initialize; Data.Face_Caches.Finalize; Data.Face_Caches.Initialize; for I in Data.Indents.First_Index .. Data.Indents.Last_Index loop Data.Indents.Replace_Element (I, (Label => Not_Set)); end loop; Data.Max_Anchor_ID := First_Anchor_ID - 1; end Reset; function Source_File_Name (Data : in Parse_Data_Type) return String is begin return Data.Lexer.File_Name; end Source_File_Name; function Post_Parse_Action (Data : in Parse_Data_Type) return Post_Parse_Action_Type is begin return Data.Post_Parse_Action; end Post_Parse_Action; overriding procedure Lexer_To_Augmented (Data : in out Parse_Data_Type; Token : in Base_Token; Lexer : not null access WisiToken.Lexer.Instance'Class) is use all type Ada.Containers.Count_Type; begin if Lexer.First then Data.Line_Begin_Pos (Token.Line) := Token.Char_Region.First; if Token.Line > Data.Line_Begin_Pos.First_Index and then Data.Line_Begin_Pos (Token.Line - 1) = Invalid_Buffer_Pos then -- Previous token contains multiple lines; ie %code in wisitoken_grammar.wy declare First_Set_Line : Line_Number_Type; begin for Line in reverse Data.Line_Begin_Pos.First_Index .. Token.Line - 1 loop if Data.Line_Begin_Pos (Line) /= Invalid_Buffer_Pos then First_Set_Line := Line; exit; end if; end loop; for Line in First_Set_Line + 1 .. Token.Line - 1 loop Data.Line_Begin_Pos (Line) := Data.Line_Begin_Pos (First_Set_Line); -- good enough end loop; end; end if; end if; if Token.ID < Data.Descriptor.First_Terminal then -- Non-grammar token if Token.ID = Data.Descriptor.New_Line_ID then Data.Line_Paren_State (Token.Line + 1) := Data.Current_Paren_State; end if; if Data.Terminals.Length = 0 then Data.Leading_Non_Grammar.Append ((Token with Lexer.First)); else declare Containing_Token : Augmented_Token renames Data.Terminals (Data.Terminals.Last_Index); Trailing_Blank : constant Boolean := Token.ID = Data.Descriptor.New_Line_ID and (Containing_Token.Non_Grammar.Length > 0 and then Containing_Token.Non_Grammar (Containing_Token.Non_Grammar.Last_Index).ID = Data.Descriptor.New_Line_ID); begin if Lexer.First and (Token.ID in Data.First_Comment_ID .. Data.Last_Comment_ID or Trailing_Blank) then if Containing_Token.First_Trailing_Comment_Line = Invalid_Line_Number then Containing_Token.First_Trailing_Comment_Line := Token.Line; end if; Containing_Token.Last_Trailing_Comment_Line := Token.Line; end if; Containing_Token.Non_Grammar.Append ((Token with Lexer.First)); end; end if; else -- grammar token declare Temp : constant Augmented_Token := (Token.ID, Byte_Region => Token.Byte_Region, Line => Token.Line, Column => Token.Column, Char_Region => Token.Char_Region, Deleted => False, First => Lexer.First, Paren_State => Data.Current_Paren_State, First_Terminals_Index => Data.Terminals.Last_Index + 1, Last_Terminals_Index => Data.Terminals.Last_Index + 1, First_Indent_Line => (if Lexer.First then Token.Line else Invalid_Line_Number), Last_Indent_Line => (if Lexer.First then Token.Line else Invalid_Line_Number), First_Trailing_Comment_Line => Invalid_Line_Number, -- Set by Reduce Last_Trailing_Comment_Line => Invalid_Line_Number, Non_Grammar => <>); begin if Token.ID = Data.Left_Paren_ID then Data.Current_Paren_State := Data.Current_Paren_State + 1; elsif Token.ID = Data.Right_Paren_ID then Data.Current_Paren_State := Data.Current_Paren_State - 1; end if; Data.Terminals.Append (Temp); end; end if; end Lexer_To_Augmented; overriding procedure Delete_Token (Data : in out Parse_Data_Type; Deleted_Token_Index : in WisiToken.Token_Index) is use all type Ada.Containers.Count_Type; Deleted_Token : Augmented_Token renames Data.Terminals (Deleted_Token_Index); Prev_Token_Index : Base_Token_Index := Deleted_Token_Index - 1; Next_Token_Index : Base_Token_Index := Deleted_Token_Index + 1; begin if Deleted_Token.Deleted then -- This can happen if error recovery screws up. if WisiToken.Trace_Action > WisiToken.Detail then Ada.Text_IO.Put_Line (";; delete token again; ignored " & Image (Deleted_Token, Data.Descriptor.all)); end if; return; end if; if WisiToken.Trace_Action > WisiToken.Detail then Ada.Text_IO.Put_Line (";; delete token " & Image (Deleted_Token, Data.Descriptor.all)); end if; Deleted_Token.Deleted := True; if Deleted_Token.Non_Grammar.Length > 0 then -- Move Non_Grammar to previous non-deleted token loop exit when Prev_Token_Index = Base_Token_Index'First; exit when Data.Terminals (Prev_Token_Index).Deleted = False; Prev_Token_Index := Prev_Token_Index - 1; end loop; if Prev_Token_Index = Base_Token_Index'First then Deleted_Token.Non_Grammar (Deleted_Token.Non_Grammar.First_Index).First := Deleted_Token.First; Data.Leading_Non_Grammar.Append (Deleted_Token.Non_Grammar); else declare Prev_Token : Augmented_Token renames Data.Terminals (Prev_Token_Index); begin Prev_Token.Non_Grammar.Append (Deleted_Token.Non_Grammar); if Deleted_Token.First_Trailing_Comment_Line /= Invalid_Line_Number then if Prev_Token.First_Trailing_Comment_Line = Invalid_Line_Number then Prev_Token.First_Trailing_Comment_Line := Deleted_Token.First_Trailing_Comment_Line; end if; Prev_Token.Last_Trailing_Comment_Line := Deleted_Token.Last_Trailing_Comment_Line; end if; end; end if; end if; -- Data.Terminals.Last_Index is Wisi_EOI; it is never deleted loop exit when Data.Terminals (Next_Token_Index).Deleted = False; Next_Token_Index := Next_Token_Index + 1; exit when Next_Token_Index = Data.Terminals.Last_Index; end loop; if Deleted_Token.First and (Next_Token_Index = Data.Terminals.Last_Index or else Data.Terminals (Next_Token_Index).Line > Deleted_Token.Line) then -- Deleted_Token.Line is now blank; add to previous token non -- grammar. if Prev_Token_Index > Base_Token_Index'First then declare Prev_Token : Augmented_Token renames Data.Terminals (Prev_Token_Index); begin if Prev_Token.First_Trailing_Comment_Line = Invalid_Line_Number then Prev_Token.First_Trailing_Comment_Line := Deleted_Token.Line; Prev_Token.Last_Trailing_Comment_Line := Deleted_Token.Line; else if Prev_Token.First_Trailing_Comment_Line > Deleted_Token.Line then Prev_Token.First_Trailing_Comment_Line := Deleted_Token.Line; end if; if Prev_Token.Last_Trailing_Comment_Line < Deleted_Token.Line then Prev_Token.Last_Trailing_Comment_Line := Deleted_Token.Line; end if; end if; end; end if; end if; if Deleted_Token.First and Next_Token_Index < Data.Terminals.Last_Index then if not Data.Terminals (Next_Token_Index).First then declare Next_Token : Augmented_Token renames Data.Terminals (Next_Token_Index); begin Next_Token.First := True; Next_Token.First_Indent_Line := Deleted_Token.First_Indent_Line; Next_Token.Last_Indent_Line := Deleted_Token.Last_Indent_Line; end; end if; end if; end Delete_Token; overriding procedure Reduce (Data : in out Parse_Data_Type; Tree : in out Syntax_Trees.Tree'Class; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array) is Aug_Nonterm : constant Augmented_Token_Access := new Augmented_Token' (ID => Tree.ID (Nonterm), Byte_Region => Tree.Byte_Region (Nonterm), others => <>); Trailing_Comment_Done : Boolean := False; begin Tree.Set_Augmented (Nonterm, Base_Token_Class_Access (Aug_Nonterm)); for I in reverse Tokens'Range loop -- 'reverse' to find token containing trailing comments; last -- non-virtual and non-empty token. if Tree.Byte_Region (Tokens (I)) /= Null_Buffer_Region then -- Token not entirely virtual declare Aug_Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (I)); begin if Data.Post_Parse_Action = Indent then if Aug_Token.First_Terminals_Index /= Augmented_Token_Arrays.No_Index then Aug_Nonterm.First_Terminals_Index := Aug_Token.First_Terminals_Index; end if; if Aug_Nonterm.Last_Terminals_Index = Augmented_Token_Arrays.No_Index then Aug_Nonterm.Last_Terminals_Index := Aug_Token.Last_Terminals_Index; end if; Aug_Nonterm.First := Aug_Nonterm.First or Aug_Token.First; if Aug_Token.First_Indent_Line /= Invalid_Line_Number then Aug_Nonterm.First_Indent_Line := Aug_Token.First_Indent_Line; elsif Trailing_Comment_Done and Aug_Token.First_Trailing_Comment_Line /= Invalid_Line_Number then Aug_Nonterm.First_Indent_Line := Aug_Token.First_Trailing_Comment_Line; end if; if Aug_Nonterm.Last_Indent_Line = Invalid_Line_Number then if Trailing_Comment_Done and Aug_Token.Last_Trailing_Comment_Line /= Invalid_Line_Number then Aug_Nonterm.Last_Indent_Line := Aug_Token.Last_Trailing_Comment_Line; elsif Aug_Token.Last_Indent_Line /= Invalid_Line_Number then Aug_Nonterm.Last_Indent_Line := Aug_Token.Last_Indent_Line; end if; end if; if not Trailing_Comment_Done then Aug_Nonterm.First_Trailing_Comment_Line := Aug_Token.First_Trailing_Comment_Line; Aug_Nonterm.Last_Trailing_Comment_Line := Aug_Token.Last_Trailing_Comment_Line; Trailing_Comment_Done := True; end if; end if; -- Compute_Indent if Aug_Token.Line /= Invalid_Line_Number then Aug_Nonterm.Line := Aug_Token.Line; Aug_Nonterm.Column := Aug_Token.Column; end if; if Aug_Nonterm.Char_Region.First > Aug_Token.Char_Region.First then Aug_Nonterm.Char_Region.First := Aug_Token.Char_Region.First; end if; if Aug_Nonterm.Char_Region.Last < Aug_Token.Char_Region.Last then Aug_Nonterm.Char_Region.Last := Aug_Token.Char_Region.Last; end if; Aug_Nonterm.Paren_State := Aug_Token.Paren_State; end; end if; -- Aug_Token not virtual end loop; end Reduce; procedure Statement_Action (Data : in out Parse_Data_Type; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Params : in Statement_Param_Array) is Nonterm_Tok : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Nonterm); First_Item : Boolean := True; Start_Set : Boolean := False; Override_Start_Set : Boolean := False; Containing_Pos : Nil_Buffer_Pos := Nil; begin for Pair of Params loop if not (Pair.Index in Tokens'Range) then raise Fatal_Error with Error_Message (File_Name => Data.Lexer.File_Name, Line => Nonterm_Tok.Line, Column => Nonterm_Tok.Column, Message => "wisi-statement-action: " & Trimmed_Image (Tree.Production_ID (Nonterm)) & " token index" & SAL.Peek_Type'Image (Pair.Index) & " not in tokens range (" & SAL.Peek_Type'Image (Tokens'First) & " .." & SAL.Peek_Type'Image (Tokens'Last) & "); bad grammar action."); elsif Tree.Byte_Region (Tokens (Pair.Index)) /= Null_Buffer_Region then declare use all type WisiToken.Syntax_Trees.Node_Label; Token : constant Aug_Token_Ref := (if Pair.Class = Statement_End and then Tree.Label (Tokens (Pair.Index)) = WisiToken.Syntax_Trees.Nonterm then To_Aug_Token_Ref (Data.Terminals (Tree.Max_Terminal_Index (Tokens (Pair.Index)))) else Get_Aug_Token (Data, Tree, Tokens (Pair.Index))); Cache_Pos : constant Buffer_Pos := Token.Char_Region.First; Cursor : Navigate_Cache_Trees.Cursor := Navigate_Cache_Trees.Find (Data.Navigate_Caches.Iterate, Cache_Pos, Direction => Navigate_Cache_Trees.Unknown); begin if Navigate_Cache_Trees.Has_Element (Cursor) then declare Cache : Navigate_Cache_Type renames Data.Navigate_Caches (Cursor); begin if Pair.Class = Statement_Start then if Start_Set then Cache.Class := Motion; else Cache.Class := Statement_Start; Start_Set := True; end if; elsif Override_Start_Set then Cache.Class := Statement_Start; Start_Set := True; else Cache.Class := Pair.Class; end if; Cache.Statement_ID := Tree.ID (Nonterm); Cache.Containing_Pos := Containing_Pos; end; else Cursor := Data.Navigate_Caches.Insert ((Pos => Cache_Pos, Statement_ID => Tree.ID (Nonterm), ID => Token.ID, Length => Length (Token.Char_Region), Class => (if Override_Start_Set then Statement_Start else Pair.Class), Containing_Pos => Containing_Pos, others => Nil)); end if; Data.End_Positions.Append (Cursor); if First_Item then First_Item := False; if Override_Start_Set or Pair.Class = Statement_Start then Override_Start_Set := False; Containing_Pos := (True, Token.Char_Region.First); -- Set containing on all contained caches declare use Navigate_Cache_Trees; Iterator : constant Navigate_Cache_Trees.Iterator := Data.Navigate_Caches.Iterate; Cursor : Navigate_Cache_Trees.Cursor := Find_In_Range (Iterator, Ascending, Nonterm_Tok.Char_Region.First + 1, -- don't set containing on start Nonterm_Tok.Char_Region.Last); begin loop exit when not Has_Element (Cursor); declare Cache : Navigate_Cache_Type renames Data.Navigate_Caches (Cursor); begin if not Cache.Containing_Pos.Set then Cache.Containing_Pos := Containing_Pos; end if; exit when Nonterm_Tok.Char_Region.Last < Cache.Pos + 1; end; Cursor := Iterator.Next (Cursor); end loop; end; end if; end if; if Pair.Class = Statement_End and Containing_Pos.Set then Set_End (Data, Containing_Pos.Item, Cache_Pos); end if; end; else -- Token.Byte_Region is null if First_Item and Pair.Class = Statement_Start then Override_Start_Set := True; end if; end if; end loop; end Statement_Action; procedure Name_Action (Data : in out Parse_Data_Type; Tree : in WisiToken.Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in WisiToken.Syntax_Trees.Valid_Node_Index_Array; Name : in WisiToken.Positive_Index_Type) is use all type WisiToken.Syntax_Trees.Node_Label; begin if not (Name in Tokens'Range) then declare Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (Tokens'First)); begin raise Fatal_Error with Error_Message (File_Name => Data.Lexer.File_Name, Line => Token.Line, Column => Token.Column, Message => "wisi-name-action: " & Trimmed_Image (Tree.Production_ID (Nonterm)) & " name (" & Trimmed_Image (Name) & ") not in Tokens range (" & SAL.Peek_Type'Image (Tokens'First) & " .." & SAL.Peek_Type'Image (Tokens'Last) & "); bad grammar action."); end; end if; if Tree.Label (Tokens (Name)) = Syntax_Trees.Virtual_Terminal then return; end if; declare use Name_Cache_Trees; Name_Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (Name)); Cursor : constant Name_Cache_Trees.Cursor := Find (Data.Name_Caches.Iterate, Name_Token.Char_Region.First, Direction => Name_Cache_Trees.Unknown); begin if Name_Token.Char_Region = Null_Buffer_Region then return; elsif Has_Element (Cursor) then raise Fatal_Error with Error_Message (File_Name => Data.Lexer.File_Name, Line => Name_Token.Line, Column => Name_Token.Column, Message => Trimmed_Image (Tree.Production_ID (Nonterm)) & ": wisi-name-action: name set twice."); else Data.Name_Caches.Insert (Name_Token.Char_Region); end if; end; end Name_Action; procedure Motion_Action (Data : in out Parse_Data_Type; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Params : in Motion_Param_Array) is use Navigate_Cache_Trees; Start : Nil_Buffer_Pos := (Set => False); Iter : constant Iterator := Data.Navigate_Caches.Iterate; Prev_Cache_Cur : Cursor; Cache_Cur : Cursor; begin if WisiToken.Trace_Action > Outline then Ada.Text_IO.Put_Line ("Motion_Action " & Image (Tree.ID (Nonterm), Data.Descriptor.all) & " " & Image (Tree.Byte_Region (Nonterm))); end if; for Param of Params loop if Tree.Byte_Region (Tokens (Param.Index)) /= Null_Buffer_Region then declare use all type WisiToken.Syntax_Trees.Node_Label; Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (Param.Index)); Region : constant Buffer_Region := Token.Char_Region; Skip : Boolean := False; begin if not Start.Set then Start := (True, Region.First); end if; case Tree.Label (Tokens (Param.Index)) is when Shared_Terminal => Cache_Cur := Find (Iter, Region.First); when Virtual_Terminal | Virtual_Identifier => return; when Syntax_Trees.Nonterm => if Param.ID = Invalid_Token_ID then Cache_Cur := Find (Iter, Region.First); else Skip := True; Cache_Cur := Find_In_Range (Iter, Ascending, Region.First, Region.Last); loop exit when not Has_Element (Cache_Cur); if Data.Navigate_Caches (Cache_Cur).Pos > Region.Last then Cache_Cur := No_Element; exit; elsif Data.Navigate_Caches (Cache_Cur).ID = Param.ID and not Data.Navigate_Caches (Cache_Cur).Prev_Pos.Set then Skip := False; exit; end if; Cache_Cur := Next (Iter, Cache_Cur); end loop; end if; end case; if not Skip then if not Has_Element (Cache_Cur) then raise Fatal_Error with Error_Message (File_Name => Data.Lexer.File_Name, Line => Token.Line, Column => Token.Column, Message => "wisi-motion-action: token " & WisiToken.Image (Token.ID, Data.Descriptor.all) & " has no cache; add to statement-action for " & Trimmed_Image (Tree.Production_ID (Nonterm)) & "."); end if; if Has_Element (Prev_Cache_Cur) then declare Cache : Navigate_Cache_Type renames Data.Navigate_Caches (Cache_Cur); Prev_Cache : Navigate_Cache_Type renames Data.Navigate_Caches (Prev_Cache_Cur); begin if not Cache.Prev_Pos.Set then Cache.Prev_Pos := (True, Prev_Cache.Pos); if WisiToken.Trace_Action > Detail then Ada.Text_IO.Put_Line (" " & Cache.Pos'Image & " prev to " & Cache.Prev_Pos.Item'Image); end if; end if; if not Prev_Cache.Next_Pos.Set then Prev_Cache.Next_Pos := (True, Cache.Pos); if WisiToken.Trace_Action > Detail then Ada.Text_IO.Put_Line (" " & Prev_Cache.Pos'Image & " next to " & Prev_Cache.Next_Pos.Item'Image); end if; end if; end; end if; loop -- Set Prev_Cache_Cur to last motion cache in nonterm chain exit when not Data.Navigate_Caches (Cache_Cur).Next_Pos.Set; Cache_Cur := Find (Iter, Data.Navigate_Caches (Cache_Cur).Next_Pos.Item); pragma Assert (Has_Element (Cache_Cur)); -- otherwise there's a bug in this subprogram. end loop; Prev_Cache_Cur := Cache_Cur; end if; end; end if; end loop; end Motion_Action; procedure Face_Apply_Action (Data : in out Parse_Data_Type; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Params : in Face_Apply_Param_Array) is pragma Unreferenced (Nonterm); use Face_Cache_Trees; Iter : constant Iterator := Data.Face_Caches.Iterate; Cache_Cur : Cursor; Suffix_Cur : Cursor; begin for Param of Params loop if Tree.Byte_Region (Tokens (Param.Index)) /= Null_Buffer_Region then declare Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (Param.Index)); begin Cache_Cur := Find (Iter, Token.Char_Region.First, Direction => Ascending); if Has_Element (Cache_Cur) then declare Cache : Face_Cache_Type renames Data.Face_Caches (Cache_Cur); begin case Cache.Class is when Prefix => Cache.Face := (True, Param.Prefix_Face); -- Check for suffix Suffix_Cur := Next (Iter, Cache_Cur); if Has_Element (Suffix_Cur) then declare Suf_Cache : Face_Cache_Type renames Data.Face_Caches (Suffix_Cur); begin if Suffix = Suf_Cache.Class and Inside (Suf_Cache.Char_Region.First, Token.Char_Region) then Suf_Cache.Face := (True, Param.Suffix_Face); end if; end; end if; when Suffix => Cache.Face := (True, Param.Suffix_Face); end case; end; else Data.Face_Caches.Insert ((Token.Char_Region, Suffix, (True, Param.Suffix_Face))); end if; end; end if; end loop; end Face_Apply_Action; procedure Face_Apply_List_Action (Data : in out Parse_Data_Type; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Params : in Face_Apply_Param_Array) is pragma Unreferenced (Nonterm); use Face_Cache_Trees; Iter : constant Iterator := Data.Face_Caches.Iterate; Cache_Cur : Cursor; begin for Param of Params loop if Tree.Byte_Region (Tokens (Param.Index)) /= Null_Buffer_Region then declare Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (Param.Index)); begin Cache_Cur := Find_In_Range (Iter, Ascending, Token.Char_Region.First, Token.Char_Region.Last); loop exit when not Has_Element (Cache_Cur) or else Data.Face_Caches (Cache_Cur).Char_Region.First > Token.Char_Region.Last; declare Cache : Face_Cache_Type renames Data.Face_Caches (Cache_Cur); begin case Cache.Class is when Prefix => Cache.Face := (True, Param.Prefix_Face); when Suffix => Cache.Face := (True, Param.Suffix_Face); end case; end; Cache_Cur := Next (Iter, Cache_Cur); end loop; end; end if; end loop; end Face_Apply_List_Action; procedure Face_Mark_Action (Data : in out Parse_Data_Type; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Params : in Face_Mark_Param_Array) is pragma Unreferenced (Nonterm); use Face_Cache_Trees; Iter : constant Iterator := Data.Face_Caches.Iterate; Cache_Cur : Cursor; begin for Param of Params loop if Tree.Byte_Region (Tokens (Param.Index)) /= Null_Buffer_Region then declare Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (Param.Index)); begin Cache_Cur := Find (Iter, Token.Char_Region.First, Direction => Ascending); if Has_Element (Cache_Cur) then declare Cache : Face_Cache_Type renames Data.Face_Caches (Cache_Cur); Other_Cur : Cursor := Find_In_Range (Iter, Ascending, Cache.Char_Region.Last + 1, Token.Char_Region.Last); Temp : Cursor; begin loop exit when not Has_Element (Other_Cur) or else Data.Face_Caches (Other_Cur).Char_Region.First > Token.Char_Region.Last; Temp := Other_Cur; Other_Cur := Next (Iter, Other_Cur); Delete (Data.Face_Caches, Temp); end loop; Cache.Class := Param.Class; Cache.Char_Region.Last := Token.Char_Region.Last; end; else Data.Face_Caches.Insert ((Token.Char_Region, Param.Class, (Set => False))); end if; end; end if; end loop; end Face_Mark_Action; procedure Face_Remove_Action (Data : in out Parse_Data_Type; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Params : in Face_Remove_Param_Array) is pragma Unreferenced (Nonterm); use Face_Cache_Trees; Iter : constant Iterator := Data.Face_Caches.Iterate; Cache_Cur : Cursor; Temp : Cursor; begin for I of Params loop if Tree.Byte_Region (Tokens (I)) /= Null_Buffer_Region then declare Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (I)); begin Cache_Cur := Find_In_Range (Iter, Ascending, Token.Char_Region.First, Token.Char_Region.Last); loop exit when not Has_Element (Cache_Cur) or else Data.Face_Caches (Cache_Cur).Char_Region.First > Token.Char_Region.Last; Temp := Cache_Cur; Cache_Cur := Next (Iter, Cache_Cur); Delete (Data.Face_Caches, Temp); end loop; end; end if; end loop; end Face_Remove_Action; function "+" (Item : in Integer) return Indent_Arg_Arrays.Vector is begin return Result : Indent_Arg_Arrays.Vector do Result.Append (Item); end return; end "+"; function "&" (List : in Indent_Arg_Arrays.Vector; Item : in Integer) return Indent_Arg_Arrays.Vector is begin return Result : Indent_Arg_Arrays.Vector := List do Result.Append (Item); end return; end "&"; function "&" (Left, Right : in Integer) return Indent_Arg_Arrays.Vector is begin return Result : Indent_Arg_Arrays.Vector do Result.Append (Left); Result.Append (Right); end return; end "&"; function Image (Item : in Simple_Indent_Param) return String is begin return "(" & Simple_Indent_Param_Label'Image (Item.Label) & (case Item.Label is when None => "", when Int => Integer'Image (Item.Int_Delta), when Anchored_Label => Positive_Index_Type'Image (Item.Anchored_Index) & "," & Integer'Image (Item.Anchored_Delta), when Language => "<language_function>") & ")"; end Image; function Image (Item : in Indent_Param) return String is begin return "(" & Indent_Param_Label'Image (Item.Label) & ", " & (case Item.Label is when Simple => Image (Item.Param), when Hanging_Label => Image (Item.Hanging_Delta_1) & ", " & Image (Item.Hanging_Delta_2) & ")"); end Image; function Image (Item : in Indent_Pair) return String is begin return "(" & Image (Item.Code_Delta) & (if Item.Comment_Present then ", " & Image (Item.Comment_Delta) else "") & ")"; end Image; procedure Indent_Action_0 (Data : in out Parse_Data_Type'Class; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Params : in Indent_Param_Array) is begin if Trace_Action > Outline then Ada.Text_IO.Put_Line (";; indent_action_0: " & Tree.Image (Nonterm, Data.Descriptor.all)); end if; for I in Tokens'Range loop if Tree.Byte_Region (Tokens (I)) /= Null_Buffer_Region and I in Params'Range -- in some translated EBNF, not every token has an indent param then declare use all type WisiToken.Syntax_Trees.Node_Index; use all type SAL.Base_Peek_Type; Tree_Token : constant Syntax_Trees.Valid_Node_Index := Tokens (I); Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tree_Token); Pair : Indent_Pair renames Params (I); Code_Delta : Delta_Type; Comment_Param : Indent_Param; Comment_Param_Set : Boolean := False; Comment_Delta : Delta_Type; begin if Trace_Action > Detail then Ada.Text_IO.Put_Line (";; indent_action_0 a: " & Tree.Image (Tree_Token, Data.Descriptor.all) & ": " & Image (Pair)); end if; if Token.First_Indent_Line /= Invalid_Line_Number then Code_Delta := Indent_Compute_Delta (Data, Tree, Tokens, Pair.Code_Delta, Tree_Token, Indenting_Comment => False); Indent_Token_1 (Data, Token, Code_Delta, Indenting_Comment => False); end if; if Token.First_Trailing_Comment_Line /= Invalid_Line_Number then if Pair.Comment_Present then Comment_Param := Pair.Comment_Delta; Comment_Param_Set := True; elsif I < Tokens'Last then Comment_Param := Params (I + 1).Code_Delta; Comment_Param_Set := True; end if; if Comment_Param_Set then Comment_Delta := Indent_Compute_Delta (Data, Tree, Tokens, Comment_Param, Tree_Token, Indenting_Comment => True); Indent_Token_1 (Data, Token, Comment_Delta, Indenting_Comment => True); end if; end if; end; end if; end loop; end Indent_Action_0; procedure Indent_Action_1 (Data : in out Parse_Data_Type'Class; Tree : in Syntax_Trees.Tree; Nonterm : in Syntax_Trees.Valid_Node_Index; Tokens : in Syntax_Trees.Valid_Node_Index_Array; N : in Positive_Index_Type; Params : in Indent_Param_Array) is use all type Syntax_Trees.Node_Label; begin for I in Tokens'First .. N loop if Tree.Label (Tokens (I)) /= Virtual_Terminal and then Get_Aug_Token (Data, Tree, Tokens (I)).First then Indent_Action_0 (Data, Tree, Nonterm, Tokens, Params); return; end if; end loop; end Indent_Action_1; function Indent_Hanging_1 (Data : in out Parse_Data_Type; Tree : in Syntax_Trees.Tree; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Tree_Indenting : in Syntax_Trees.Valid_Node_Index; Indenting_Comment : in Boolean; Delta_1 : in Simple_Indent_Param; Delta_2 : in Simple_Indent_Param; Option : in Boolean; Accumulate : in Boolean) return Delta_Type is Indenting_Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tree_Indenting); begin if Indenting_Comment then return Indent_Compute_Delta (Data, Tree, Tokens, (Simple, Delta_1), Tree_Indenting, Indenting_Comment); else return (Hanging, Hanging_First_Line => Indenting_Token.Line, Hanging_Paren_State => Indenting_Token.Paren_State, Hanging_Delta_1 => Indent_Compute_Delta (Data, Tree, Tokens, (Simple, Delta_1), Tree_Indenting, Indenting_Comment).Simple_Delta, Hanging_Delta_2 => (if (not Option) or Indenting_Token.Line = Indenting_Token.First_Indent_Line -- first token in tok is first on line then Indent_Compute_Delta (Data, Tree, Tokens, (Simple, Delta_2), Tree_Indenting, Indenting_Comment).Simple_Delta else Indent_Compute_Delta (Data, Tree, Tokens, (Simple, Delta_1), Tree_Indenting, Indenting_Comment).Simple_Delta), Hanging_Accumulate => Accumulate); end if; end Indent_Hanging_1; procedure Put_Language_Action (Data : in Parse_Data_Type; Content : in String) is pragma Unreferenced (Data); begin Ada.Text_IO.Put_Line ("[" & Language_Action_Code & Content & "]"); end Put_Language_Action; procedure Put (Data : in out Parse_Data_Type; Parser : in Parse.Base_Parser'Class) is use all type Ada.Containers.Count_Type; Last_Term : constant Base_Token_Index := Parser.Tree.Max_Terminal_Index (Parser.Tree.Root); function Get_Last_Char_Pos return Buffer_Pos is begin if Parser.Terminals.Length = 0 then -- All comments, or empty if Data.Leading_Non_Grammar.Length > 0 then return Data.Leading_Non_Grammar (Data.Leading_Non_Grammar.Last_Index).Char_Region.Last; else return Buffer_Pos'First; end if; else if Last_Term = Invalid_Token_Index then -- All grammar tokens inserted by recover if Data.Leading_Non_Grammar.Length > 0 then return Data.Leading_Non_Grammar (Data.Leading_Non_Grammar.Last_Index).Char_Region.Last; else return Buffer_Pos'First; end if; else if Data.Terminals (Last_Term).Non_Grammar.Length > 0 then return Data.Terminals (Last_Term).Non_Grammar (Data.Terminals (Last_Term).Non_Grammar.Last_Index).Char_Region.Last; else return Parser.Terminals (Last_Term).Char_Region.Last; end if; end if; end if; end Get_Last_Char_Pos; Last_Char_Pos : constant Buffer_Pos := Get_Last_Char_Pos; function Get_Last_Line return Line_Number_Type is begin for I in Data.Line_Begin_Pos.First_Index .. Data.Line_Begin_Pos.Last_Index loop if Data.Line_Begin_Pos (I) = Invalid_Buffer_Pos then raise SAL.Programmer_Error with "line_begin_pos" & Line_Number_Type'Image (I) & " invalid"; end if; if Data.Line_Begin_Pos (I) > Last_Char_Pos then if I > Line_Number_Type'First then return I - 1; else return I; end if; end if; end loop; return Data.Line_Begin_Pos.Last_Index; end Get_Last_Line; begin if Trace_Action > Outline then Ada.Text_IO.Put_Line (";; last_char_pos:" & Buffer_Pos'Image (Last_Char_Pos + 1) & " last_line:" & Line_Number_Type'Image (Get_Last_Line)); end if; -- +1 to match Emacs region Ada.Text_IO.Put_Line ('[' & End_Code & Buffer_Pos'Image (Last_Char_Pos + 1) & ']'); case Data.Post_Parse_Action is when Navigate => for Cache of Data.Navigate_Caches loop Put (Cache); end loop; for Cache of Data.Name_Caches loop Put (Cache); end loop; when Face => for Cache of Data.Face_Caches loop Put (Cache); end loop; when Indent => Resolve_Anchors (Data); if Trace_Action > Outline then Ada.Text_IO.Put_Line (";; indent leading non_grammar"); end if; for Token of Data.Leading_Non_Grammar loop if Token.First then Put (Token.Line, (Int, Data.Begin_Indent)); end if; end loop; -- It may be that not all lines in Data.Indents were parsed. if Trace_Action > Outline then Ada.Text_IO.Put_Line (";; indent grammar"); end if; for I in Data.Indents.First_Index .. Get_Last_Line loop Put (I, Data.Indents (I)); end loop; end case; end Put; procedure Put (Lexer_Errors : in Lexer.Error_Lists.List) is begin for Item of Lexer_Errors loop Ada.Text_IO.Put_Line ('[' & Lexer_Error_Code & Buffer_Pos'Image (Item.Char_Pos) & " ""lexer error" & (if Item.Recover_Char (1) = ASCII.NUL then """" elsif Item.Recover_Char (1) = '"' then """ ?\""" else """ ?" & Item.Recover_Char (1)) & "]"); if Item.Recover_Char (2) /= ASCII.NUL then raise SAL.Programmer_Error with "lexer error with non-ascii or multiple repair char"; end if; end loop; end Put; procedure Put (Data : in Parse_Data_Type; Lexer_Errors : in Lexer.Error_Lists.List; Parse_Errors : in Parse.LR.Parse_Error_Lists.List; Tree : in Syntax_Trees.Tree) is use all type SAL.Base_Peek_Type; use Ada.Text_IO; use Semantic_Checks; function Safe_Pos (Node : in Syntax_Trees.Valid_Node_Index) return Buffer_Pos is -- Return a reasonable position for the error at Node. -- -- In a successful parse with error recovery, Node is a terminal with -- an augmented token in Data.Terminals, so that is the first -- choice. -- -- If this is an error due to a bad recovery, Node may be a virtual -- token, with no position information, so we try to get information -- from its parent. use Syntax_Trees; N : Node_Index := Node; begin loop if Tree.Label (N) /= Virtual_Terminal then declare Ref : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, N); begin if Ref.Char_Region /= Null_Buffer_Region then return Ref.Element.Char_Region.First; end if; end; end if; N := Tree.Parent (N); exit when N = Invalid_Node_Index; end loop; return Buffer_Pos'First; end Safe_Pos; function Safe_Pos (Token : in Recover_Token) return Buffer_Pos is begin if Token.Name /= Null_Buffer_Region then return Token.Name.First; elsif Token.Byte_Region = Null_Buffer_Region then return Buffer_Pos'First; else return Token.Byte_Region.First; end if; end Safe_Pos; begin Put (Lexer_Errors); for Item of Parse_Errors loop case Item.Label is when Parse.LR.Action => Put_Line ('[' & Parser_Error_Code & Buffer_Pos'Image (Safe_Pos (Item.Error_Token)) & " ""syntax error: expecting " & Image (Item.Expecting, Data.Descriptor.all) & ", found '" & Image (Tree.ID (Item.Error_Token), Data.Descriptor.all) & "'""]"); when Parse.LR.Check => Put_Line ('[' & Check_Error_Code & Integer'Image (Semantic_Checks.Check_Status_Label'Pos (Item.Check_Status.Label)) & (case Item.Check_Status.Label is when Ok => "", when Error => Buffer_Pos'Image (Safe_Pos (Item.Check_Status.Begin_Name)) & Buffer_Pos'Image (Safe_Pos (Item.Check_Status.End_Name)) & " ""block name error""]")); when Parse.LR.Message => Put_Line ('[' & Parser_Error_Code & Buffer_Pos'Image (Buffer_Pos'First) & " """ & (-Item.Msg) & """]"); end case; if Item.Recover.Stack.Depth > 0 then Put (Item.Recover, Data.Terminals, Data.Descriptor.all, Data.Embedded_Quote_Escape_Doubled); end if; end loop; end Put; procedure Put_Error (Data : in Parse_Data_Type; Line_Number : in Line_Number_Type; Message : in String) is use Ada.Text_IO; begin Put_Line ("(error """ & Error_Message (Data.Lexer.File_Name, Line_Number, 0, Message) & """)"); end Put_Error; ---------- -- Spec visible private subprograms, alphabetical function Image (Item : in Simple_Delta_Type) return String is begin return "(" & Simple_Delta_Labels'Image (Item.Label) & (case Item.Label is when None => "", when Int => Integer'Image (Item.Int_Delta), when Anchored => Integer'Image (Item.Anchored_ID) & Integer'Image (Item.Anchored_Delta) & " " & Boolean'Image (Item.Anchored_Accumulate)) & ")"; end Image; function Image (Item : in Delta_Type) return String is begin return "(" & Delta_Labels'Image (Item.Label) & (case Item.Label is when Simple => " " & Image (Item.Simple_Delta), when Hanging => Line_Number_Type'Image (Item.Hanging_First_Line) & Integer'Image (Item.Hanging_Paren_State) & " " & Image (Item.Hanging_Delta_1) & " " & Image (Item.Hanging_Delta_2) & " " & Boolean'Image (Item.Hanging_Accumulate)) & ")"; end Image; function Current_Indent_Offset (Data : in Parse_Data_Type; Anchor_Token : in Augmented_Token'Class; Offset : in Integer) return Integer is begin return Offset + Integer (Anchor_Token.Char_Region.First - Data.Line_Begin_Pos (Anchor_Token.Line)); end Current_Indent_Offset; function Find (Data : in Parse_Data_Type; ID : in Token_ID; Token : in Augmented_Token'Class) return Base_Token_Index is begin -- linear search for ID. for I in Token.First_Terminals_Index .. Token.Last_Terminals_Index loop if Data.Terminals (I).ID = ID then return I; end if; end loop; return Augmented_Token_Arrays.No_Index; end Find; function First_Line (Token : in Augmented_Token; Indenting_Comment : in Boolean) return Line_Number_Type is begin return (if Indenting_Comment then (if Token.First_Trailing_Comment_Line = Invalid_Line_Number then Token.Line else Token.First_Trailing_Comment_Line) else (if Token.First_Indent_Line = Invalid_Line_Number then Token.Line else Token.First_Indent_Line)); end First_Line; function Get_Aug_Token (Data : in Parse_Data_Type'Class; Tree : in Syntax_Trees.Tree'Class; Tree_Index : in Syntax_Trees.Valid_Node_Index) return Aug_Token_Ref is use all type Syntax_Trees.Node_Label; begin return (case Tree.Label (Tree_Index) is when Shared_Terminal => To_Aug_Token_Ref (Data.Terminals (Tree.Terminal (Tree_Index))), when Virtual_Terminal => raise SAL.Programmer_Error with "wisi_runtime.get_aug_token virtual terminal", when Virtual_Identifier => raise SAL.Programmer_Error with "wisi_runtime.get_aug_token virtual identifier", when Nonterm => To_Aug_Token_Ref (Tree.Augmented (Tree_Index))); end Get_Aug_Token; function Get_Text (Data : in Parse_Data_Type; Tree : in WisiToken.Syntax_Trees.Tree; Tree_Index : in WisiToken.Syntax_Trees.Valid_Node_Index) return String is use all type Syntax_Trees.Node_Label; begin case Tree.Label (Tree_Index) is when Shared_Terminal | Nonterm => return Data.Lexer.Buffer_Text (Tree.Byte_Region (Tree_Index)); when Virtual_Terminal | Virtual_Identifier => raise SAL.Programmer_Error; end case; end Get_Text; function Elisp_Escape_Quotes (Item : in String) return String is Result : String (Item'First .. Item'First + Item'Length * 2); Last : Integer := Item'First - 1; begin for I in Item'Range loop if Item (I) = '"' then Last := Last + 1; Result (Last) := '\'; end if; Last := Last + 1; Result (Last) := Item (I); end loop; return Result (Result'First .. Last); end Elisp_Escape_Quotes; overriding function Image (Item : in Augmented_Token; Descriptor : in WisiToken.Descriptor) return String is ID_Image : constant String := Image (Item.ID, Descriptor); begin if Item.Line /= Invalid_Line_Number and Trace_Action <= Detail then return "(" & ID_Image & Line_Number_Type'Image (Item.Line) & ":" & Trimmed_Image (Integer (Item.Column)) & ")"; elsif Item.Char_Region = Null_Buffer_Region then return "(" & ID_Image & ")"; else return "(" & ID_Image & ", " & Image (Item.Char_Region) & ")"; end if; end Image; function Indent_Anchored_2 (Data : in out Parse_Data_Type; Anchor_Line : in Line_Number_Type; Last_Line : in Line_Number_Type; Offset : in Integer; Accumulate : in Boolean) return Delta_Type is -- Return an anchored delta use Anchor_ID_Vectors; -- We can't use a Reference here, because the Element in reference -- types is constrained (as are all allocated objects of access -- types; AARM 4.8 (6/3)), and we may need to change the Label. Indent : Indent_Type := Data.Indents (Anchor_Line); Anchor_ID : constant Integer := 1 + Max_Anchor_ID (Data, Anchor_Line, Last_Line); begin Data.Max_Anchor_ID := Integer'Max (Data.Max_Anchor_ID, Anchor_ID); case Indent.Label is when Not_Set => Indent := (Anchor_Nil, To_Vector (Anchor_ID, 1)); if Trace_Action > Extra then Ada.Text_IO.Put_Line (";; indent_anchored: " & Line_Number_Type'Image (Anchor_Line) & " => " & Image (Indent)); end if; when Int => Indent := (Anchor_Int, To_Vector (Anchor_ID, 1), Indent.Int_Indent); if Trace_Action > Extra then Ada.Text_IO.Put_Line (";; indent_anchored: " & Line_Number_Type'Image (Anchor_Line) & " => " & Image (Indent)); end if; when Anchor_Nil => Indent.Anchor_Nil_IDs := Anchor_ID & Indent.Anchor_Nil_IDs; when Anchor_Int => Indent.Anchor_Int_IDs := Anchor_ID & Indent.Anchor_Int_IDs; when Anchored => Indent := (Anchor_Anchored, To_Vector (Anchor_ID, 1), Indent.Anchored_ID, Indent.Anchored_Delta); when Anchor_Anchored => Indent.Anchor_Anchored_IDs := Anchor_ID & Indent.Anchor_Anchored_IDs; end case; Data.Indents.Replace_Element (Anchor_Line, Indent); return (Simple, (Anchored, Anchor_ID, Offset, Accumulate)); end Indent_Anchored_2; function Indent_Compute_Delta (Data : in out Parse_Data_Type'Class; Tree : in Syntax_Trees.Tree; Tokens : in Syntax_Trees.Valid_Node_Index_Array; Param : in Indent_Param; Tree_Indenting : in Syntax_Trees.Valid_Node_Index; Indenting_Comment : in Boolean) return Delta_Type is Indenting_Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tree_Indenting); begin -- Evaluate wisi-anchored*, wisi-hanging*. case Param.Label is when Simple => case Param.Param.Label is when None => return (Simple, (Label => None)); when Int => return (Simple, (Int, Param.Param.Int_Delta)); when Anchored_Label => if Indenting_Token.Byte_Region = Null_Buffer_Region or Tree.Byte_Region (Tokens (Param.Param.Anchored_Index)) = Null_Buffer_Region then -- One of these is an entirely virtual token return Null_Delta; else declare Anchor_Token : constant Aug_Token_Ref := Get_Aug_Token (Data, Tree, Tokens (Param.Param.Anchored_Index)); begin case Anchored_Label'(Param.Param.Label) is when Anchored_0 => -- [2] wisi-anchored return Indent_Anchored_2 (Data, Anchor_Line => Anchor_Token.Line, Last_Line => Indenting_Token.Last_Line (Indenting_Comment), Offset => Current_Indent_Offset (Data, Anchor_Token, Param.Param.Anchored_Delta), Accumulate => True); when Anchored_1 => -- [2] wisi-anchored% return Indent_Anchored_2 (Data, Anchor_Line => Anchor_Token.Line, Last_Line => Indenting_Token.Last_Line (Indenting_Comment), Offset => Paren_In_Anchor_Line (Data, Anchor_Token, Param.Param.Anchored_Delta), Accumulate => True); when Anchored_2 => -- [2] wisi-anchored%- return Indent_Anchored_2 (Data, Anchor_Line => Anchor_Token.Line, Last_Line => Indenting_Token.Last_Line (Indenting_Comment), Offset => Paren_In_Anchor_Line (Data, Anchor_Token, Param.Param.Anchored_Delta), Accumulate => False); when Anchored_3 => -- [2] wisi-anchored* if Indenting_Token.First then return Indent_Anchored_2 (Data, Anchor_Line => Anchor_Token.Line, Last_Line => Indenting_Token.Last_Line (Indenting_Comment), Offset => Current_Indent_Offset (Data, Anchor_Token, Param.Param.Anchored_Delta), Accumulate => True); else return Null_Delta; end if; when Anchored_4 => -- [2] wisi-anchored*- return Indent_Anchored_2 (Data, Anchor_Line => Anchor_Token.Line, Last_Line => Indenting_Token.Last_Line (Indenting_Comment), Offset => Current_Indent_Offset (Data, Anchor_Token, Param.Param.Anchored_Delta), Accumulate => False); end case; end; end if; when Language => return Param.Param.Function_Ptr (Data, Tree, Tokens, Tree_Indenting, Indenting_Comment, Param.Param.Args); end case; when Hanging_Label => case Hanging_Label'(Param.Label) is when Hanging_0 => -- wisi-hanging return Indent_Hanging_1 (Data, Tree, Tokens, Tree_Indenting, Indenting_Comment, Param.Hanging_Delta_1, Param.Hanging_Delta_2, Option => False, Accumulate => True); when Hanging_1 => -- wisi-hanging- return Indent_Hanging_1 (Data, Tree, Tokens, Tree_Indenting, Indenting_Comment, Param.Hanging_Delta_1, Param.Hanging_Delta_2, Option => False, Accumulate => False); when Hanging_2 => -- wisi-hanging% return Indent_Hanging_1 (Data, Tree, Tokens, Tree_Indenting, Indenting_Comment, Param.Hanging_Delta_1, Param.Hanging_Delta_2, Option => True, Accumulate => True); when Hanging_3 => -- wisi-hanging%- return Indent_Hanging_1 (Data, Tree, Tokens, Tree_Indenting, Indenting_Comment, Param.Hanging_Delta_1, Param.Hanging_Delta_2, Option => True, Accumulate => False); end case; end case; end Indent_Compute_Delta; procedure Indent_Token_1 (Data : in out Parse_Data_Type; Indenting_Token : in Augmented_Token'Class; Delta_Indent : in Delta_Type; Indenting_Comment : in Boolean) is -- Aplly Delta_Indent to Indenting_Token First_Line : constant Line_Number_Type := Indenting_Token.First_Line (Indenting_Comment); Last_Line : constant Line_Number_Type := Indenting_Token.Last_Line (Indenting_Comment); begin if Trace_Action > Detail then Ada.Text_IO.Put_Line (";; indent_token_1: " & Indenting_Token.Image (Data.Descriptor.all) & " " & Image (Delta_Indent) & Line_Number_Type'Image (First_Line) & " .." & Line_Number_Type'Image (Last_Line) & (if Indenting_Comment then " comment" else "")); end if; for Line in First_Line .. Last_Line loop if Data.Indent_Comment_Col_0 then declare use all type Ada.Text_IO.Count; function Containing_Token return Base_Token_Index is -- Return token index of terminal containing non_grammer on Line; -- Invalid_Token_Index if none. I : Line_Number_Type := Line; J : Base_Token_Index; begin if Line < Data.Line_Begin_Token.First_Index then -- Line is before first grammar token; Leading_Non_Grammar checked -- below. return Invalid_Token_Index; end if; loop exit when Data.Line_Begin_Token.all (I) /= Augmented_Token_Arrays.No_Index; -- No_Index means Line is in a multi-line token, which could be a block comment. I := I - 1; end loop; J := Data.Line_Begin_Token.all (I); if Line in Data.Terminals (J).First_Trailing_Comment_Line .. Data.Terminals (J).Last_Trailing_Comment_Line then return J; else return Invalid_Token_Index; end if; end Containing_Token; Indent : Boolean := True; Containing : constant Base_Token_Index := Containing_Token; begin if Line < Data.Line_Begin_Token.First_Index then -- Line is before the first grammar token. We may be doing a partial -- parse where the initial indent is non-zero, so we still have to -- check for column 0. for Tok of Data.Leading_Non_Grammar loop if Tok.Line = Line and then Tok.ID in Data.First_Comment_ID .. Data.Last_Comment_ID and then Tok.Column = 0 then Indent := False; exit; end if; end loop; elsif Containing /= Invalid_Token_Index then for Tok of Data.Terminals (Containing).Non_Grammar loop if Tok.Line = Line and then Tok.ID in Data.First_Comment_ID .. Data.Last_Comment_ID and then Tok.Column = 0 then Indent := False; exit; end if; end loop; end if; if Indent then Indent_Line (Data, Line, Delta_Indent); else Indent_Line (Data, Line, (Simple, (Int, 0))); end if; end; else Indent_Line (Data, Line, Delta_Indent); end if; end loop; end Indent_Token_1; function Last_Line (Token : in Augmented_Token; Indenting_Comment : in Boolean) return Line_Number_Type is begin return (if Indenting_Comment then (if Token.Last_Trailing_Comment_Line = Invalid_Line_Number then Token.Line else Token.Last_Trailing_Comment_Line) else (if Token.Last_Indent_Line = Invalid_Line_Number then Token.Line else Token.Last_Indent_Line)); end Last_Line; end Wisi;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>linebuffer_Loop_1_pr</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_axi_stream_V_value_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned char, 1, 1, 1, 1&amp;gt; &amp;gt;.V.value.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>in_axi_stream_V_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned char, 1, 1, 1, 1&amp;gt; &amp;gt;.V.last.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>in_stream_V_value_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>6</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>24</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>8</id> <name>indvar_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>36</item> <item>37</item> <item>38</item> <item>39</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>9</id> <name>exitcond_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>exitcond_flatten_fu_74_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>40</item> <item>42</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>10</id> <name>indvar_flatten_next</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>indvar_flatten_next_fu_80_p2</rtlName> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>43</item> <item>45</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>11</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>46</item> <item>47</item> <item>48</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>16</id> <name>empty_21</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>554</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>554</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>26</item> <item>27</item> <item>28</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>554</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>554</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>29</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>18</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>554</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>554</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>31</item> <item>32</item> <item>33</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>20</id> <name/> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>552</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned char&amp;gt;</second> </first> <second>552</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>34</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_14"> <Value> <Obj> <type>2</type> <id>35</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_15"> <Value> <Obj> <type>2</type> <id>41</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>2073600</content> </item> <item class_id_reference="16" object_id="_16"> <Value> <Obj> <type>2</type> <id>44</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_17"> <Obj> <type>3</type> <id>7</id> <name>newFuncRoot</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>6</item> </node_objs> </item> <item class_id_reference="18" object_id="_18"> <Obj> <type>3</type> <id>12</id> <name>.preheader.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>10</item> <item>11</item> </node_objs> </item> <item class_id_reference="18" object_id="_19"> <Obj> <type>3</type> <id>21</id> <name>.preheader4.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>16</item> <item>17</item> <item>18</item> <item>20</item> </node_objs> </item> <item class_id_reference="18" object_id="_20"> <Obj> <type>3</type> <id>23</id> <name>.critedge.exitStub</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>22</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_21"> <id>24</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_22"> <id>27</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_23"> <id>28</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_24"> <id>29</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_25"> <id>32</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_26"> <id>33</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_27"> <id>34</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_28"> <id>36</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_29"> <id>37</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_30"> <id>38</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_31"> <id>39</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_32"> <id>40</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_33"> <id>42</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_34"> <id>43</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_35"> <id>45</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_36"> <id>46</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_37"> <id>47</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_38"> <id>48</id> <edge_type>2</edge_type> <source_obj>23</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_39"> <id>108</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_40"> <id>109</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_41"> <id>110</id> <edge_type>2</edge_type> <source_obj>12</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_42"> <id>111</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>12</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_43"> <mId>1</mId> <mTag>linebuffer_Loop_1_pr</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2073602</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_44"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>7</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_45"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>12</item> <item>21</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>2073600</mMinTripCount> <mMaxTripCount>2073600</mMaxTripCount> <mMinLatency>2073600</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_46"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>23</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_47"> <states class_id="25" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_48"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_49"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_50"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_51"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_52"> <id>2</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_53"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_54"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_55"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_56"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_57"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_58"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_59"> <id>3</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_60"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_61"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_62"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_63"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_64"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_65"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_66"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_67"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_68"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>12</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_69"> <inState>3</inState> <outState>2</outState> <condition> <id>20</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_70"> <inState>2</inState> <outState>4</outState> <condition> <id>19</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>9</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_71"> <inState>2</inState> <outState>3</outState> <condition> <id>21</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>9</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_72"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>9</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>ap_block_pp0_stage0_flag00001001 ( or ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state2_pp0_stage0_iter0 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3_pp0_stage0_iter1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond_flatten_fu_74_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>21</second> </item> <item> <first>(1P1)</first> <second>16</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>indvar_flatten_next_fu_80_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>21</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>68</second> </item> <item> <first>LUT</first> <second>26</second> </item> </second> </item> <item> <first>start_write ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>8</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>21</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>in_axi_stream_V_last_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>in_axi_stream_V_value_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>in_stream_V_value_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>indvar_flatten_reg_63</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>21</second> </item> <item> <first>(2Count)</first> <second>42</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>real_start</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>10</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>exitcond_flatten_reg_90</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>indvar_flatten_reg_63</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>21</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>21</second> </item> </second> </item> <item> <first>real_start_status_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>start_control_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>start_once_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_value_V_reg_99</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>8</second> </item> </second> </item> </dp_register_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>2</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>exitcond_flatten_fu_74_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_next_fu_80_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>6</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>7</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>23</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_73"> <region_name>Loop 1</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>12</item> <item>21</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>48</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>56</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>67</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>74</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>80</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>86</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>exitcond_flatten_fu_74</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_next_fu_80</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_phi_fu_67</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>tmp_value_V_fu_86</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>StgValue_17_write_fu_56</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>empty_21_read_fu_48</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>4</count> <item_version>0</item_version> <item> <first>63</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>90</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>94</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>99</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>4</count> <item_version>0</item_version> <item> <first>exitcond_flatten_reg_90</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_next_reg_94</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>indvar_flatten_reg_63</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>tmp_value_V_reg_99</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>63</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>indvar_flatten_reg_63</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="57" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>in_axi_stream_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </second> </item> <item> <first>in_axi_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> </second> </item> <item> <first>in_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="59" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>3</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
------------------------------------------------------------------------------ -- Copyright (c) 2015, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ package body Natools.File_Streams is overriding procedure Finalize (Object : in out Autoclose) is begin if Stream_IO.Is_Open (Object.Backend) then Stream_IO.Close (Object.Backend); end if; end Finalize; not overriding function Form (File : in File_Stream) return String is begin return Stream_IO.Form (File.Internal.Backend); end Form; not overriding function Create (Mode : in Stream_IO.File_Mode := Stream_IO.Out_File; Name : in String := ""; Form : in String := "") return File_Stream is begin return Result : File_Stream do Stream_IO.Create (Result.Internal.Backend, Mode, Name, Form); end return; end Create; not overriding function Mode (File : in File_Stream) return Stream_IO.File_Mode is begin return Stream_IO.Mode (File.Internal.Backend); end Mode; not overriding function Name (File : in File_Stream) return String is begin return Stream_IO.Name (File.Internal.Backend); end Name; not overriding function Open (Mode : in Stream_IO.File_Mode; Name : in String; Form : in String := "") return File_Stream is begin return Result : File_Stream do Stream_IO.Open (Result.Internal.Backend, Mode, Name, Form); end return; end Open; overriding procedure Read (Stream : in out File_Stream; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is pragma Unmodified (Stream); begin Stream_IO.Read (Stream.Internal.Backend, Item, Last); end Read; overriding procedure Write (Stream : in out File_Stream; Item : in Ada.Streams.Stream_Element_Array) is pragma Unmodified (Stream); begin Stream_IO.Write (Stream.Internal.Backend, Item); end Write; end Natools.File_Streams;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.Listener_Registry; package body AMF.Listeners is -------------------------------- -- Register_Instance_Listener -- -------------------------------- procedure Register_Instance_Listener (Listener : not null Listener_Access; Instance : not null AMF.Elements.Element_Access) renames AMF.Internals.Listener_Registry.Register_Instance_Listener; ----------------------- -- Register_Listener -- ----------------------- procedure Register_Listener (Listener : not null Listener_Access) renames AMF.Internals.Listener_Registry.Register_Listener; end AMF.Listeners;
-- This file is generated by SWIG. Please do *not* modify by hand. -- with gmp_c.Pointers; with Interfaces.C; package gmp_c.mp_srcptr is -- Item -- subtype Item is gmp_c.Pointers.mp_limb_t_Pointer; -- Items -- type Items is array (Interfaces.C.size_t range <>) of aliased gmp_c.mp_srcptr.Item; -- Pointer -- type Pointer is access all gmp_c.mp_srcptr.Item; -- Pointers -- type Pointers is array (Interfaces.C.size_t range <>) of aliased gmp_c.mp_srcptr.Pointer; -- Pointer_Pointer -- type Pointer_Pointer is access all gmp_c.mp_srcptr.Pointer; end gmp_c.mp_srcptr;
----------------------------------------------------------------------- -- keystore-passwords-keys -- Key provider -- Copyright (C) 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package Keystore.Passwords.Keys is use type Ada.Streams.Stream_Element_Offset; DEFAULT_KEY_LENGTH : constant := 32 + 16 + 32; type Key_Provider is limited interface; type Key_Provider_Access is access all Key_Provider'Class; -- Get the Key, IV and signature. procedure Get_Keys (From : in Key_Provider; Key : out Secret_Key; IV : out Secret_Key; Sign : out Secret_Key) is abstract with Post'Class => Key.Length = 32 and IV.Length = 16 and Sign.Length = 32; -- Create a key, iv, sign provider from the string. function Create (Password : in String; Length : in Key_Length := DEFAULT_KEY_LENGTH) return Key_Provider_Access; function Create (Password : in Ada.Streams.Stream_Element_Array) return Key_Provider_Access; end Keystore.Passwords.Keys;
---------------------------------------------------------------------- -- -- Semaphore Package -- -- written by -- -- Edmond Schonberg -- -- Ada Project -- Courant Institute -- New York University -- 251 Mercer Street -- New York, New York 10012 -- ----------------------------------------------------------------------- package SEMAPHORE is generic INIT: NATURAL; -- initial value of semaphore package COUNT_SEMAPHORE is task COUNTING_SEMAPHORE is --similar to Amoroso's counting semaphore entry P; entry V; end COUNTING_SEMAPHORE; end COUNT_SEMAPHORE; task type BINARY_SEMAPHORE is -- implements binary semaphores as suggested by entry P; -- Amoroso and Ingargiola. entry V; end BINARY_SEMAPHORE; type ACCESS_BINARY_SEMAPHORE is access BINARY_SEMAPHORE; end SEMAPHORE; package body SEMAPHORE is package body COUNT_SEMAPHORE is task body COUNTING_SEMAPHORE is S: INTEGER := INIT; begin loop -- run forever, waiting for P or V to be called select when S > 0 => accept P; S := S - 1; or accept V; S := S + 1; -- S > INIT implies that new resources end select; -- became available that were originally end loop; -- unknown. This is not like Amoroso's end COUNTING_SEMAPHORE; -- version. end COUNT_SEMAPHORE; task body BINARY_SEMAPHORE is begin loop select accept P; or terminate ; end select ; accept V; end loop; end BINARY_SEMAPHORE; end SEMAPHORE;
with STM32GD.Board; use STM32GD.Board; with Drivers.Si7006; procedure Main is package Si7006 is new Drivers.Si7006 (I2C => I2C); Temperature : Si7006.Temperature_Type; Humidity : Si7006.Humidity_Type; Now : RTC.Date_Time_Type; Wait_Time : RTC.Second_Delta_Type := 5; begin Init; Text_IO.Put_Line ("Temperature/Humidity sensor starting"); loop RTC.Read (Now); LED.Set; Text_IO.Put_Line ("Reading sensor data"); Temperature := Si7006.Temperature_x100; Humidity := Si7006.Humidity; Text_IO.Put ("Temperature: "); Text_IO.Put_Integer (Temperature); Text_IO.Put (" Humidity: "); Text_IO.Put_Integer (Humidity); Text_IO.New_Line; LED.Clear; RTC.Add_Seconds (Now, Wait_Time); RTC.Set_Alarm (Now); RTC.Wait_For_Alarm; end loop; end Main;
-- -- Copyright (C) 2020, AdaCore -- -- This spec has been automatically generated from STM32F0x8.svd pragma Ada_2012; pragma Style_Checks (Off); with System; package Interfaces.STM32.Flash is pragma Preelaborate; pragma No_Elaboration_Code_All; --------------- -- Registers -- --------------- subtype ACR_LATENCY_Field is Interfaces.STM32.UInt3; subtype ACR_PRFTBE_Field is Interfaces.STM32.Bit; subtype ACR_PRFTBS_Field is Interfaces.STM32.Bit; -- Flash access control register type ACR_Register is record -- LATENCY LATENCY : ACR_LATENCY_Field := 16#0#; -- unspecified Reserved_3_3 : Interfaces.STM32.Bit := 16#0#; -- PRFTBE PRFTBE : ACR_PRFTBE_Field := 16#1#; -- Read-only. PRFTBS PRFTBS : ACR_PRFTBS_Field := 16#1#; -- unspecified Reserved_6_31 : Interfaces.STM32.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ACR_Register use record LATENCY at 0 range 0 .. 2; Reserved_3_3 at 0 range 3 .. 3; PRFTBE at 0 range 4 .. 4; PRFTBS at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype SR_BSY_Field is Interfaces.STM32.Bit; subtype SR_PGERR_Field is Interfaces.STM32.Bit; subtype SR_WRPRT_Field is Interfaces.STM32.Bit; subtype SR_EOP_Field is Interfaces.STM32.Bit; -- Flash status register type SR_Register is record -- Read-only. Busy BSY : SR_BSY_Field := 16#0#; -- unspecified Reserved_1_1 : Interfaces.STM32.Bit := 16#0#; -- Programming error PGERR : SR_PGERR_Field := 16#0#; -- unspecified Reserved_3_3 : Interfaces.STM32.Bit := 16#0#; -- Write protection error WRPRT : SR_WRPRT_Field := 16#0#; -- End of operation EOP : SR_EOP_Field := 16#0#; -- unspecified Reserved_6_31 : Interfaces.STM32.UInt26 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SR_Register use record BSY at 0 range 0 .. 0; Reserved_1_1 at 0 range 1 .. 1; PGERR at 0 range 2 .. 2; Reserved_3_3 at 0 range 3 .. 3; WRPRT at 0 range 4 .. 4; EOP at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype CR_PG_Field is Interfaces.STM32.Bit; subtype CR_PER_Field is Interfaces.STM32.Bit; subtype CR_MER_Field is Interfaces.STM32.Bit; subtype CR_OPTPG_Field is Interfaces.STM32.Bit; subtype CR_OPTER_Field is Interfaces.STM32.Bit; subtype CR_STRT_Field is Interfaces.STM32.Bit; subtype CR_LOCK_Field is Interfaces.STM32.Bit; subtype CR_OPTWRE_Field is Interfaces.STM32.Bit; subtype CR_ERRIE_Field is Interfaces.STM32.Bit; subtype CR_EOPIE_Field is Interfaces.STM32.Bit; subtype CR_FORCE_OPTLOAD_Field is Interfaces.STM32.Bit; -- Flash control register type CR_Register is record -- Programming PG : CR_PG_Field := 16#0#; -- Page erase PER : CR_PER_Field := 16#0#; -- Mass erase MER : CR_MER_Field := 16#0#; -- unspecified Reserved_3_3 : Interfaces.STM32.Bit := 16#0#; -- Option byte programming OPTPG : CR_OPTPG_Field := 16#0#; -- Option byte erase OPTER : CR_OPTER_Field := 16#0#; -- Start STRT : CR_STRT_Field := 16#0#; -- Lock LOCK : CR_LOCK_Field := 16#1#; -- unspecified Reserved_8_8 : Interfaces.STM32.Bit := 16#0#; -- Option bytes write enable OPTWRE : CR_OPTWRE_Field := 16#0#; -- Error interrupt enable ERRIE : CR_ERRIE_Field := 16#0#; -- unspecified Reserved_11_11 : Interfaces.STM32.Bit := 16#0#; -- End of operation interrupt enable EOPIE : CR_EOPIE_Field := 16#0#; -- Force option byte loading FORCE_OPTLOAD : CR_FORCE_OPTLOAD_Field := 16#0#; -- unspecified Reserved_14_31 : Interfaces.STM32.UInt18 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record PG at 0 range 0 .. 0; PER at 0 range 1 .. 1; MER at 0 range 2 .. 2; Reserved_3_3 at 0 range 3 .. 3; OPTPG at 0 range 4 .. 4; OPTER at 0 range 5 .. 5; STRT at 0 range 6 .. 6; LOCK at 0 range 7 .. 7; Reserved_8_8 at 0 range 8 .. 8; OPTWRE at 0 range 9 .. 9; ERRIE at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; EOPIE at 0 range 12 .. 12; FORCE_OPTLOAD at 0 range 13 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype OBR_OPTERR_Field is Interfaces.STM32.Bit; subtype OBR_RDPRT_Field is Interfaces.STM32.UInt2; subtype OBR_WDG_SW_Field is Interfaces.STM32.Bit; subtype OBR_nRST_STOP_Field is Interfaces.STM32.Bit; subtype OBR_nRST_STDBY_Field is Interfaces.STM32.Bit; -- OBR_nBOOT array element subtype OBR_nBOOT_Element is Interfaces.STM32.Bit; -- OBR_nBOOT array type OBR_nBOOT_Field_Array is array (0 .. 1) of OBR_nBOOT_Element with Component_Size => 1, Size => 2; -- Type definition for OBR_nBOOT type OBR_nBOOT_Field (As_Array : Boolean := False) is record case As_Array is when False => -- nBOOT as a value Val : Interfaces.STM32.UInt2; when True => -- nBOOT as an array Arr : OBR_nBOOT_Field_Array; end case; end record with Unchecked_Union, Size => 2; for OBR_nBOOT_Field use record Val at 0 range 0 .. 1; Arr at 0 range 0 .. 1; end record; subtype OBR_VDDA_MONITOR_Field is Interfaces.STM32.Bit; subtype OBR_RAM_PARITY_CHECK_Field is Interfaces.STM32.Bit; subtype OBR_BOOT_SEL_Field is Interfaces.STM32.Bit; -- OBR_Data array element subtype OBR_Data_Element is Interfaces.STM32.Byte; -- OBR_Data array type OBR_Data_Field_Array is array (0 .. 1) of OBR_Data_Element with Component_Size => 8, Size => 16; -- Type definition for OBR_Data type OBR_Data_Field (As_Array : Boolean := False) is record case As_Array is when False => -- Data as a value Val : Interfaces.STM32.UInt16; when True => -- Data as an array Arr : OBR_Data_Field_Array; end case; end record with Unchecked_Union, Size => 16; for OBR_Data_Field use record Val at 0 range 0 .. 15; Arr at 0 range 0 .. 15; end record; -- Option byte register type OBR_Register is record -- Read-only. Option byte error OPTERR : OBR_OPTERR_Field; -- Read-only. Read protection level status RDPRT : OBR_RDPRT_Field; -- unspecified Reserved_3_7 : Interfaces.STM32.UInt5; -- Read-only. WDG_SW WDG_SW : OBR_WDG_SW_Field; -- Read-only. nRST_STOP nRST_STOP : OBR_nRST_STOP_Field; -- Read-only. nRST_STDBY nRST_STDBY : OBR_nRST_STDBY_Field; -- Read-only. nBOOT0 nBOOT : OBR_nBOOT_Field; -- Read-only. VDDA_MONITOR VDDA_MONITOR : OBR_VDDA_MONITOR_Field; -- Read-only. RAM_PARITY_CHECK RAM_PARITY_CHECK : OBR_RAM_PARITY_CHECK_Field; -- Read-only. BOOT_SEL BOOT_SEL : OBR_BOOT_SEL_Field; -- Read-only. Data0 Data : OBR_Data_Field; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for OBR_Register use record OPTERR at 0 range 0 .. 0; RDPRT at 0 range 1 .. 2; Reserved_3_7 at 0 range 3 .. 7; WDG_SW at 0 range 8 .. 8; nRST_STOP at 0 range 9 .. 9; nRST_STDBY at 0 range 10 .. 10; nBOOT at 0 range 11 .. 12; VDDA_MONITOR at 0 range 13 .. 13; RAM_PARITY_CHECK at 0 range 14 .. 14; BOOT_SEL at 0 range 15 .. 15; Data at 0 range 16 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Flash type Flash_Peripheral is record -- Flash access control register ACR : aliased ACR_Register; -- Flash key register KEYR : aliased Interfaces.STM32.UInt32; -- Flash option key register OPTKEYR : aliased Interfaces.STM32.UInt32; -- Flash status register SR : aliased SR_Register; -- Flash control register CR : aliased CR_Register; -- Flash address register AR : aliased Interfaces.STM32.UInt32; -- Option byte register OBR : aliased OBR_Register; -- Write protection register WRPR : aliased Interfaces.STM32.UInt32; end record with Volatile; for Flash_Peripheral use record ACR at 16#0# range 0 .. 31; KEYR at 16#4# range 0 .. 31; OPTKEYR at 16#8# range 0 .. 31; SR at 16#C# range 0 .. 31; CR at 16#10# range 0 .. 31; AR at 16#14# range 0 .. 31; OBR at 16#1C# range 0 .. 31; WRPR at 16#20# range 0 .. 31; end record; -- Flash Flash_Periph : aliased Flash_Peripheral with Import, Address => Flash_Base; end Interfaces.STM32.Flash;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Contexts; package Program.Compilations is pragma Pure; -- A specific Compilation value is valid (usable) for as long as the -- Context variable, used to create it, remains open. Once an Context is -- closed, all associated Compilation values become invalid. It is -- erroneous to use an invalid Compilation value. type Compilation is limited interface; -- The Ada Compilation abstraction: -- -- The text of a program is submitted to the compiler in one or more -- compilations. Each compilation is a succession of compilation units. type Compilation_Access is access all Compilation'Class with Storage_Size => 0; function Is_Assigned (Self : access Compilation'Class) return Boolean is (Self /= null); not overriding function Context (Self : Compilation) return not null Program.Contexts.Context_Access is abstract; -- Return corresponding context not overriding function Text_Name (Self : Compilation) return Text is abstract; -- Returns the name of the text, or other structure, that was the source of -- the compilation that resulted in this Compilation. Returns a null string -- if the text name is not available for any reason. not overriding function Object_Name (Self : Compilation) return Text is abstract; -- Returns the name of the object, or other structure, that contains the -- binary result of the compilation for this Compilation. Returns a null -- string if the object name is not available for any reason. not overriding function Line_Count (Self : Compilation) return Natural is abstract; not overriding function Line (Self : Compilation; Index : Positive) return Text is abstract; not overriding function Lexical_Element_Count (Self : Compilation) return Natural is abstract; not overriding function Lexical_Element (Self : Compilation; Index : Positive) return Program.Lexical_Elements.Lexical_Element_Access is abstract; -- TODO: Compilation_Pragmas? end Program.Compilations;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_create_cursor_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; cid : aliased xcb.xcb_cursor_t; source : aliased xcb.xcb_pixmap_t; mask : aliased xcb.xcb_pixmap_t; fore_red : aliased Interfaces.Unsigned_16; fore_green : aliased Interfaces.Unsigned_16; fore_blue : aliased Interfaces.Unsigned_16; back_red : aliased Interfaces.Unsigned_16; back_green : aliased Interfaces.Unsigned_16; back_blue : aliased Interfaces.Unsigned_16; x : aliased Interfaces.Unsigned_16; y : aliased Interfaces.Unsigned_16; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_create_cursor_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_create_cursor_request_t.Item, Element_Array => xcb.xcb_create_cursor_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_create_cursor_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_create_cursor_request_t.Pointer, Element_Array => xcb.xcb_create_cursor_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_create_cursor_request_t;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . W C H _ C O N -- -- -- -- B o d y -- -- -- -- Copyright (C) 2005-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Compiler_Unit_Warning; package body System.WCh_Con is ---------------------------- -- Get_WC_Encoding_Method -- ---------------------------- function Get_WC_Encoding_Method (C : Character) return WC_Encoding_Method is begin for Method in WC_Encoding_Method loop if C = WC_Encoding_Letters (Method) then return Method; end if; end loop; raise Constraint_Error; end Get_WC_Encoding_Method; function Get_WC_Encoding_Method (S : String) return WC_Encoding_Method is begin if S = "hex" then return WCEM_Hex; elsif S = "upper" then return WCEM_Upper; elsif S = "shift_jis" then return WCEM_Shift_JIS; elsif S = "euc" then return WCEM_EUC; elsif S = "utf8" then return WCEM_UTF8; elsif S = "brackets" then return WCEM_Brackets; else raise Constraint_Error; end if; end Get_WC_Encoding_Method; -------------------------- -- Is_Start_Of_Encoding -- -------------------------- function Is_Start_Of_Encoding (C : Character; EM : WC_Encoding_Method) return Boolean is begin return (EM in WC_Upper_Half_Encoding_Method and then Character'Pos (C) >= 16#80#) or else (EM in WC_ESC_Encoding_Method and then C = ASCII.ESC); end Is_Start_Of_Encoding; end System.WCh_Con;
-- CD2A32A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT WHEN A SIZE SPECIFICATION IS GIVEN FOR AN -- INTEGER TYPE, THEN OPERATIONS ON VALUES OF SUCH A TYPE -- WITH THE SMALLEST APPROPRIATE SIGNED SIZE ARE NOT -- AFFECTED BY THE REPRESENTATION CLAUSE. -- HISTORY: -- JET 08/12/87 CREATED ORIGINAL TEST. -- DHH 04/10/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA', CHANGED -- SIZE CLAUSE VALUE TO 7, CHANGED OPERATOR ON 'SIZE -- CHECKS AND ADDED REPRESENTAION CLAUSE CHECK. -- RJW 03/28/90 REMOVED ERRONEOUS REFERENCES TO LENGTH_CHECK. -- JRL 03/27/92 ELIMINATED REDUNDANT TESTING. WITH REPORT; USE REPORT; WITH LENGTH_CHECK; -- CONTAINS A CALL TO 'FAILED'. PROCEDURE CD2A32A IS BASIC_SIZE : CONSTANT := 7; TYPE INT IS RANGE -63 .. 63; FOR INT'SIZE USE BASIC_SIZE; I1 : INT := -63; I2 : INT := 0; I3 : INT := 63; TYPE ARRAY_TYPE IS ARRAY (INTEGER RANGE -1 .. 1) OF INT; PRAGMA PACK (ARRAY_TYPE); INTARRAY : ARRAY_TYPE := (-63, 0, 63); TYPE REC_TYPE IS RECORD COMPN : INT := -63; COMPZ : INT := 0; COMPP : INT := 63; END RECORD; PRAGMA PACK (REC_TYPE); IREC : REC_TYPE; FUNCTION IDENT (I : INT) RETURN INT IS BEGIN IF EQUAL (0,0) THEN RETURN I; ELSE RETURN 0; END IF; END IDENT; PROCEDURE CHECK_1 IS NEW LENGTH_CHECK (INT); PROCEDURE PROC (PIN, PIP : INT; PIOZ, PIOP : IN OUT INT; POP : OUT INT) IS BEGIN IF PIN'SIZE < IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR PIN'SIZE"); END IF; FOR P1 IN IDENT (PIN) .. IDENT (PIOP) LOOP IF NOT (P1 IN PIN .. PIP) OR (P1 NOT IN IDENT(-63) .. IDENT(63)) THEN FAILED ("INCORRECT RESULTS FOR MEMBERSHIP " & "OPERATORS - 1"); END IF; END LOOP; IF NOT ((+PIP = PIOP) AND (-PIN = PIP) AND (ABS PIN = PIOP)) THEN FAILED ("INCORRECT RESULTS FOR UNARY ARITHMETIC " & "OPERATORS - 1"); END IF; IF INT'VAL (-63) /= IDENT (PIN) OR INT'VAL (0) /= IDENT (PIOZ) OR INT'VAL (63) /= IDENT (PIOP) THEN FAILED ("INCORRECT VALUE FOR INT'VAL - 1"); END IF; IF INT'PRED (PIOZ) /= IDENT (-1) OR INT'PRED (PIP) /= IDENT (62) THEN FAILED ("INCORRECT VALUE FOR INT'PRED - 1"); END IF; IF INT'VALUE ("-63") /= IDENT (PIN) OR INT'VALUE ("0") /= IDENT (PIOZ) OR INT'VALUE ("63") /= IDENT (PIOP) THEN FAILED ("INCORRECT VALUE FOR INT'VALUE - 1"); END IF; POP := 63; END PROC; BEGIN TEST ("CD2A32A", "CHECK THAT WHEN A SIZE SPECIFICATION IS " & "GIVEN FOR AN INTEGER TYPE, THEN " & "OPERATIONS ON VALUES OF SUCH A TYPE WITH " & "THE SMALLEST APPROPRIATE SIGNED SIZE ARE " & "NOT AFFECTED BY THE REPRESENTATION CLAUSE"); CHECK_1 (I1, 7, "INT"); PROC (-63, 63, I2, I3, I3); IF INT'SIZE /= IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR INT'SIZE"); END IF; IF I1'SIZE < IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR I1'SIZE"); END IF; IF NOT ((I1 < IDENT (0)) AND (IDENT (I3) > IDENT (I2)) AND (I2 <= IDENT (0)) AND (IDENT (63) = I3)) THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL OPERATORS - 2"); END IF; IF NOT (((I1 + I3) = I2) AND ((I2 - I3) = I1) AND ((I3 * I2) = I2) AND ((I2 / I1) = I2) AND ((I1 ** 1) = I1) AND ((I1 REM 10) = IDENT (-3)) AND ((I3 MOD 10) = IDENT (3))) THEN FAILED ("INCORRECT RESULTS FOR BINARY ARITHMETIC " & "OPERATORS - 2"); END IF; IF INT'FIRST /= IDENT (-63) THEN FAILED ("INCORRECT VALUE FOR INT'FIRST - 2"); END IF; IF INT'POS (I1) /= IDENT_INT (-63) OR INT'POS (I2) /= IDENT_INT ( 0) OR INT'POS (I3) /= IDENT_INT ( 63) THEN FAILED ("INCORRECT VALUE FOR INT'POS - 2"); END IF; IF INT'SUCC (I1) /= IDENT (-62) OR INT'SUCC (I2) /= IDENT (1) THEN FAILED ("INCORRECT VALUE FOR INT'SUCC - 2"); END IF; IF INT'IMAGE (I1) /= IDENT_STR ("-63") OR INT'IMAGE (I2) /= IDENT_STR (" 0") OR INT'IMAGE (I3) /= IDENT_STR (" 63") THEN FAILED ("INCORRECT VALUE FOR INT'IMAGE - 2"); END IF; IF INTARRAY(0)'SIZE < IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR INTARRAY(0)'SIZE"); END IF; IF NOT ((INTARRAY(-1) < IDENT (0)) AND (IDENT (INTARRAY (1)) > IDENT (INTARRAY(0))) AND (INTARRAY(0) <= IDENT (0)) AND (IDENT (63) = INTARRAY (1))) THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL OPERATORS - 3"); END IF; FOR I IN IDENT (INTARRAY(-1)) .. IDENT (INTARRAY(1)) LOOP IF NOT (I IN INTARRAY(-1) .. INTARRAY(1)) OR (I NOT IN IDENT(-63) .. IDENT(63)) THEN FAILED ("INCORRECT RESULTS FOR MEMBERSHIP " & "OPERATORS - 3"); END IF; END LOOP; IF NOT ((+INTARRAY(-1) = INTARRAY(-1)) AND (-INTARRAY( 1) = INTARRAY(-1)) AND (ABS INTARRAY(-1) = INTARRAY(1))) THEN FAILED ("INCORRECT RESULTS FOR UNARY ARITHMETIC " & "OPERATORS - 3"); END IF; IF INT'VAL (-63) /= IDENT (INTARRAY (-1)) OR INT'VAL ( 0) /= IDENT (INTARRAY ( 0)) OR INT'VAL ( 63) /= IDENT (INTARRAY ( 1)) THEN FAILED ("INCORRECT VALUE FOR INT'VAL - 3"); END IF; IF INT'PRED (INTARRAY (0)) /= IDENT (-1) OR INT'PRED (INTARRAY (1)) /= IDENT (62) THEN FAILED ("INCORRECT VALUE FOR INT'PRED - 3"); END IF; IF INT'VALUE ("-63") /= IDENT (INTARRAY (-1)) OR INT'VALUE ("0") /= IDENT (INTARRAY ( 0)) OR INT'VALUE ("63") /= IDENT (INTARRAY ( 1)) THEN FAILED ("INCORRECT VALUE FOR INT'VALUE - 3"); END IF; IF IREC.COMPP'SIZE < IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR IREC.COMPP'SIZE"); END IF; IF NOT ((IREC.COMPN < IDENT (0)) AND (IDENT (IREC.COMPP) > IDENT (IREC.COMPZ)) AND (IREC.COMPZ <= IDENT (0)) AND (IDENT (63) = IREC.COMPP)) THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL OPERATORS - 4"); END IF; FOR I IN IDENT (IREC.COMPN) .. IDENT (IREC.COMPP) LOOP IF NOT (I IN IREC.COMPN .. IREC.COMPP) OR (I NOT IN IDENT(-63) .. IDENT(63)) THEN FAILED ("INCORRECT RESULTS FOR MEMBERSHIP " & "OPERATORS - 4"); END IF; END LOOP; IF NOT (((IREC.COMPN + IREC.COMPP) = IREC.COMPZ) AND ((IREC.COMPZ - IREC.COMPP) = IREC.COMPN) AND ((IREC.COMPP * IREC.COMPZ) = IREC.COMPZ) AND ((IREC.COMPZ / IREC.COMPN) = IREC.COMPZ) AND ((IREC.COMPN ** 1) = IREC.COMPN) AND ((IREC.COMPN REM 10) = IDENT (-3)) AND ((IREC.COMPP MOD 10) = IDENT ( 3))) THEN FAILED ("INCORRECT RESULTS FOR BINARY ARITHMETIC " & "OPERATORS - 4"); END IF; IF INT'POS (IREC.COMPN) /= IDENT_INT (-63) OR INT'POS (IREC.COMPZ) /= IDENT_INT ( 0) OR INT'POS (IREC.COMPP) /= IDENT_INT ( 63) THEN FAILED ("INCORRECT VALUE FOR INT'POS - 4"); END IF; IF INT'SUCC (IREC.COMPN) /= IDENT (-62) OR INT'SUCC (IREC.COMPZ) /= IDENT ( 1) THEN FAILED ("INCORRECT VALUE FOR INT'SUCC - 4"); END IF; IF INT'IMAGE (IREC.COMPN) /= IDENT_STR ("-63") OR INT'IMAGE (IREC.COMPZ) /= IDENT_STR (" 0") OR INT'IMAGE (IREC.COMPP) /= IDENT_STR (" 63") THEN FAILED ("INCORRECT VALUE FOR INT'IMAGE - 4"); END IF; RESULT; END CD2A32A;
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2010, Alexander Senier -- Copyright (C) 2010, secunet Security Networks AG -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, -- this list of conditions and the following disclaimer. -- -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- -- * Neither the name of the nor the names of its contributors may be used -- to endorse or promote products derived from this software without -- specific prior written permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -- POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with LSC.Internal.Ops64; package body LSC.Internal.Byteswap64 is function Swap (Value : Types.Word64) return Types.Word64 is Temp : Types.Byte_Array64_Type; begin Temp := Types.Word64_To_Byte_Array64 (Value); return Ops64.Bytes_To_Word (Temp (0), Temp (1), Temp (2), Temp (3), Temp (4), Temp (5), Temp (6), Temp (7)); end Swap; end LSC.Internal.Byteswap64;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . E X C E P T I O N S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2006-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package does not require a body, since it is a package renaming. We -- provide a dummy file containing a No_Body pragma so that previous versions -- of the body (which did exist) will not interfere. -- pragma No_Body; -- The above pragma is commented out, since for now we can't use No_Body in -- a unit marked as a Compiler_Unit, since this requires GNAT 6.1, and we -- do not yet require this for bootstrapping. So instead we use a dummy Taft -- amendment type to require the body: package body System.Exceptions is type Require_Body is new Integer; end System.Exceptions;
-- CB4004A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT VARIOUS EXCEPTIONS IN THE BODY OF A SUBPROGRAM WITH -- AN APPLICABLE HANDLER ARE HANDLED LOCALLY. -- DAT 04/15/81 -- JRK 04/24/81 -- SPS 11/02/82 -- EG 10/30/85 ELIMINATE THE USE OF NUMERIC_ERROR IN TEST. WITH REPORT; USE REPORT; PROCEDURE CB4004A IS E, F : EXCEPTION; STORAGE_ERROR: EXCEPTION; I1 : INTEGER RANGE 1 .. 1; FUNCTION F1 (I : INTEGER) RETURN BOOLEAN IS BEGIN CASE I IS WHEN 1 => RAISE E; WHEN 2 => RAISE STORAGE_ERROR; WHEN 3 => I1 := 4; WHEN 4 => RAISE TASKING_ERROR; WHEN OTHERS => NULL; END CASE; RETURN FALSE; EXCEPTION WHEN E | F => RETURN I = 1; WHEN STORAGE_ERROR => RETURN I = 2; WHEN PROGRAM_ERROR | CONSTRAINT_ERROR => RETURN I = 3; WHEN OTHERS => RETURN I = 4; END F1; BEGIN TEST ("CB4004A", "EXCEPTIONS WITH LOCAL HANDLERS ARE HANDLED" & " THERE"); BEGIN FOR L IN 1 .. 4 LOOP IF F1(L) /= TRUE THEN FAILED ("LOCAL EXCEPTIONS DON'T WORK"); EXIT; END IF; END LOOP; EXCEPTION WHEN OTHERS => FAILED ("WRONG HANDLER"); END; RESULT; END CB4004A;
-- -- Copyright (C) 2015-2016 secunet Security Networks AG -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- with System; with HW; use type HW.Int32; package HW.GFX.Framebuffer_Filler is procedure Fill (Linear_FB : Word64; Framebuffer : Framebuffer_Type) with Pre => Framebuffer.Width <= Framebuffer.Stride; end HW.GFX.Framebuffer_Filler;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ IO . C O M P L E X _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Wide_Text_IO.Complex_Aux; with System.WCh_Con; use System.WCh_Con; with System.WCh_WtS; use System.WCh_WtS; with Ada.Unchecked_Conversion; package body Ada.Wide_Text_IO.Complex_IO is package Aux renames Ada.Wide_Text_IO.Complex_Aux; subtype LLF is Long_Long_Float; -- Type used for calls to routines in Aux function TFT is new Ada.Unchecked_Conversion (File_Type, Ada.Wide_Text_IO.File_Type); -- This unchecked conversion is to get around a visibility bug in -- GNAT version 2.04w. It should be possible to simply use the -- subtype declared above and do normal checked conversions. --------- -- Get -- --------- procedure Get (File : File_Type; Item : out Complex; Width : Field := 0) is Real_Item : Real'Base; Imag_Item : Real'Base; begin Aux.Get (TFT (File), LLF (Real_Item), LLF (Imag_Item), Width); Item := (Real_Item, Imag_Item); exception when Constraint_Error => raise Data_Error; end Get; --------- -- Get -- --------- procedure Get (Item : out Complex; Width : Field := 0) is begin Get (Current_Input, Item, Width); end Get; --------- -- Get -- --------- procedure Get (From : Wide_String; Item : out Complex; Last : out Positive) is Real_Item : Real'Base; Imag_Item : Real'Base; S : constant String := Wide_String_To_String (From, WCEM_Upper); -- String on which we do the actual conversion. Note that the method -- used for wide character encoding is irrelevant, since if there is -- a character outside the Standard.Character range then the call to -- Aux.Gets will raise Data_Error in any case. begin Aux.Gets (S, LLF (Real_Item), LLF (Imag_Item), Last); Item := (Real_Item, Imag_Item); exception when Data_Error => raise Constraint_Error; end Get; --------- -- Put -- --------- procedure Put (File : File_Type; Item : Complex; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Aux.Put (TFT (File), LLF (Re (Item)), LLF (Im (Item)), Fore, Aft, Exp); end Put; --------- -- Put -- --------- procedure Put (Item : Complex; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Put (Current_Output, Item, Fore, Aft, Exp); end Put; --------- -- Put -- --------- procedure Put (To : out Wide_String; Item : Complex; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String (To'First .. To'Last); begin Aux.Puts (S, LLF (Re (Item)), LLF (Im (Item)), Aft, Exp); for J in S'Range loop To (J) := Wide_Character'Val (Character'Pos (S (J))); end loop; end Put; end Ada.Wide_Text_IO.Complex_IO;
with Last_Chance_Handler; pragma Unreferenced (Last_Chance_Handler); with Ada.Synchronous_Task_Control; use Ada.Synchronous_Task_Control; with STM32GD.Board; use STM32GD.Board; with STM32GD.GPIO; use STM32GD.GPIO; with STM32GD.GPIO.Pin; with STM32GD.EXTI; with STM32_SVD.RCC; with Button_Irq; procedure Main is begin Init; BUTTON.Configure_Trigger (STM32GD.EXTI.Interrupt_Falling_Edge); LED2.Set; LED.Set; loop Suspend_Until_True (Button_Irq.Button_Pressed); LED.Toggle; end loop; end Main;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>Loop_1_proc</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>p_hw_input_stencil_stream_V_value_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_hw_input_stencil_stream_to_hw_output.V.value.V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>288</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>hw_output_V_value_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned int, 1, 1, 1, 1&amp;gt; &amp;gt;.V.value.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>hw_output_V_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>stream&amp;lt;AxiPackedStencil&amp;lt;unsigned int, 1, 1, 1, 1&amp;gt; &amp;gt;.V.last.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>83</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>6</id> <name/> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>97</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>8</id> <name>indvar_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>345</item> <item>346</item> <item>347</item> <item>348</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>9</id> <name>p_hw_output_y_scan_1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>349</item> <item>350</item> <item>351</item> <item>352</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>10</id> <name>p_hw_output_x_scan_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_hw_output_x___scan_dim_0</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>353</item> <item>354</item> <item>355</item> <item>356</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>11</id> <name>exitcond_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>exitcond_flatten_fu_188_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>357</item> <item>359</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>12</id> <name>indvar_flatten_next</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>indvar_flatten_next_fu_194_p2</rtlName> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>360</item> <item>362</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>13</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>363</item> <item>364</item> <item>365</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>16</id> <name>exitcond</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>exitcond_fu_200_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>98</item> <item>100</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>17</id> <name>p_hw_output_x_scan_s</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_hw_output_x_scan_s_fu_206_p3</rtlName> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>101</item> <item>103</item> <item>104</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>18</id> <name>p_hw_output_y_scan_2</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_hw_output_y_scan_2_fu_220_p2</rtlName> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>106</item> <item>107</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_mid1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_mid1_fu_412_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>108</item> <item>110</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_226_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>111</item> <item>112</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>21</id> <name>tmp_mid2</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_mid2_fu_501_p3</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>22</id> <name>p_hw_output_y_scan_s</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_hw_output_y_scan_s_fu_232_p3</rtlName> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>116</item> <item>117</item> <item>118</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_value_V</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>288</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>120</item> <item>121</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>26</id> <name>p_345</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_345</originalName> <rtlName>p_345_fu_239_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>122</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>27</id> <name>p_351</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_351</originalName> <rtlName>p_351_reg_723</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>124</item> <item>125</item> <item>127</item> <item>129</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>28</id> <name>p_357</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_357</originalName> <rtlName>p_357_reg_728</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>130</item> <item>131</item> <item>133</item> <item>135</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>29</id> <name>p_363</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_363</originalName> <rtlName>p_363_reg_733</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>136</item> <item>137</item> <item>139</item> <item>141</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>30</id> <name>p_369</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_369</originalName> <rtlName>p_369_reg_738</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>142</item> <item>143</item> <item>145</item> <item>147</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>31</id> <name>p_375</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_375</originalName> <rtlName>p_375_reg_743</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>148</item> <item>149</item> <item>151</item> <item>153</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>32</id> <name>p_381</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_381</originalName> <rtlName>p_381_reg_748</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>154</item> <item>155</item> <item>157</item> <item>159</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>33</id> <name>p_387</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_387</originalName> <rtlName>p_387_reg_753</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>160</item> <item>161</item> <item>163</item> <item>165</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>34</id> <name>p_393</name> <fileName>../../../lib_files/Stencil.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>operator Stencil</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Stencil.h</first> <second>operator Stencil</second> </first> <second>122</second> </item> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>_393</originalName> <rtlName>p_393_reg_758</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>166</item> <item>167</item> <item>169</item> <item>171</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_17</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_17_fu_323_p1</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>172</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>36</id> <name>p_shl</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>85</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>85</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl_fu_417_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>174</item> <item>175</item> <item>177</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_347</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>85</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>85</second> </item> </second> </item> </inlineStackInfo> <originalName>_347</originalName> <rtlName>p_347_fu_424_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>178</item> <item>179</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_5</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_5_reg_768</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>181</item> <item>182</item> <item>183</item> <item>185</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>39</id> <name>p_shl1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl1_fu_506_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>186</item> <item>187</item> <item>188</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_6_reg_773</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>189</item> <item>190</item> <item>191</item> <item>193</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>41</id> <name>p_shl2</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>99</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl2_fu_429_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>194</item> <item>195</item> <item>196</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>42</id> <name>p_359</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>99</second> </item> </second> </item> </inlineStackInfo> <originalName>_359</originalName> <rtlName>p_359_fu_436_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>197</item> <item>198</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_7_reg_778</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>199</item> <item>200</item> <item>201</item> <item>203</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>44</id> <name>p_shl9</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl9_fu_441_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>204</item> <item>205</item> <item>206</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>45</id> <name>tmp_8</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_8_reg_783</rtlName> <coreName/> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>208</item> <item>209</item> <item>210</item> <item>212</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>46</id> <name>p_shl8</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl8_fu_448_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>214</item> <item>215</item> <item>217</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>47</id> <name>p_371</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName>_371</originalName> <rtlName>p_371_fu_455_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>218</item> <item>219</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_9</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_9_reg_788</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>220</item> <item>221</item> <item>222</item> <item>224</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>49</id> <name>p_shl7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl7_fu_460_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>225</item> <item>226</item> <item>227</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>50</id> <name>p_377</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName>_377</originalName> <rtlName>p_377_fu_467_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>228</item> <item>229</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>51</id> <name>tmp_3</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_3_reg_793</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>230</item> <item>231</item> <item>232</item> <item>234</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>52</id> <name>p_shl6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>127</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl6_fu_472_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>235</item> <item>236</item> <item>237</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_383</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>127</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>127</second> </item> </second> </item> </inlineStackInfo> <originalName>_383</originalName> <rtlName>p_383_fu_479_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>238</item> <item>239</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_4</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_4_reg_798</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>240</item> <item>241</item> <item>242</item> <item>244</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>55</id> <name>p_shl5</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl5_fu_513_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>245</item> <item>246</item> <item>247</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_10</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_10_reg_803</rtlName> <coreName/> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>248</item> <item>249</item> <item>250</item> <item>252</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>57</id> <name>p_shl4</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>141</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_shl4_fu_484_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>253</item> <item>254</item> <item>255</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>58</id> <name>p_395</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>141</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>141</second> </item> </second> </item> </inlineStackInfo> <originalName>_395</originalName> <rtlName>p_395_fu_491_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>256</item> <item>257</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp1_fu_520_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>258</item> <item>259</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp2</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp2_fu_524_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>260</item> <item>261</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp3</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp3_fu_496_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>262</item> <item>263</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp4</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp4_fu_554_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>264</item> <item>265</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp5</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp5_fu_558_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>266</item> <item>267</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp6</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp6_fu_529_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>268</item> <item>269</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp7</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp7_fu_533_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>270</item> <item>271</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp8</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp8_fu_539_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>272</item> <item>273</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp9</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp9_fu_544_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>274</item> <item>275</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp10</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp10_fu_563_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>276</item> <item>277</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>69</id> <name>p_397</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName>_397</originalName> <rtlName>p_397_fu_567_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>278</item> <item>279</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>70</id> <name>sext_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>65</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>280</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>71</id> <name>mul</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>hls_target_mul_34fYi_U18</rtlName> <coreName/> </Obj> <bitwidth>65</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>282</item> <item>283</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>72</id> <name>neg_mul</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>neg_mul_fu_599_p2</rtlName> <coreName/> </Obj> <bitwidth>65</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>285</item> <item>286</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>73</id> <name>tmp_18</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_18_reg_884</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>288</item> <item>289</item> <item>291</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_19</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_19_fu_604_p4</rtlName> <coreName/> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>293</item> <item>294</item> <item>296</item> <item>297</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>75</id> <name>tmp_11</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_11_fu_613_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>298</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_20</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_20_reg_900</rtlName> <coreName/> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>299</item> <item>300</item> <item>301</item> <item>302</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_12</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_12_fu_617_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>303</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>78</id> <name>tmp_13</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_13_fu_620_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>304</item> <item>305</item> <item>306</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>79</id> <name>neg_ti</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>neg_ti_fu_627_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>308</item> <item>309</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>80</id> <name>p_399</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName>_399</originalName> <rtlName>p_399_fu_633_p3</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>310</item> <item>311</item> <item>312</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>81</id> <name>tmp_21</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>146</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>146</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_21_fu_649_p1</rtlName> <coreName/> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>313</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_s</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>hls_target_mul_7sg8j_U19</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>315</item> <item>316</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>83</id> <name>p_401</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName>_401</originalName> <rtlName>p_401_fu_645_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>317</item> <item>318</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>84</id> <name>tmp_22</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_22_fu_652_p3</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>319</item> <item>320</item> <item>321</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>85</id> <name>p_402_cast</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_402_cast_fu_659_p3</rtlName> <coreName/> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>322</item> <item>324</item> <item>326</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>86</id> <name>p_408</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>155</second> </item> </second> </item> </inlineStackInfo> <originalName>_408</originalName> <rtlName>p_408_fu_667_p2</rtlName> <coreName/> </Obj> <bitwidth>27</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>327</item> <item>328</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>87</id> <name>tmp_value_V_4</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>155</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>155</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.value.V</originalName> <rtlName>hw_output_V_value_V</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>329</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>88</id> <name>tmp_1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_1_fu_407_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>330</item> <item>332</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>89</id> <name>tmp_last_V</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>159</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>159</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.last.V</originalName> <rtlName>tmp_last_V_fu_549_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>333</item> <item>334</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>90</id> <name/> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>164</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>164</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>336</item> <item>337</item> <item>338</item> <item>339</item> <item>340</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>92</id> <name>p_hw_output_x_scan_1</name> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>_hw_output_x___scan_dim_0</originalName> <rtlName>p_hw_output_x_scan_1_fu_214_p2</rtlName> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>341</item> <item>342</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>93</id> <name/> <fileName>hls_target.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>hls_target</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>hls_target.cpp</first> <second>hls_target</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>343</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>95</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>42</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_87"> <Value> <Obj> <type>2</type> <id>99</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1918</content> </item> <item class_id_reference="16" object_id="_88"> <Value> <Obj> <type>2</type> <id>102</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_89"> <Value> <Obj> <type>2</type> <id>105</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_90"> <Value> <Obj> <type>2</type> <id>109</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1077</content> </item> <item class_id_reference="16" object_id="_91"> <Value> <Obj> <type>2</type> <id>126</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_92"> <Value> <Obj> <type>2</type> <id>128</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_93"> <Value> <Obj> <type>2</type> <id>132</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_94"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>95</content> </item> <item class_id_reference="16" object_id="_95"> <Value> <Obj> <type>2</type> <id>138</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>96</content> </item> <item class_id_reference="16" object_id="_96"> <Value> <Obj> <type>2</type> <id>140</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>127</content> </item> <item class_id_reference="16" object_id="_97"> <Value> <Obj> <type>2</type> <id>144</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_98"> <Value> <Obj> <type>2</type> <id>146</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>159</content> </item> <item class_id_reference="16" object_id="_99"> <Value> <Obj> <type>2</type> <id>150</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>160</content> </item> <item class_id_reference="16" object_id="_100"> <Value> <Obj> <type>2</type> <id>152</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>191</content> </item> <item class_id_reference="16" object_id="_101"> <Value> <Obj> <type>2</type> <id>156</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>192</content> </item> <item class_id_reference="16" object_id="_102"> <Value> <Obj> <type>2</type> <id>158</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>223</content> </item> <item class_id_reference="16" object_id="_103"> <Value> <Obj> <type>2</type> <id>162</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>224</content> </item> <item class_id_reference="16" object_id="_104"> <Value> <Obj> <type>2</type> <id>164</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>255</content> </item> <item class_id_reference="16" object_id="_105"> <Value> <Obj> <type>2</type> <id>168</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>256</content> </item> <item class_id_reference="16" object_id="_106"> <Value> <Obj> <type>2</type> <id>170</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>287</content> </item> <item class_id_reference="16" object_id="_107"> <Value> <Obj> <type>2</type> <id>176</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_108"> <Value> <Obj> <type>2</type> <id>184</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>61</content> </item> <item class_id_reference="16" object_id="_109"> <Value> <Obj> <type>2</type> <id>192</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>93</content> </item> <item class_id_reference="16" object_id="_110"> <Value> <Obj> <type>2</type> <id>202</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>125</content> </item> <item class_id_reference="16" object_id="_111"> <Value> <Obj> <type>2</type> <id>211</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>156</content> </item> <item class_id_reference="16" object_id="_112"> <Value> <Obj> <type>2</type> <id>216</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_113"> <Value> <Obj> <type>2</type> <id>223</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>189</content> </item> <item class_id_reference="16" object_id="_114"> <Value> <Obj> <type>2</type> <id>233</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>221</content> </item> <item class_id_reference="16" object_id="_115"> <Value> <Obj> <type>2</type> <id>243</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>253</content> </item> <item class_id_reference="16" object_id="_116"> <Value> <Obj> <type>2</type> <id>251</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>285</content> </item> <item class_id_reference="16" object_id="_117"> <Value> <Obj> <type>2</type> <id>281</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>65</bitwidth> </Value> <const_type>0</const_type> <content>7048151461</content> </item> <item class_id_reference="16" object_id="_118"> <Value> <Obj> <type>2</type> <id>284</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>65</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_119"> <Value> <Obj> <type>2</type> <id>290</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_120"> <Value> <Obj> <type>2</type> <id>295</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>38</content> </item> <item class_id_reference="16" object_id="_121"> <Value> <Obj> <type>2</type> <id>307</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_122"> <Value> <Obj> <type>2</type> <id>314</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4294967257</content> </item> <item class_id_reference="16" object_id="_123"> <Value> <Obj> <type>2</type> <id>323</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>27</bitwidth> </Value> <const_type>0</const_type> <content>134217727</content> </item> <item class_id_reference="16" object_id="_124"> <Value> <Obj> <type>2</type> <id>325</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>27</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_125"> <Value> <Obj> <type>2</type> <id>331</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1917</content> </item> <item class_id_reference="16" object_id="_126"> <Value> <Obj> <type>2</type> <id>344</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_127"> <Value> <Obj> <type>2</type> <id>358</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>2067604</content> </item> <item class_id_reference="16" object_id="_128"> <Value> <Obj> <type>2</type> <id>361</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>21</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_129"> <Obj> <type>3</type> <id>7</id> <name>newFuncRoot</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>6</item> </node_objs> </item> <item class_id_reference="18" object_id="_130"> <Obj> <type>3</type> <id>14</id> <name>.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> </node_objs> </item> <item class_id_reference="18" object_id="_131"> <Obj> <type>3</type> <id>94</id> <name>.preheader.preheader</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>75</count> <item_version>0</item_version> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>92</item> <item>93</item> </node_objs> </item> <item class_id_reference="18" object_id="_132"> <Obj> <type>3</type> <id>96</id> <name>.exitStub</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>95</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>191</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_133"> <id>97</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>98</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>100</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>101</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>103</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>104</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>106</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>107</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>108</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>110</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>111</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>112</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>113</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>114</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>115</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>116</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>117</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>118</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>121</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>122</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>125</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>127</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>129</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>131</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>133</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>137</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>139</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>141</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>143</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>145</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>149</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>151</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>153</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>155</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>159</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>161</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>163</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>165</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>167</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>169</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>171</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>172</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>175</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>177</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>178</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>179</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>182</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>183</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>185</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>187</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>188</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>190</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>191</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>193</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>195</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>196</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>197</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>198</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>200</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>201</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>203</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>205</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>206</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>209</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>210</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>212</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>215</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>217</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>218</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>219</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>221</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>222</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>224</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>226</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>227</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>228</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>229</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>231</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>232</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>234</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>236</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>237</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>238</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>239</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>241</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>242</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>244</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>246</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>247</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>249</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>250</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>252</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>254</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>255</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>256</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>257</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>258</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>259</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>260</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>261</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>262</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>263</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>264</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>265</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>266</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>267</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>268</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>269</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>270</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>271</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>272</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>273</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>274</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>275</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>276</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>277</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>278</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>279</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_254"> <id>280</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_255"> <id>282</id> <edge_type>1</edge_type> <source_obj>281</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_256"> <id>283</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_257"> <id>285</id> <edge_type>1</edge_type> <source_obj>284</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_258"> <id>286</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_259"> <id>289</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_260"> <id>291</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_261"> <id>294</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_262"> <id>296</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_263"> <id>297</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_264"> <id>298</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_265"> <id>300</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_266"> <id>301</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_267"> <id>302</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_268"> <id>303</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_269"> <id>304</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_270"> <id>305</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_271"> <id>306</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_272"> <id>308</id> <edge_type>1</edge_type> <source_obj>307</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_273"> <id>309</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_274"> <id>310</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_275"> <id>311</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_276"> <id>312</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_277"> <id>313</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_278"> <id>315</id> <edge_type>1</edge_type> <source_obj>314</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_279"> <id>316</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_280"> <id>317</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_281"> <id>318</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_282"> <id>320</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_283"> <id>321</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_284"> <id>322</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_285"> <id>324</id> <edge_type>1</edge_type> <source_obj>323</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_286"> <id>326</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_287"> <id>327</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_288"> <id>328</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_289"> <id>329</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_290"> <id>330</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_291"> <id>332</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_292"> <id>333</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_293"> <id>334</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_294"> <id>337</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_295"> <id>338</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_296"> <id>339</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_297"> <id>340</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_298"> <id>341</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_299"> <id>342</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_300"> <id>343</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_301"> <id>345</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_302"> <id>346</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_303"> <id>347</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_304"> <id>348</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_305"> <id>349</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_306"> <id>350</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_307"> <id>351</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_308"> <id>352</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_309"> <id>353</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_310"> <id>354</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_311"> <id>355</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_312"> <id>356</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_313"> <id>357</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_314"> <id>359</id> <edge_type>1</edge_type> <source_obj>358</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_315"> <id>360</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_316"> <id>362</id> <edge_type>1</edge_type> <source_obj>361</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_317"> <id>363</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_318"> <id>364</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_319"> <id>365</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_320"> <id>424</id> <edge_type>2</edge_type> <source_obj>7</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_321"> <id>425</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_322"> <id>426</id> <edge_type>2</edge_type> <source_obj>14</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_323"> <id>427</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>14</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_324"> <mId>1</mId> <mTag>Loop_1_proc</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2067624</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_325"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>7</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_326"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>14</item> <item>94</item> </basic_blocks> <mII>1</mII> <mDepth>20</mDepth> <mMinTripCount>2067604</mMinTripCount> <mMaxTripCount>2067604</mMaxTripCount> <mMinLatency>2067622</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_327"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>96</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_328"> <states class_id="25" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_329"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_330"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_333"> <id>2</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_334"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_335"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_336"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_337"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_338"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_339"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_340"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_342"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_343"> <id>3</id> <operations> <count>23</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_344"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_345"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_346"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_348"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_349"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_350"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_352"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_353"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_354"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_355"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_356"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_357"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_358"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_359"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_360"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_361"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_362"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_363"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_364"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_365"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_366"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_367"> <id>4</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_368"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_369"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_370"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_371"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_372"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_373"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_374"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_375"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_376"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_377"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_378"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_379"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_380"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_381"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_382"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_383"> <id>5</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_384"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_385"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_386"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_387"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_388"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_389"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_390"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_391"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_392"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_393"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_394"> <id>6</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_395"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_396"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_397"> <id>7</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_398"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_399"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_400"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_401"> <id>8</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_402"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_403"> <id>71</id> <stage>5</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_404"> <id>9</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_405"> <id>71</id> <stage>4</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_406"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_407"> <id>71</id> <stage>3</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_408"> <id>11</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_409"> <id>71</id> <stage>2</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_410"> <id>12</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_411"> <id>71</id> <stage>1</stage> <latency>5</latency> </item> <item class_id_reference="28" object_id="_412"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_413"> <id>13</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_414"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_415"> <id>14</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_416"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_417"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_418"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_419"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_420"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_421"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_422"> <id>15</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_423"> <id>82</id> <stage>5</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_424"> <id>16</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_425"> <id>82</id> <stage>4</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_426"> <id>17</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_427"> <id>82</id> <stage>3</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_428"> <id>18</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_429"> <id>82</id> <stage>2</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_430"> <id>19</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_431"> <id>82</id> <stage>1</stage> <latency>5</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_432"> <id>20</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_433"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_434"> <id>21</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_435"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_436"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_437"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_438"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_439"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_440"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_441"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_442"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_443"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_444"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_445"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_446"> <id>22</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_447"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_448"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>32</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_449"> <inState>3</inState> <outState>4</outState> <condition> <id>58</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_450"> <inState>4</inState> <outState>5</outState> <condition> <id>59</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_451"> <inState>5</inState> <outState>6</outState> <condition> <id>60</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_452"> <inState>6</inState> <outState>7</outState> <condition> <id>61</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_453"> <inState>7</inState> <outState>8</outState> <condition> <id>62</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_454"> <inState>8</inState> <outState>9</outState> <condition> <id>63</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_455"> <inState>9</inState> <outState>10</outState> <condition> <id>64</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_456"> <inState>10</inState> <outState>11</outState> <condition> <id>65</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_457"> <inState>11</inState> <outState>12</outState> <condition> <id>66</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_458"> <inState>12</inState> <outState>13</outState> <condition> <id>67</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_459"> <inState>13</inState> <outState>14</outState> <condition> <id>68</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_460"> <inState>14</inState> <outState>15</outState> <condition> <id>69</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_461"> <inState>15</inState> <outState>16</outState> <condition> <id>70</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_462"> <inState>16</inState> <outState>17</outState> <condition> <id>71</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_463"> <inState>17</inState> <outState>18</outState> <condition> <id>72</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_464"> <inState>18</inState> <outState>19</outState> <condition> <id>73</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_465"> <inState>19</inState> <outState>20</outState> <condition> <id>74</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_466"> <inState>20</inState> <outState>21</outState> <condition> <id>75</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_467"> <inState>21</inState> <outState>2</outState> <condition> <id>76</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_468"> <inState>2</inState> <outState>22</outState> <condition> <id>57</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>11</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_469"> <inState>2</inState> <outState>3</outState> <condition> <id>77</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>11</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_470"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>hls_target_mul_34fYi_U18 (hls_target_mul_34fYi)</first> <second class_id="39" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>DSP48E</first> <second>4</second> </item> <item> <first>FF</first> <second>227</second> </item> <item> <first>LUT</first> <second>1</second> </item> </second> </item> <item> <first>hls_target_mul_7sg8j_U19 (hls_target_mul_7sg8j)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>DSP48E</first> <second>4</second> </item> <item> <first>FF</first> <second>115</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>43</count> <item_version>0</item_version> <item> <first>ap_block_pp0_stage0_flag00001001 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_pp0_stage0_flag00011001 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state21_io ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3_pp0_stage0_iter1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>exitcond_flatten_fu_188_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>21</second> </item> <item> <first>(1P1)</first> <second>16</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>exitcond_fu_200_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>11</second> </item> <item> <first>(1P1)</first> <second>9</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>6</second> </item> </second> </item> <item> <first>indvar_flatten_next_fu_194_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>21</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>68</second> </item> <item> <first>LUT</first> <second>26</second> </item> </second> </item> <item> <first>neg_mul_fu_599_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>65</second> </item> <item> <first>FF</first> <second>200</second> </item> <item> <first>LUT</first> <second>70</second> </item> </second> </item> <item> <first>neg_ti_fu_627_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_347_fu_424_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_359_fu_436_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_371_fu_455_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_377_fu_467_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_383_fu_479_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_395_fu_491_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_397_fu_567_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>p_399_fu_633_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>(2P2)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>p_401_fu_645_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>p_402_cast_fu_659_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>(2P2)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>p_408_fu_667_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>27</second> </item> <item> <first>(1P1)</first> <second>27</second> </item> <item> <first>FF</first> <second>86</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>p_hw_output_x_scan_1_fu_214_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>11</second> </item> <item> <first>FF</first> <second>38</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>p_hw_output_x_scan_s_fu_206_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>(2P2)</first> <second>11</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>p_hw_output_y_scan_2_fu_220_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>11</second> </item> <item> <first>FF</first> <second>38</second> </item> <item> <first>LUT</first> <second>16</second> </item> </second> </item> <item> <first>p_hw_output_y_scan_s_fu_232_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>11</second> </item> <item> <first>(2P2)</first> <second>11</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>tmp10_fu_563_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp1_fu_520_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp2_fu_524_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp3_fu_496_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>101</second> </item> <item> <first>LUT</first> <second>37</second> </item> </second> </item> <item> <first>tmp4_fu_554_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp5_fu_558_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp6_fu_529_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp7_fu_533_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp8_fu_539_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp9_fu_544_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp_13_fu_620_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>(2P2)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>tmp_1_fu_407_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>11</second> </item> <item> <first>(1P1)</first> <second>9</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>6</second> </item> </second> </item> <item> <first>tmp_fu_226_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>11</second> </item> <item> <first>(1P1)</first> <second>11</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>6</second> </item> </second> </item> <item> <first>tmp_last_V_fu_549_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>tmp_mid1_fu_412_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>11</second> </item> <item> <first>(1P1)</first> <second>11</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>6</second> </item> </second> </item> <item> <first>tmp_mid2_fu_501_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>(2P2)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>12</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>21</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter19</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_sig_ioackin_hw_output_V_value_V_ap_ack</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>hw_output_V_last_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>hw_output_V_value_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>indvar_flatten_reg_154</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>21</second> </item> <item> <first>(2Count)</first> <second>42</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>p_hw_input_stencil_stream_V_value_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>p_hw_output_x_scan_2_reg_177</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>11</second> </item> <item> <first>(2Count)</first> <second>22</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>p_hw_output_y_scan_1_phi_fu_169_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>11</second> </item> <item> <first>(2Count)</first> <second>22</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>p_hw_output_y_scan_1_reg_165</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>11</second> </item> <item> <first>(2Count)</first> <second>22</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>84</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter10</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter11</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter12</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter13</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter14</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter15</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter16</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter17</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter18</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter19</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter3</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter4</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter5</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter6</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter7</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter8</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter9</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_ioackin_hw_output_V_last_V_ap_ack</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_ioackin_hw_output_V_value_V_ap_ack</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter11_tmp_20_reg_900</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>27</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>27</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter2_p_351_reg_723</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter2_p_387_reg_753</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter2_tmp_1_reg_808</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter2_tmp_4_reg_798</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter2_tmp_5_reg_768</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter2_tmp_reg_708</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter3_p_359_reg_823</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter3_tmp3_reg_848</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter4_tmp7_reg_858</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter4_tmp9_reg_863</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>exitcond_flatten_reg_678</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>exitcond_reg_687</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>indvar_flatten_reg_154</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>21</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>21</second> </item> </second> </item> <item> <first>mul_reg_895</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>65</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>65</second> </item> </second> </item> <item> <first>neg_mul_reg_905</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>65</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>65</second> </item> </second> </item> <item> <first>p_345_reg_718</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_347_reg_818</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_351_reg_723</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_357_reg_728</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_359_reg_823</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_363_reg_733</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_369_reg_738</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_371_reg_828</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_375_reg_743</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_377_reg_833</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_381_reg_748</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_383_reg_838</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_387_reg_753</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_393_reg_758</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_395_reg_843</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_397_reg_878</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_399_reg_910</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_401_reg_921</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>p_hw_output_x_scan_2_reg_177</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>11</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>11</second> </item> </second> </item> <item> <first>p_hw_output_x_scan_s_reg_693</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>11</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>11</second> </item> </second> </item> <item> <first>p_hw_output_y_scan_1_reg_165</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>11</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>11</second> </item> </second> </item> <item> <first>p_hw_output_y_scan_2_reg_703</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>11</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>11</second> </item> </second> </item> <item> <first>p_hw_output_y_scan_s_reg_713</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>11</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>11</second> </item> </second> </item> <item> <first>tmp2_reg_853</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp3_reg_848</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp5_reg_873</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp7_reg_858</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp9_reg_863</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp_10_reg_803</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_17_reg_763</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_18_reg_884</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_1_reg_808</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_20_reg_900</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>27</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>27</second> </item> </second> </item> <item> <first>tmp_3_reg_793</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_4_reg_798</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_5_reg_768</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_6_reg_773</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_7_reg_778</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_8_reg_783</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>29</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>29</second> </item> </second> </item> <item> <first>tmp_9_reg_788</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>30</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>30</second> </item> </second> </item> <item> <first>tmp_last_V_reg_868</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_mid1_reg_813</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_reg_708</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_s_reg_916</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> </dp_register_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>hls_target_mul_34fYi_U18 (hls_target_mul_34fYi)</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>hls_target_mul_7sg8j_U19 (hls_target_mul_7sg8j)</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> </dp_component_map> <dp_expression_map> <count>36</count> <item_version>0</item_version> <item> <first>exitcond_flatten_fu_188_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>exitcond_fu_200_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>indvar_flatten_next_fu_194_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>neg_mul_fu_599_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>neg_ti_fu_627_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_347_fu_424_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_359_fu_436_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_371_fu_455_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_377_fu_467_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>p_383_fu_479_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_395_fu_491_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_397_fu_567_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_399_fu_633_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>p_401_fu_645_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>p_402_cast_fu_659_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>p_408_fu_667_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>p_hw_output_x_scan_1_fu_214_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>p_hw_output_x_scan_s_fu_206_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>p_hw_output_y_scan_2_fu_220_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>p_hw_output_y_scan_s_fu_232_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>tmp10_fu_563_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp1_fu_520_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp2_fu_524_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp3_fu_496_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp4_fu_554_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>tmp5_fu_558_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp6_fu_529_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp7_fu_533_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp8_fu_539_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>tmp9_fu_544_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_13_fu_620_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>tmp_1_fu_407_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_fu_226_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_last_V_fu_549_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>tmp_mid1_fu_412_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_mid2_fu_501_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>83</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>6</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>7</first> <second>4</second> </second> </item> <item> <first>72</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>14</first> <second>4</second> </second> </item> <item> <first>83</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>7</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>94</first> <second> <first>1</first> <second>20</second> </second> </item> <item> <first>96</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_471"> <region_name>Loop 1</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>14</item> <item>94</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>20</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>79</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>138</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>158</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>169</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>188</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>206</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>214</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>220</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>226</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>232</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>239</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>243</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>253</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>263</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>273</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>293</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>303</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>313</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>323</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>327</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>337</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>347</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>367</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>377</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>387</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>397</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>407</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>412</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>417</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>429</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>436</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>441</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>448</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>455</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>460</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>467</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>479</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>484</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>491</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>496</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>501</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>506</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>513</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>520</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>524</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>529</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>533</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>539</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>544</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>549</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>554</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>558</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>563</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>567</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>572</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>580</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>583</first> <second> <count>5</count> <item_version>0</item_version> <item>71</item> <item>71</item> <item>71</item> <item>71</item> <item>71</item> </second> </item> <item> <first>589</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>599</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>604</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>613</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>617</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>620</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>627</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>633</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>640</first> <second> <count>5</count> <item_version>0</item_version> <item>82</item> <item>82</item> <item>82</item> <item>82</item> <item>82</item> </second> </item> <item> <first>645</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>649</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>652</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>659</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>667</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>673</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>75</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>exitcond_flatten_fu_188</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>exitcond_fu_200</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>indvar_flatten_next_fu_194</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>indvar_flatten_phi_fu_158</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>neg_mul_fu_599</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>neg_ti_fu_627</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>p_345_fu_239</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>p_347_fu_424</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_351_fu_243</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>p_357_fu_253</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>p_359_fu_436</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_363_fu_263</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>p_369_fu_273</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>p_371_fu_455</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_375_fu_283</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>p_377_fu_467</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>p_381_fu_293</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>p_383_fu_479</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_387_fu_303</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>p_393_fu_313</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>p_395_fu_491</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_397_fu_567</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_399_fu_633</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>p_401_fu_645</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>p_402_cast_fu_659</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>p_408_fu_667</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>p_hw_output_x_scan_1_fu_214</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>p_hw_output_x_scan_2_phi_fu_181</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>p_hw_output_x_scan_s_fu_206</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>p_hw_output_y_scan_1_phi_fu_169</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>p_hw_output_y_scan_2_fu_220</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>p_hw_output_y_scan_s_fu_232</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>p_shl1_fu_506</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>p_shl2_fu_429</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_shl4_fu_484</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>p_shl5_fu_513</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>p_shl6_fu_472</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>p_shl7_fu_460</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>p_shl8_fu_448</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>p_shl9_fu_441</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>p_shl_fu_417</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>sext_cast_fu_580</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>tmp10_fu_563</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp1_fu_520</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp2_fu_524</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp3_fu_496</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp4_fu_554</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>tmp5_fu_558</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp6_fu_529</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp7_fu_533</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp8_fu_539</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>tmp9_fu_544</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_10_fu_397</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_11_fu_613</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>tmp_12_fu_617</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>tmp_13_fu_620</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>tmp_17_fu_323</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_18_fu_572</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>tmp_19_fu_604</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_1_fu_407</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_20_fu_589</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_21_fu_649</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>tmp_22_fu_652</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>tmp_3_fu_377</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_4_fu_387</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_5_fu_327</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_6_fu_337</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_7_fu_347</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_8_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>tmp_9_fu_367</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_fu_226</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_last_V_fu_549</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>tmp_mid1_fu_412</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_mid2_fu_501</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>tmp_value_V_4_fu_673</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>2</count> <item_version>0</item_version> <item> <first>grp_fu_583</first> <second> <count>5</count> <item_version>0</item_version> <item>71</item> <item>71</item> <item>71</item> <item>71</item> <item>71</item> </second> </item> <item> <first>grp_fu_640</first> <second> <count>5</count> <item_version>0</item_version> <item>82</item> <item>82</item> <item>82</item> <item>82</item> <item>82</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>2</count> <item_version>0</item_version> <item> <first>StgValue_116_write_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>tmp_value_V_read_fu_138</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>52</count> <item_version>0</item_version> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>165</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>177</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>678</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>682</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>687</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>693</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>698</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>703</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>708</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>713</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>718</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>723</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>728</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>733</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>738</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>743</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>748</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>753</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>758</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>763</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>768</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>773</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>778</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>783</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>788</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>793</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>798</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>803</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>808</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>813</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>818</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>823</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>828</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>833</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>838</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>843</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>848</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>853</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>858</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>863</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>868</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>873</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>878</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>884</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>890</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>895</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>900</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>905</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>910</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>916</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>921</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>52</count> <item_version>0</item_version> <item> <first>exitcond_flatten_reg_678</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>exitcond_reg_687</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>indvar_flatten_next_reg_682</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>indvar_flatten_reg_154</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>mul_reg_895</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>neg_mul_reg_905</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_345_reg_718</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>p_347_reg_818</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_351_reg_723</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>p_357_reg_728</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>p_359_reg_823</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_363_reg_733</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>p_369_reg_738</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>p_371_reg_828</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>p_375_reg_743</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>p_377_reg_833</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>p_381_reg_748</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>p_383_reg_838</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>p_387_reg_753</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>p_393_reg_758</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>p_395_reg_843</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>p_397_reg_878</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_399_reg_910</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>p_401_reg_921</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>p_hw_output_x_scan_1_reg_698</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>p_hw_output_x_scan_2_reg_177</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>p_hw_output_x_scan_s_reg_693</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>p_hw_output_y_scan_1_reg_165</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>p_hw_output_y_scan_2_reg_703</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>p_hw_output_y_scan_s_reg_713</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>sext_cast_reg_890</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>tmp2_reg_853</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp3_reg_848</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp5_reg_873</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp7_reg_858</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp9_reg_863</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_10_reg_803</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_17_reg_763</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_18_reg_884</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>tmp_1_reg_808</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_20_reg_900</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_3_reg_793</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_4_reg_798</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_5_reg_768</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_6_reg_773</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_7_reg_778</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_8_reg_783</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>tmp_9_reg_788</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_last_V_reg_868</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>tmp_mid1_reg_813</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_reg_708</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>tmp_s_reg_916</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>3</count> <item_version>0</item_version> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>165</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>177</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>3</count> <item_version>0</item_version> <item> <first>indvar_flatten_reg_154</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>p_hw_output_x_scan_2_reg_177</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>p_hw_output_y_scan_1_reg_165</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="57" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>hw_output_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> </second> </item> <item> <first>hw_output_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> </second> </item> <item> <first>p_hw_input_stencil_stream_V_value_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="59" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
package body Inline3_Pkg is procedure Test (I : Integer) is function F (J : Integer) return Integer is begin return I - J; end; begin if I /= F (I) then raise Program_Error; end if; end; end Inline3_Pkg;
----------------------------------------------------------------------- -- ado-statements-tests -- Test statements package -- Copyright (C) 2015, 2017, 2018, 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Test_Caller; with Util.Strings.Transforms; with ADO.Utils; with ADO.Sessions; with Regtests.Statements.Model; package body ADO.Statements.Tests is procedure Populate (Tst : in out Test); function Get_Sum (T : in Test; Table : in String) return Natural; function Get_Sum (T : in Test; Table : in String; Ids : in ADO.Utils.Identifier_Vector) return Natural; -- Test the query statement Get_Xxx operation for various types. generic type T (<>) is private; with function Get_Value (Stmt : in ADO.Statements.Query_Statement; Column : in Natural) return T is <>; Name : String; Column : String; procedure Test_Query_Get_Value_T (Tst : in out Test); -- Test the query statement Get_Xxx operation called on a null column. generic type T (<>) is private; with function Get_Value (Stmt : in ADO.Statements.Query_Statement; Column : in Natural) return T is <>; Name : String; Column : String; procedure Test_Query_Get_Value_On_Null_T (Tst : in out Test); procedure Populate (Tst : in out Test) is DB : ADO.Sessions.Master_Session := Regtests.Get_Master_Database; begin DB.Begin_Transaction; for I in 1 .. 10 loop declare Item : Regtests.Statements.Model.Table_Ref; begin Item.Set_Id_Value (ADO.Identifier (I * I)); Item.Set_Int_Value (I); Item.Set_Bool_Value ((I mod 2) = 0); Item.Set_String_Value ("Item" & Integer'Image (I)); Item.Set_Time_Value (Ada.Calendar.Clock); Item.Set_Entity_Value (ADO.Entity_Type (10 - I)); Item.Save (DB); Tst.Assert (Item.Is_Inserted, "Item inserted in database"); end; declare Item : Regtests.Statements.Model.Nullable_Table_Ref; begin Item.Set_Id_Value (ADO.Identifier (I * I)); Item.Set_Int_Value (ADO.Null_Integer); Item.Set_Bool_Value (ADO.Null_Boolean); Item.Set_String_Value (ADO.Null_String); Item.Set_Time_Value (ADO.Null_Time); Item.Set_Entity_Value (ADO.Null_Entity_Type); Item.Save (DB); Tst.Assert (Item.Is_Inserted, "Item inserted in database"); end; end loop; DB.Commit; end Populate; -- ------------------------------ -- Test the query statement Get_Xxx operation for various types. -- ------------------------------ procedure Test_Query_Get_Value_T (Tst : in out Test) is Stmt : ADO.Statements.Query_Statement; DB : constant ADO.Sessions.Session := Regtests.Get_Database; begin Populate (Tst); -- Check that Get_Value raises an exception if the statement is invalid. begin declare V : T := Get_Value (Stmt, 0); pragma Unreferenced (V); begin Util.Tests.Fail (Tst, "No Invalid_Statement exception raised for " & Name); end; exception when Invalid_Statement => null; end; -- Execute a query to fetch one column. Stmt := DB.Create_Statement ("SELECT " & Column & " FROM test_table WHERE id = 1"); Stmt.Execute; -- Verify the query result and the Get_Value operation. Tst.Assert (Stmt.Has_Elements, "The query statement must return a value for " & Name & ":" & Column); Tst.Assert (not Stmt.Is_Null (0), "The query statement must return a non null value for " & Name & ":" & Column); Util.Tests.Assert_Equals (Tst, Column, Util.Strings.Transforms.To_Lower_Case (Stmt.Get_Column_Name (0)), "The query returns an invalid column name"); declare V : T := Get_Value (Stmt, 0); pragma Unreferenced (V); begin Stmt.Clear; end; end Test_Query_Get_Value_T; -- ------------------------------ -- Test the query statement Get_Xxx operation for various types. -- ------------------------------ procedure Test_Query_Get_Value_On_Null_T (Tst : in out Test) is Stmt : ADO.Statements.Query_Statement; DB : constant ADO.Sessions.Session := Regtests.Get_Database; begin Populate (Tst); -- Execute a query to fetch one column as NULL and one row. Stmt := DB.Create_Statement ("SELECT " & Column & ", id FROM test_nullable_table " & "WHERE " & Column & " IS NULL"); Stmt.Execute; -- Verify the query result and the Get_Value operation. Tst.Assert (Stmt.Has_Elements, "The query statement must return a value " & Name); Tst.Assert (Stmt.Is_Null (0), "The query statement must return null value for " & Name & ":" & Column); Tst.Assert (not Stmt.Is_Null (1), "The query statement must return non null value for " & Name & " and the id"); Util.Tests.Assert_Equals (Tst, Column, Util.Strings.Transforms.To_Lower_Case (Stmt.Get_Column_Name (0)), "The query returns an invalid column name"); declare V : T := Get_Value (Stmt, 0); pragma Unreferenced (V); begin Tst.Fail ("No Invalid_Type exception is raised for " & Name); Stmt.Clear; end; exception when ADO.Statements.Invalid_Type => null; end Test_Query_Get_Value_On_Null_T; procedure Test_Query_Get_Int64 is new Test_Query_Get_Value_T (Int64, ADO.Statements.Get_Int64, "Get_Int64", "id_value"); procedure Test_Query_Get_Int64_On_Null is new Test_Query_Get_Value_On_Null_T (Int64, ADO.Statements.Get_Int64, "Get_Int64", "int_value"); procedure Test_Query_Get_Integer is new Test_Query_Get_Value_T (Integer, ADO.Statements.Get_Integer, "Get_Integer", "int_value"); procedure Test_Query_Get_Nullable_Integer is new Test_Query_Get_Value_T (Nullable_Integer, ADO.Statements.Get_Nullable_Integer, "Get_Nullable_Integer", "int_value"); procedure Test_Query_Get_Nullable_Entity_Type is new Test_Query_Get_Value_T (Nullable_Entity_Type, ADO.Statements.Get_Nullable_Entity_Type, "Get_Nullable_Entity_Type", "entity_value"); procedure Test_Query_Get_Natural is new Test_Query_Get_Value_T (Natural, ADO.Statements.Get_Natural, "Get_Natural", "int_value"); procedure Test_Query_Get_Identifier is new Test_Query_Get_Value_T (ADO.Identifier, ADO.Statements.Get_Identifier, "Get_Identifier", "id_value"); procedure Test_Query_Get_Boolean is new Test_Query_Get_Value_T (Boolean, ADO.Statements.Get_Boolean, "Get_Boolean", "bool_value"); procedure Test_Query_Get_String is new Test_Query_Get_Value_T (String, ADO.Statements.Get_String, "Get_String", "string_value"); procedure Test_Query_Get_String_On_Null is new Test_Query_Get_Value_On_Null_T (Int64, ADO.Statements.Get_Int64, "Get_String", "string_value"); package Caller is new Util.Test_Caller (Test, "ADO.Statements"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test ADO.Statements.Save", Test_Save'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Int64", Test_Query_Get_Int64'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Int64 (NULL)", Test_Query_Get_Int64_On_Null'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Integer", Test_Query_Get_Integer'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Nullable_Integer", Test_Query_Get_Nullable_Integer'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Natural", Test_Query_Get_Natural'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Identifier", Test_Query_Get_Identifier'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Boolean", Test_Query_Get_Boolean'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_String", Test_Query_Get_String'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_String (NULL)", Test_Query_Get_String_On_Null'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Nullable_Entity_Type", Test_Query_Get_Nullable_Entity_Type'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Create_Statement (using $entity_type[])", Test_Entity_Types'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Integer (raise Invalid_Column)", Test_Invalid_Column'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Get_Integer (raise Invalid_Type)", Test_Invalid_Type'Access); Caller.Add_Test (Suite, "Test ADO.Statements.Query (raise Invalid_Statement)", Test_Invalid_Statement'Access); end Add_Tests; function Get_Sum (T : in Test; Table : in String) return Natural is DB : constant ADO.Sessions.Session := Regtests.Get_Database; Stmt : ADO.Statements.Query_Statement := DB.Create_Statement ("SELECT SUM(id_value) FROM " & Table); begin Stmt.Execute; T.Assert (Stmt.Has_Elements, "The query statement must return a value for table " & Table); if Stmt.Is_Null (0) then return 0; else return Stmt.Get_Integer (0); end if; end Get_Sum; function Get_Sum (T : in Test; Table : in String; Ids : in ADO.Utils.Identifier_Vector) return Natural is DB : constant ADO.Sessions.Session := Regtests.Get_Database; Stmt : ADO.Statements.Query_Statement := DB.Create_Statement ("SELECT SUM(id_value) FROM " & Table & " WHERE id IN (:ids)"); begin Stmt.Bind_Param ("ids", Ids); Stmt.Execute; T.Assert (Stmt.Has_Elements, "The query statement must return a value for table " & Table); if Stmt.Is_Null (0) then return 0; else return Stmt.Get_Integer (0); end if; end Get_Sum; -- ------------------------------ -- Test creation of several rows in test_table with different column type. -- ------------------------------ procedure Test_Save (T : in out Test) is First : constant Natural := Get_Sum (T, "test_table"); DB : ADO.Sessions.Master_Session := Regtests.Get_Master_Database; List : ADO.Utils.Identifier_Vector; begin DB.Begin_Transaction; for I in 1 .. 10 loop declare Item : Regtests.Statements.Model.Table_Ref; begin Item.Set_Id_Value (ADO.Identifier (I * I)); Item.Set_Int_Value (I); Item.Set_Bool_Value ((I mod 2) = 0); Item.Set_String_Value ("Item" & Integer'Image (I)); Item.Set_Time_Value (Ada.Calendar.Clock); Item.Set_Entity_Value (ADO.Entity_Type (10 - I)); Item.Save (DB); List.Append (Item.Get_Id); end; end loop; DB.Commit; Util.Tests.Assert_Equals (T, First + 385, Get_Sum (T, "test_table"), "The SUM query returns an invalid value for test_table"); Util.Tests.Assert_Equals (T, 385, Get_Sum (T, "test_table", List), "The SUM query returns an invalid value for test_table"); end Test_Save; -- ------------------------------ -- Test queries using the $entity_type[] cache group. -- ------------------------------ procedure Test_Entity_Types (T : in out Test) is DB : constant ADO.Sessions.Master_Session := Regtests.Get_Master_Database; Stmt : ADO.Statements.Query_Statement; Count : Natural := 0; begin Stmt := DB.Create_Statement ("SELECT name FROM entity_type " & "WHERE entity_type.id = $entity_type[test_user]"); Stmt.Execute; while Stmt.Has_Elements loop Util.Tests.Assert_Equals (T, "test_user", Stmt.Get_String (0), "Invalid query response"); Count := Count + 1; Stmt.Next; end loop; Util.Tests.Assert_Equals (T, 1, Count, "Query must return one row"); end Test_Entity_Types; -- ------------------------------ -- Test executing a SQL query and getting an invalid column. -- ------------------------------ procedure Test_Invalid_Column (T : in out Test) is use type ADO.Schemas.Column_Type; DB : constant ADO.Sessions.Session := Regtests.Get_Database; Stmt : ADO.Statements.Query_Statement; Count : Natural := 0; Name : Ada.Strings.Unbounded.Unbounded_String; Value : Integer := 123456789; begin Stmt := DB.Create_Statement ("SELECT name FROM entity_type"); Stmt.Execute; while Stmt.Has_Elements loop Name := Stmt.Get_Unbounded_String (0); T.Assert (Ada.Strings.Unbounded.Length (Name) > 0, "Invalid entity_type name"); begin Value := Stmt.Get_Integer (1); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Integer"); exception when ADO.Statements.Invalid_Column => null; end; begin Name := Stmt.Get_Unbounded_String (1); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Unbounded_String"); exception when ADO.Statements.Invalid_Column => null; end; begin T.Assert (Stmt.Get_Boolean (1), "Get_Boolean"); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Unbounded_String"); exception when ADO.Statements.Invalid_Column => null; end; begin Util.Tests.Assert_Equals (T, "?", Stmt.Get_Column_Name (1), "Get_Column_Name should raise an exception"); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Column_Name"); exception when ADO.Statements.Invalid_Column => null; end; begin T.Assert (ADO.Schemas.T_NULL = Stmt.Get_Column_Type (1), "Get_Column_Type should raise an exception"); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Column_Name"); exception when ADO.Statements.Invalid_Column => null; end; Util.Tests.Assert_Equals (T, 123456789, Value, "Value was corrupted"); Count := Count + 1; Stmt.Next; end loop; T.Assert (Count > 0, "Query must return at least on entity_type"); end Test_Invalid_Column; -- ------------------------------ -- Test executing a SQL query and getting an invalid value. -- ------------------------------ procedure Test_Invalid_Type (T : in out Test) is DB : constant ADO.Sessions.Session := Regtests.Get_Database; Stmt : ADO.Statements.Query_Statement; Count : Natural := 0; Name : Ada.Strings.Unbounded.Unbounded_String; Value : Integer := 123456789; Time : Ada.Calendar.Time with Unreferenced; begin Stmt := DB.Create_Statement ("SELECT name, id FROM entity_type"); Stmt.Execute; while Stmt.Has_Elements loop Name := Stmt.Get_Unbounded_String (0); T.Assert (Ada.Strings.Unbounded.Length (Name) > 0, "Invalid entity_type name"); begin Value := Stmt.Get_Integer (0); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Integer on a String"); exception when ADO.Statements.Invalid_Type => null; end; begin Time := Stmt.Get_Time (1); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Time on an Integer"); exception when ADO.Statements.Invalid_Type => null; end; begin T.Assert (Stmt.Get_Boolean (0), "Get_Boolean"); Util.Tests.Fail (T, "No exception raised for Stmt.Get_Boolean on a String"); exception when ADO.Statements.Invalid_Type => null; end; Util.Tests.Assert_Equals (T, 123456789, Value, "Value was corrupted"); Count := Count + 1; Stmt.Next; end loop; T.Assert (Count > 0, "Query must return at least on entity_type"); end Test_Invalid_Type; -- ------------------------------ -- Test executing a SQL query with an invalid SQL. -- ------------------------------ procedure Test_Invalid_Statement (T : in out Test) is DB : ADO.Sessions.Master_Session := Regtests.Get_Master_Database; begin declare Stmt : ADO.Statements.Query_Statement := DB.Create_Statement ("SELECT name FROM "); begin Stmt.Execute; Util.Tests.Fail (T, "No SQL_Error exception was raised"); exception when ADO.Statements.SQL_Error => null; end; declare Stmt : ADO.Statements.Query_Statement := DB.Create_Statement ("INSERT name FROM "); begin Stmt.Execute; Util.Tests.Fail (T, "No SQL_Error exception was raised"); exception when ADO.Statements.SQL_Error => null; end; declare Stmt : ADO.Statements.Query_Statement := DB.Create_Statement ("DELETE name FROM "); begin Stmt.Execute; Util.Tests.Fail (T, "No SQL_Error exception was raised"); exception when ADO.Statements.SQL_Error => null; end; declare DB2 : constant ADO.Sessions.Master_Session := DB; Stmt : ADO.Statements.Query_Statement; begin DB.Close; Stmt := DB2.Create_Statement ("SELECT name FROM test_table"); Stmt.Execute; Util.Tests.Fail (T, "No SQL_Error exception was raised"); exception when ADO.Sessions.Session_Error => null; end; end Test_Invalid_Statement; end ADO.Statements.Tests;
with ObjectPack, StrategyPackage, EnvironmentPackage, IntrospectorPackage, VisitablePackage, PositionPackage; use ObjectPack, StrategyPackage, EnvironmentPackage, IntrospectorPackage, VisitablePackage, PositionPackage; package AbstractStrategyPackage is type AbstractStrategy is abstract new Strategy and Object with record env: EnvironmentPtr := null; end record; type AbstractStrategyPtr is access all AbstractStrategy'Class; ---------------------------------------------------------------------------- -- Strategy implementation ---------------------------------------------------------------------------- function visit(str: access AbstractStrategy; any: access Environment) return VisitablePtr; function visit(str: access AbstractStrategy; any: VisitablePtr) return VisitablePtr; function visit(str: access AbstractStrategy; envt: access Environment; i: access Introspector'Class) return ObjectPtr; function visit(str: access AbstractStrategy; any: ObjectPtr; i: access Introspector'Class) return ObjectPtr; function visitLight(str: access AbstractStrategy; any: VisitablePtr) return VisitablePtr; function getEnvironment(str: AbstractStrategy) return access Environment; procedure setEnvironment(str: in out AbstractStrategy; env: access Environment); ---------------------------------------------------------------------------- function getRoot(str: AbstractStrategy) return ObjectPtr; procedure setRoot(str: in out AbstractStrategy; any: ObjectPtr); function getSubject(str: AbstractStrategy) return ObjectPtr; procedure setSubject(str: in out AbstractStrategy; any: ObjectPtr); function getPosition(str: AbstractStrategy) return Position; function getAncestor(str: AbstractStrategy) return ObjectPtr; procedure init(str: in out Strategy'Class; i: IntrospectorPtr); procedure init(str: in out Strategy'Class; env: access Environment); ---------------------------------------------------------------------------- end AbstractStrategyPackage;