| .. |
|
aliases.inc
|
1355fc0198
- disabled RecordRTTI declaration on the JVM target, because that
|
13 jaren geleden |
|
astrings.inc
|
ec9a57f854
* local variables in fpc_AnsiStr_Concat_multi changed from nativeint to objpasint
|
11 jaren geleden |
|
cgeneric.inc
|
4ebc34c5e7
* Promoted result type of FPC_PCHAR_LENGTH and FPC_PWIDECHAR_LENGTH to SizeInt.
|
14 jaren geleden |
|
cgenmath.inc
|
94a045aa3d
* Moved declarations of TFPURoundingMode,TFPUExceptionMask and TFPUPrecisionMode to System unit. Declarations in Math unit changed to aliases.
|
11 jaren geleden |
|
cgenstr.inc
|
4ace790492
* remove $Log
|
20 jaren geleden |
|
charset.pp
|
7b1f586131
rtl: remove unneeded charset classes
|
12 jaren geleden |
|
cmem.pp
|
41f25c2b21
* fixes cmem.malloc et al. for windows as proposed by Ludo Brands, resolves #15571
|
14 jaren geleden |
|
compproc.inc
|
a7563fd0c8
* Added {$ifdef ver2_6} around stuff which is no longer used but needed for bootstrapping.
|
11 jaren geleden |
|
ctypes.pp
|
4646884d87
+ enabled compilation of unit ctypes for i8086-msdos
|
12 jaren geleden |
|
currh.inc
|
62eed2e3f2
* function round(c : currency) : int64; requires the availability of an fpu
|
13 jaren geleden |
|
dos.inc
|
517fd357c9
* DoDirSeperators pchar overload
|
18 jaren geleden |
|
dosh.inc
|
ebe262762a
* Clean out of $i textrec and filerec includes that are redundant now that cpstrrtl exposes
|
12 jaren geleden |
|
dynarr.inc
|
f42c1b3720
* 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.
|
12 jaren geleden |
|
dynarrh.inc
|
69c29a415f
* pass the procdef to getintparaloc instead of only the proccalloption, so
|
13 jaren geleden |
|
dynlibs.pas
|
1a430d8110
* GetProcAddr added for OS/2, type of argument for ordinal target specific now
|
12 jaren geleden |
|
except.inc
|
ff6b258379
* changed ExceptTryLevel from nativeint to objpasint
|
11 jaren geleden |
|
exeinfo.pp
|
e6c812a60a
* assume unicode in case of FPC_OS_UNICODE instead of only for WinCE
|
12 jaren geleden |
|
extres.inc
|
174de3eab1
Merged revisions 9693-10480 via svnmerge from
|
18 jaren geleden |
|
fexpand.inc
|
df97cd65d9
* don't adjust directory separators in fexpand when we're compiling the
|
12 jaren geleden |
|
file.inc
|
df6a2dce00
+ unicodestring support for assign/erase/rename
|
12 jaren geleden |
|
filerec.inc
|
df6a2dce00
+ unicodestring support for assign/erase/rename
|
12 jaren geleden |
|
flt_conv.inc
|
d4b6406e62
* fixed compilation of new str<->float code on the JVM target (patch by
|
12 jaren geleden |
|
flt_core.inc
|
6359441045
* force shl operations to be 32 bit on 16/8 bit platforms (patch by
|
12 jaren geleden |
|
flt_pack.inc
|
6522cd78ee
added some float64() casts, based on similar casts in the 32bit code path, which makes ARM to build again
|
12 jaren geleden |
|
fpextres.pp
|
174de3eab1
Merged revisions 9693-10480 via svnmerge from
|
18 jaren geleden |
|
fpintres.pp
|
174de3eab1
Merged revisions 9693-10480 via svnmerge from
|
18 jaren geleden |
|
gencurr.inc
|
62eed2e3f2
* function round(c : currency) : int64; requires the availability of an fpu
|
13 jaren geleden |
|
generic.inc
|
e471a7dd2c
* use ObjpasInt, instead of nativeint in fpc_div_dword and fpc_mod_dword
|
11 jaren geleden |
|
genmath.inc
|
14ee9d52aa
* Made constants DP1,DP2,DP3 local to function rem_pio2, because their values are correct only for double-precision calculations.
|
11 jaren geleden |
|
genset.inc
|
670ee264de
* fixed upper bound of several helper array types for set operations
|
13 jaren geleden |
|
genstr.inc
|
3ebdd64d75
* dereference pchar passed to indexbyte in strecopy (patch by Andrew Haines,
|
13 jaren geleden |
|
genstrs.inc
|
4ace790492
* remove $Log
|
20 jaren geleden |
|
getopts.pp
|
0021183eb6
* Patch from reporter of bug ID #13924 to fix arguments with spaces if no argv is declared.
|
16 jaren geleden |
|
heap.inc
|
8ad5e6fb26
- RTL: cleaned out FPC_FREEMEM_X. We now have a dedicated compilerproc 'fpc_freemem' for this purpose.
|
11 jaren geleden |
|
heaph.inc
|
6a1a2d3464
* get rid of some feature checks, probably the whole feature stuff is plainly the wrong way, embedded rtl compiles again, resolves #20913
|
14 jaren geleden |
|
heaptrc.pp
|
baa18dfcb4
* Introduced a new function CaptureBacktrace, using it to handle most of back-tracing in heaptrc unit.
|
11 jaren geleden |
|
innr.inc
|
b782918434
* first draft to support the popcnt instruction, works so far for x86 with a real popcnt instruction
|
13 jaren geleden |
|
int64.inc
|
34cf432600
* in the generic implementation of fpc_mul_int64, fallback directly to
|
12 jaren geleden |
|
intres.inc
|
174de3eab1
Merged revisions 9693-10480 via svnmerge from
|
18 jaren geleden |
|
iso7185.pp
|
e841027a48
* fixes handling of typed files in iso mode
|
12 jaren geleden |
|
lineinfo.pp
|
c1b0fb81f1
* updated all the RTL helper functions related to exceptions and stack traces to use codepointer instead of pointer
|
12 jaren geleden |
|
lnfodwrf.pp
|
f7785be945
* make the dwarf line info reader more fault tolerant, patch by Martin Friebe, resolves #24900
|
11 jaren geleden |
|
lstrings.pp
|
ebe262762a
* Clean out of $i textrec and filerec includes that are redundant now that cpstrrtl exposes
|
12 jaren geleden |
|
macpas.pp
|
f22c6870d5
* use math.SetExceptionMask() to disable floating point exceptions
|
17 jaren geleden |
|
makefile.inc
|
2d042aca6b
+ system unit depends on compproc.inc
|
15 jaren geleden |
|
mathh.inc
|
94a045aa3d
* Moved declarations of TFPURoundingMode,TFPUExceptionMask and TFPUPrecisionMode to System unit. Declarations in Math unit changed to aliases.
|
11 jaren geleden |
|
objc.pp
|
8b0301409a
+ i386/iphonesim target for the new iPhoneSimulator in Xcode 3.2.4 and
|
15 jaren geleden |
|
objc1.inc
|
6308630e3e
* rtl changes part of r15460
|
15 jaren geleden |
|
objcbase.pp
|
e0e326be8e
+ add {$packrecords c} to all units importing Objective-C records since
|
14 jaren geleden |
|
objcnf.inc
|
6308630e3e
* rtl changes part of r15460
|
15 jaren geleden |
|
objpas.inc
|
c1b0fb81f1
* updated all the RTL helper functions related to exceptions and stack traces to use codepointer instead of pointer
|
12 jaren geleden |
|
objpash.inc
|
b82b6da493
+ 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).
|
12 jaren geleden |
|
pagemem.pp
|
4ace790492
* remove $Log
|
20 jaren geleden |
|
readme
|
13db04fb8b
* small cleanup of commented code (merged)
|
24 jaren geleden |
|
real2str.inc
|
69ce5fa66b
* patch by Max Nazhalov to improve real2str performance, resolves #21825
|
13 jaren geleden |
|
resh.inc
|
930b76e8fb
Fix compilation of WinCE. Change the fixed UNICODE define of WinCE to FPC_OS_UNICODE, so that it won't be undefined when changing the mode/string type and that the usage of a UNICODE API is independant of the mode.
|
12 jaren geleden |
|
rtti.inc
|
ae81e0889b
* 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).
|
11 jaren geleden |
|
sfpu128.pp
|
6e81fe6abc
+ Add two new sotfpuu units with x80 or 128 bit support
|
14 jaren geleden |
|
sfpux80.pp
|
6e81fe6abc
+ Add two new sotfpuu units with x80 or 128 bit support
|
14 jaren geleden |
|
softfpu.pp
|
eb984a5adb
* Replaced last remaining C tokens.
|
11 jaren geleden |
|
sstrings.inc
|
4c8e947f0c
* changed the shortstring index variables that were previously longint and were later changed to sizeint (in r26917) to ObjpasInt after r27142
|
11 jaren geleden |
|
strings.pp
|
724f41a9af
- Cleaned out FPC_STRTOSHORTSTRPROC and FPC_STRTOCHARARRAYPROC defines. Somebody had to do it one day.
|
14 jaren geleden |
|
stringsi.inc
|
0e9690c31b
* added striscan, strriscan and stripos
|
16 jaren geleden |
|
sysres.inc
|
174de3eab1
Merged revisions 9693-10480 via svnmerge from
|
18 jaren geleden |
|
system.fpd
|
f488e8decd
* add some definition of char (#0..#255) to the dummy system types.
|
12 jaren geleden |
|
system.inc
|
fb20791cbe
* replaced all the remaining uses of nativeint in the rtl with either sizeint
|
11 jaren geleden |
|
systemh.inc
|
dfa1f3e0a3
* NativeInt and NativeUInt redefined as aliases to PtrInt/PtrUInt, so now they
|
11 jaren geleden |
|
text.inc
|
9b79f2f68d
Added support for 8-bit CPU's in RTL. Mostly for missing implementations of int<->string conversion and console/text output.
|
11 jaren geleden |
|
textrec.inc
|
5593f0918d
+ TTextBuf = TextBuf type (Delphi compatibility)
|
12 jaren geleden |
|
thread.inc
|
764f36a179
Extend TThread with (class) methods and (class) properties from Delphi 2007 and newer.
|
13 jaren geleden |
|
threadh.inc
|
f2a4d1bbbc
- Do not compile generic threadvar code if tf_section_threadvars flag is enabled for target (currently there are no such targets).
|
12 jaren geleden |
|
threadvr.inc
|
8f984e75e5
* hack for making threadvr.inc compile on i8086
|
12 jaren geleden |
|
tinyheap.inc
|
640f6ea300
* return nil in SysTinyReallocMem, when the size parameter is 0
|
11 jaren geleden |
|
typefile.inc
|
e841027a48
* fixes handling of typed files in iso mode
|
12 jaren geleden |
|
ufloat128.pp
|
e3085015f7
* continued to work on float128 stuff
|
18 jaren geleden |
|
ustringh.inc
|
aaa5bb48de
+ ToSingleByteFileSystemEncodedFileName(array of widechar) overload for more
|
12 jaren geleden |
|
ustrings.inc
|
54e561dfa4
* Assign CharLengthPCharProc and CodePointLengthProc always in initunicodestringmanager, doing it in initwidestringmanager only complicates things.
|
11 jaren geleden |
|
uuchar.pp
|
112fafc6fd
+ paramstr(longint):unicode string function in uuchar
|
12 jaren geleden |
|
varerror.inc
|
77d20627dc
* removed duplicate EVariant class from varutils and incorporated
|
20 jaren geleden |
|
variant.inc
|
aac74f4d0a
* Patch from Inoussa Ouedraogo to make assigning widechar to variant Delphi 2009+ compatible (Bug ID 25719)
|
11 jaren geleden |
|
varianth.inc
|
cf20bbc886
* RTL, Pos() with Variant: added 'const' modifiers to avoid unnecessary local copies of managed parameters.
|
12 jaren geleden |
|
wstringh.inc
|
932349020c
rtl: deprecate winwidestringalloc
|
12 jaren geleden |
|
wstrings.inc
|
531c2d79e0
- RTL: removed 'unimplementedwidestring' procedure and use 'unimplementedunicodestring' instead. Reduces bloat. Furthermore, a separate message about missing widestring manager is misleading, because there is only one wide/unicodestring manager that can be set.
|
11 jaren geleden |