| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add support for code generation of builtins. | Anders Carlsson | 2007-08-20 | 1 | -0/+1 |
* | start splitting out aggregate value computation from EmitExpr into EmitAggExpr. | Chris Lattner | 2007-08-11 | 1 | -2/+31 |
* | now that implicit conversions are explicit, we can eliminate | Chris Lattner | 2007-08-08 | 1 | -3/+0 |
* | now that implicit conversions are explicit, we can eliminate | Chris Lattner | 2007-08-08 | 1 | -2/+0 |
* | Implement codegen for __builtin_choose_expr. For example: | Chris Lattner | 2007-08-04 | 1 | -0/+2 |
* | implement codegen support for __builtin_types_compatible_p | Chris Lattner | 2007-08-03 | 1 | -0/+3 |
* | Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElement... | Chris Lattner | 2007-08-03 | 1 | -14/+14 |
* | add codegen support for storing into a single-element ocu lvalue, such as: | Chris Lattner | 2007-08-03 | 1 | -0/+1 |
* | refactor handling of ocuvector lvalue->rvalue codegen into its own method. | Chris Lattner | 2007-08-03 | 1 | -0/+2 |
* | implement lvalue to rvalue conversion for ocuvector components. We can now c... | Chris Lattner | 2007-08-03 | 1 | -1/+2 |
* | add support for codegen of an OCUVectorComponent as an lvalue. | Chris Lattner | 2007-08-02 | 1 | -4/+22 |
* | Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ | Anders Carlsson | 2007-07-21 | 1 | -0/+2 |
* | implement codegen support for sizeof/alignof | Chris Lattner | 2007-07-18 | 1 | -1/+1 |
* | Implement break and continue. Patch by Anders Carlsson! | Chris Lattner | 2007-07-16 | 1 | -1/+16 |
* | implement codegen support for implicit casts. | Chris Lattner | 2007-07-13 | 1 | -1/+1 |
* | "Codegen for Character Literals and Conditional Operator | Chris Lattner | 2007-07-13 | 1 | -1/+7 |
* | Implement codegen for + and - with pointers. Patch contributed by | Chris Lattner | 2007-07-13 | 1 | -0/+4 |
* | implement codegen support for pre/post inc/dec. | Chris Lattner | 2007-07-11 | 1 | -1/+1 |
* | implement codegen support for rvalue-only vector subscripts, such as: | Chris Lattner | 2007-07-10 | 1 | -0/+1 |
* | Add support for codegen'ing vector subscripts, at least when they are lvalues. | Chris Lattner | 2007-07-10 | 1 | -3/+30 |
* | implement codegen support for FP literals | Chris Lattner | 2007-07-09 | 1 | -0/+2 |
* | add codegen support for <<= and >>=. | Chris Lattner | 2007-06-29 | 1 | -3/+4 |
* | Implement the rest of the compound assignment operators, except shifts. | Chris Lattner | 2007-06-29 | 1 | -6/+6 |
* | refactor some code, implement -= | Chris Lattner | 2007-06-29 | 1 | -3/+9 |
* | Rename ArithAssignBinaryOperator -> CompoundAssignOperator, implement | Chris Lattner | 2007-06-29 | 1 | -1/+4 |
* | implement support for struct and complex returns. | Chris Lattner | 2007-06-22 | 1 | -0/+4 |
* | add some infrastructure for codegen'ing complex numbers. implement addition | Chris Lattner | 2007-06-22 | 1 | -1/+19 |
* | remove location tracking for target info | Chris Lattner | 2007-06-22 | 1 | -4/+2 |
* | Build enough support for aggregates to be able to compile this: | Chris Lattner | 2007-06-22 | 1 | -2/+5 |
* | implement codegen of the relational operations | Chris Lattner | 2007-06-20 | 1 | -4/+2 |
* | Implement the equality operators for simple types | Chris Lattner | 2007-06-20 | 1 | -0/+1 |
* | Refactor CodeGenTypes out to CodeGenModule so it can be used for functions | Chris Lattner | 2007-06-16 | 1 | -2/+5 |
* | Split type analysis out to its own file, now the integer constant expr evalua... | Chris Lattner | 2007-06-16 | 1 | -10/+3 |
* | Finally bite the bullet and make the major change: split the clang namespace | Chris Lattner | 2007-06-15 | 1 | -13/+14 |
* | implement codegen of calls. We can now compile: | Chris Lattner | 2007-06-15 | 1 | -0/+2 |
* | Implement support for formal arguments. We can now compile this: | Chris Lattner | 2007-06-13 | 1 | -1/+3 |
* | Convert argument types over, which works for trivial scalars. | Chris Lattner | 2007-06-09 | 1 | -2/+7 |
* | codegen all declarators in a declstmt, allowing us to successfully codegen | Chris Lattner | 2007-06-09 | 1 | -2/+3 |
* | Implement array subscripts for non-vla types. | Chris Lattner | 2007-06-08 | 1 | -0/+3 |
* | implement codegen of string literals. | Chris Lattner | 2007-06-06 | 1 | -0/+2 |
* | implement support for casts to/from pointers. | Chris Lattner | 2007-06-06 | 1 | -1/+2 |
* | implement codegen of a bunch more loop constructs and most expressions | Chris Lattner | 2007-06-05 | 1 | -18/+92 |
* | implement codegen of while stmts and lvalue evaluation of paren exprs :) | Chris Lattner | 2007-06-05 | 1 | -0/+2 |
* | Implement EmitUsualArithmeticConversions, so we can add shorts to floats and | Chris Lattner | 2007-06-03 | 1 | -2/+2 |
* | implement a first hack at codegen'ing the usual unary conversions. | Chris Lattner | 2007-06-02 | 1 | -1/+5 |
* | Implement translation of pointer, reference and simple array types. We now | Chris Lattner | 2007-06-02 | 1 | -2/+0 |
* | Refactor EvaluateScalarValueToBool out of if statement emission, so it can | Chris Lattner | 2007-06-02 | 1 | -1/+12 |
* | Implement scaffolding for lvalues. Implement block vardecl lvalues. | Chris Lattner | 2007-06-02 | 1 | -0/+32 |
* | Add initial support for fixed-size local vardecls. This allows us to compile: | Chris Lattner | 2007-06-02 | 1 | -2/+7 |
* | Start stubbing out decl codegen. | Chris Lattner | 2007-06-02 | 1 | -0/+18 |