mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-05 10:00:42 +01:00
+ CPUARM_HAS_BX is defined if the CPU supports the BX* instruction + CPUARM_HAS_REV is defined if the CPU supports the REV instruction. Note that you still have to check for compiler versions > 2.6.0 since the assembler reader of 2.6.0 does not understand that instruction. + CPUARM_HAS_IDIV is defined if the CPU supports the sdiv, udiv instructions. Use of this fixes a bug where previously these instruction were only used for armv7-m, while cortex3m cpus also support it. + CPUARM_HAS_LDREX is defined if the CPU supports the ldrex/strex instructions. Use of this fixes a bug with armv7(-a) cpus where this path has not been used. + SYSTEM_HAS_KUSER_CMPXCHG is defined if the system (mainly OS) support the kuser_cmpxchg functions. Use of this fixes a bug where ARMHF systems did not use it for synchronization (although ARMHF is armv7+ only, i.e. the LDREX path is used anyway) git-svn-id: trunk@22081 - |
||
|---|---|---|
| .. | ||
| aliases.inc | ||
| astrings.inc | ||
| cgeneric.inc | ||
| cgenmath.inc | ||
| cgenstr.inc | ||
| charset.pp | ||
| cmem.pp | ||
| compproc.inc | ||
| crt.inc | ||
| crth.inc | ||
| ctypes.pp | ||
| currh.inc | ||
| dos.inc | ||
| dosh.inc | ||
| dynarr.inc | ||
| dynarrh.inc | ||
| dynlibs.pas | ||
| except.inc | ||
| exeinfo.pp | ||
| extres.inc | ||
| fexpand.inc | ||
| file.inc | ||
| filerec.inc | ||
| fpextres.pp | ||
| fpintres.pp | ||
| gencurr.inc | ||
| generic.inc | ||
| genmath.inc | ||
| genset.inc | ||
| genstr.inc | ||
| genstrs.inc | ||
| getopts.pp | ||
| heap.inc | ||
| heaph.inc | ||
| heaptrc.pp | ||
| innr.inc | ||
| int64.inc | ||
| intres.inc | ||
| iso7185.pp | ||
| keyboard.inc | ||
| keybrdh.inc | ||
| keyscan.inc | ||
| lineinfo.pp | ||
| lnfodwrf.pp | ||
| lstrings.pp | ||
| macpas.pp | ||
| makefile.inc | ||
| mathh.inc | ||
| matrix.pp | ||
| mmatimp.inc | ||
| mouse.inc | ||
| mouseh.inc | ||
| mvecimp.inc | ||
| objc1.inc | ||
| objc.pp | ||
| objcbase.pp | ||
| objcnf.inc | ||
| objects.pp | ||
| objpas.inc | ||
| objpash.inc | ||
| pagemem.pp | ||
| printer.inc | ||
| printerh.inc | ||
| readme | ||
| real2str.inc | ||
| resh.inc | ||
| rtti.inc | ||
| sfpu128.pp | ||
| sfpux80.pp | ||
| sockets.inc | ||
| socketsh.inc | ||
| sockovl.inc | ||
| softfpu.pp | ||
| sstrings.inc | ||
| stdsock.inc | ||
| strings.pp | ||
| stringsi.inc | ||
| sysres.inc | ||
| system.fpd | ||
| system.inc | ||
| systemh.inc | ||
| text.inc | ||
| textrec.inc | ||
| thread.inc | ||
| threadh.inc | ||
| threadvr.inc | ||
| typefile.inc | ||
| ucomplex.pp | ||
| ufloat128.pp | ||
| ustringh.inc | ||
| ustrings.inc | ||
| uuchar.pp | ||
| varerror.inc | ||
| variant.inc | ||
| varianth.inc | ||
| variants.pp | ||
| video.inc | ||
| videoh.inc | ||
| wstringh.inc | ||
| wstrings.inc | ||
| wustrings.inc | ||
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.