- e86d923 Fix "possibly uninitialized" warning. by Daniel Dunbar · 16 years ago
- 7b47322 Add addPropertyMethods implementations for by Daniel Dunbar · 16 years ago
- 394d33f Add ObjCPropertyDecl::isReadOnly. by Daniel Dunbar · 16 years ago
- 3216dcd constify ObjC*::getClassMethod,getInstanceMethod by Daniel Dunbar · 16 years ago
- 08a356c Missed a file; part of: by Daniel Dunbar · 16 years ago
- 9f0afd4 Rename ObjCPropertyImplDecl::PropertyImplKind (consistency) by Daniel Dunbar · 16 years ago
- 5fa6331 Fix return type for setter method. by Daniel Dunbar · 16 years ago
- 4d7da2f Synthesize property setter method as we do for getter. by Daniel Dunbar · 16 years ago
- 2ea2b5e Handle emitting __builtin_huge_valf as a constant expr. by Anders Carlsson · 16 years ago
- b88d45e treat bool literals as constatnt expressions. by Anders Carlsson · 16 years ago
- 7267f78 Add CodeGen support for CXXZeroInitValueExpr. by Argyrios Kyrtzidis · 16 years ago
- 15425f9 Handle AddrLabelExprs in Expr::isConstantExpr by Anders Carlsson · 16 years ago
- 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
- 3bc0f45 Fix some issues with array type merging. (No visible difference, by Eli Friedman · 16 years ago
- 86da77f Minor const cleanup. by Eli Friedman · 16 years ago
- 3d815e7 Rewrite type compatibility testing to do type merging rather than just by Eli Friedman · 16 years ago
- d8bfe7f Initial implementation of floats in Expr::tryEvaluate; this doesn't by Eli Friedman · 16 years ago
- f641492 Fix attributes on Obj-C interfaces & methods. by Daniel Dunbar · 16 years ago
- 01e6779 Added ObjCAtDefsFieldDecl to represent FieldDecls created by @defs. by Ted Kremenek · 16 years ago
- 0835a3c Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastExpr and ExplicitCastExpr derive from a common base class (CastExpr): by Argyrios Kyrtzidis · 16 years ago
- faf37e7 Fix ASTContext::getObjCEncodingForType() to limit the type info for structure bodies (mimics gcc's adhoc rules). by Steve Naroff · 16 years ago
- 32442bb Update some isIntegerConstantExpr uses to use by Daniel Dunbar · 16 years ago
- acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
- c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
- e91593e More #include cleaning by Daniel Dunbar · 16 years ago
- 76de9d7 Cleanup ObjCSuperRefExpr (remove last usage and AST node:-). by Steve Naroff · 16 years ago
- 165a70f Remove the old evaluator code. by Anders Carlsson · 16 years ago
- d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
- 55d71f9 Add some C++ Decl statistics. by Argyrios Kyrtzidis · 16 years ago
- 355aba8 Remove the ICE pointer cast hack; the issue this was working around is by Eli Friedman · 16 years ago
- 2eb0ddc Turn on the new constant expression evaluator; it isn't by Eli Friedman · 16 years ago
- 8389eab Fix PR2400 by more graceful handling of invalid decls. Don't try to layout by Chris Lattner · 16 years ago
- 55f4b02 Change 'Wchar' to 'WChar' casing, for consistency. No functionality change. by Argyrios Kyrtzidis · 16 years ago
- 46713ef Handle WChar inside BuiltinType::getName(). by Argyrios Kyrtzidis · 16 years ago
- 64c438a Implement support for the 'wchar_t' C++ type. by Argyrios Kyrtzidis · 16 years ago
- 997b6c6 Destroy and delete the FieldDecl members of a RecordDecl. by Argyrios Kyrtzidis · 16 years ago
- 49aa7ff Add CXXRecordType class. by Argyrios Kyrtzidis · 16 years ago
- c7eb903 Cleanup some processing with DeclStmt, and gradually start using the internal BumpPtrAllocator to allocator more of CFG's data structures. by Ted Kremenek · 16 years ago
- ce1eb34 Always construct the BumpPtrAllocator used by CFG as an instance variable. by Ted Kremenek · 16 years ago
- 4958e5b Fix serialization of DeclStmt. by Ted Kremenek · 16 years ago
- a1a7824 Reorder serialization methods. by Ted Kremenek · 16 years ago
- 608b17f remove spaces at eol to test commit access by Nico Weber · 16 years ago
- 14f8b4f Added decl_iterator to DeclStmt to provide an abstract interface to iterate over the ScopedDecls of a DeclStmt. by Ted Kremenek · 16 years ago
- a34ea07 Nico Weber: by Ted Kremenek · 16 years ago
- c63a1f2 by Chris Lattner · 16 years ago
- d9f4bcd Minor tweak plus a couple of FIXMEs. by Eli Friedman · 16 years ago
- d907001 Fix serialization for TypedefType by allowing TypedefType to access the internal CanonicalType stored in Type. by Ted Kremenek · 16 years ago
- c36d405 make "call foo.dump()" and "call foo->dump()" work in GDB, by Chris Lattner · 16 years ago
- a210573 Comment out the last call to QualType::getCanonicalType. This *breaks* by Chris Lattner · 16 years ago
- b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
- 28be73f convert more code to use ASTContext to get canonical types instead by Chris Lattner · 16 years ago
- 611b2ec fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 16 years ago
- 3cb640b fix an extraneous blank line in -ast-dump output. by Chris Lattner · 16 years ago
- 62f5f7f fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
- 7c4a191 fix 80 col violation. by Chris Lattner · 16 years ago
- 834a72a Fix rdar://6095136, various crashes with incomplete enum types. by Chris Lattner · 16 years ago
- e8e4f92 minor cleanup by Chris Lattner · 16 years ago
- fb754b6 Remove unused ASTConsumer::HandleTopLevelDeclaration by Daniel Dunbar · 16 years ago
- baf0d66 Add support for __extension__ as an lvalue. rdar://6097308 by Chris Lattner · 16 years ago
- b6ccaac Move isObjCObjectPointerType() from Sema to ASTContext. by Ted Kremenek · 16 years ago
- 5a56ac3 Added UnaryOperator::isPrefix(). by Ted Kremenek · 16 years ago
- b8db21d When constructing an ObjCIvarDecl object in Sema, provide its visibility up front instead of setting it afterwards. by Ted Kremenek · 16 years ago
- 780f329 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 16 years ago
- 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 16 years ago
- f7b2c98 rename setReferencedProtocolList -> addReferencedProtocols to by Chris Lattner · 16 years ago
- b752f28 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 16 years ago
- cdce6d1 use iterators instead of direct access to protocol list. by Chris Lattner · 16 years ago
- 8f3b265 Two fixes: by Steve Naroff · 16 years ago
- 732b223 expand casts to handle what isIntegerConstantExpr handles. by Chris Lattner · 16 years ago
- 4c4867e Add support for __builtin_type_compatible_p, enums, etc. by Chris Lattner · 16 years ago
- 54176fd start remembering diagnostics for various cases, add some missing by Chris Lattner · 16 years ago
- 87eae5e Provide a structure for passing down 'is evaluated' and passing up by Chris Lattner · 16 years ago
- 75a4881 simplify some code a bit. by Chris Lattner · 16 years ago
- fcee001 share code between sizeof(expr) and sizeof(type) by Chris Lattner · 16 years ago
- ac7cb60 implement support for __extension__, make sure the result of a by Chris Lattner · 16 years ago
- 7a76778 add a new getIntTypeSizeInBits method. by Chris Lattner · 16 years ago
- cf0f51d rename "SInt" methods to "Int" in APValue. by Chris Lattner · 16 years ago
- b542afe make the new evaluator avoid conversions APValue<->APSInt in some cases. by Chris Lattner · 16 years ago
- f5eeb05 rearrange some code, no functionality changes. by Chris Lattner · 16 years ago
- 0ce902b Patch by Csaba Hruska and Peter Neumark: by Ted Kremenek · 16 years ago
- 5f6b632 revert my bogus attempt to fix the comment. sorry for the noise. by Nuno Lopes · 16 years ago
- 559e56b Fix small bug. The evaluator now works well enough to pass all tests by Anders Carlsson · 16 years ago
- 650c92f More constant expression work. by Anders Carlsson · 16 years ago
- a25ae3d Move out some methods. by Anders Carlsson · 16 years ago
- 2bad168 More work. by Anders Carlsson · 16 years ago
- 0fe52e1 Compilation fix by Seo Sanghyeon · 16 years ago
- 06a3675 Port more of Eli's evaluator over. This makes the int evaluator handle binary and unary operators. by Anders Carlsson · 16 years ago
- c754aa6 Commit beginnings of int evaluator. Currently not used. by Anders Carlsson · 16 years ago
- 9a979c3 fix CheckForConstantInitializer() for Compound Literals by Nuno Lopes · 16 years ago
- c44eec6 Shuffle things around in preparation for integrating Eli's constant evaluator. by Anders Carlsson · 16 years ago
- 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
- b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
- ad74a75 Fix for PR2501; this patch makes usual arithmetic conversions for by Eli Friedman · 16 years ago
- be78424 Update serialization for ObjCMessageExpr to handle additional bit-swizziling of receiver information. by Ted Kremenek · 16 years ago
- 4df728e ObjCMessageExpr objects that represent messages to class methods now can contain the ObjCInterfaceDecl* of the target class if it was available when the ObjCMessageExpr object was constructed. The original interfaces of the class has been preserved (requiring no functionality changes from clients), but now a "getClasSInfo" method returns both the ObjCInterfaceDecl* and IdentifierInfo* of the target class. by Ted Kremenek · 16 years ago
- 63e9d56 remove dead enums. by Chris Lattner · 16 years ago
- 0d17f6f Switch 'super' from being a weird cast thing to being a predefined expr node. by Chris Lattner · 16 years ago
- f8e32cf Added ParentMap, a class to represent a lazily constructed mapping from child to parents. by Ted Kremenek · 16 years ago
- 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
- 1060aff Fix more strict-aliasing warnings. by Ted Kremenek · 16 years ago