Jonas Maebe
|
4c68ea1000
* use pocalls_cdecl and cstylearrayofconst more consistently instead of
|
8 lat temu |
maciej-izak
|
520bb31fa6
* Parse management operators. Each management operator is special kind of operator without result.
|
8 lat temu |
Jonas Maebe
|
265c8e7bbc
+ support for specifying ms_abi_default, ms_abi_cdelc, sysv_abi_default, and
|
8 lat temu |
svenbarth
|
d133f210ca
* correct comment, cause forward declarations for generic functions *do* indeed work (cause they use the same mechanism as forward definitions in the interface section)
|
8 lat temu |
svenbarth
|
52673d34f1
* fix for Mantis #31033: don't check for is_specialization(), but for df_specialization (this way we also get pointers or nested types that aren't by themselves real specializations)
|
8 lat temu |
svenbarth
|
d499163ef5
* provisional fix for Mantis #31076: fail gracefully instead of with an internal error if a generic method is declared inside a generic class or record. This will change once we support nested generics however.
|
8 lat temu |
Károly Balogh
|
0cb555c07c
syscalls: move the reference implementation of parseparaloc to paramgr. removes two identical copies from CPU specific code and enables basereg convention for AROS/x86_64. also, other minor fixes and cleanups in related code.
|
8 lat temu |
svenbarth
|
a535d54bcb
* fix for Mantis #30939: Rework generation of the generic name to be less relying on the type hierarchy as a specialization inside the parameter declaration would want to have the full name of the procdef including its parameters, but those are still parsed at that stage (the pretty name is still a topic onto itself however...)
|
9 lat temu |
svenbarth
|
3f77ce3b12
* leave parse_proc_head() (with some error recovery) if the interface could not be found instead of running straight into an access violation
|
9 lat temu |
florian
|
5d8bcaeb4b
+ additional flag po_staticmethod for procoptions for class operator. Each class operator is also static, patch by Maciej Izak
|
9 lat temu |
Károly Balogh
|
657aa06360
arm: arm-aros syscall support
|
9 lat temu |
Károly Balogh
|
ce5ff8ecd5
forgotten file, this should have been part of the previous commit
|
9 lat temu |
svenbarth
|
254be82c43
* revert r34712: the behavior with the class constructors is indeed Delphi compatible. However only one class constructor/destructor per class is allowed no matter how it's named.
|
9 lat temu |
svenbarth
|
4e5ed5b0e2
Fix for Mantis #30729: don't allow other names for class constructors or destructors than Create and Destroy respectively.
|
9 lat temu |
nickysn
|
657685a8b6
* use sizesinttype instead of ptrsinttype for the index and high parameter of
|
9 lat temu |
Károly Balogh
|
5db02f4202
atari: initial support for TOS syscalls
|
9 lat temu |
Károly Balogh
|
464ecab542
huge syscall support refactor for Amiga-likes. removed large chunks of ancient duplicated code, and in general tried to make the entire thing more maintainable and cleaner. also added support for AROS EAXBase syscall convention
|
9 lat temu |
svenbarth
|
08cd62fc7e
* rework parse_proc_dec_finish.read_returndef a bit so that specializations as result types of generic routines are handled correctly
|
9 lat temu |
svenbarth
|
a4a1e9db12
* allow equal result types instead of exactly the same result types for generic functions if both are specializations (otherwise they would be considered as different if they depend on the generic function's generic types)
|
9 lat temu |
svenbarth
|
8b853571c6
* don't generate a warning if a "generic" token follows while parsing procedure directives (let's hope we'll never have to add a "generic" directive :/ )
|
9 lat temu |
svenbarth
|
bb72c1c4df
* declare various assembler symbols (VMT, RTTI, threadvars) as public assembler symbols
|
9 lat temu |
svenbarth
|
88108bc4df
Extend "compilerproc" with the optional ability to specify an index (same syntax as for "internproc") which allows to map the routine to a syssym.
|
9 lat temu |
svenbarth
|
f8def6dbc9
Store and use procedure directives of generic routines.
|
9 lat temu |
Jonas Maebe
|
08d63e3408
* allow default parameters for constref (mantis #29992)
|
9 lat temu |
florian
|
cb4773432b
+ hardfloat directive (arm only): use hard float calling conventions regardless of the abi, resolves #29715
|
9 lat temu |
svenbarth
|
8bd79f95be
Fix a few typos discovered by Blaise
|
9 lat temu |
svenbarth
|
2eeb59591a
pdecsub.pas, parse_proc_head:
|
10 lat temu |
nickysn
|
4da9296f80
* disabled the name mangling of external non-cdecl and non-cppdecl procedures
|
10 lat temu |
svenbarth
|
d3660fec31
Implement support for parsing "generic [class] procedure" and "generic [class] function" in non-Delphi modes. Since "generic" is a prefix it is quite ugly to implement, but from a Pascal language point of view it fits better than "procedure generic xyz".
|
10 lat temu |
svenbarth
|
0ff87336aa
Convert the Boolean parameters accept_equal, typeonly and hadspecialize of comp_expr(), sub_expr() and factor() to a set parameter and adjust all calls.
|
10 lat temu |