Age | Commit message (Expand) | Author |
2007-08-26 | implicit casts take care of this code, remove it now. | Chris Lattner |
2007-08-26 | refactor scalar conversions out into CGExprScalar.cpp | Chris Lattner |
2007-08-26 | tolerate unimplemented codegen better | Chris Lattner |
2007-08-24 | Teach emit-llvm for scalars to properly handle compound assignment | Chris Lattner |
2007-08-24 | completely refactor codegen of scalar expressions out into its own CGExprScal... | Chris Lattner |
2007-08-24 | stub out complex -> bool conversion. | Chris Lattner |
2007-08-23 | implement passing of complex and aggregates through call args. | Chris Lattner |
2007-08-21 | Implement parsing and code generation of Objective-C string literals. | Anders Carlsson |
2007-08-21 | move EmitLoadOfComplex/EmitStoreOfComplex into ComplexExprEmitter. | Chris Lattner |
2007-08-21 | implement comma for complex. | Chris Lattner |
2007-08-21 | and/or/xor are invalid for complex, even integer complex apparently. | Chris Lattner |
2007-08-21 | simplify code slightly | Chris Lattner |
2007-08-21 | reimplement support for complex comparisons, add support for integer complex ... | Chris Lattner |
2007-08-21 | reimplement complex mul | Chris Lattner |
2007-08-21 | reimplement addition of complex numbers. | Chris Lattner |
2007-08-20 | Fix array->pointer decay. This unbreaks test/CodeGen/array.c | Chris Lattner |
2007-08-20 | Add support for code generation of builtins. | Anders Carlsson |
2007-08-20 | Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition | Ted Kremenek |
2007-08-11 | start splitting out aggregate value computation from EmitExpr into EmitAggExpr. | Chris Lattner |
2007-08-10 | fix a codegen bug handling ocuvector element exprs. | Chris Lattner |
2007-08-10 | implement initial codegen for aggregate return functions. This implements | Chris Lattner |
2007-08-10 | Fix a bug handling function -> pointer decay and avoid emitting a noop | Chris Lattner |
2007-08-08 | now that implicit conversions are explicit, we can eliminate | Chris Lattner |
2007-08-08 | now that implicit conversions are explicit, we can eliminate | Chris Lattner |
2007-08-04 | Implement codegen for __builtin_choose_expr. For example: | Chris Lattner |
2007-08-03 | implement codegen support for __builtin_types_compatible_p | Chris Lattner |
2007-08-03 | Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElement... | Chris Lattner |
2007-08-03 | implement codegen for multidest ocuvector expressions, like: | Chris Lattner |
2007-08-03 | add codegen support for storing into a single-element ocu lvalue, such as: | Chris Lattner |
2007-08-03 | refactor handling of ocuvector lvalue->rvalue codegen into its own method. | Chris Lattner |
2007-08-03 | In the common case where we are shuffling a vector, emit an | Chris Lattner |
2007-08-03 | Add support for scalar-returning element accesses like V.x | Chris Lattner |
2007-08-03 | implement lvalue to rvalue conversion for ocuvector components. We can now c... | Chris Lattner |
2007-08-02 | add support for codegen of an OCUVectorComponent as an lvalue. | Chris Lattner |
2007-08-01 | update this to build with LLVM ToT | Chris Lattner |
2007-07-21 | Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ | Anders Carlsson |
2007-07-18 | implement codegen support for sizeof/alignof | Chris Lattner |
2007-07-16 | Add a hack (mirroring llvm-gcc) to pointer difference | Chris Lattner |
2007-07-15 | Refactor code so that isIntegerConstantExpr has an ASTContext available. | Chris Lattner |
2007-07-14 | add FIXME and un-XFAIL test | Gabor Greif |
2007-07-14 | A significant refactoring of the type size stuff to also | Chris Lattner |
2007-07-14 | add a fixme | Chris Lattner |
2007-07-13 | implement _Complex * == and != | Gabor Greif |
2007-07-13 | Move getSize() out of type, into ASTContext, where it has target info, and | Chris Lattner |
2007-07-13 | implement codegen support for implicit casts. | Chris Lattner |
2007-07-13 | "Codegen for Character Literals and Conditional Operator | Chris Lattner |
2007-07-13 | "Someone typed "PtrToInt" where they meant "IntToPtr". | Chris Lattner |
2007-07-13 | Implement codegen for + and - with pointers. Patch contributed by | Chris Lattner |
2007-07-11 | implement codegen support for pre/post inc/dec. | Chris Lattner |
2007-07-11 | Stage two of getting CFE top correct. | Reid Spencer |