- 97fbaa2 Remove ASTContext::getCanonicalDecl() and use Decl::getCanonicalDecl in its place. by Argyrios Kyrtzidis · 16 years ago
- b57a4fe Move the functionality of ASTContext::getCanonicalDecl(), into a virtual method Decl::getCanonicalDecl(). by Argyrios Kyrtzidis · 16 years ago
- 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 16 years ago
- 6346f96 objc methods can't be an operand to callexpr. by Chris Lattner · 16 years ago
- a004254 Refactor code into a new CallExpr::getDirectCallee() method. Simplify some by Zhongxing Xu · 16 years ago
- 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 16 years ago
- 808825c Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). by Ted Kremenek · 16 years ago
- 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 16 years ago
- e41611a Move the source-level CFG from libAST to libAnalysis. by Ted Kremenek · 16 years ago
- 8f16756 Cleanup a couple loops and improve a comment (based on feedback from Fariborz). by Steve Naroff · 16 years ago
- f495456 Remove ASTContext::isObjCObjectPointerType(). by Steve Naroff · 16 years ago
- a8ded8b Fixed a stinko which caused an ast-print test failure. by Fariborz Jahanian · 16 years ago
- 7b62487 #ifdef'ed out -ast-print of destructors which caused by Fariborz Jahanian · 16 years ago
- 560de45 Added ASTs to destructor decl AST for default destruction of object's by Fariborz Jahanian · 16 years ago
- b3b7364 Lexically order files in CMakeLists.txt files. by Ted Kremenek · 16 years ago
- de2e22d Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseudo built-in types, since Sema still injects a typedef for recognition (i.e. they aren't truly built-ins from a parser perspective). by Steve Naroff · 16 years ago
- 92db284 Update for raw_fd_ostream API changes. raw_fd_ostream now has a by Dan Gohman · 16 years ago
- 29146ad Added a FIXME and prevent crash when listing by Fariborz Jahanian · 16 years ago
- 42a5217 Fixed a bug in building ctor-initializer AST. by Fariborz Jahanian · 16 years ago
- 9b9f424 Support data members of array type in default ctor-initializer AST build. by Fariborz Jahanian · 16 years ago
- 639dead Moved a FIXME to where it was meant to be. by Fariborz Jahanian · 16 years ago
- 58f9f2c Introduce Type::isAnyPointerType() and convert all clients (suggested by Chris). by Steve Naroff · 16 years ago
- d01c915 Patch to build AST for ctor's initializer list according to by Fariborz Jahanian · 16 years ago
- 3d598a5 Rename RecordLayout.h to ASTRecordLayout.h by Anders Carlsson · 16 years ago
- ea218b8 Add a "TypeSpecStartLoc" to FieldDecl. Patch contributed by Enea Zaffanella. by Steve Naroff · 16 years ago
- f5c209d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 16 years ago
- ad42f06 In Stmt::printPretty(), pass the SourceManager to dump(). by Argyrios Kyrtzidis · 16 years ago
- c37929c Introduce redecl_iterator, used for iterating over the redeclarations of a FunctionDecl or VarDecl. by Argyrios Kyrtzidis · 16 years ago
- 03d5e3d Introduce FunctionDecl::getLatestDeclaration() and VarDecl::getLatestDeclaration(). by Argyrios Kyrtzidis · 16 years ago
- 7bf792f Introduce FunctionDecl::getFirstDeclaration() and VarDecl::getFirstDeclaration(). by Argyrios Kyrtzidis · 16 years ago
- ba0a900 Read/write a CXXOperatorCallExpr from/to PCH files. by Argyrios Kyrtzidis · 16 years ago
- f602c8b Add the SourceLocation for the right brace in TagDecl. by Argyrios Kyrtzidis · 16 years ago
- 939afd8 Fixes a minor bug in pretty printing of ctor defs. by Fariborz Jahanian · 16 years ago
- 66192ad Added pretty-printing support for constructor definition. by Fariborz Jahanian · 16 years ago
- ce7b38c minor cleanups, reduce nesting of if's with early return. by Chris Lattner · 16 years ago
- 002b91f Fix breakage on Windows, cannot redeclare loop variable i in the immediate scope of loop. Rename variable to j. by Alisdair Meredith · 16 years ago
- 6a75cd9 Implement more of C++0x 'auto'. A variable with an auto type specifier must have an initializer. Also, move some tests around to match the C++0x draft better. by Anders Carlsson · 16 years ago
- 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 16 years ago
- 4e57992 Fix type of 'this' and add a decltype test. by Anders Carlsson · 16 years ago
- 40c072f Patch to build list of inherited virtual base classes by Fariborz Jahanian · 16 years ago
- 563a03b Fix a problem that Eli noticed, and that Doug helped me fix. by Anders Carlsson · 16 years ago
- d5940ce Fix another decltype crash. by Anders Carlsson · 16 years ago
- 83314aa Implement template argument deduction when taking the address of a by Douglas Gregor · 16 years ago
- daa439a Fix a corner case with argument-dependent lookup and overloaded function sets. by Douglas Gregor · 16 years ago
- 082b02e Implemented memmove_collectable API for Next runtime by Fariborz Jahanian · 16 years ago
- dd0257c The canonical type of typeof or decltype with a dependent type is itself, by Douglas Gregor · 16 years ago
- c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 16 years ago
- 0d3c26c A few change per Doug's feedback. - Fariborz by Fariborz Jahanian · 16 years ago
- 0daea7a Update CMake files. by Argyrios Kyrtzidis · 16 years ago
- ccbcb70 Move ASTLocation and DeclReferenceMap from the AST library to the Index library. by Argyrios Kyrtzidis · 16 years ago
- 874012b Rename 'ASTNode' -> 'ASTLocation'. by Argyrios Kyrtzidis · 16 years ago
- 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 16 years ago
- 6f4a69a Fix bitfield promotion in the presence of explicit casts, from Abrama Bagnara. by Douglas Gregor · 16 years ago
- a342675 Fix for PR4502: add calculation of the integer conversion rank for wchar_t. by Eli Friedman · 16 years ago
- 2c2ba3e Introduce the DeclReferenceMap class inside the AST library. by Argyrios Kyrtzidis · 16 years ago
- fc7e2a8 Introduce the virtual method Decl::getPrimaryDecl(). by Argyrios Kyrtzidis · 16 years ago
- c082463 Introduce ASTNode class into the AST library. by Argyrios Kyrtzidis · 16 years ago
- ed47fc6 Fix a horrible CFG bug reported in <rdar://problem/7027684>. The wrong successor by Ted Kremenek · 16 years ago
- 5ffcd7b Patch to allocate list of bases in CXXRecordDecl using ASTContxt allocation. by Fariborz Jahanian · 16 years ago
- 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 16 years ago
- 5068ab6 Look through vector types when determining the base type of a type for declarator printing. Bug found via the PCH tester by Douglas Gregor · 16 years ago
- 73b85f3 Use Destroy for member initializer list clean up. by Fariborz Jahanian · 16 years ago
- d45c363 Updated CXXConstructorDecl AST node for ctor-initilaizer list. by Fariborz Jahanian · 16 years ago
- d906dc7 Fix thinko in r74506, test condition for floats was inverted. by Daniel Dunbar · 16 years ago
- 7154a77 Rework Sema::CheckConditionalOperands(). No functionality change. by Steve Naroff · 16 years ago
- c0b8b19 Implement Eli's feedback for vecto constant expressions; by Nate Begeman · 16 years ago
- edce4dd Preliminary parsing and ASTs for template-ids that refer to function by Douglas Gregor · 16 years ago
- 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 16 years ago
- 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 16 years ago
- f1d60ea Remove the ASTContext parameter from the printing related methods of Decl. by Argyrios Kyrtzidis · 16 years ago
- 9b34669 Decl::getTranslationUnitDecl() should return itself when the Decl is a TranslationUnitDecl. by Argyrios Kyrtzidis · 16 years ago
- 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 16 years ago
- e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 16 years ago
- 47deacf A more detailed diagnosis of ill-formed ctor-initializer list. by Fariborz Jahanian · 16 years ago
- 1fd2dd1 Improve code generation for function template specializations: by Douglas Gregor · 16 years ago
- 127102b Keep track of function template specializations, to eliminate by Douglas Gregor · 16 years ago
- 3708b3d -Keep a reference to the ASTContext inside the TranslationUnitDecl. by Argyrios Kyrtzidis · 16 years ago
- 001d64d Fix the FloatingLiteral API to take the isexact flag by value instead of by Chris Lattner · 16 years ago
- 16e8be2 Move FunctionDecl::TemplateSpecializationInfo out into its own class, by Douglas Gregor · 16 years ago
- 683087f Remove ASTContext::getObjCQualifiedIdType(). by Steve Naroff · 16 years ago
- 364e021 Improve support for overloaded operator templates. by Douglas Gregor · 16 years ago
- e2bb224 An auto variable can't appear in its own initializer. by Anders Carlsson · 16 years ago
- e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 16 years ago
- e8c9e92 OpenCL 1.0 Support: by Nate Begeman · 16 years ago
- e136e0e Add NamedDecl::getUnderlyingDecl that can see through UsingDecl and ObjCCompatibleAliasDecl. by Anders Carlsson · 16 years ago
- 58badb7 See through UsingDecls in more places. by Anders Carlsson · 16 years ago
- 1637be7 Implicit instantiation for function template specializations. by Douglas Gregor · 16 years ago
- e53060f Improved semantic analysis and AST respresentation for function templates. by Douglas Gregor · 16 years ago
- 131f465 OpenCL 1.0 Support, patch 1/N: upper case swizzle operator and hex element index. by Nate Begeman · 16 years ago
- 3d2065b Extra asserts never hurt anybody, right? by Anders Carlsson · 16 years ago
- a07c33e Decltype needs to have a dependent type if the expr passed to it is type dependent. Fixes PR4444. by Anders Carlsson · 16 years ago
- 71edeb7 Remove unneeded #includes. by Ted Kremenek · 16 years ago
- 60a9a2a C++ decltype support (N2343) by Anders Carlsson · 16 years ago
- 08fa2af Type::getDesugaredType needs to handle decltype types. by Anders Carlsson · 16 years ago
- 395b475 Add a DecltypeType type. by Anders Carlsson · 16 years ago
- 02995ce Update for LLVM API changes. by Owen Anderson · 16 years ago
- fb25052 Check in a new template argument list builder that should work better for variadic templates. by Anders Carlsson · 16 years ago
- cb5f8f5 Don't use operator overload '<' for SourceLocation, it has not semantic meaning. by Argyrios Kyrtzidis · 16 years ago
- 96888cc Add a comment. by Argyrios Kyrtzidis · 16 years ago
- 485f087 patch to mark use of implicit copy constructors. by Fariborz Jahanian · 16 years ago