- 4926e10 Added to test case for "self-comparison check" uses of relation operators: x < x and x > x by Ted Kremenek · 17 years ago
- cf8b77d For non-floating point types, added check for expressions of the form by Ted Kremenek · 17 years ago
- 83eab63 Insetead of assert() just emit an error message for by Devang Patel · 17 years ago
- dbb14ce For floating point equality check, we now ignore parentheses. e.g.: by Ted Kremenek · 17 years ago
- 7543914 For checking for floating point comparison using == or !=, we now suppress by Ted Kremenek · 17 years ago
- e3f0257 Address Chris's comments. by Anders Carlsson · 17 years ago
- b86605e Fix logic error. by Anders Carlsson · 17 years ago
- a703c2e when checking for type equality, ignore typedefs. by Chris Lattner · 17 years ago
- 84b2071 improve error recovery handling broken 'then' or 'else' stmts in by Chris Lattner · 17 years ago
- 36f07d8 Add (partial) support for @encode. by Anders Carlsson · 17 years ago
- ced5b4f The callers of ParseStructDeclaration are not expecting it to by Chris Lattner · 17 years ago
- db52673 casting to void is ok for structs (C99 6.5.4p2), this fixes by Chris Lattner · 17 years ago
- de4d2bd Add prototype info for __builtin_memcpy, reducing #diagnostics from 37 to 34 on by Chris Lattner · 17 years ago
- 4e21a9b Fix a parser bug on labeled inline asm stmts, allowing us to parse stuff like: by Chris Lattner · 17 years ago
- 8a40a83 Implement *skeletal* support for representing GNU inline asm stmts in the AST, by Chris Lattner · 17 years ago
- 2afc72b Fix a major bug in the Type::getAs*Type methods: they didn't strip off by Chris Lattner · 17 years ago
- 4043840 Generate code for __builtin_classify_type. by Anders Carlsson · 17 years ago
- 25baae4 Add BuiltinType::Char_S to Type::isCharType by Anders Carlsson · 17 years ago
- 68ee6a6 Implemented serialization for TypedefType. by Ted Kremenek · 17 years ago
- 0b365b4 Implemented serialization of FunctionTypeProto. by Ted Kremenek · 17 years ago
- b4498bd Implemented serialization of FunctionTypeNoProto. by Ted Kremenek · 17 years ago
- b90d06f Implemented serialization for VectorType. by Ted Kremenek · 17 years ago
- 27a32d6 More work on type serialization: added support for serializing BuiltinTypes. by Ted Kremenek · 17 years ago
- ab3ec25 Path to synthesize 'instance' size field of _objc_class metadata. by Fariborz Jahanian · 17 years ago
- f43c291 Completed serialization of ConstantArrayTypes (now that APInt serialization is in place). by Ted Kremenek · 17 years ago
- 3774dd9 by Steve Naroff · 17 years ago
- 09d26e5 This patch allows synthesis generation of ivar offset for legacy objective-c @implementation by Fariborz Jahanian · 17 years ago
- 78f138f Added skeleton implementation of serialization for types (not complete). by Ted Kremenek · 17 years ago
- f185aef Patch to synthesize computation of Ivar offset in rewritten c file. by Fariborz Jahanian · 17 years ago
- 9b1ca9e Codegen union member references. by Devang Patel · 17 years ago
- 2b24fd9 Handle non LValue base expressions. by Devang Patel · 17 years ago
- 2ecd901 by Devang Patel · 17 years ago
- ddde6d5 Codegen array initializers. by Devang Patel · 17 years ago
- 8b5f530 Codegen global array initializers. by Devang Patel · 17 years ago
- f468b31 Pretty printing for ivar list of an interface block. by Fariborz Jahanian · 17 years ago
- f70959b Disambiguated variable name to comply with VC++'s archaic variable scoping rules. by Hartmut Kaiser · 17 years ago
- 78a724f Updated VC++ build system by Hartmut Kaiser · 17 years ago
- 1529405 Modified StmtIterator to now include visiting the initialization expression for EnumConstantDecls. by Ted Kremenek · 17 years ago
- 0401180 Fix "strbuf += stufflen;" crash. by Devang Patel · 17 years ago
- f3e2d53 Document ConvertNewType() method and make it a private method. by Devang Patel · 17 years ago
- af37833 Added DeclSerialization.cpp to XCode project. by Ted Kremenek · 17 years ago
- 17377da Added skeleton for Decl serialization. by Ted Kremenek · 17 years ago
- cf89c7e Refactored several meta data for reusability. by Fariborz Jahanian · 17 years ago
- bd2c278 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago
- ec86966 changed #include of Serialization.h to SerializationFwd.h to reduce by Ted Kremenek · 17 years ago
- 265937d Fix a recovery bug Fariborz and I noticed yesterday. We were producing: by Chris Lattner · 17 years ago
- bc68f69 simplify change. by Chris Lattner · 17 years ago
- a8a7368 Fix a bug steve noticed when handling nested rewrites. We now turn this: by Chris Lattner · 17 years ago
- c3aa5c4 Convert one type of metadata to use std::string instead of printf as an example. by Chris Lattner · 17 years ago
- 2cf7a5c Added SourceLocation.cpp to XCode project. by Ted Kremenek · 17 years ago
- 9511ec8 Implemented serialization of SourceLocation and SourceRange objects. by Ted Kremenek · 17 years ago
- 000f48f Added constness to accessors in CompoundStmt. by Ted Kremenek · 17 years ago
- f624cd2 Add a new ChooseExpr::isConditionTrue method to unify some code. by Chris Lattner · 17 years ago
- a398637 Refactored RewriteObjcMethodsMetaData to better rewrite by Fariborz Jahanian · 17 years ago
- 68e0227 Added accessors to CompoundStmt to retrieve the source locations for the by Ted Kremenek · 17 years ago
- 1bd623e Remove unused #includes by Devang Patel · 17 years ago
- 7122603 More work on translating message expressions. by Steve Naroff · 17 years ago
- 9dd3e2b Handle foo()->a = 42; by Devang Patel · 17 years ago
- afe113b Remove explicit use of size of known structs in metadata generation. by Fariborz Jahanian · 17 years ago
- 0cb4d92 Couple of minor changes. 1) Metaclass metadata also has a reference to by Fariborz Jahanian · 17 years ago
- ec0da44 Move RecordOrganizer into CodeGenTypes.cpp by Devang Patel · 17 years ago
- 9b4e4ff Refactord instance and class metadata emission. Refactored protocols metadata emission. by Fariborz Jahanian · 17 years ago
- ce797d9 Modified current clients of Bitcode-Object serialization to use the by Ted Kremenek · 17 years ago
- 32c3983 Handle non-constant initializers. by Devang Patel · 17 years ago
- 01ab130 Visit CompoundLiteralExpr and InitListExpr by Devang Patel · 17 years ago
- fce2c5a Fix some long lines, move code around into logical groups. by Chris Lattner · 17 years ago
- 0021f45 Use Ted's new mutable child iterators to update the tree as we rewrite it. by Chris Lattner · 17 years ago
- c65a1fc Modified operator* for StmtIterator to return Stmt*& instead of Stmt*. by Ted Kremenek · 17 years ago
- 95b28c1 by Steve Naroff · 17 years ago
- 29c1309 by Devang Patel · 17 years ago
- 93ca245 check base type. by Devang Patel · 17 years ago
- b3e16ba Add notes. by Devang Patel · 17 years ago
- 6478e4b Use isUnionType() predicate. by Devang Patel · 17 years ago
- 30f6f13 untabify by Devang Patel · 17 years ago
- 68c1010 Fixed a strange construct, please review. by Hartmut Kaiser · 17 years ago
- 9b7c4ac Silenced a VC++ warning. by Hartmut Kaiser · 17 years ago
- e978058 by Steve Naroff · 17 years ago
- 50279e1 Fix typo. by Devang Patel · 17 years ago
- 317c716 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
- 634cadf Implemented serialization for IdentifierInfo and IdentifierTable. by Ted Kremenek · 17 years ago
- 41b6625 Handle simple struct member expr. by Devang Patel · 17 years ago
- 4c4abed by Steve Naroff · 17 years ago
- f8fa1e7 Patch to complete metadata generation for each implemented class. by Fariborz Jahanian · 17 years ago
- aebd83f Begin struct layout work. by Devang Patel · 17 years ago
- 0f013d1 Patch for initialization of class's Meta-class metadata. by Fariborz Jahanian · 17 years ago
- 0445519 This patch generates protocol metadata and all its sub-metadata. by Fariborz Jahanian · 17 years ago
- f31a2fb Fix a crash on test/Sema/invalid-decl.c by Chris Lattner · 17 years ago
- ce7357d Silenced a VC++ warning. by Hartmut Kaiser · 17 years ago
- a823dd1 add NL at end of file by Gabor Greif · 17 years ago
- 96b55da rewrite of metadata for implemented instance methods. by Fariborz Jahanian · 17 years ago
- a44b4d9 by Steve Naroff · 17 years ago
- 96f136d by Steve Naroff · 17 years ago
- a647855 Fixed DeclStmt::child_begin() to actually create an iterator that by Ted Kremenek · 17 years ago
- 20b40e4 Check for Nullness of value built in GetObjcProtoType. by Fariborz Jahanian · 17 years ago
- 98086ae Minor grammar fix. by Ted Kremenek · 17 years ago
- bc8c52e by Steve Naroff · 17 years ago
- 45d52f7 Patch to rewrite ivar tables metadata for classes defined. by Fariborz Jahanian · 17 years ago
- ab88a71 remove dead #include by Chris Lattner · 17 years ago
- 640a01f First patch toward rewriting of objective-c's meta data. by Fariborz Jahanian · 17 years ago
- 7438fdf by Steve Naroff · 17 years ago