blob: bcf41ddc87e7adc4d3d0435839cfd5bc5f000b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
-- Iir to ortho translator.
-- Copyright (C) 2002 - 2014 Tristan Gingold
--
-- GHDL 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, or (at your option) any later
-- version.
--
-- GHDL 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 GCC; see the file COPYING. If not, write to the Free
-- Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-- 02111-1307, USA.
package Trans.Helpers2 is
-- Copy a fat pointer.
-- D and S are stabilized fat pointers.
procedure Copy_Fat_Pointer (D : Mnode; S: Mnode);
-- Create a constant (of name ID) for string STR.
-- Append a NUL terminator (to make interfaces with C easier).
function Create_String (Str : String; Id : O_Ident) return O_Dnode;
function Create_String (Str : String; Id : O_Ident; Storage : O_Storage)
return O_Dnode;
function Create_String (Str : Name_Id; Id : O_Ident; Storage : O_Storage)
return O_Dnode;
function Create_String_Len (Str : String; Id : O_Ident) return O_Cnode;
procedure Gen_Memcpy (Dest : O_Enode; Src : O_Enode; Length : O_Enode);
-- Allocate SIZE bytes aligned on the biggest alignment and return a
-- pointer of type PTYPE.
function Gen_Alloc
(Kind : Allocation_Kind; Size : O_Enode; Ptype : O_Tnode)
return O_Enode;
-- Allocate on the heap LENGTH bytes aligned on the biggest alignment,
-- and returns a pointer of type PTYPE.
--function Gen_Malloc (Length : O_Enode; Ptype : O_Tnode) return O_Enode;
-- Call a procedure (DATA_TYPE) for each signal of TARG.
procedure Register_Signal
(Targ : Mnode; Targ_Type : Iir; Proc : O_Dnode);
-- Call PROC for each scalar signal of list LIST.
procedure Register_Signal_List (List : Iir_List; Proc : O_Dnode);
-- Often used subprograms for Foreach_non_composite
-- when DATA_TYPE is o_enode.
function Gen_Oenode_Prepare_Data_Composite
(Targ: Mnode; Targ_Type : Iir; Val : O_Enode)
return Mnode;
function Gen_Oenode_Update_Data_Array (Val : Mnode;
Targ_Type : Iir;
Index : O_Dnode)
return O_Enode;
function Gen_Oenode_Update_Data_Record
(Val : Mnode; Targ_Type : Iir; El : Iir_Element_Declaration)
return O_Enode;
procedure Gen_Oenode_Finish_Data_Composite (Data : in out Mnode);
-- Just the line from TARGET location.
function Get_Line_Number (Target: Iir) return Natural;
procedure Assoc_Filename_Line (Assoc : in out O_Assoc_List;
Line : Natural);
end Trans.Helpers2;
|