]> granicus.if.org Git - clang/history - Sema/Sema.h
add parsing, ast building and pretty printing support for C++ throw expressions.
[clang] / Sema / Sema.h
2008-02-26 Chris Lattneradd parsing, ast building and pretty printing support...
2008-02-21 Nate BegemanHandle __attribute__((annotate("string")))
2008-02-21 Chris Lattnermove type attribute processing into the creatively...
2008-02-20 Chris Lattnermove ConvertDeclSpecToType into Sema
2008-02-20 Nate BegemanTabs are the enemy
2008-02-16 Anders CarlssonHandle packed attribute correctly
2008-02-10 Steve NaroffAdd a diagnostics helper to remove some redundant code.
2008-02-08 Steve NaroffA bunch-o changes to fix <rdar://problem/5716046> incom...
2008-02-08 Anders CarlssonPut back the top-level asm code; all tests pass now.
2008-02-08 Anders CarlssonBack out 46855 for now, it causes test failures on...
2008-02-07 Anders CarlssonHandle top-level asm declarations.
2008-02-06 Chris Lattnerpass the astconsumer into Sema's ctor, clean up some...
2008-02-05 Anders CarlssonHandle simple asm statements correctly.
2008-02-04 Christopher LambAdd experimental support for address space qualified...
2008-01-29 Fariborz JahanianAST for @synchronized.
2008-01-25 Steve NaroffReplace Sema::CheckVariableInitList, CheckConstantInitL...
2008-01-22 Steve Naroff- Add Sema::CheckStringLiteralInit, Sema::IsStringLiter...
2008-01-17 Nate BegemanImplement basic overload support via a new builtin...
2008-01-16 Chris LattnerMove promoteExprToType from being a static method in...
2008-01-12 Chris LattnerAdd first pieces of support for parsing and representing
2008-01-10 Steve Naroff- Teach Expr::isConstantExpr() about InitListExpr's...
2008-01-07 Ted KremenekSubstituted all instances of the string "Objc" for...
2008-01-04 Fariborz JahanianMinor refactoring of foreach's semantics code per Chris...
2008-01-04 Chris Lattneradd comments for the various AssignConvertType's, and...
2008-01-04 Chris LattnerMerge all the 'assignment' diagnostic code into one...
2008-01-04 Fariborz JahanianPatch to add semantics check for ObjC2's foreacn statement.
2008-01-03 Chris Lattnergeneralize some of the conversion warnings.
2008-01-03 Chris Lattnergive better diagnostics for converting between function...
2008-01-03 Fariborz JahanianPatch to parse/build AST ObjC2's foreach statement.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-28 Chris LattnerChange Sema::ActOnCallExpr to construct the CallExpr...
2007-12-20 Chris Lattnerimplement semantic analysis for __builtin_islessequal...
2007-12-19 Chris Lattnerrefactor some code that handles sema of direct function...
2007-12-19 Anders CarlssonFix an embarassing typo and add some very limited suppo...
2007-12-12 Chris Lattnerimplement correct semantic analysis for shifts. For:
2007-12-12 Chris LattnerAdd ObjC parser support for concatenated ObjC strings...
2007-12-10 Steve NaroffAdd support for initializing char arrays from string...
2007-12-07 Fariborz JahanianPatch to implement "Protocol" as a built-in type declar...
2007-12-04 Fariborz JahanianSimplified setting up Method's scope before generating...
2007-11-29 Steve NaroffYesterday, I simplified how we stream top-level decls.
2007-11-28 Steve NaroffSeveral fixes/simplifications surrounding how we stream...
2007-11-27 Anders CarlssonAdd comment to CheckVectorCast.h
2007-11-27 Anders CarlssonReport errors for invalid casts from/to vectors.
2007-11-25 Ted KremenekMoved logic for -Wfloat-equal to SemaChecking.cpp.
2007-11-23 Anders CarlssonKeep track of whether the asm is volatile or not.
2007-11-22 Anders CarlssonStore output and input operands as well as clobber...
2007-11-20 Anders CarlssonStore inline asm code in the AST.
2007-11-15 Steve NaroffFinish up variadic methods/messages.
2007-11-15 Steve NaroffImplement support for variadic methods (work in progress).
2007-11-14 Chris Lattnerimplement test/Sema/typedef-prototype.c, allowing code
2007-11-13 Nate BegemanRename Sema method to follow class naming convention
2007-11-12 Fariborz Jahanian'super' nailed.
2007-11-12 Steve Naroff- Minor cleanup to yesterday's changes to Sema::ObjcAct...
2007-11-12 Steve NaroffRemove Action::ObjcActOnMethodDefinition(). Rationale:
2007-11-12 Steve NaroffRemove Sema::ObjcBuildMethodParameter().
2007-11-11 Steve NaroffReplace 2 method definition actions (ActOnFunctionDefBo...
2007-11-11 Steve NaroffThis is the last 5% of the solution to teaching Sema...
2007-11-11 Steve NaroffTeach Sema::ActOnInstanceMessage() about private method...
2007-11-10 Fariborz JahanianMinor code clean up in method def area.
2007-11-10 Fariborz JahanianRepresent method definitions as separate AST nodes...
2007-11-09 Fariborz JahanianSome code clean up in the form of name changes for...
2007-11-09 Fariborz JahanianAdded class context to method declarations. Provide...
2007-11-08 Fariborz JahanianFirst patch toward rewriting of method definitions...
2007-11-07 Fariborz JahanianAST for objective-c's @throw statement and its pretty...
2007-11-06 Fariborz JahanianPatch for objc2's property ASTs, as well as pretty...
2007-11-03 Steve NaroffImplement rewrite rules for ObjC string constants.
2007-11-02 Fariborz JahanianAST for @try statement.
2007-11-02 Fariborz JahanianAST for @finally statement.
2007-11-01 Fariborz JahanianAST build for @catch clause (this is work in progress).
2007-10-31 Fariborz Jahanian1) More additions for objective-c's qualifier type.
2007-10-31 Fariborz JahanianFixed problem with rewriting stand-alone @implementatio...
2007-10-31 Steve NaroffImplement a more sensible strategy for ObjC built-in...
2007-10-31 Anders CarlssonEncode Class, SEL and Objective-C objects.
2007-10-30 Steve Naroff- Add location info to category/protocol AST's
2007-10-30 Steve NaroffMore support for rewriting ObjC intefaces. Still some...
2007-10-29 Steve NaroffThis commit contains lot's of small tweaks to how we...
2007-10-29 Chris LattnerImplement *skeletal* support for representing GNU inlin...
2007-10-26 Steve NaroffStart rewriting ObjC interfaces. As a start, we comment...
2007-10-17 Fariborz JahanianImplementation of AST for @protocol expression.
2007-10-17 Anders CarlssonGenerate code for static variables that don't have...
2007-10-16 Fariborz JahanianFix location processing of @selector: the range should...
2007-10-16 Steve NaroffAdd Sema::CheckMessageArgumentTypes()...
2007-10-16 Chris LattnerFix location processing of @encode: the range should...
2007-10-16 Fariborz JahanianPatch to implement AST generation for objective-c's...
2007-10-15 Anders CarlssonAdd code generation and sema checking for __builtin_va_arg.
2007-10-15 Steve NaroffAdded ASTContext::setObjcIdType/getObjcIdType(), set...
2007-10-14 Steve Naroff- Added Sema::AddFactoryMethodToGlobalPool and Sema...
2007-10-12 Fariborz JahanianFixed a @compatible_alias bug. In the process, discover...
2007-10-11 Fariborz JahanianThis patch implementa objective-c's @compatibilty-alias...
2007-10-11 Fariborz JahanianPatch to create protocol conforming class types.
2007-10-10 Steve NaroffRefinements to Sema::GetObjcIdType()...
2007-10-10 Steve Naroff- Make sure default return/argument types (for methods...
2007-10-10 Steve NaroffRemove Scope argument from ObjC actions that either...
2007-10-09 Steve NaroffMake sure methods with no return type default to "id".
2007-10-09 Chris LattnerUpdate DeclKind enums to reflect ObjcProtocolDecl's...
2007-10-09 Fariborz JahanianRemove addition of protocol names to declaration scopes...
2007-10-09 Chris Lattnerrename some "Parse" actions to "ActOn". Move code...
2007-10-08 Steve NaroffConvert Selector Maps/Sets to use stronger typing ...
2007-10-07 Chris Lattnermove ImplementationClassInfo out of ASTContext into...
2007-10-05 Fariborz JahanianThis is the first patch toward supporting protocol...
next