change backends to produce 1 big array with all registers
[libfirm] / ir / be / ia32 / ia32_emitter.c
2010-10-06 Matthias Braunchange backends to produce 1 big array with all registers
2010-10-06 Matthias Braunfix trailing whitespaces and tabulators in the middle...
2010-09-22 Matthias Brauneliminate the unnecessary and especially confusing...
2010-08-12 Matthias Braunidentifiers starting with _ are reserved; remove this...
2010-07-06 Matthias Braunremove these largish/noisy headers
2010-07-05 Matthias Braunput stack_layout into beirg instead of be_abi datastruc...
2010-07-02 Matthias Braunconvert remaining APIs from be_irg_t* to ir_graph*
2010-05-05 Matthias Braunalso allow reference mode in fild
2010-03-15 Matthias Braunfix various warnings reported by cparser
2010-03-15 Matthias Braunkill the concept of an unknown register - it just heavi...
2010-02-13 Christoph MallonPut a space after if/for/switch/while.
2010-02-13 Christoph MallonOutput proper local lables (starting with .L/L) for...
2010-02-13 Christoph MallonWe must be able to output 16 byte aligned long doubles...
2010-02-13 Matthias Braunuse begnuas to emit block labels so we use the correct...
2010-02-12 Matthias Braunput my notes into the code so they don't get lost....
2010-02-07 Michael BeckReverted r27079. Seems to be wrong.
2010-02-06 Michael BeckBugFix: ins_permuted means inversed flags, not negated ...
2010-02-04 Matthias Braun- representing the 3-state visibility (default,local...
2010-02-03 Matthias Braunbackend_marked was a buggy/wrong concept, removed it
2010-02-03 Matthias BraunRework linkage types in firm.
2010-02-01 Olaf LiebeFixed broken ia32_emitf (va_arg was not always called...
2010-02-01 Matthias Braunmake the character used for specifying elf types config...
2010-01-28 Christoph MallonReduce code duplication by jumping to the appropriate...
2010-01-18 Matthias Braunremove ins_permuted from CMovcc and Setcc constructors...
2010-01-15 Michael BeckFixed register order (arg, the comments were in ATT).
2010-01-15 Michael BeckAdd binary emitter for setcc.
2010-01-14 Michael BeckAs a reminiscence to the famous MAC/65 assembler change...
2010-01-14 Matthias BraunMichael found a nice trick to implement sets for float...
2010-01-11 Matthias Braunpanic instead of wrong results for Set and CMov with...
2010-01-07 Matthias BraunLiebe bugs part2: switch cases are analyzed in long...
2009-11-03 Michael Beck- removed C99 features
2009-10-01 Matthias Braun- refactoring of backend generator scripts: You can...
2009-09-29 Christoph MallonCorrect binary emission of TLS entities.
2009-09-29 Christoph MallonSimplify relative binary emission of entities.
2009-09-29 Christoph MallonImplement binary emitter for Minus64Bit.
2009-09-29 Christoph Mallonget_mode_size_bits() returns the size in bits, not...
2009-09-29 Christoph MallonImplement semi-binary emitter for SwitchJmp.
2009-09-25 Christoph MallonCorrect error in bemit_ldtls(): the register index...
2009-09-23 Christoph MallonRemove one unnecessary malloc() when emitting switches.
2009-09-23 Christoph MallonImplement binary emitter for fabs.
2009-09-23 Christoph MallonImplement binary emitter for Leave.
2009-09-23 Christoph MallonImplement binary emitters for Fucomi and Fucomip.
2009-09-23 Christoph Mallonbemit_cmp() must handle 16bit compares.
2009-09-23 Christoph MallonImplement binary emitter for Test8Bit.
2009-09-23 Christoph MallonConsistently use the source AM form for register-regist...
2009-09-23 Christoph MallonImplement binary emitter for CMov.
2009-09-23 Christoph MallonImplement binary emitters for ShlD and ShrD.
2009-09-23 Christoph MallonImplement binary emitter for LdTls.
2009-09-23 Christoph MallonCorrect typo in bemit_fist().
2009-09-23 Christoph MallonImplement binary emitter for fdivr.
2009-09-23 Christoph MallonImplement binary emitter for fsubrp.
2009-09-23 Christoph MallonImplement binary emitter for fsub.
2009-09-23 Christoph MallonImplement binary emitter for fpush.
2009-09-23 Christoph MallonImplement binary emitters for fdiv, fdivp and fdivrp.
2009-09-23 Christoph MallonImplement binary emitter for fist.
2009-09-23 Christoph MallonImplement binary emitters for FldCW, FnstCW and fistp.
2009-09-23 Christoph MallonImplement binary emitters for FucompFnstsw and fild...
2009-09-23 Christoph MallonImplement binary emitters for FucomFnstsw, fchs and...
2009-09-23 Christoph MallonImplmenent binary emitters for unordered conditional...
2009-09-22 Christoph MallonImplement binary emitter for CopyBi.
2009-09-22 Christoph MallonImplement binary emitter for SubSP.
2009-09-22 Christoph Mallon8bit immediates of Push are signed.
2009-09-22 Christoph MallonSimplify and correct bemit_binop_2(): test with sourceA...
2009-09-22 Christoph MallonEmit only 2 byte immediates for BinOpMem with 16bit...
2009-09-22 Christoph MallonHandle 8Bit and 16bit locations for DecMem, IncMem...
2009-09-22 Christoph MallonHandle 8Bit locations for RolMem, RorMem, SarMem, ShlMe...
2009-09-22 Christoph MallonImplement binary emitters for RolMem, RorMem, SarMem...
2009-09-22 Christoph MallonHandle 16bit memory locations for xxxMem.
2009-09-22 Christoph MallonImplement binary emitters for AddMem8Bit, AndMem8Bit...
2009-09-22 Christoph MallonImplement binary emitters for AddMem, AndMem, OrMem...
2009-09-22 Christoph MallonOnly read the in-reg of a Cmp8Bit, if there is a register.
2009-09-22 Christoph MallonCorrectly implement binary emitter for Cmp8Bit.
2009-09-22 Christoph MallonThe eax special case for load/store can of course handl...
2009-09-22 Christoph MallonMake bemit_store() work for 8 and 16 bit, too.
2009-09-22 Christoph MallonImplement binary emitter for Cmp8Bit.
2009-09-22 Christoph MallonImplement binary emitter for DecMem, IncMem, NegMem...
2009-09-22 Christoph MallonImplement binary emitter for Perm.
2009-09-22 Christoph MallonFix the binary emitter for Set: The pnc must be massage...
2009-09-22 Christoph MallonImplement binary emitter for Set.
2009-09-22 Christoph MallonImplement binary emitter for Store8Bit.
2009-09-22 Christoph MallonIn bemit_mod_am() we must check for the ebp special...
2009-09-22 Christoph MallonImplement binary emitter for IMul.
2009-09-22 Christoph MallonImplement binary emitter for Cwtl.
2009-09-22 Christoph MallonImplement binary emitter for Conv_I2I{,8Bit}.
2009-09-22 Christoph MallonUse bemit_unop() to implement bemit_call().
2009-09-22 Christoph MallonCorrect AM test in bemit_unop().
2009-09-22 Christoph MallonRewrite ModR/M+SIB generation in bemit_mod_am(). This...
2009-09-21 Matthias Braunfix modam with base=ebp and index - MergeSort and Quick...
2009-09-21 Matthias Braunfix emitting jne, now queens works :)
2009-09-21 Matthias Braunimplement PopMem, PopEbp, fix push register, fix some...
2009-09-21 Matthias Braunfix binary emitter for cmp with addressmode and immediate
2009-09-21 Christoph MallonAdd missing \n.
2009-09-21 Christoph MallonImplement binary emitter for test.
2009-09-21 Christoph MallonIn bemit_binop_with_imm() use in-reg, beacuse some...
2009-09-21 Christoph MallonImplement binary emitters for inc and dec.
2009-09-21 Christoph MallonImplement binary emitters for shifts and rotates.
2009-09-21 Matthias Braunadded jump emitters (only far jump at the moment)
2009-09-21 Christoph MallonImplement bemit_call() with AM.
2009-09-21 Matthias Braunfix strange bug introduced in refactoring (a half-writt...
2009-09-21 Matthias Braunfix bug introduced in refactoring: displacement only...
next