aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaLambda.cpp
AgeCommit message (Expand)Author
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie
2012-04-04Move the computation of the lambda mangling information (manglingDouglas Gregor
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-01Implement "optimization" for lambda-to-block conversion which inlines the gen...Eli Friedman
2012-02-22Generate an AST for the conversion from a lambda closure type to aDouglas Gregor
2012-02-21Only pop the expression evaluation context corresponding to a lambdaDouglas Gregor
2012-02-21Improve our handling of lambda expressions that occur within defaultDouglas Gregor
2012-02-21Remove comma from end of enum to silence build warning.Craig Topper
2012-02-21Implement non-internal linkage for lambda closure types that need aDouglas Gregor
2012-02-21Implement name mangling for lambda expressions that occur within theDouglas Gregor
2012-02-21Implement name mangling for lambda expressions that occur within theDouglas Gregor
2012-02-20Make sure that we set up the right declaration contexts when creatingDouglas Gregor
2012-02-20Basic support for name mangling of C++11 lambda expressions. BecauseDouglas Gregor
2012-02-18Rewrite variable capture within lambda expressions and blocks,Douglas Gregor
2012-02-17Rework the Sema/AST/IRgen dance for the lambda closure type'sDouglas Gregor
2012-02-15Lambda closure types have a conversion function to a block pointerDouglas Gregor
2012-02-15Factor the construction of the lambda-to-function-pointer conversion function...Douglas Gregor
2012-02-14Implement C++ core issue 974, which permits default arguments forDouglas Gregor
2012-02-14Check the return type of lambda expressions.Douglas Gregor
2012-02-14Implement support for lambda capture pack expansions, e.g.,Douglas Gregor
2012-02-14Link together the call operator produced from transforming a lambdaDouglas Gregor
2012-02-13Introduce support for template instantiation of lambdaDouglas Gregor
2012-02-13Keep track of the set of array index variables we use when weDouglas Gregor
2012-02-13Move the storage of lambda captures and capture initializers fromDouglas Gregor
2012-02-12Lambdas have a deleted default constructor and a deleted copyDouglas Gregor
2012-02-10Allow implicit capture of 'this' in a lambda even when the captureDouglas Gregor
2012-02-10Don't introduce a lambda's operator() into the class until after weDouglas Gregor
2012-02-10Track whether a function type has a trailing return type as type sugar. Use thisRichard Smith
2012-02-10Implement the conversion to a function pointer for lambda expressions,Douglas Gregor
2012-02-10Extend CXXRecordDecl with a function that determines the mapping fromDouglas Gregor
2012-02-09Implement return type deduction for lambdas per C++11Douglas Gregor
2012-02-09Restore the appropriate lexical declaration context for a lambda'sDouglas Gregor
2012-02-09Remove the "unsupported" error for lambda expressions. It's annoying,Douglas Gregor
2012-02-09Implement C++ [expr.prim.lambda]p2, which bans lambda expressions inDouglas Gregor
2012-02-09Don't complain about the lack of a constructor for a lambda expression. They ...Douglas Gregor
2012-02-09Along the error path for lambdas, mark the lambda class as invalid and finali...Douglas Gregor
2012-02-09Various interrelated cleanups for lambdas:Douglas Gregor
2012-02-08Factor C++11 lambda expressions implementation into a separateDouglas Gregor