- Sep 17, 2009
-
-
Fariborz Jahanian authored
llvm-svn: 82090
-
- Sep 16, 2009
-
-
Fariborz Jahanian authored
GC. Currently, new API will be generated under clang-cc's -fobjc-newgc-api flag which will eventually become the default. WIP. llvm-svn: 82082
-
Fariborz Jahanian authored
a flag (objc GC). llvm-svn: 82052
-
- Sep 15, 2009
-
-
Anders Carlsson authored
llvm-svn: 81867
-
- Sep 14, 2009
-
-
Anders Carlsson authored
llvm-svn: 81738
-
- Sep 13, 2009
-
-
Daniel Dunbar authored
make very nice symbols, just use the function name. llvm-svn: 81653
-
- Sep 12, 2009
-
-
Anders Carlsson authored
llvm-svn: 81614
-
Anders Carlsson authored
llvm-svn: 81602
-
Douglas Gregor authored
llvm-svn: 81590
-
Daniel Dunbar authored
llvm-svn: 81582
-
- Sep 11, 2009
-
-
Anders Carlsson authored
llvm-svn: 81481
-
- Sep 09, 2009
-
-
Anders Carlsson authored
If a cast expression needs either a conversion function or a constructor to be called, generate implicit child expressions that call them. llvm-svn: 81383
-
Mike Stump authored
llvm-svn: 81346
-
Mike Stump authored
llvm-svn: 81337
-
- Sep 08, 2009
-
-
Anders Carlsson authored
llvm-svn: 81237
-
- Sep 04, 2009
-
-
Douglas Gregor authored
expressions, e.g., p->~T() when p is a pointer to a scalar type. We don't currently diagnose errors when pseudo-destructor expressions are used in any way other than by forming a call. llvm-svn: 81009
-
- Sep 01, 2009
-
-
Anders Carlsson authored
llvm-svn: 80723
-
Fariborz Jahanian authored
llvm-svn: 80681
-
Douglas Gregor authored
space within the MemberExpr for the nested-name-specifier and its source range. We'll do the same thing with explicitly-specified template arguments, assuming I don't flip-flop again. llvm-svn: 80642
-
- Aug 31, 2009
-
-
Douglas Gregor authored
also be adding explicit template arguments as an additional "adornment". No functionality change. llvm-svn: 80628
-
- Aug 29, 2009
-
-
Fariborz Jahanian authored
using class's conversion functions [12.3.2-p2] llvm-svn: 80433
-
- Aug 28, 2009
-
-
Fariborz Jahanian authored
with class type conversion methods. WIP. llvm-svn: 80365
-
- Aug 27, 2009
-
-
Eli Friedman authored
out for user-defined conversions instead of crashing. llvm-svn: 80282
-
Douglas Gregor authored
name, e.g., x->Base::f() retain the qualifier (and its source range information) in a new subclass of MemberExpr called CXXQualifiedMemberExpr. Provide construction, transformation, profiling, printing, etc., for this new expression type. When a virtual function is called via a qualified name, don't emit a virtual call. Instead, call that function directly. Mike, could you add a CodeGen test for this, too? llvm-svn: 80167
-
- Aug 20, 2009
-
-
Fariborz Jahanian authored
A field rename and more comments. llvm-svn: 79537
-
- Aug 18, 2009
-
-
Fariborz Jahanian authored
Removed an unnecessary loop to get to setters incoming argument. Added DoxyGen comments. Still more work to do in this area (WIP). llvm-svn: 79365
-
- Aug 16, 2009
-
-
Anders Carlsson authored
llvm-svn: 79197
-
Anders Carlsson authored
llvm-svn: 79196
-
Anders Carlsson authored
Add an IsInitializer flag to EmitAnyExpr. This is used to prevent temporaries from being destroyed when they're bound to a reference variable. llvm-svn: 79179
-
- Aug 15, 2009
-
-
Chris Lattner authored
VLASize isn't populated for the type yet. llvm-svn: 79057
-
- Aug 13, 2009
-
-
Owen Anderson authored
llvm-svn: 78946
-
- Aug 12, 2009
-
-
Dan Gohman authored
llvm-svn: 78756
-
- Jul 31, 2009
-
-
Owen Anderson authored
llvm-svn: 77638
-
Mike Stump authored
llvm-svn: 77629
-
- Jul 30, 2009
-
-
Eli Friedman authored
ever trigger). Add an "unsupported" case that triggers for C++ code. It would be nice if someone would implement this properly... it shouldn't be too hard, but I haven't looked closely at the relevant code. llvm-svn: 77562
-
Owen Anderson authored
llvm-svn: 77514
-
- Jul 29, 2009
-
-
Ted Kremenek authored
Type::getAsReferenceType() -> Type::getAs<ReferenceType>() Type::getAsRecordType() -> Type::getAs<RecordType>() Type::getAsPointerType() -> Type::getAs<PointerType>() Type::getAsBlockPointerType() -> Type::getAs<BlockPointerType>() Type::getAsLValueReferenceType() -> Type::getAs<LValueReferenceType>() Type::getAsRValueReferenceType() -> Type::getAs<RValueReferenceType>() Type::getAsMemberPointerType() -> Type::getAs<MemberPointerType>() Type::getAsReferenceType() -> Type::getAs<ReferenceType>() Type::getAsTagType() -> Type::getAs<TagType>() And remove Type::getAsReferenceType(), etc. This change is similar to one I made a couple weeks ago, but that was partly reverted pending some additional design discussion. With Doug's pending smart pointer changes for Types, it seemed natural to take this approach. llvm-svn: 77510
-
Fariborz Jahanian authored
excpression, if needed, and remove some ir-gen code now unnencessary. llvm-svn: 77490
-
Fariborz Jahanian authored
and use it in several places. llvm-svn: 77411
-
- Jul 28, 2009
-
-
Owen Anderson authored
llvm-svn: 77368
-