.. |
aasmcpu.pas
|
d540d56908
* unified internal errors
|
před 10 roky |
agx86att.pas
|
d24382e8f8
* x86 AT&T writer: never ever drop "@GOTPCREL" relocation, because it results in corrupted code (at least, "mov foo@GOTPCREL(%rip),%reg" must change to "lea foo(%rip),%reg" to remain equivalent, but this must be handled elsewhere anyway. Assembler writer should just write generated code as is).
|
před 10 roky |
agx86int.pas
|
7cfd7a66cd
+ create a special 'heap' segment with reserved space equal to heapsize (i.e.
|
před 11 roky |
agx86nsm.pas
|
dd67fa8c5c
* fixed DFA warnings for i8086
|
před 11 roky |
cga.pas
|
d88d644925
+ support for FMA intrinsic: if there is no hardware support, the compiler throws an error.
|
před 11 roky |
cgx86.pas
|
ae627a4ba8
* tcgx86.a_op_const_reg_reg: optimize trivial cases before considering more complex ones.
|
před 11 roky |
cpubase.pas
|
07e90aaa24
+ Implemented IEEE 754-compliant checking for unordered results of floating-point compares on x86 targets. Mantis #9362.
|
před 11 roky |
hlcgx86.pas
|
71deda6f50
+ added interface to ncgutil.gen_load_loc_cgpara() to hlcgobj + generic
|
před 14 roky |
itcpugas.pas
|
926dd1b41e
* command line compilation of i8086 fixed
|
před 12 roky |
itx86int.pas
|
0e41df598e
* merge i8086 branch by Nikolay Nikolov
|
před 12 roky |
ni86mem.pas
|
4a79481c51
* isolated segment-related functionality of tabsolutevarsym into i386/i8086-
|
před 11 roky |
nx86add.pas
|
249a60b28b
x86: fix a variable op not initialized warning. This hopefully fixes our x86 testsuite run.
|
před 11 roky |
nx86cal.pas
|
9c1f917e3a
* a_call_ref functionality cannot be implemented efficiently at code generator level, because references need specific preparations at earlier points. Moved this support to tcgcallnode and its x86 descendants, and got rid of all ifdef's around.
|
před 11 roky |
nx86cnv.pas
|
d613ab8578
* x86: improve x87 qword to float conversion, using single-precision constants saves space and removes need in separate load on FPU stack. No precision loss occurs because 2**64 is representable exactly even in single precision.
|
před 11 roky |
nx86con.pas
|
45f60bc4b5
* small changes (copyright, typo, readability)
|
před 13 roky |
nx86inl.pas
|
8207e0ef22
+ make use of vfnmsub*/vfmsub*/vfnmadd* instructions if possible
|
před 11 roky |
nx86mat.pas
|
29d4037a9c
* make integer division instruction (div/idiv) on x86 dependent on the
|
před 10 roky |
nx86mem.pas
|
198960b17c
* preserve the segment of the reference in tx86vecnode.update_reference_reg_mul
|
před 11 roky |
nx86set.pas
|
5e8f8f4755
* Use GOT-relative constants for i386 PIC jump tables, they don't need runtime relocations. Now almost ABI-compliant on Linux/BSD (Darwin targets unchanged). Also clean up i8086-specific stuff: using tai_const.create_type_sym(aitconst_ptr,...) generates near pointers on i8086, which is the desired goal.
|
před 11 roky |
rax86.pas
|
42d251da1c
- x86 assembler readers: cleaned out operand swapping code. Operands of TInstruction are kept in AT&T order, Intel reader attaches operands right-to-left. It was effectively the same way before the change (except Intel reader attaching operands left-to-right, followed by a single swap), operand order checks all over the place were just reducing readability.
|
před 11 roky |
rax86att.pas
|
42d251da1c
- x86 assembler readers: cleaned out operand swapping code. Operands of TInstruction are kept in AT&T order, Intel reader attaches operands right-to-left. It was effectively the same way before the change (except Intel reader attaching operands left-to-right, followed by a single swap), operand order checks all over the place were just reducing readability.
|
před 11 roky |
rax86int.pas
|
475a9e1617
* Asm readers: allow using procedure symbols in references, resolves #22376.
|
před 11 roky |
rgx86.pas
|
e7cd5319f0
* Put under {$ifndef x86_64} more cases of instructions that do not exist in 64-bit mode.
|
před 11 roky |
symi86.pas
|
fc71081b74
* i8086 and i386-specific code from tabstractprocdef.is_pushleftright moved to
|
před 11 roky |
symx86.pas
|
94bcb9878a
* reimplemented r28329 in a different way, as suggested by Jonas
|
před 11 roky |
x86ins.dat
|
842e027a9f
+ prove of concept how FMA4 could be supported in inline assembler
|
před 11 roky |
x86reg.dat
|
5af873ee5b
* 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.
|
před 12 roky |