fpc/rtl/inc
2014-03-04 20:00:03 +00:00
..
aliases.inc
astrings.inc Added support for 8-bit CPU's in RTL. Mostly for missing implementations of int<->string conversion and console/text output. 2014-03-04 20:00:03 +00:00
cgeneric.inc
cgenmath.inc
cgenstr.inc
charset.pp rtl: remove unneeded charset classes 2014-01-04 08:59:20 +00:00
cmem.pp
compproc.inc Added support for 8-bit CPU's in RTL. Mostly for missing implementations of int<->string conversion and console/text output. 2014-03-04 20:00:03 +00:00
ctypes.pp + enabled compilation of unit ctypes for i8086-msdos 2013-10-26 22:26:42 +00:00
currh.inc
dos.inc
dosh.inc * Clean out of $i textrec and filerec includes that are redundant now that cpstrrtl exposes 2014-01-02 13:26:09 +00:00
dynarr.inc * Return dynamic arrays in parameter, this was the only managed type still returned in register. Returning managed types in registers requires catching and re-raising exceptions at callee side in order to finalize result and avoid memory leaks. While such behavior makes little difference with generic setjmp-based exception handling, it becomes very inefficient as SEH-styled exception handling is being introduced. 2013-12-04 13:43:22 +00:00
dynarrh.inc
dynlibs.pas * GetProcAddr added for OS/2, type of argument for ordinal target specific now 2014-01-19 21:15:26 +00:00
except.inc * Do not attempt to retrieve caller context if initial frame is not between StackTop and frame pointer of current procedure (aka stack bottom). Reverts part of r21843, fixing regression of tests/test/cg/traise6.pp after r26843. 2014-02-23 10:20:54 +00:00
exeinfo.pp * assume unicode in case of FPC_OS_UNICODE instead of only for WinCE 2013-06-24 09:39:57 +00:00
extres.inc
fexpand.inc * don't adjust directory separators in fexpand when we're compiling the 2013-08-19 22:04:19 +00:00
file.inc + unicodestring support for assign/erase/rename 2013-07-19 16:30:51 +00:00
filerec.inc + unicodestring support for assign/erase/rename 2013-07-19 16:30:51 +00:00
flt_conv.inc * fixed compilation of new str<->float code on the JVM target (patch by 2013-11-06 16:13:50 +00:00
flt_core.inc * force shl operations to be 32 bit on 16/8 bit platforms (patch by 2013-11-10 10:24:54 +00:00
flt_pack.inc added some float64() casts, based on similar casts in the 32bit code path, which makes ARM to build again 2013-11-02 17:44:47 +00:00
fpextres.pp
fpintres.pp
gencurr.inc
generic.inc * Fixed exception handling in constructors of TP-style objects to correctly handle cases of statically allocated objects (must call destructor but do not free memory) and objects without destructor (must free memory if it was allocated dynamically). 2014-02-05 18:19:13 +00:00
genmath.inc * Convert int64 to double in more straightforward way. 2014-01-21 14:33:56 +00:00
genset.inc
genstr.inc
genstrs.inc
getopts.pp
heap.inc - do not initialize the regular heap manager under i8086-msdos, so it can be smartlinked away 2013-05-25 19:22:31 +00:00
heaph.inc
heaptrc.pp * updated all the RTL helper functions related to exceptions and stack traces to use codepointer instead of pointer 2013-09-17 21:25:26 +00:00
innr.inc
int64.inc * in the generic implementation of fpc_mul_int64, fallback directly to 2014-01-17 01:25:41 +00:00
intres.inc
iso7185.pp * fixes handling of typed files in iso mode 2014-01-12 20:17:48 +00:00
lineinfo.pp * updated all the RTL helper functions related to exceptions and stack traces to use codepointer instead of pointer 2013-09-17 21:25:26 +00:00
lnfodwrf.pp * make the dwarf line info reader more fault tolerant, patch by Martin Friebe, resolves #24900 2014-02-18 20:36:25 +00:00
lstrings.pp * Clean out of $i textrec and filerec includes that are redundant now that cpstrrtl exposes 2014-01-02 13:26:09 +00:00
macpas.pp
makefile.inc
mathh.inc
objc1.inc
objc.pp
objcbase.pp
objcnf.inc
objpas.inc * updated all the RTL helper functions related to exceptions and stack traces to use codepointer instead of pointer 2013-09-17 21:25:26 +00:00
objpash.inc + Win32 SEH: to avoid memory leaks, it is necessary to free exception object for non-FPC exceptions on re-raise (it will be re-created by next exception handler). 2013-12-16 14:47:26 +00:00
pagemem.pp
printer.inc + added and enabled compilation of unit printer for i8086-msdos 2013-10-06 00:14:08 +00:00
printerh.inc
readme
real2str.inc
resh.inc
rtti.inc * Updated internal declarations of RTTI structures to match their counterparts in typinfo unit and actual data generated by compiler. It went unnoticed this far because fields whose location differ with and without 'packed' record attribute are not used by internal routines, and tests use declarations from typinfo unit (the declarations in question are not in interface, so tests cannot be done against them). 2014-02-22 19:26:25 +00:00
sfpu128.pp
sfpux80.pp
softfpu.pp Fix shift128Right in rtl/inc/softfpu.pp 2013-08-18 21:12:53 +00:00
sstrings.inc Added support for 8-bit CPU's in RTL. Mostly for missing implementations of int<->string conversion and console/text output. 2014-03-04 20:00:03 +00:00
strings.pp
stringsi.inc
sysres.inc
system.fpd * add some definition of char (#0..#255) to the dummy system types. 2013-11-15 20:04:13 +00:00
system.inc Added support for 8-bit CPU's in RTL. Mostly for missing implementations of int<->string conversion and console/text output. 2014-03-04 20:00:03 +00:00
systemh.inc * define PNativeInt and PNativeUint as ^NativeInt and ^NativeUint, instead of 2014-03-01 13:23:32 +00:00
text.inc Added support for 8-bit CPU's in RTL. Mostly for missing implementations of int<->string conversion and console/text output. 2014-03-04 20:00:03 +00:00
textrec.inc + TTextBuf = TextBuf type (Delphi compatibility) 2013-07-22 21:45:26 +00:00
thread.inc
threadh.inc - Do not compile generic threadvar code if tf_section_threadvars flag is enabled for target (currently there are no such targets). 2013-10-10 12:55:30 +00:00
threadvr.inc
tinyheap.inc * return nil in SysTinyReallocMem, when the size parameter is 0 2014-02-26 23:31:50 +00:00
typefile.inc * fixes handling of typed files in iso mode 2014-01-12 20:17:48 +00:00
ufloat128.pp
ustringh.inc + ToSingleByteFileSystemEncodedFileName(array of widechar) overload for more 2013-07-19 16:31:21 +00:00
ustrings.inc Added support for 8-bit CPU's in RTL. Mostly for missing implementations of int<->string conversion and console/text output. 2014-03-04 20:00:03 +00:00
uuchar.pp + paramstr(longint):unicode string function in uuchar 2013-06-24 09:39:54 +00:00
varerror.inc
variant.inc * Patch from Inoussa Ouedraogo to make assigning widechar to variant Delphi 2009+ compatible (Bug ID 25719) 2014-02-25 08:53:03 +00:00
varianth.inc * RTL, Pos() with Variant: added 'const' modifiers to avoid unnecessary local copies of managed parameters. 2013-09-13 11:21:55 +00:00
wstringh.inc rtl: deprecate winwidestringalloc 2014-01-11 14:16:49 +00:00
wstrings.inc + support for CP_OEMCP 2013-07-12 17:18:24 +00:00

This directory contains only RTL parts independent
of the processor and of the operating system.

The include files contain the following:

astrings.pp     AnsiStrings implementation.
except.inc      Delphi styled exception support.
file.inc        Untyped file support routines.
filerec.inc     Untyped file record definition.
heap.inc        Runtime heap manager .
heaph.inc       Declarations of Heap functions.
innr.inc        Internal function delcarations.
int64.inc       Support for 64-bit integer arithmetic.
lstrings.pp     LongStrings routine implementation.
mathh.inc       Declarations of mathematical functions.
real2str.inc    Routine to convert floating point numbers to strings.
rtti.inc        Delphi like runtime type information
sstrings.inc    ShortStrings (TP/BP pascal like strings) implementation.
system.inc      OS and Processor independent implementation part of system unit.
systemh.inc     Interface part of the system unit.
text.inc        Text file support routines.
textrec.inc     Definition of Textrec record.
typefile.inc    Text file record definition.
generic.inc     Processor independant implementation of assembler procs on i386
                (to allow easy porting to new processors).
genset.inc      Processor independant implementation of set handling
genmath.inc     Processor independant implementation of mathematical routines
genrrti.inc     Processor independant implementation of runtime type information routines

The unit files are:

ucomplex.pp     Complex functions using operator overloading
getopts.pp      Pascal implementation of the GNU Getops
objects.pp      Turbo Pascal like implementation of objects unit
heaptrc.pp      Runtime memory leak tracer and tests for memory integrity.