]> granicus.if.org Git - clang/shortlog
clang
2009-03-05 Chris Lattnerfix eof check
2009-03-05 Chris LattnerWhen the parser is live, print out the location and...
2009-03-05 Chris Lattnerfinish comment.
2009-03-05 Daniel DunbarDriver: Basic argument parsing.
2009-03-05 Ted KremenekTest case: When using RegionStore with the retain/relea...
2009-03-05 Ted KremenekAdd test case for RegionStore's tracking of the ivars...
2009-03-05 Ted KremenekAdd initial support for tracking ivars, with special...
2009-03-05 Eli FriedmanMake IRGen compatible with declaring a function with...
2009-03-05 Ted KremenekAdd 'cast<>' to remove an extra function call and dynam...
2009-03-05 Ted KremenekMore fixes in cast logic.
2009-03-05 Eli FriedmanInitial implementation of CodeGen for incomplete functi...
2009-03-05 Ted KremenekGRExprEngine: Polish up handling of casting integer...
2009-03-05 Mike StumpAvoid dispose calls when only doing gc.
2009-03-05 Ted KremenekFix regression in transparent translation of nonloc...
2009-03-05 Chris LattnerInclude struct context info for parser/sema crashes...
2009-03-05 Chris LattnerInclude namespace contexts in the virtual stack trace...
2009-03-05 Chris Lattnerinclude objc method decl contexts in stack trace of...
2009-03-05 Devang PatelSet isMain bit for MainFile.
2009-03-05 Chris LattnerWhen parsing a function body, add it to the crash stack...
2009-03-05 Mike StumpAdd codegen support for __block variables to call _Bloc...
2009-03-05 Chris Lattnerfix some 80 col violations.
2009-03-05 Chris LattnerSimplify the interface to ParseFunctionStatementBody...
2009-03-05 Eli FriedmanUse LLVM type header rather than using stdint.h directly.
2009-03-05 Ted KremenekFix message title
2009-03-05 Chris Lattnerupdate xcode proj
2009-03-05 Chris LattnerInclude information about compound statements when...
2009-03-04 Ted KremenekFor now, do not track NSWindow objects and it's subclasses.
2009-03-04 Daniel DunbarDriver: Implement Option::accept methods.
2009-03-04 Daniel DunbarDriver: Fix off by one in ParseOneArg; this code is...
2009-03-04 Daniel DunbarDriver: Add Arg::dump and SeparateArg stubs.
2009-03-04 Fariborz JahanianRemoved an unfortunate cut and paste left-over.
2009-03-04 Ted KremenekAdd prototype support for invalidating fields for struc...
2009-03-04 Ted KremenekMemRegion:
2009-03-04 Ted KremenekAdd an optional "tag" to conjured symbols that allows...
2009-03-04 Mike StumpFixup __block codegen in nested block literals.
2009-03-04 Daniel DunbarDriver: Add OptTable::ParseOneArg.
2009-03-04 Daniel DunbarDriver: Add ArgList::{append, getArgString}
2009-03-04 Daniel DunbarDriver: Stub out Arg implementations.
2009-03-04 Fariborz JahanianImplemented access check for ivars accessed inside
2009-03-04 Daniel DunbarDriver: Option's need to know their ID.
2009-03-04 Chris LattnerStart making use of "pretty stack dumps" to get
2009-03-04 Chris Lattnerminor cleanups
2009-03-04 Daniel DunbarDriver: Pull intrusive list out of Arg; this isn't...
2009-03-04 Daniel DunbarDriver: Return reference for Arg::getOption().
2009-03-04 Daniel DunbarAdd a little utility for interposing between a command...
2009-03-04 Daniel DunbarDriver: Add Option flags.
2009-03-04 Daniel DunbarDriver: Tweak Option::accept interface.
2009-03-04 Sebastian RedlThe basic representation of diagnostics information...
2009-03-04 Daniel DunbarDriver: Sink Driver/Compilation into clang::driver...
2009-03-04 Sebastian RedlFix typo in diagnostic.
2009-03-04 Daniel Dunbarccc: Fix passing of -nozero-initialized-in-bss.
2009-03-04 Mike StumpMove more blocks CodeGenFunction code up and out.
2009-03-04 Mike StumpMove some of the CodeGenFunction blocks code up and...
2009-03-04 Mike StumpMove more of the blocks code up and out.
2009-03-04 Steve NaroffPartial fix for <rdar://problem/6645157> [clang on...
2009-03-04 Chris Lattnerfixes suggested by Sebastian!
2009-03-04 Devang PatelRefactor code.
2009-03-04 Mike StumpMove more of blocks codegen out of CodeGenModule and...
2009-03-04 Fariborz JahanianSome refactoring of recent code. No functionality change.
2009-03-04 Fariborz JahanianFix a corner case of message lookup looking for class...
2009-03-04 Daniel DunbarSupport "asm" renaming of external symbols.
2009-03-04 Daniel DunbarDriver: Add ArgList implementation.
2009-03-04 Ted KremenekGRExprEngine::VisitCast: Just pass through function...
2009-03-04 Mike StumpStart the migration of more of the blocks code out...
2009-03-04 Mike StumpStart the migration of more of the blocks code out...
2009-03-04 Steve NaroffFinish up some fixes related to <rdar://problem/6497631...
2009-03-04 Mike StumpAdd __block codegen testcase. We introduce a temporary...
2009-03-04 Daniel DunbarDriver: More Option implementation.
2009-03-04 Eli FriedmanCheck that the return type for function definitions...
2009-03-04 Chris Lattnermake the token lexer allocate its temporary token buffe...
2009-03-04 Chris LattnerSwitch attributes to be allocated from the declcontext...
2009-03-04 Zhongxing XuAdjust indentation.
2009-03-04 Chris Lattneradd an a Attr::Destroy method and force clients to...
2009-03-04 Eli FriedmanMake this test a bit more specific about the target...
2009-03-04 Eli FriedmanMinor cleanup for choose expressions: add a helper...
2009-03-04 Chris Lattnerallocate MultiKeywordSelector's out of a bump pointer...
2009-03-04 Chris Lattnersimplify Sema::AddInstanceMethodToGlobalPool, no functi...
2009-03-04 Chris Lattneradd a special case for codegen that improves the case...
2009-03-04 Chris Lattnerfix infinite recursion
2009-03-04 Chris Lattnermake CaseStmt::getSourceRange() iterative for deeply
2009-03-04 Eli FriedmanContinuation of PR3687: fix more places to use the...
2009-03-04 Chris LattnerChange Parser::ParseCaseStatement to use an iterative...
2009-03-04 Eli FriedmanComment fix: change a question to an answer.
2009-03-04 Eli FriedmanAttempt to fix PR3709: when converting from an integer...
2009-03-04 Mike StumpImproved ABI compliance for __block variables. No...
2009-03-04 Ted KremenekAdded the notion of a "boundable region", which is...
2009-03-04 Daniel DunbarAdd some more FIXME's about bits we could pack better.
2009-03-04 Daniel DunbarWoot, save 8 bytes in Decl on 64-bit by reordering...
2009-03-04 Ted KremenekThis test now passes using RegionStore.
2009-03-04 Ted KremenekRegionStore: Handle implicit parameters.
2009-03-04 Ted KremenekCreate "TypedViewRegions" that layer on top of Symbolic...
2009-03-04 Ted KremenekUse GetSValAsScalarOrLoc instead of GetSVal to prevent...
2009-03-04 Ted KremenekAdd "GetSValAsScalarOrLoc" methods to GRState/GRStateRe...
2009-03-04 Ted KremenekRegionStore::RemoveDeadBindings needs to check all...
2009-03-04 Daniel DunbarAdd new performance numbers; no discussion yet. Obvious two
2009-03-03 Steve NaroffChange a warning to an error...
2009-03-03 Fariborz JahanianImplement an important missing warning when a selector
2009-03-03 Steve NaroffFix <rdar://problem/5982579> [clang on xcode] (using...
2009-03-03 Ted KremenekRework use of loc::SymbolVal in the retain/release...
2009-03-03 Steve NaroffFix <rdar://problem/6252237> [sema] qualified id should...
next