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
/
CGCXXExpr.cpp
Age
Commit message (
Expand
)
Author
2009-11-24
Get rid of the ugly CGCXX names and replace them with CGClass, CGExprCXX and ...
Anders Carlsson
2009-11-22
Use EmitStoreOfScalar when copying the scalar to the space allocated by 'new'.
Anders Carlsson
2009-11-20
Simplify rtti building code a little. Prep for reuse for throw rtti
Mike Stump
2009-11-18
Refactor emitting call to delete operator into common function EmitDeleteCall.
Eli Friedman
2009-11-17
Add rtti support for pointer to data members.
Mike Stump
2009-11-17
Fix typo. Thanks Ted.
Mike Stump
2009-11-17
Add typeid for the builtin types. WIP.
Mike Stump
2009-11-17
Ensure we peer through () when handling typeid(*p).
Mike Stump
2009-11-17
Since we always have 2 edges, we don't need to reserve 3 slot for the
Mike Stump
2009-11-17
Minor CFG refinements for typeid and dynamic_cast.
Mike Stump
2009-11-16
Implement dynamic_cast<void*>(E).
Mike Stump
2009-11-16
Audit done, all the required casts are already done.
Mike Stump
2009-11-16
Implement most of dynamic_cast. WIP.
Mike Stump
2009-11-16
Implement two-argument form of delete operator.
Eli Friedman
2009-11-15
Peer through refernces for typeid. WIP.
Mike Stump
2009-11-15
Finish off zero check for typeid(*p) so that it will do a __cxa_bad_typeid.
Mike Stump
2009-11-15
Implement typeid for class types.
Mike Stump
2009-11-13
Code gen. For virtual destructor call on array objects
Fariborz Jahanian
2009-11-13
Fixes a code gen. bug for array delete operator call
Fariborz Jahanian
2009-11-13
Code gen for arrady delete operator. Fixes pr5472.
Fariborz Jahanian
2009-11-13
Add a special BuildVirtualCall that's going to be used for building calls to ...
Anders Carlsson
2009-11-10
Fix for PR5454: make sure to use the right block as the predecessor in the
Eli Friedman
2009-10-01
Fix a lame regression in IR gen for C++ delete expressions. PR5102
Douglas Gregor
2009-09-29
Handle C++ delete expressions when the overloaded delete operator is a
Douglas Gregor
2009-09-23
Emit new[] cookie when needed.
Anders Carlsson
2009-09-23
Basic support for new[].
Anders Carlsson
2009-09-22
Move codegen of new and delete to CGCXXExpr.cpp
Anders Carlsson