| Commit message (Expand) | Author | Age | Files | Lines |
* | Avoid emitting casts in static initializer contexts. This fixes | Dan Gohman | 2008-07-24 | 1 | -65/+62 |
* | Use C99 aggregate literal syntax for first-class struct and array values. | Dan Gohman | 2008-07-23 | 1 | -0/+8 |
* | Enable first-class aggregates support. | Dan Gohman | 2008-07-23 | 1 | -13/+0 |
* | In the CBackend, use casts to force integer add, subtract, and | Dan Gohman | 2008-07-18 | 1 | -0/+28 |
* | Make LLVM compile on DragonFly BSD (PR2499). | Matthijs Kooijman | 2008-06-26 | 1 | -1/+1 |
* | Switch from generating the int128 typedefs based on targetdata to generating | Chris Lattner | 2008-06-16 | 1 | -6/+4 |
* | Revert r52046. It broke cbe on x86 / Mac OS X. | Evan Cheng | 2008-06-07 | 1 | -21/+6 |
* | Handle assembler identifiers specially in CBE. This fixes PR2418. | Anton Korobeynikov | 2008-06-06 | 1 | -6/+21 |
* | Rewrite a bunch of the CBE's inline asm code, giving it the | Chris Lattner | 2008-06-04 | 1 | -45/+83 |
* | Implement CBE support for first-class structs and array values, | Dan Gohman | 2008-06-02 | 1 | -18/+77 |
* | Fix the CBE's handling of instructions whose result is an i1. Previously, | Chris Lattner | 2008-05-31 | 1 | -20/+46 |
* | Fix some constructs that gcc-4.4 warns about. | Duncan Sands | 2008-05-27 | 1 | -2/+3 |
* | Tweak how ConstantFP80Ty constants are output | Duncan Sands | 2008-05-24 | 1 | -1/+1 |
* | Fix another isFirstClassType that now needs to be isSingleValueType. | Dan Gohman | 2008-05-23 | 1 | -1/+1 |
* | fix an off-by-one error in my previous patch, don't treat the callee as a inc... | Chris Lattner | 2008-05-22 | 1 | -10/+9 |
* | Add support for multiple-return values in inline asm. This should | Chris Lattner | 2008-05-22 | 1 | -34/+42 |
* | Add CommonLinkage; currently tentative definitions | Dale Johannesen | 2008-05-14 | 1 | -1/+7 |
* | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 1 | -3/+3 |
* | Initial CBE support for multiple return values. | Dan Gohman | 2008-04-23 | 1 | -0/+30 |
* | Suppress the 128-bit integer typedef on 32-bit targets, because | Dan Gohman | 2008-04-02 | 1 | -6/+12 |
* | Partial CBackend support for 128-bit integers. This is needed | Dan Gohman | 2008-04-02 | 1 | -2/+9 |
* | Add explicit keywords. | Dan Gohman | 2008-03-25 | 1 | -1/+1 |
* | A quick nm audit turned up several fixed tables and objects that were | Dan Gohman | 2008-03-25 | 1 | -1/+1 |
* | Reimplement the parameter attributes support, phase #1. hilights: | Chris Lattner | 2008-03-12 | 1 | -20/+19 |
* | gcc likes things spelled correctly | Andrew Lenharth | 2008-03-05 | 1 | -1/+1 |
* | s/isReturnStruct()/hasStructRetAttr()/g | Devang Patel | 2008-03-03 | 1 | -4/+4 |
* | add support for lvsl, fixing PR1481 | Chris Lattner | 2008-03-02 | 1 | -0/+9 |
* | add support for the sse.cmp.* intrinsics, which fixes sse.isamax with the CBE. | Chris Lattner | 2008-03-02 | 1 | -1/+39 |
* | refactor intrinsic handling code out into its own method. | Chris Lattner | 2008-03-02 | 1 | -108/+115 |
* | fix printing of undef vectors, this fixes "simple" and "build" in UnitTests/V... | Chris Lattner | 2008-03-02 | 1 | -1/+6 |
* | insertelement got the wrong operands. | Chris Lattner | 2008-03-02 | 1 | -2/+2 |
* | Several changes: | Chris Lattner | 2008-03-02 | 1 | -82/+109 |
* | Fix a bug I introduced in constant array and constant vector handling. | Chris Lattner | 2008-03-02 | 1 | -2/+2 |
* | implement shufflevector. | Chris Lattner | 2008-03-02 | 1 | -4/+38 |
* | implement extractelement. | Chris Lattner | 2008-03-02 | 1 | -2/+17 |
* | implement insertelement. | Chris Lattner | 2008-03-02 | 1 | -1/+17 |
* | respect isSigned for vector types, fixing sdiv of vectors etc. | Chris Lattner | 2008-03-02 | 1 | -2/+2 |
* | print the attribute in the right place, this fixes function returning vectors. | Chris Lattner | 2008-03-02 | 1 | -2/+2 |
* | vector types are simple types. This fixes div/rem of vectors. | Chris Lattner | 2008-03-02 | 1 | -10/+11 |
* | Print vector types appropriately. This gets basic vector code working | Chris Lattner | 2008-03-02 | 1 | -2/+6 |
* | rename PT -> VT for VectorTypes. | Chris Lattner | 2008-03-02 | 1 | -8/+7 |
* | Print i32/i64 integer constants as 1u instead of ((unsigned int)1). | Chris Lattner | 2008-03-02 | 1 | -21/+22 |
* | Avoid collisions in value names. | Lauro Ramos Venancio | 2008-02-28 | 1 | -3/+5 |
* | Split ParameterAttributes.h, putting the complicated | Dale Johannesen | 2008-02-22 | 1 | -1/+1 |
* | Temporarily backing out r47337. It breaks a number of CBE tests. | Evan Cheng | 2008-02-20 | 1 | -5/+7 |
* | Remove bunch of gcc 4.3-related warnings from Target | Anton Korobeynikov | 2008-02-20 | 1 | -1/+1 |
* | fix some byval problems in the cbe. Closes PR2065 | Andrew Lenharth | 2008-02-19 | 1 | -7/+5 |
* | I cannot find a libgcc function for this builtin. Therefor expanding it to a... | Andrew Lenharth | 2008-02-16 | 1 | -0/+4 |
* | CBackend: Implement unaligned load/store. | Lauro Ramos Venancio | 2008-02-01 | 1 | -14/+35 |
* | Indirect call with byval parameter requires a cast first. | Evan Cheng | 2008-01-12 | 1 | -6/+17 |