| Commit message (Expand) | Author | Age | Files | Lines |
* | Cleanup to use helper. | Eli Friedman | 2011-08-23 | 1 | -1/+1 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -1/+1 |
* | Convert ConstantExpr::getGetElementPtr and | Jay Foad | 2011-07-21 | 1 | -1/+1 |
* | de-constify llvm::Type, patch by David Blaikie! | Chris Lattner | 2011-07-18 | 1 | -24/+24 |
* | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall | 2011-07-15 | 1 | -0/+5 |
* | De-constify Types in StructType::get() and TargetData::getIntPtrType(). | Jay Foad | 2011-07-11 | 1 | -3/+3 |
* | In ARC, reclaim all return values of retainable type, not just those | John McCall | 2011-07-07 | 1 | -0/+1 |
* | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor | 2011-06-21 | 1 | -0/+4 |
* | Update to match mainline ConstantStruct::get API change. Also, use | Chris Lattner | 2011-06-20 | 1 | -4/+20 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -0/+2 |
* | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor | 2011-05-20 | 1 | -4/+4 |
* | Finish off rules for z-length bitfields in ms_struct | Fariborz Jahanian | 2011-05-03 | 1 | -2/+1 |
* | More rule enforcement of zero bitfields for ms_struct. | Fariborz Jahanian | 2011-05-02 | 1 | -1/+2 |
* | ms_struct patch for initialization and field access irgen. | Fariborz Jahanian | 2011-04-28 | 1 | -1/+15 |
* | For | Argyrios Kyrtzidis | 2011-04-21 | 1 | -1/+9 |
* | C1X: implement generic selections | Peter Collingbourne | 2011-04-15 | 1 | -0/+4 |
* | After some discussion with Doug, we decided that it made a lot more sense | John McCall | 2011-04-12 | 1 | -2/+0 |
* | More __unknown_anytype work. | John McCall | 2011-04-11 | 1 | -0/+1 |
* | Remove CK_DynamicToNull. | Anders Carlsson | 2011-04-11 | 1 | -1/+0 |
* | As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which | Anders Carlsson | 2011-04-10 | 1 | -0/+1 |
* | Basic, untested implementation for an "unknown any" type requested by LLDB. | John McCall | 2011-04-07 | 1 | -0/+1 |
* | supported: AltiVec vector initialization with a single literal according to P... | Anton Yartsev | 2011-03-27 | 1 | -6/+23 |
* | Eliminate some literal '8's in FillInNullDataMemberPointers() by switching | Ken Dyck | 2011-03-22 | 1 | -5/+6 |
* | Use CharUnits's new increment operator. No change in functionality intended. | Ken Dyck | 2011-03-19 | 1 | -2/+2 |
* | Replace literal '8's with CharWidth in AppendBitField. No change in | Ken Dyck | 2011-03-19 | 1 | -13/+15 |
* | Add support for language-specific address spaces. On top of that, | Peter Collingbourne | 2011-03-18 | 1 | -1/+1 |
* | Convert alignment values to CharUnits. No change in functionality intended. | Ken Dyck | 2011-03-18 | 1 | -18/+18 |
* | Convert getSizeInBytes() to getSizeInChars(), which returns its result in | Ken Dyck | 2011-03-18 | 1 | -9/+10 |
* | Convert variables to CharUnits in ConvertStructToPacked(). No change in | Ken Dyck | 2011-03-18 | 1 | -12/+12 |
* | Convert NextOffsetInBytes to CharUnits and rename to NextOffsetInChars. No | Ken Dyck | 2011-03-17 | 1 | -36/+40 |
* | Politely inform GCC that we will never fall off the end of that switch. | Matt Beaumont-Gay | 2011-03-17 | 1 | -0/+1 |
* | Reorganize the emission of (unfoldable) constant casts a bit, and | John McCall | 2011-03-15 | 1 | -36/+97 |
* | Introduce a CharUnits FieldOffsetInChars variable in AppendField() to | Ken Dyck | 2011-03-15 | 1 | -3/+7 |
* | Use CharUnits for argument passed to AppendPadding() from AppendBitField(). | Ken Dyck | 2011-03-12 | 1 | -5/+6 |
* | Change parameter to AppendPadding from bytes to CharUnits. No change in | Ken Dyck | 2011-03-11 | 1 | -11/+11 |
* | Convert the RecordSize parameter of AppendTailPadding() to CharUnits to | Ken Dyck | 2011-03-11 | 1 | -8/+6 |
* | Only emit string initializers in-place if types match. Fixes PR9373. | Benjamin Kramer | 2011-03-02 | 1 | -1/+1 |
* | improve support for big endian targets, fixing PR8171, patch | Chris Lattner | 2011-02-17 | 1 | -1/+1 |
* | Perform zero-initialization of virtual base classes when emitting | John McCall | 2011-02-15 | 1 | -62/+97 |
* | update for ConstantVector API change. | Chris Lattner | 2011-02-15 | 1 | -1/+1 |
* | revert my ConstantVector patch, it seems to have made the llvm-gcc | Chris Lattner | 2011-02-14 | 1 | -1/+1 |
* | update for ConstantVector::get API change. | Chris Lattner | 2011-02-14 | 1 | -1/+1 |
* | Add a helper function, ASTContext::toBits(), that converts sizes in | Ken Dyck | 2011-02-11 | 1 | -2/+1 |
* | Convert RecordLayout::Size to CharUnits from bits. No changes to | Ken Dyck | 2011-02-09 | 1 | -3/+4 |
* | More capturing of 'this': implicit member expressions. Getting that | John McCall | 2011-02-03 | 1 | -13/+38 |
* | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -16/+12 |
* | Refactor the null-initialization for record types and make it handle bases th... | Anders Carlsson | 2010-11-22 | 1 | -75/+85 |
* | Rename getBaseClassOffset to getBaseClassOffsetInBits and introduce a getBase... | Anders Carlsson | 2010-10-31 | 1 | -1/+1 |
* | Death to blocks, or at least the word "block" in one particular obnoxiously | John McCall | 2010-10-15 | 1 | -1/+1 |
* | Teach IR generation to return 'this' from constructors and destructors | John McCall | 2010-08-31 | 1 | -0/+1 |