]> granicus.if.org Git - clang/shortlog
clang
2007-08-22 Steve NaroffFix a misleading comment...
2007-08-22 Steve NaroffAdd support for parsing protocols.
2007-08-22 Ted KremenekAdded support for "break" statements in source-level...
2007-08-22 Ted KremenekAdded support for "continue" statements in source-level...
2007-08-22 Ted KremenekAdded preliminary support for while loops within source...
2007-08-22 Ted KremenekAdded explicit pointer within class CFG to the Entry...
2007-08-22 Steve NaroffFinish up method prototype parsing.
2007-08-22 Ted KremenekAdded CFG support for: for loops
2007-08-22 Steve NaroffAdd support for parsing method prototypes (and other...
2007-08-22 Ted KremenekChanged data structure recording the CFG blocks that...
2007-08-22 Anders CarlssonParse @encode expressions.
2007-08-22 Chris Lattnerupdate todo markers
2007-08-22 Chris Lattneroptimize scope push/pop to avoid work in the common...
2007-08-22 Chris LattnerFix the scoping issue Neil pointed out for the rest of
2007-08-22 Chris LattnerFix a nasty C99 scope issue that Neil pointed out ...
2007-08-21 Ted KremenekAdded CFG support for gotos and labels.
2007-08-21 Chris Lattneradd some fixme's, implement complex struct members.
2007-08-21 Chris Lattnerimplement codegen for --/++
2007-08-21 Ted KremenekConverted CFGBuilder to use StmtVisitor instead of...
2007-08-21 Chris Lattneradd cfg.h/cfg.cpp to the xcode project at Ted's request.
2007-08-21 Ted KremenekAdded CFG infrastructure (CFG.cpp and CFG.h) for clang...
2007-08-21 Steve NaroffImplement parsing for objc instance variables.
2007-08-21 Chris Lattnerimplement __extension__ and unary~ for complex.
2007-08-21 Ted KremenekAdded reverse iterators for the body of CompountStmt...
2007-08-21 Chris Lattnerimplement codegen for complex unary +/-
2007-08-21 Anders CarlssonDon't remove the grammar construct, just the TODO.
2007-08-21 Chris Lattnerminor nicities.
2007-08-21 Chris LattnerTweak error recovery for missing semicolon after decl...
2007-08-21 Chris Lattneradd unary operator support to the stmtvisitor
2007-08-21 Anders CarlssonRemove objc-string-literal since it's been implemented...
2007-08-21 Chris Lattnerimplement support for complex subscripts.
2007-08-21 Chris Lattnerallow support for volatile lvalues even though it's...
2007-08-21 Anders CarlssonImplement parsing and code generation of Objective...
2007-08-21 Chris Lattneradd a new builder ivar.
2007-08-21 Chris Lattnermove EmitLoadOfComplex/EmitStoreOfComplex into ComplexE...
2007-08-21 Chris Lattnerimplement comma for complex.
2007-08-21 Chris Lattnerand/or/xor are invalid for complex, even integer comple...
2007-08-21 Chris Lattnersimplify code slightly
2007-08-21 Chris Lattneradd sema support for complex integer types
2007-08-21 Chris Lattnerreimplement support for complex comparisons, add suppor...
2007-08-21 Chris Lattneradd getAsComplexType() for consistency
2007-08-21 Chris LattnerAdd the comparisons and logical binops to the visitor.
2007-08-21 Chris Lattnerreimplement complex mul
2007-08-21 Chris Lattneradd a testcase I forgot to check in long ago
2007-08-21 Chris Lattnerupdate some comments.
2007-08-21 Chris LattnerSplit complex arithmetic codegen out from aggregate...
2007-08-21 Chris Lattnersimplify this a bit to remove indirection
2007-08-21 Chris Lattnerreimplement addition of complex numbers.
2007-08-21 Chris LattnerAdd the ability to visit binary operators without having to
2007-08-21 Chris Lattnerswitch aggregate expr codegen to use a visitor to local...
2007-08-21 Chris LattnerNow that the visitor is defined in one place, it is...
2007-08-21 Chris LattnerSwitch StmtVisitor from using dynamic to static dispatc...
2007-08-21 Chris Lattnerwe now correctly emit:
2007-08-21 Anders CarlssonImplement code generation for constant CFStrings.
2007-08-20 Chris LattnerFix array->pointer decay. This unbreaks test/CodeGen...
2007-08-20 Steve NaroffAdded Parser::ParseStructDeclaration() as a result...
2007-08-20 Steve NaroffStart parsing ObjC classes/categories!
2007-08-20 Anders CarlssonAdd support for code generation of builtins.
2007-08-20 Ted KremenekAdded test cases for the return-stack-address checker...
2007-08-20 Ted KremenekModified ArraySubscriptExpr to have accessors getLHS...
2007-08-18 Ted KremenekFixed bug in VarDecl::hasAutoStorage: function paramete...
2007-08-17 Ted KremenekAdded extra test case to check proper handling of archa...
2007-08-17 Anders CarlssonAdd preliminary support for converting struct types.
2007-08-17 Ted KremenekAdded extra semantic checking to do basic detection of
2007-08-17 Anders CarlssonReturn true in case of error, which is what other funct...
2007-08-17 Anders CarlssonAdd initial support for constant CFStrings.
2007-08-16 Steve NaroffFixed Sema::CheckEqualityOperands() and Sema::CheckRela...
2007-08-15 Ted KremenekAdded a comment to ArraySubscriptExpr to note that...
2007-08-15 Ted KremenekAdded the following utility methods to VarDecl that...
2007-08-14 Ted KremenekRemoved dead variable "hadError" in ParseReturnStmt.
2007-08-14 Ted KremenekAdded support for additional format string checking...
2007-08-13 Ted KremenekAdded documentation to StringLiteral noting that the...
2007-08-11 Chris Lattnerxfail this for now.
2007-08-11 Chris Lattnerstart splitting out aggregate value computation from...
2007-08-10 Chris Lattnermake sure to add a newline at the end of the dump
2007-08-10 Ted KremenekAdded "id_idx" parameter to CheckPrintfArguments. ...
2007-08-10 Ted KremenekMoved id_asprintf before id_vsnprintf in the enum used...
2007-08-10 Chris Lattneradd support for a top-level __extension__ marker, imple...
2007-08-10 Chris Lattnerinitial support for checking format strings, patch...
2007-08-10 Chris LattnerNew file, just a placeholder for now.
2007-08-10 Chris LattnerBuild ASTs before relexing the file. This avoids havin...
2007-08-10 Steve NaroffMake sure the arithmetic conversion are done for relati...
2007-08-10 Chris Lattnerfix this test to pass.
2007-08-10 Chris Lattnerfix a codegen bug handling ocuvector element exprs.
2007-08-10 Chris Lattnermake this harder
2007-08-10 Chris Lattnerimplement initial codegen for aggregate return function...
2007-08-10 Chris LattnerFix a bug handling function -> pointer decay and avoid...
2007-08-09 Chris Lattnerimplement dumper support for declstmt's. The dumper...
2007-08-09 Chris Lattnerimplement dumper support for the rest of expressions.
2007-08-09 Chris Lattnermove a switch to common code.
2007-08-09 Chris Lattnerminor fixes
2007-08-09 Chris Lattnerdump strings with escapes and other stuff in them nicely.
2007-08-09 Chris Lattnerminor cleanups
2007-08-09 Chris Lattner__attribute__ starts a declspec.
2007-08-09 Chris Lattneradd dumping support for some new nodes
2007-08-09 Chris LattnerDump out types for expressions, and handle typedefs...
2007-08-08 Chris Lattneradd a new AST dumper interface (E->dump()). This dumps out
2007-08-08 Steve NaroffFinish implementing __builtin_classify_type()...
2007-08-08 Chris Lattnernow that implicit conversions are explicit, we can...
2007-08-08 Steve NaroffAdd support for __builtin_classify_type(). This builtin...
next