aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprConstant.cpp
AgeCommit message (Expand)Author
2012-09-11Remove some redundancy from constant aggregate emission. No functionality cha...Richard Smith
2012-09-05Changing of type checking order on InitListExprJin-Gu Kang
2012-08-31Change the representation of builtin functions in the ASTEli Friedman
2012-07-04Remove get(V)BaseClassOffsetInBits, the CharUnit functions should be used ins...Benjamin Kramer
2012-06-23Support the tls_model attribute (PR9788)Hans Wennborg
2012-06-06Revert Decl's iterators back to pointer value_type rather than reference valu...David Blaikie
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie
2012-04-15PR12226: don't generate wrong code if a braced string literal is used toRichard Smith
2012-03-30Missing piece of r153720: make sure the vtable pointer is handled correctly.Eli Friedman
2012-03-30ConstStructBuilder: fix offset math for base classes so it works correctly in...Eli Friedman
2012-03-09Make sure constant emission handles initializer lists with strings correctly....Eli Friedman
2012-03-02Reinstate r151879, r151880, reverted in r151922, along with a bugfix forRichard Smith
2012-02-25CodeGen support for global variables of type std::initializer_list<X>.Sebastian Redl
2012-02-23PR12067: When emitting an evaluated constant structure in C++11 mode, don'tRichard Smith
2012-02-22Generate an AST for the conversion from a lambda closure type to aDouglas Gregor
2012-02-19Refuse to compile global std::initializer_lists instead of doing completely t...Sebastian Redl
2012-02-15Split reinterpret_casts of member pointers out from CK_BitCast; thisJohn McCall
2012-02-14Use a simpler (and more efficient) pattern to pad vectors.Benjamin Kramer
2012-02-13Deal with a horrible C++11 special case. If a non-literal type has a constexprRichard Smith
2012-02-07Bump up the initial vector size to avoid having to grow the vector more often.Bill Wendling
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2012-02-07Use a more efficient container for these values. Also reserve space when using aBill Wendling
2012-02-07Use a SmallVector instead of std::vector. This improves compilation time inBill Wendling
2012-02-06Don't recalculate the size of the array each time through the for-loop.Bill Wendling
2012-02-06simplify code and smallvectorize.Chris Lattner
2012-02-05reapply the patches reverted in r149477, which enable ConstantDataArray.Chris Lattner
2012-02-01Revert r149363 which was part a series of commits that were reverted in llvmArgyrios Kyrtzidis
2012-01-31ConstantArray::get() (for strings) is going away, useChris Lattner
2012-01-17Remove constant member pointer support from Expr-based constant emission nowRichard Smith
2012-01-16Some improvements to the handling of C11 atomic types:David Chisnall
2012-01-14constexpr irgen: Add irgen support for APValue::Struct, APValue::Union,Richard Smith
2012-01-10Implement the missing pieces of Evaluate for _Complex types. With that compl...Eli Friedman
2012-01-05Address Richard's review comments on r147561 (Evaluate support for address-of...Eli Friedman
2012-01-04Add an APValue representation for the difference between two address-of-label...Eli Friedman
2011-12-27constexpr: support for evaluation and codegen of typeid constants.Richard Smith
2011-12-22Fix a failure (which led to a crash) in constant emission code with vector co...Eli Friedman
2011-12-07Make sure we correctly zero-initialize unions containing a pointer to data me...Eli Friedman
2011-11-22Use static storage duration for file-scope compound literals, even when theyRichard Smith
2011-11-17Constant expression evaluation: add support for evaluation of member pointersRichard Smith
2011-11-12Represent an APValue based on a Decl as that Decl, rather than a DeclRefExprRichard Smith
2011-11-10Constant expression evaluation: support for evaluation of structs and unions ofRichard Smith
2011-11-07Constant expression evaluation: support for arrays.Richard Smith
2011-11-07Rip out CK_GetObjCProperty.John McCall
2011-11-01Fix the representation of wide strings in the AST and IR so that it uses the ...Eli Friedman
2011-10-29Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it willRichard Smith
2011-10-24Don't try to emit CK_LValueBitCast casts as constants. PR9558.Eli Friedman
2011-10-14Provide half floating point support as a storage only type.Anton Korobeynikov
2011-10-14PR11124: Don't overwrite memory outside of a base class when performing zero-...Eli Friedman
2011-10-10Constant expression evaluation refactoring:Richard Smith
2011-09-23Removing a bunch of dead returns/breaks after llvm_unreachables.David Blaikie