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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2006 by Florian Klaempfl
member of the Free Pascal development team.
System unit for FreeRTOS systems
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
Unit System;
{*****************************************************************************}
interface
{*****************************************************************************}
{$define FPC_SYSTEM_HAS_STACKTOP}
{$define FPC_IS_SYSTEM}
{$define HAS_CMDLINE}
{ currently, the avr compiler cannot compile complex procedures especially dealing with int64
which are probably anyways rarely used on avr
meanwhile, the avr compiler can deal with them (FK) }
{$ifdef CPUAVR}
{ $define EXCLUDE_COMPLEX_PROCS}
{$endif CPUAVR}
{ $define USE_NOTHREADMANAGER}
{$define DISABLE_NO_THREAD_MANAGER}
{ Do not use standard memory manager }
{$define HAS_MEMORYMANAGER}
{$define FPC_NO_DEFAULT_HEAP}
{$define FPC_ANSI_TEXTFILEREC}
{ make output and stdout as well as input and stdin equal to save memory }
{$define FPC_STDOUT_TRUE_ALIAS}
{$ifdef CPUI8086}
{$DEFINE FPC_INCLUDE_SOFTWARE_MUL}
{$DEFINE FPC_INCLUDE_SOFTWARE_MOD_DIV}
{$endif CPUI8086}
{$I check.inc}
{$I systemh.inc}
const
{$ifdef FPC_HAS_FEATURE_TEXTIO}
LineEnding = #10;
{$endif FPC_HAS_FEATURE_TEXTIO}
{$ifdef FPC_HAS_FEATURE_FILEIO}
LFNSupport = true;
DirectorySeparator = '/';
DriveSeparator = ':';
ExtensionSeparator = '.';
PathSeparator = ':';
AllowDirectorySeparators : set of char = ['\','/'];
AllowDriveSeparators : set of char = [':'];
{$endif FPC_HAS_FEATURE_FILEIO}
{ FileNameCaseSensitive and FileNameCasePreserving are defined below! }
{$ifdef FPC_HAS_FEATURE_EXITCODE}
maxExitCode = 255;
{$endif FPC_HAS_FEATURE_EXITCODE}
{$ifdef FPC_HAS_FEATURE_FILEIO}
MaxPathLen = 1024; // BSDs since 1993, Solaris 10, Darwin
AllFilesMask = '*';
UnusedHandle = -1;
StdInputHandle = 0;
StdOutputHandle = 1;
StdErrorHandle = 2;
FileNameCaseSensitive : boolean = true;
FileNameCasePreserving: boolean = true;
{$endif FPC_HAS_FEATURE_FILEIO}
{$ifdef FPC_HAS_FEATURE_TEXTIO}
CtrlZMarksEOF: boolean = false; (* #26 not considered as end of file *)
sLineBreak = LineEnding;
DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsCrLF;
{$endif FPC_HAS_FEATURE_TEXTIO}
{$ifdef CPUI8086}
{ The value that needs to be added to the segment to move the pointer by
64K bytes (BP7 compatibility) }
SelectorInc: Word = $1000;
{$endif CPUI8086}
type
trtl_do_close = procedure (handle : longint);
trtl_do_erase = procedure (p : pchar);
trtl_do_rename = procedure (p1,p2 : pchar);
trtl_do_write = function (h: longint; addr: pointer; len: longint) : longint;
trtl_do_read = function (h: longint; addr: pointer; len: longint) : longint;
trtl_do_filepos = function (handle: longint) : longint;
trtl_do_seek = procedure (handle, pos: longint);
trtl_do_seekend = function (handle: longint):longint;
trtl_do_filesize = function (handle : longint) : longint;
trtl_do_truncate = procedure (handle, pos: longint);
trtl_do_open = procedure (var f;p:pchar;flags:longint);
trtl_do_isdevice = function (handle: longint): boolean;
var
rtl_do_close : trtl_do_close = nil;
rtl_do_erase : trtl_do_erase = nil;
rtl_do_rename : trtl_do_rename = nil;
rtl_do_write : trtl_do_write = nil;
rtl_do_read : trtl_do_read = nil;
rtl_do_filepos : trtl_do_filepos = nil;
rtl_do_seek : trtl_do_seek = nil;
rtl_do_seekend : trtl_do_seekend = nil;
rtl_do_filesize : trtl_do_filesize = nil;
rtl_do_truncate : trtl_do_truncate = nil;
rtl_do_open : trtl_do_open = nil;
rtl_do_isdevice : trtl_do_isdevice = nil;
{$ifdef FPC_HAS_FEATURE_COMMANDARGS}
var
argc: LongInt = 0;
argv: PPChar = nil;
envp: PPChar = nil;
cmdline: PChar = nil;
{$endif FPC_HAS_FEATURE_COMMANDARGS}
{$ifndef FPUNONE}
{$ifdef FPC_HAS_FEATURE_SOFTFPU}
{$define fpc_softfpu_interface}
{$i softfpu.pp}
{$undef fpc_softfpu_interface}
{$endif FPC_HAS_FEATURE_SOFTFPU}
{$endif FPUNONE}
{$ifdef CPUI8086}
var
{ Mem[] support }
mem : array[0..$7fff-1] of byte absolute $0:$0;
memw : array[0..($7fff div sizeof(word))-1] of word absolute $0:$0;
meml : array[0..($7fff div sizeof(longint))-1] of longint absolute $0:$0;
__stkbottom : pointer;public name '__stkbottom';
{$endif CPUI8086}
{*****************************************************************************}
implementation
{*****************************************************************************}
{$ifdef CPUI8086}
{ used for an offset fixup for accessing the proc parameters in asm routines
that use nostackframe. We can't use the parameter name directly, because
i8086 doesn't support sp relative addressing. }
const
{$ifdef FPC_X86_CODE_FAR}
extra_param_offset = 2;
{$else FPC_X86_CODE_FAR}
extra_param_offset = 0;
{$endif FPC_X86_CODE_FAR}
{$if defined(FPC_X86_DATA_FAR) or defined(FPC_X86_DATA_HUGE)}
extra_data_offset = 2;
{$else}
extra_data_offset = 0;
{$endif}
{$endif CPUI8086}
{ Include ELF resources }
const calculated_cmdline:Pchar=nil;
{$ifndef FPUNONE}
{$ifdef FPC_HAS_FEATURE_SOFTFPU}
{$define fpc_softfpu_implementation}
{$i softfpu.pp}
{$undef fpc_softfpu_implementation}
{ we get these functions and types from the softfpu code }
{$define FPC_SYSTEM_HAS_float64}
{$define FPC_SYSTEM_HAS_float32}
{$define FPC_SYSTEM_HAS_flag}
{$define FPC_SYSTEM_HAS_extractFloat64Frac0}
{$define FPC_SYSTEM_HAS_extractFloat64Frac1}
{$define FPC_SYSTEM_HAS_extractFloat64Exp}
{$define FPC_SYSTEM_HAS_extractFloat64Frac}
{$define FPC_SYSTEM_HAS_extractFloat64Sign}
{$define FPC_SYSTEM_HAS_ExtractFloat32Frac}
{$define FPC_SYSTEM_HAS_extractFloat32Exp}
{$define FPC_SYSTEM_HAS_extractFloat32Sign}
{$endif FPC_HAS_FEATURE_SOFTFPU}
{$endif FPUNONE}
{$define FPC_SYSTEM_EXIT_NO_RETURN}
{$I system.inc}
{*****************************************************************************
Misc. System Dependent Functions
*****************************************************************************}
var
_stack_top: record end; external name '_stack_top';
{ Interim fix for now, set to large address
TODO: provide more realistic value, possibly by inspecting stack pointer
when main or task is started
}
function StackTop: pointer;
begin
StackTop:=pointer($3fffffff);
end;
procedure haltproc;cdecl;external name '_haltproc';
procedure System_exit;noreturn;external name '_haltproc';
{$ifdef FPC_HAS_FEATURE_PROCESSES}
function GetProcessID: SizeUInt;
begin
GetProcessID := 0;
end;
{$endif}
{$ifdef FPC_HAS_FEATURE_COMMANDARGS}
Function ParamCount: Longint;
Begin
Paramcount:=argc-1
End;
function paramstr(l: longint) : string;
begin
paramstr := '';
end;
{$endif FPC_HAS_FEATURE_COMMANDARGS}
{$ifdef FPC_HAS_FEATURE_RANDOM}
procedure randomize();
begin
RandSeed := 63458;
end;
{$endif FPC_HAS_FEATURE_RANDOM}
{*****************************************************************************
SystemUnit Initialization
*****************************************************************************}
{$ifdef FPC_HAS_FEATURE_STACKCHECK}
function CheckInitialStkLen(stklen : SizeUInt) : SizeUInt;inline;
begin
result := stklen;
end;
var
initialstkptr : record end; external name '_stack_top';
{$endif FPC_HAS_FEATURE_STACKCHECK}
begin
{ FPU (hard or soft) is initialized from fpc_cpuinit, which is included
per-cpu unconditionally.
SysResetFPU;
if not(IsLibrary) then
SysInitFPU;
}
{$ifdef FPC_HAS_FEATURE_CONSOLEIO}
IsConsole := TRUE;
{$endif FPC_HAS_FEATURE_CONSOLEIO}
{$ifdef FPC_HAS_FEATURE_STACKCHECK}
StackLength := CheckInitialStkLen(initialStkLen);
StackBottom := @initialstkptr - StackLength;
{$endif FPC_HAS_FEATURE_STACKCHECK}
{$ifdef FPC_HAS_FEATURE_EXCEPTIONS}
{ SysInitExceptions initializes only ExceptObjectstack and ExceptAddrStack
with nil since both are located in the bss section, they are zeroed at startup
anyways so not calling SysInitExceptions saves some bytes for simple programs. Even for threaded
programs this does not matter because in the main thread, the variables are located
in bss
}
SysInitExceptions;
{$endif FPC_HAS_FEATURE_EXCEPTIONS}
{$ifdef FPC_HAS_FEATURE_CONSOLEIO}
{ Reset IO Error }
InOutRes:=0;
{$endif FPC_HAS_FEATURE_CONSOLEIO}
{ $ifdef FPC_HAS_FEATURE_THREADING}
{ threading }
InitSystemThreads;
{ $endif FPC_HAS_FEATURE_THREADING}
{$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
initunicodestringmanager;
{$endif FPC_HAS_FEATURE_WIDESTRINGS}
end.
|