blob: 52d8a3666717a52dac0c74a61e7fdcfd24a9ab98 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
|
-- File operations for interpreter
-- Copyright (C) 2014 Tristan Gingold
--
-- 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.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <gnu.org/licenses>.
with Vhdl.Nodes; use Vhdl.Nodes;
with Simul.Environments; use Simul.Environments;
with Grt.Files; use Grt.Files;
with Grt.Types; use Grt.Types;
package Simul.File_Operation is
Null_File : constant Natural := 0;
-- Open a file.
procedure File_Open (File : Iir_Value_Literal_Acc;
Name : Iir_Value_Literal_Acc;
Mode : Iir_Value_Literal_Acc;
File_Decl : Iir;
Stmt : Iir);
procedure File_Open_Status (Status : Iir_Value_Literal_Acc;
File : Iir_Value_Literal_Acc;
Name : Iir_Value_Literal_Acc;
Mode : Iir_Value_Literal_Acc;
File_Decl : Iir;
Stmt : Iir);
-- Close a file.
-- If the file was not open, this has no effects.
procedure File_Close_Text (File : Iir_Value_Literal_Acc; Stmt : Iir);
procedure File_Close_Binary (File : Iir_Value_Literal_Acc; Stmt : Iir);
procedure File_Destroy_Text (File : Iir_Value_Literal_Acc);
procedure File_Destroy_Binary (File : Iir_Value_Literal_Acc);
-- Elaborate a file_declaration.
function Elaborate_File_Declaration
(Instance: Block_Instance_Acc; Decl: Iir_File_Declaration)
return Iir_Value_Literal_Acc;
-- Write VALUE to FILE.
-- STMT is the statement, to display error.
procedure Write_Text (File: Iir_Value_Literal_Acc;
Value: Iir_Value_Literal_Acc);
procedure Write_Binary (File: Iir_Value_Literal_Acc;
Value: Iir_Value_Literal_Acc);
procedure Read_Binary (File: Iir_Value_Literal_Acc;
Value: Iir_Value_Literal_Acc);
procedure Read_Length_Text (File : Iir_Value_Literal_Acc;
Value : Iir_Value_Literal_Acc;
Length : Iir_Value_Literal_Acc);
procedure Read_Length_Binary (File : Iir_Value_Literal_Acc;
Value : Iir_Value_Literal_Acc;
Length : Iir_Value_Literal_Acc);
procedure Untruncated_Text_Read (File : Iir_Value_Literal_Acc;
Str : Iir_Value_Literal_Acc;
Length : Iir_Value_Literal_Acc);
procedure Flush (File : Iir_Value_Literal_Acc);
-- Test end of FILE is reached.
function Endfile (File : Iir_Value_Literal_Acc; Stmt : Iir)
return Boolean;
-- Fp to string
procedure Textio_Write_Real (Str : Iir_Value_Literal_Acc;
Len : Iir_Value_Literal_Acc;
Val : Ghdl_F64;
Ndigits : Std_Integer);
function Textio_Read_Real (Str : Iir_Value_Literal_Acc) return Ghdl_F64;
end Simul.File_Operation;
|