.. |
aopt386.pas
|
* support disabling the i386 peephole optimizer with -Oonopeephole
|
2014-02-05 00:27:16 +00:00 |
cgcpu.pas
|
* synchronized with privatetrunk till r30095
|
2015-03-05 20:32:15 +00:00 |
cpubase.inc
|
* optimize mov/lea
|
2013-11-01 19:01:14 +00:00 |
cpuelf.pas
|
Switch back to emitting BLX instructions and fix calculation of constant offsets(should rarely/never happen).
|
2014-12-14 16:28:35 +00:00 |
cpuinfo.pas
|
+ cpu capability CPUX86_HAS_CMOV
|
2015-02-21 20:47:40 +00:00 |
cpunode.pas
|
* isolated segment-related functionality of tabsolutevarsym into i386/i8086-
|
2014-03-30 15:42:53 +00:00 |
cpupara.pas
|
* synchronised with trunk till r30240
|
2015-03-15 19:44:58 +00:00 |
cpupi.pas
|
|
|
cputarg.pas
|
merged/updated AROS/i386 target to trunk from AROS branch, to support Marcus Sackrow's work on AROS support which will hopefully benefit all Amiga-like targets (classic, MorphOS) on the long run. Compiler only, RTL comes in the next run.
|
2014-08-17 18:18:07 +00:00 |
csopt386.pas
|
* fixes several issues which cause warnings by the dfa code when using it to detect uninitialized variables
|
2013-12-01 17:02:08 +00:00 |
daopt386.pas
|
* fixes several issues which cause warnings by the dfa code when using it to detect uninitialized variables
|
2013-12-01 17:02:08 +00:00 |
hlcgcpu.pas
|
* moved g_external_wrapper() to the hlcg, and also g_intf_wrapper() because
|
2014-08-19 20:22:54 +00:00 |
i386att.inc
|
+ applied remaining patches of Torsten Grundke: adds gather instructions of avx2
|
2015-02-17 21:43:46 +00:00 |
i386atts.inc
|
+ applied remaining patches of Torsten Grundke: adds gather instructions of avx2
|
2015-02-17 21:43:46 +00:00 |
i386int.inc
|
+ applied remaining patches of Torsten Grundke: adds gather instructions of avx2
|
2015-02-17 21:43:46 +00:00 |
i386nop.inc
|
+ applied remaining patches of Torsten Grundke: adds gather instructions of avx2
|
2015-02-17 21:43:46 +00:00 |
i386op.inc
|
+ applied remaining patches of Torsten Grundke: adds gather instructions of avx2
|
2015-02-17 21:43:46 +00:00 |
i386prop.inc
|
* corrects change flags for VSQRTSD
|
2015-02-28 22:42:25 +00:00 |
i386tab.inc
|
+ applied remaining patches of Torsten Grundke: adds gather instructions of avx2
|
2015-02-17 21:43:46 +00:00 |
n386add.pas
|
* fix warnings when compiling the compiler with DFA optimizer enabled on i386
|
2014-08-20 12:28:44 +00:00 |
n386cal.pas
|
AROS: syscall (library call) support for based on the Amiga/68k and MorphOS/PPC versions
|
2014-08-19 00:39:18 +00:00 |
n386flw.pas
|
* Generate exception filters data on i386-win32 and x86_64-win64 without using global labels.
|
2015-01-20 13:52:19 +00:00 |
n386inl.pas
|
+ i386: generate optimized code for 64-bit arithmetic shifts by constant amount. Shifts by 63 and by less than 32 take just two instructions, shifts by 32..62 bits are done with 3 instructions.
|
2013-10-29 16:10:13 +00:00 |
n386ld.pas
|
* isolated segment-related functionality of tabsolutevarsym into i386/i8086-
|
2014-03-30 15:42:53 +00:00 |
n386mat.pas
|
* i386: switch the div/mod node to shared code, leaving in place the specific optimization for division by power of 2.
|
2014-06-15 16:20:53 +00:00 |
n386mem.pas
|
* moved x86-specific tpointerdef functionality to architecture-specific
|
2014-03-30 21:04:36 +00:00 |
n386set.pas
|
|
|
popt386.pas
|
+ cpu capability CPUX86_HAS_CMOV
|
2015-02-21 20:47:40 +00:00 |
r386ari.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386att.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386con.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386dwrf.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386int.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386iri.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386nasm.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386nor.inc
|
|
|
r386nri.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386num.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386ot.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386rni.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386sri.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
r386stab.inc
|
|
|
r386std.inc
|
* x86 targets: Profiling shows that quite a bit of time is spent in findreg_by_number(), despite it uses binary search. Worse, it is repeated for every piece of register information. Trying to get rid of some of these calls: rearranged registers so that their "opcode" matches 3 LSBs of superregister number (with a few exceptions described at the beginning of x86reg.dat). This allows to lookup opcodes in regval() with O(1) complexity, and removes need in rXXXop.inc files.
|
2013-10-03 08:08:04 +00:00 |
ra386att.pas
|
|
|
ra386int.pas
|
|
|
rgcpu.pas
|
|
|
rropt386.pas
|
* fixes several issues which cause warnings by the dfa code when using it to detect uninitialized variables
|
2013-12-01 17:02:08 +00:00 |
symcpu.pas
|
Add new procedure option: po_syscall_has_libsym,
|
2014-10-03 19:26:16 +00:00 |