123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- {
- 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 embedded 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 probaly anyways rarely used on avr }
- {$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}
- {$I system.inc}
- {*****************************************************************************
- Misc. System Dependent Functions
- *****************************************************************************}
- var
- _stack_top: record end; external name '_stack_top';
- function StackTop: pointer;
- begin
- StackTop:=@_stack_top;
- 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}
- const
- QRAN_SHIFT = 15;
- QRAN_MASK = ((1 shl QRAN_SHIFT) - 1);
- QRAN_MAX = QRAN_MASK;
- QRAN_A = 1664525;
- QRAN_C = 1013904223;
- {$ifdef FPC_HAS_FEATURE_RANDOM}
- procedure randomize();
- begin
- RandSeed := 63458;
- end;
- procedure randomize(value: integer);
- begin
- RandSeed := value;
- end;
- function random(): integer;
- begin
- RandSeed := QRAN_A * RandSeed + QRAN_C;
- random := (RandSeed shr 16) and QRAN_MAX;
- end;
- function random(value: integer): integer;
- var
- a: integer;
- begin
- RandSeed := QRAN_A * RandSeed + QRAN_C;
- a := (RandSeed shr 16) and QRAN_MAX;
- random := (a * value) shr 15;
- 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; // Empty call for embedded anyway
- {$endif FPC_HAS_FEATURE_THREADING}
- {$ifdef FPC_HAS_FEATURE_WIDESTRINGS}
- // initunicodestringmanager;
- {$endif FPC_HAS_FEATURE_WIDESTRINGS}
- end.
|