aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprConstant.cpp
AgeCommit message (Expand)Author
2011-03-17Politely inform GCC that we will never fall off the end of that switch.Matt Beaumont-Gay
2011-03-15Reorganize the emission of (unfoldable) constant casts a bit, andJohn McCall
2011-03-15Introduce a CharUnits FieldOffsetInChars variable in AppendField() toKen Dyck
2011-03-12Use CharUnits for argument passed to AppendPadding() from AppendBitField().Ken Dyck
2011-03-11Change parameter to AppendPadding from bytes to CharUnits. No change inKen Dyck
2011-03-11Convert the RecordSize parameter of AppendTailPadding() to CharUnits toKen Dyck
2011-03-02Only emit string initializers in-place if types match. Fixes PR9373.Benjamin Kramer
2011-02-17improve support for big endian targets, fixing PR8171, patchChris Lattner
2011-02-15Perform zero-initialization of virtual base classes when emitting John McCall
2011-02-15update for ConstantVector API change.Chris Lattner
2011-02-14revert my ConstantVector patch, it seems to have made the llvm-gccChris Lattner
2011-02-14update for ConstantVector::get API change.Chris Lattner
2011-02-11Add a helper function, ASTContext::toBits(), that converts sizes inKen Dyck
2011-02-09Convert RecordLayout::Size to CharUnits from bits. No changes toKen Dyck
2011-02-03More capturing of 'this': implicit member expressions. Getting thatJohn McCall
2010-12-07PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad
2010-11-22Refactor the null-initialization for record types and make it handle bases th...Anders Carlsson
2010-10-31Rename getBaseClassOffset to getBaseClassOffsetInBits and introduce a getBase...Anders Carlsson
2010-10-15Death to blocks, or at least the word "block" in one particular obnoxiouslyJohn McCall
2010-08-31Teach IR generation to return 'this' from constructors and destructorsJohn McCall
2010-08-25GCC didn't care for my attempt at API compatibility, so brute-force everythingJohn McCall
2010-08-23Abstract out everything having to do with member pointers into the ABIJohn McCall
2010-08-22Go back to asking CodeGenTypes whether a type is zero-initializable.John McCall
2010-08-22Experiment with using first-class aggregates to represent member functionJohn McCall
2010-08-22Abstract out member-pointer creation. I'm really unhappy about the currentJohn McCall
2010-08-22Abstract more member-pointerness out.John McCall
2010-08-22Detabify.Eli Friedman
2010-08-21IRgen: Eliminate EmitPredefinedFunctionName(), it doesn't need to be factored...Daniel Dunbar
2010-08-07Store inheritance paths after CastExprs instead of inside them.John McCall
2010-07-17Fix crash initializing a bit-field with a non-constant in a place where weEli Friedman
2010-07-05fix PR7564 a cast where the bitfield struct init codeChris Lattner
2010-07-05AppendBitField really can never fail, so return its return value. Chris Lattner
2010-06-26use more efficient type comparison predicates.Chris Lattner
2010-06-03Don't try to explicitly zero out bit-fields.Anders Carlsson
2010-05-30Fix for PR7040: Don't try to compute the LLVM type for a function where itEli Friedman
2010-05-27When null-initializing bases with data member pointers, don't assert on virtu...Anders Carlsson
2010-05-18Correctly initialize bases with member pointers. This should fix PR6441 but t...Anders Carlsson
2010-05-14Move ContainsPointerToDataMember to CodeGenTypes. No functionality change.Anders Carlsson
2010-05-03When computing the address of a virtual member function pointer, use the poin...Anders Carlsson
2010-04-24Get rid of the old GetNonVirtualBaseClassOffset and change all call sites to ...Anders Carlsson
2010-04-18recommit r101568 to fix PR6766Nuno Lopes
2010-04-17Vtable -> VTable renames across the board.Anders Carlsson
2010-04-17revert r101568, which miscompiles this testcase, distilled from ldecod:Chris Lattner
2010-04-16fix PR6766: codegen of var initialized with wide charNuno Lopes
2010-04-16fix a bogus assertion exposed by a recent change: packing theChris Lattner
2010-04-16emit padding as undef values, take 2Nuno Lopes
2010-04-13Rework the ConstStructBuilder code to emit missing initializerChris Lattner
2010-04-13move a bunch of ConstStructBuilder methods out of line.Chris Lattner
2010-04-12fix PR6660/6168: emit padding as zeros instead of undef. Because Chris Lattner
2010-03-31IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out o...Daniel Dunbar