- Jun 29, 2010
-
-
Jeffrey Yasskin authored
there's an explicit guard on isPolymorphic, and virtual bases don't affect the key function calculation. This allows people to call ASTContext::getKeyFunction on arbitrary classes. llvm-svn: 107143
-
Chandler Carruth authored
without it we might exit a non-void function without returning. llvm-svn: 107106
-
- Jun 28, 2010
-
-
Sebastian Redl authored
Introduce Expr::Classify and Expr::ClassifyModifiable, which determine the classification of an expression under the C++0x taxology (value category). Reimplement isLvalue and isModifiableLvalue using these functions. No regressions in the test suite from this, and my rough performance check doesn't show any regressions either. llvm-svn: 107007
-
Argyrios Kyrtzidis authored
llvm-svn: 106998
-
Argyrios Kyrtzidis authored
llvm-svn: 106995
-
- Jun 25, 2010
-
-
Argyrios Kyrtzidis authored
llvm-svn: 106832
-
Argyrios Kyrtzidis authored
llvm-svn: 106831
-
- Jun 24, 2010
-
-
Argyrios Kyrtzidis authored
llvm-svn: 106727
-
- Jun 23, 2010
-
-
Argyrios Kyrtzidis authored
Modify ClassTemplateSpecializationDecl and ClassTemplatePartialSpecializationDecl to allow PCH read/write. llvm-svn: 106624
-
Chris Lattner authored
with several tweaks by me. llvm-svn: 106619
-
Douglas Gregor authored
__real myvec and __imag myvec, since they aren't all that useful (it's just an identity function) but we might want to use them in more restricted cases in the future (e.g., "__real mycomplexvec" could extract the real parts of a vector of complex numbers). llvm-svn: 106601
-
Fariborz Jahanian authored
declarations (implements radar 7928731). llvm-svn: 106597
-
Douglas Gregor authored
of the callers of isRealType() already assumed this, and one of them (increment/decrement) mistakenly permitted increments of vector types because of it. llvm-svn: 106596
-
Douglas Gregor authored
types, updating callers of both isFloatingType() and isRealFloatingType() accordingly. Caught at least one issue where we allowed one to declare a vector of vectors (!), along with cleaning up the standard-conversion logic for C++. llvm-svn: 106595
-
Douglas Gregor authored
"floating type" in C, which does not include vector types. Introduce Type::hasFloatingRepresentation() for the places where we want to know whether the underlying representation is one or more floating-point values. Remove some hacks we had where the former behavior of Type::isFloatingType() was at odds with the language definition of the term. llvm-svn: 106584
-
- Jun 22, 2010
-
-
Argyrios Kyrtzidis authored
Introduce: -FunctionDecl::getTemplatedKind() which returns an enum signifying what kind of templated FunctionDecl it is. -An overload of FunctionDecl::setFunctionTemplateSpecialization() which accepts arrays of TemplateArguments and TemplateArgumentLocs -A constructor to TemplateArgumentList which accepts an array of TemplateArguments. llvm-svn: 106532
-
Chris Lattner authored
Elhage! llvm-svn: 106507
-
Douglas Gregor authored
if/while/switch/for statements to ensure that walking the children of these statements actually works. Previously, we stored the condition variable as a VarDecl. However, StmtIterator isn't able to walk from a VarDecl to a set of statements, and would (in some circumstances) walk beyond the end of the list of statements, cause Bad Behavior. In this change, we've gone back to representing the condition variables as DeclStmts. While not as memory-efficient as VarDecls, it greatly simplifies iteration over the children. Fixes the remainder of <rdar://problem/8104754>. llvm-svn: 106504
-
- Jun 21, 2010
-
-
Fariborz Jahanian authored
particular sequence causes its definition to not be generated in the object file. (fixes radar 8071804). llvm-svn: 106424
-
Argyrios Kyrtzidis authored
llvm-svn: 106412
-
- Jun 19, 2010
-
-
Argyrios Kyrtzidis authored
llvm-svn: 106392
-
Argyrios Kyrtzidis authored
llvm-svn: 106391
-
- Jun 18, 2010
-
-
Fariborz Jahanian authored
(radar 8076356) - wip. llvm-svn: 106322
-
Ted Kremenek authored
Change two static variables into instance variables of ASTContext. This allows us to have multiple copies of ASTContext at the same time. llvm-svn: 106258
-
Douglas Gregor authored
attribute as part of the calculation. Sema::MarkDeclReferenced(), and a few other places, want only to consider the "used" bit to determine, e.g, whether to perform template instantiation. Fixes a linkage issue with Boost.Serialization. llvm-svn: 106252
-
- Jun 17, 2010
-
-
Fariborz Jahanian authored
Patch by Nico Weber (pr7390). llvm-svn: 106242
-
Fariborz Jahanian authored
an lvalue. Fixes PR7390. llvm-svn: 106235
-
Douglas Gregor authored
llvm-svn: 106220
-
Argyrios Kyrtzidis authored
llvm-svn: 106212
-
Alexis Hunt authored
llvm-svn: 106188
-
Alexis Hunt authored
Currently, there are two effective changes: - Attr::Kind has been changed to attr::Kind, in a separate namespace rather than the Attr class. This is because the enumerator needs to be visible to parse. - The class definitions for the C++0x attributes other than aligned are generated by TableGen. The specific classes generated by TableGen are controlled by an array in TableGen (see the accompanying commit to the LLVM repository). I will be expanding the amount of code generated as I develop the new attributes system while initially keeping it confined to these attributes. llvm-svn: 106172
-
- Jun 16, 2010
-
-
Douglas Gregor authored
template name that refers to such a parameter. It's amazing that this problem didn't surface earlier. Fixes PR7387. llvm-svn: 106147
-
Douglas Gregor authored
llvm-svn: 106100
-
Abramo Bagnara authored
llvm-svn: 106099
-
Douglas Gregor authored
provides C "integer type" semantics in C and C++ "integral type" semantics in C++. Note that I still need to update isIntegerType (and possibly other predicates) using the same approach I've taken for isIntegralType(). The two should have the same meaning, but currently don't (!). llvm-svn: 106074
-
Douglas Gregor authored
in C++ that involve both integral and enumeration types. Convert all of the callers to Type::isIntegralType() that are meant to work with both integral and enumeration types over to Type::isIntegralOrEnumerationType(), to prepare to eliminate enumeration types as integral types. llvm-svn: 106071
-
- Jun 15, 2010
-
-
Douglas Gregor authored
ASTContext rather than via the normal heap. llvm-svn: 106008
-
- Jun 14, 2010
-
-
Chris Lattner authored
Decl.cpp:716:28: warning: initialization of pointer of type 'clang::VarDecl *' from literal 'false' [-Wbool-conversions] VarDecl *LastTentative = false; ^ RewriteRope.cpp:535:12: warning: initialization of pointer of type '<anonymous>::RopePieceBTreeNode *' from literal 'false' [-Wbool-conversions] return false; ^ llvm-svn: 105946
-
- Jun 13, 2010
-
-
Anders Carlsson authored
llvm-svn: 105920
-
Anders Carlsson authored
Implement part of the EmptySubobjectMap optimization described in PR6998. We still need to do this for bases. llvm-svn: 105919
-