index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
CGClass.cpp
Age
Commit message (
Expand
)
Author
2010-02-07
Make sure to set vtable pointers in the destructors as well.
Anders Carlsson
2010-02-06
Call destructors for constructed bases as well.
Anders Carlsson
2010-02-06
If a constructor throws an exception we need to execute the destructors for a...
Anders Carlsson
2010-02-06
Remove unused variable.
Ted Kremenek
2010-02-06
Rearrange some checks to avoid call to isCopyConstructor() and clarify path
John McCall
2010-02-05
Standardize the parsing of function type attributes in a way that
John McCall
2010-02-03
Revert the new reference binding code; I came up with a way simpler solution ...
Anders Carlsson
2010-02-02
Set the correct vtable pointers _before_ generating code for any member initi...
Anders Carlsson
2010-01-31
Simplify EmitMemberInitializer; no intended functionality change.
Eli Friedman
2010-01-31
Rework base and member initialization in constructors, with several
Douglas Gregor
2010-01-31
When performing a derived-to-base cast that we know will not change the offse...
Anders Carlsson
2010-01-31
When doing a base-to-derived cast we don't need to null check the derived val...
Anders Carlsson
2010-01-31
Some class related cleanup.
Anders Carlsson
2010-01-29
Use EmitLValueForFieldInitialization when synthesizing the copy ctor as well.
Anders Carlsson
2010-01-29
Add a new EmitLValueForFieldInitialization that will be used for initializing...
Anders Carlsson
2010-01-29
Simplify EmitLValueForField - we can get whether the field is part of a union...
Anders Carlsson
2010-01-15
Fix a couple bugs in copy assignment operator synthesis.
Eli Friedman
2010-01-02
Move address points to CGVtableInfo, no functionality change.
Anders Carlsson
2010-01-02
Correctly pass VTT parameters to constructors and destructors. The VTTs aren'...
Anders Carlsson
2010-01-01
Move a few more functions away from CGCXX and to CGClass and CGExprCXX.
Anders Carlsson
2009-12-24
Move a bunch of class related functions to CGClass.cpp, no functionality change.
Anders Carlsson
2009-12-03
Add CodeGenModule::ComputeThunkAdjustment, which Eli wrote.
Anders Carlsson
2009-11-28
Tests now pass with the assertion.
Eli Friedman
2009-11-28
Add a much more thorough test of casts to virtual bases, and fix
Eli Friedman
2009-11-24
Get rid of the ugly CGCXX names and replace them with CGClass, CGExprCXX and ...
Anders Carlsson