summaryrefslogtreecommitdiff
path: root/cgopt.c
AgeCommit message (Collapse)AuthorFilesLines
2006-05-01use int_64 instead of __int64, define int_64, include stdint.h on 64 bits linuxJohn van Groningen1-0/+4
2006-03-24remove use of scratch register on IA32 for shift instructions (by addingJohn van Groningen1-40/+41
instruction with extra register), IScc, IFScc, IFBcc (by adding IFCcc instructions with extra register), ICMPW (not used anymore) prevent generating FLD and FSTP instructions between FCOMP and FNSTSW instruction
2006-01-10port to 64 bit windowsJohn van Groningen1-28/+39
2005-10-06use new apply and new descriptors for IA32,John van Groningen1-0/+6
add addLU and subLU instructions for IA32
2005-01-19implement mulUUL and divLU instructions for IA32,John van Groningen1-7/+47
define acos, asin, exp, ln and log10 instructons only for M68000 platform, add code for jsr_ap and jmp_ap instructions (not yet enabled)
2005-01-13add divU for the PowerPCJohn van Groningen1-6/+9
2005-01-10fix 4 byte alignment after replacing jmp with a compare, branch and jump toJohn van Groningen1-0/+6
next block, and then remove the latter jump
2004-11-17enable OPTIMIZE_LOOPS for I486John van Groningen1-1/+3
2004-07-15add absR and negI for sparcJohn van Groningen1-8/+4
2004-07-14support neg and not in the register allocatorJohn van Groningen1-0/+6
2004-07-12implement absR, negI and faster not for the PowerPCJohn van Groningen1-3/+3
2004-07-12add absR, negI, unsigned compare, divU, remU and faster notJohn van Groningen1-34/+253
instructions for IA32 add loop optimization code (speeds up jmp to a cmp and branch instruction), not yet enabled
2004-05-12use scratch register during register allocation on IA32John van Groningen1-1/+1
2004-04-23implement umulIIL instruction on the PowerPCJohn van Groningen1-0/+3
2003-05-16remove (enable) FIX_REG_USES_INDEX #defineJohn van Groningen1-63/+3
2003-05-16optimize remainder of non power of 2 constant for IA32John van Groningen1-0/+3949