[llvm-commits] CVS: llvm/lib/Target/ARM/ARMInstrVFP.td

2007-05-29 Thread Evan Cheng
Changes in directory llvm/lib/Target/ARM: ARMInstrVFP.td updated: 1.6 - 1.7 --- Log message: For VFP2 fldm, fstm instructions, the condition code is printed after the address mode and size specifier. e.g. fstmiaseq, not fstmeqias. --- Diffs of the changes: (+4 -4) ARMInstrVFP.td |8

[llvm-commits] CVS: llvm/lib/Target/ARM/ARMInstrVFP.td

2007-05-07 Thread Evan Cheng
Changes in directory llvm/lib/Target/ARM: ARMInstrVFP.td updated: 1.3 - 1.4 --- Log message: This is no longer needed after enabling the DAG combiner xform. --- Diffs of the changes: (+0 -5) ARMInstrVFP.td |5 - 1 files changed, 5 deletions(-) Index:

[llvm-commits] CVS: llvm/lib/Target/ARM/ARMInstrVFP.td

2007-05-03 Thread Dale Johannesen
Changes in directory llvm/lib/Target/ARM: ARMInstrVFP.td updated: 1.2 - 1.3 --- Log message: Evan's patch to avoid FPreg-intreg copy for cvt; store to mem --- Diffs of the changes: (+5 -0) ARMInstrVFP.td |5 + 1 files changed, 5 insertions(+) Index:

Re: [llvm-commits] CVS: llvm/lib/Target/ARM/ARMInstrVFP.td

2007-05-03 Thread Chris Lattner
Evan's patch to avoid FPreg-intreg copy for cvt; store to mem +// avoid copying result of FTOUIZ to int reg when we're just storing it +let AddedComplexity = 1 in +def : ARMPat(store (i32 (bitconvert SPR:$src)), addrmode5:$addr), + (FSTS SPR:$src, addrmode5:$addr); + //