aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/ItaniumMangle.cpp
AgeCommit message (Expand)Author
2011-04-24The ABI settled on mangling float literals with lowercase hex dumps.John McCall
2011-04-15Support for C++11 (non-template) alias declarations.Richard Smith
2011-04-15fix a bunch of comment typos found by codespell. Patch byChris Lattner
2011-04-15C1X: implement generic selectionsPeter Collingbourne
2011-04-07Basic, untested implementation for an "unknown any" type requested by LLDB.John McCall
2011-04-06Do not use IR marker for LLVM intrinsicsPeter Collingbourne
2011-03-22File-scope static functions need to be mangled with 'L' so thatJohn McCall
2011-03-11Add support for the OpenCL vec_step operator, by generalising andPeter Collingbourne
2011-03-03Add a missing break, from John WiegleyDouglas Gregor
2011-02-28When we encounter a dependent template name within aDouglas Gregor
2011-02-24Teach NestedNameSpecifier to keep track of namespace aliases the sameDouglas Gregor
2011-02-21Mangling of undeduced 'auto' types, as specified by Itanium C++ ABI.Richard Smith
2011-02-20Implement the C++0x deduced 'auto' feature.Richard Smith
2011-02-17Change the representation of GNU ?: expressions to use a different expressionJohn McCall
2011-02-15Add a hack to avoid adding '\01' to asm names when possible. It would beRafael Espindola
2011-02-11For consistency, use llvm::raw_ostream in the rest of the mangle api.Rafael Espindola
2011-02-11Use raw_ostream instead of raw_svector_ostream.Rafael Espindola
2011-02-10Use raw_svector_ostream in more places in the mangler.Rafael Espindola
2011-02-09AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actionsPeter Collingbourne
2011-02-09Remove vtables from the Stmt hierarchy; this was pretty easy asJohn McCall
2011-01-26When mangling a qualified array type, push the qualifiers down to theJohn McCall
2011-01-26Rvalue references for *this: add name mangling for ref-qualifiers,Douglas Gregor
2011-01-19Change QualType::getTypePtr() to return a const pointer, then change aJohn McCall
2011-01-15Introduce a new kind of TemplateName that captures a substitutedDouglas Gregor
2011-01-15Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr,Douglas Gregor
2011-01-14Start implementing support for substitution into pack expansions thatDouglas Gregor
2011-01-13Move name mangling support from CodeGen to AST. In thePeter Collingbourne