| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Change the IR-generation of VLAs so that we capture bounds, | John McCall | 2011-06-24 | 1 | -16/+22 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -15/+42 |
* | Add support for builtin astype: | Tanya Lattner | 2011-06-04 | 1 | -0/+51 |
* | Eliminate temporary argument vectors. | Benjamin Kramer | 2011-05-28 | 1 | -3/+1 |
* | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor | 2011-05-20 | 1 | -12/+12 |
* | Make __builtin_shufflevector and -ftrapv work correctly together. PR9945. | Eli Friedman | 2011-05-19 | 1 | -11/+5 |
* | Don't emit nsw flags for vector operations; there's basically no benefit, and... | Eli Friedman | 2011-05-06 | 1 | -7/+4 |
* | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+4 |
* | t/clang/expr-traits | John Wiegley | 2011-04-25 | 1 | -0/+4 |
* | some cleanups to use IRBuilder methods instead of llvm:: foo methods. | Chris Lattner | 2011-04-19 | 1 | -42/+34 |
* | fix rdar://9289603 - clang should fold trivial ?: for enums as well as intege... | Chris Lattner | 2011-04-16 | 1 | -3/+2 |
* | C1X: implement generic selections | Peter Collingbourne | 2011-04-15 | 1 | -2/+4 |
* | After some discussion with Doug, we decided that it made a lot more sense | John McCall | 2011-04-12 | 1 | -16/+0 |
* | More __unknown_anytype work. | John McCall | 2011-04-11 | 1 | -0/+13 |
* | Remove CK_DynamicToNull. | Anders Carlsson | 2011-04-11 | 1 | -2/+1 |
* | As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which | Anders Carlsson | 2011-04-10 | 1 | -1/+2 |
* | PR9580: Handle vectors correctly in ScalarExprEmitter::EmitRem. | Eli Friedman | 2011-04-10 | 1 | -1/+1 |
* | Basic, untested implementation for an "unknown any" type requested by LLDB. | John McCall | 2011-04-07 | 1 | -0/+3 |
* | Remove PHINode::reserveOperandSpace(). Instead, add a parameter to | Jay Foad | 2011-03-30 | 1 | -8/+4 |
* | Fix in r128471 is very broad. Some of the unconditional branches need line nu... | Devang Patel | 2011-03-30 | 1 | -0/+3 |
* | refactoring | Anton Yartsev | 2011-03-28 | 1 | -3/+1 |
* | AltiVec vector comparison logic now affect only vectors of fundamental AltiVe... | Anton Yartsev | 2011-03-27 | 1 | -1/+3 |
* | Don't emit read barriers for reading __weak __block variables | John McCall | 2011-03-16 | 1 | -4/+2 |
* | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -4/+5 |
* | DebugInfo can be enabled or disabled at function level (e.g. using an attribu... | Devang Patel | 2011-03-07 | 1 | -2/+2 |
* | Do not emit stop point for CXXDefaultArgExpr. It results in suboptimial user ... | Devang Patel | 2011-03-07 | 1 | -1/+6 |
* | IRGen. Fix IR when message returns reference type. | Fariborz Jahanian | 2011-03-02 | 1 | -0/+3 |
* | PR9350: increment/decrement of char (and anything else narrower than int) | Eli Friedman | 2011-03-02 | 1 | -3/+5 |
* | -fwrapv should turn off the inbounds markers from geps used for pointer | Chris Lattner | 2011-03-01 | 1 | -33/+48 |
* | Change the interface to ConstantFoldsToSimpleInteger to not encode | Chris Lattner | 2011-02-27 | 1 | -6/+9 |
* | Remove the "conditional save" hashtables from IR generation. | John McCall | 2011-02-17 | 1 | -5/+0 |
* | Change the representation of GNU ?: expressions to use a different expression | John McCall | 2011-02-17 | 1 | -54/+31 |
* | Save a copy expression for non-trivial copy constructions of catch variables. | John McCall | 2011-02-16 | 1 | -0/+7 |
* | Assorted cleanup: | John McCall | 2011-02-15 | 1 | -78/+97 |
* | update for ConstantVector API change. | Chris Lattner | 2011-02-15 | 1 | -9/+9 |
* | revert my ConstantVector patch, it seems to have made the llvm-gcc | Chris Lattner | 2011-02-14 | 1 | -9/+9 |
* | update for ConstantVector::get API change. | Chris Lattner | 2011-02-14 | 1 | -9/+9 |
* | A few more tweaks to the blocks AST representation: | John McCall | 2011-02-07 | 1 | -2/+2 |
* | pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed) | Anton Yartsev | 2011-02-07 | 1 | -23/+48 |
* | More capturing of 'this': implicit member expressions. Getting that | John McCall | 2011-02-03 | 1 | -3/+3 |
* | Better framework for conditional cleanups; untested as yet. | John McCall | 2011-01-26 | 1 | -18/+19 |
* | Revert r124146 for now. It appears to be failing on a few platforms. | Eric Christopher | 2011-01-24 | 1 | -48/+23 |
* | pre/post increase/decrease for AltiVec vectors | Anton Yartsev | 2011-01-24 | 1 | -23/+48 |
* | Send code generation for xvalues down the same path as lvalues | Douglas Gregor | 2011-01-22 | 1 | -1/+1 |
* | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall | 2011-01-19 | 1 | -2/+1 |
* | Replace calls to getTypeSize() and getTypeAlign() with their 'InChars' | Ken Dyck | 2011-01-19 | 1 | -2/+2 |
* | Ensure an insertion point at the end of a statement-expression. | John McCall | 2011-01-13 | 1 | -2/+4 |
* | Add IR generation support for SizeOfPackExpr. | Douglas Gregor | 2011-01-12 | 1 | -0/+5 |
* | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 1 | -6/+1 |
* | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 1 | -0/+4 |