aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/CBackend/CBackend.cpp
AgeCommit message (Expand)Author
2008-03-25Add explicit keywords.Dan Gohman
2008-03-25A quick nm audit turned up several fixed tables and objects that wereDan Gohman
2008-03-12Reimplement the parameter attributes support, phase #1. hilights:Chris Lattner
2008-03-05gcc likes things spelled correctlyAndrew Lenharth
2008-03-03s/isReturnStruct()/hasStructRetAttr()/gDevang Patel
2008-03-02add support for lvsl, fixing PR1481Chris Lattner
2008-03-02add support for the sse.cmp.* intrinsics, which fixes sse.isamax with the CBE.Chris Lattner
2008-03-02refactor intrinsic handling code out into its own method.Chris Lattner
2008-03-02fix printing of undef vectors, this fixes "simple" and "build" in UnitTests/V...Chris Lattner
2008-03-02insertelement got the wrong operands.Chris Lattner
2008-03-02Several changes:Chris Lattner
2008-03-02Fix a bug I introduced in constant array and constant vector handling.Chris Lattner
2008-03-02implement shufflevector.Chris Lattner
2008-03-02implement extractelement.Chris Lattner
2008-03-02implement insertelement.Chris Lattner
2008-03-02respect isSigned for vector types, fixing sdiv of vectors etc.Chris Lattner
2008-03-02print the attribute in the right place, this fixes function returning vectors.Chris Lattner
2008-03-02vector types are simple types. This fixes div/rem of vectors.Chris Lattner
2008-03-02Print vector types appropriately. This gets basic vector code workingChris Lattner
2008-03-02rename PT -> VT for VectorTypes.Chris Lattner
2008-03-02Print i32/i64 integer constants as 1u instead of ((unsigned int)1). Chris Lattner
2008-02-28Avoid collisions in value names.Lauro Ramos Venancio
2008-02-22Split ParameterAttributes.h, putting the complicatedDale Johannesen
2008-02-20Temporarily backing out r47337. It breaks a number of CBE tests.Evan Cheng
2008-02-20Remove bunch of gcc 4.3-related warnings from TargetAnton Korobeynikov
2008-02-19fix some byval problems in the cbe. Closes PR2065Andrew Lenharth
2008-02-16I cannot find a libgcc function for this builtin. Therefor expanding it to a...Andrew Lenharth
2008-02-01CBackend: Implement unaligned load/store.Lauro Ramos Venancio
2008-01-12Indirect call with byval parameter requires a cast first.Evan Cheng
2008-01-12Add support for NetBSD, patch by Krister Walfridsson!Chris Lattner
2008-01-11More cbe byval fixes.Evan Cheng
2008-01-11Some C backend ByVal parameter attribute support. Not yet complete.Evan Cheng
2008-01-11A couple of obvious off-by-one bugs.Evan Cheng
2008-01-07Enabling the target-independent garbage collection infrastructure by hooking itGordon Henriksen
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-21Fix silly typo in the FP CEP handling.Anton Korobeynikov
2007-12-03Rather than having special rules like "intrinsics cannotDuncan Sands
2007-11-28Work around a GCC bug, producing this code:Chris Lattner
2007-11-27Fix PR1146: parameter attributes are longer part ofDuncan Sands
2007-10-17Switching TargetMachineRegistry to use the new generic Registry.Gordon Henriksen
2007-10-15Handle PPC long double in CBackend.Dale Johannesen
2007-10-02Rewrite sqrt and powi to use anyfloat. By popular demand.Dale Johannesen
2007-09-26Make temporaries explicit to avoid prematureDale Johannesen
2007-09-22Fix PR1679, by printing GEP indices as signed values instead of unsigned.Chris Lattner
2007-09-17Implement x86 long double (uses host long double,Dale Johannesen
2007-09-15Fix PR1666, SPASS with the CBE and 254.gap with the CBE.Chris Lattner
2007-09-14Remove the assumption that FP's are either float orDale Johannesen
2007-09-12Revise previous patch per review comments.Dale Johannesen
2007-09-11Add APInt interfaces to APFloat (allows directlyDale Johannesen
2007-09-07Apply feedback from previous patch.Dale Johannesen