aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprConstant.cpp
AgeCommit message (Expand)Author
2013-04-20C++1y: Allow aggregates to have default initializers.Richard Smith
2013-04-05Allow EmitConstantInit() to emit constant initializers for objects with trivi...Alexey Samsonov
2013-03-05Silence a number of static analyzer warnings with assertions and such.Jordan Rose
2013-01-23Add a new LangOpt NativeHalfType. This option allows for native half/fp16Joey Gouly
2013-01-20Implement OpenCL event_t as Clang builtin type, including event_t related Ope...Guy Benyei
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-10c++ IRGen. In trivial cases that object is going into staticFariborz Jahanian
2013-01-03Don't assert/crash on reference variables in lambdas bound to aEli Friedman
2013-01-02Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate toChandler Carruth
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-10-12Make -mms-bitfields behave consistently.Eli Friedman
2012-10-11Add codegen support for __uuidof().Nico Weber
2012-10-08Move TargetData to DataLayout.Micah Villmow
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