2022-04-08 15:40:28 +02:00
|
|
|
- type casting nodes
|
|
|
|
- overflow detection nodes
|
|
|
|
- va_arg nodes
|
|
|
|
- BSTART, BEND nodes (to free data allocated by ALLOCA)
|
|
|
|
- ENTRY node for multy-entry units
|
|
|
|
- IJMP
|
|
|
|
- guards
|
|
|
|
- variable name binding
|
|
|
|
|
|
|
|
- VLOAD, VSTORE -> SSA
|
|
|
|
|
|
|
|
? reassociation folding rules
|
|
|
|
- folding engine improvement (one rule for few patterns)
|
|
|
|
|
|
|
|
- irreducable loops detection
|
|
|
|
- irreducable loops support
|
|
|
|
|
|
|
|
- range inference and PI node
|
|
|
|
- SCCP edge cases
|
2022-04-08 18:02:11 +02:00
|
|
|
- Folding after SCCP (see combo4.ir)
|
2022-04-08 15:40:28 +02:00
|
|
|
|
|
|
|
- local scheduling according to data dependencies, register presure and pipeline stalls
|
|
|
|
- basic block trace scheduling
|
|
|
|
|
|
|
|
? instruction selection
|
|
|
|
- xor, btsl=INCL, btrl=EXCL, btl=IN, bsr, maxss, maxsd, minss, minsd
|
|
|
|
- MOVZX to avoid a SHIFT and AND instruction
|
2022-04-21 09:20:41 +02:00
|
|
|
- Use CMOVcc to remove branches
|
2022-04-22 12:31:28 +02:00
|
|
|
- BURS ???
|
2022-04-08 15:40:28 +02:00
|
|
|
|
|
|
|
? register allocation
|
|
|
|
+ linear scan
|
2022-04-22 12:31:28 +02:00
|
|
|
- separate INT and FP allocation phases
|
2022-04-08 15:40:28 +02:00
|
|
|
? spills
|
2022-05-12 23:32:37 +02:00
|
|
|
+ spill everywhere code placement
|
2022-05-16 23:21:00 +02:00
|
|
|
+ packed/aligned spill slot allocation
|
|
|
|
- spill slot coalescing
|
2022-05-12 23:32:37 +02:00
|
|
|
- optimal spill code placement through resolution
|
2022-04-08 15:40:28 +02:00
|
|
|
- splinting
|
|
|
|
- spill only at cold path if possible
|
|
|
|
? hints
|
|
|
|
- hints and low priority
|
|
|
|
|
|
|
|
? code generation
|
2022-04-20 09:03:00 +02:00
|
|
|
- OVERFLOW
|
|
|
|
- MIN, MAX, COND
|
|
|
|
- CAST
|
2022-05-05 21:35:39 +02:00
|
|
|
? operands swap (binop_int, binop_sse, binop_avx, cmp_int, cmp_fp, cmp_br_int)
|
2022-05-17 14:04:32 +02:00
|
|
|
- spill slots for parameters
|
2022-04-08 15:40:28 +02:00
|
|
|
- return merge/split
|
2022-04-22 12:31:28 +02:00
|
|
|
? binary code emission without DynAsm
|
2022-04-12 09:37:20 +02:00
|
|
|
- 32-bit x86 code
|
2022-04-08 15:40:28 +02:00
|
|
|
|
|
|
|
? disassembler
|
|
|
|
- .rodata section and relative data labels
|
|
|
|
|
|
|
|
- modules (functions, data objecs, import, export, prototypes, forward declarations, memory segments, ref data, expr data)
|
|
|
|
- C compiler
|
|
|
|
- interpreter
|
|
|
|
- alias analyzes
|
|
|
|
|
|
|
|
- PHP support
|