aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/ItaniumCXXABI.cpp
AgeCommit message (Expand)Author
2011-02-11For consistency, use llvm::raw_ostream in the rest of the mangle api.Rafael Espindola
2011-02-03More capturing of 'this': implicit member expressions. Getting thatJohn McCall
2011-01-31Amazing that there are still issues with the fields of anonymous struct/unions..Argyrios Kyrtzidis
2011-01-27Do a proper recursive lookup when deciding whether a class's usualJohn McCall
2011-01-18Fix warnings found by gcc-4.6, from -Wunused-but-set-variable andJeffrey Yasskin
2011-01-13Move name mangling support from CodeGen to AST. In thePeter Collingbourne
2010-11-24Simplify code.Anders Carlsson
2010-11-06Simplify the logic for emitting guard variables for template staticJohn McCall
2010-11-02Ensure that static local variables in function templates inherit theJohn McCall
2010-10-26Patch to provide guard when initializing instancesFariborz Jahanian
2010-09-08Implement ARM static local initialization guards, which are more compact thanJohn McCall
2010-09-02Revert my two IRgen fixes for "bool", then use a far simpler approachDouglas Gregor
2010-09-02Fix a crash involving pointer-to-data-members of boolean type. We wereDouglas Gregor
2010-09-02Simplify some random accesses to the ASTContext from the ABI classes.John McCall
2010-09-02Abstract IR generation of array cookies into the C++ ABI class andJohn McCall
2010-08-31Amusingly, I missed this point of abstraction in all my earlierJohn 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-23chandlerc pointed out that ending a line with /\ is not very friendly. :)John 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-22Clean up a very silly use of first-class aggregates.John McCall
2010-08-22Experiment with using first-class aggregates to represent member functionJohn McCall
2010-08-22Extract member function pointer comparison and null comparison intoJohn 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-22Abstract out member-pointer conversions.John McCall
2010-08-22Implement the call parts of the member-function-pointer ARM C++ ABI.John McCall
2010-08-22Extract calls to method pointers out as an ABI routine.John McCall
2010-08-21The ARM C++ ABI is sufficiently different from the Itanium C++ ABI thatJohn McCall
2010-08-16Implement support for member pointers under the Microsoft C++ ABI in theCharles Davis
2010-05-25IRgen: Add a stub class for generating ABI-specific C++ code.Charles Davis