]> granicus.if.org Git - clang/history - AST/StmtPrinter.cpp
add parsing, ast building and pretty printing support for C++ throw expressions.
[clang] / AST / StmtPrinter.cpp
2008-02-26 Chris Lattneradd parsing, ast building and pretty printing support...
2008-02-23 Ted KremenekPatch from Argiris Kirtzidis:
2008-01-30 Nate BegemanImplement first round of feedback on __builtin_overload
2008-01-30 Fariborz JahanianFixed misc. issues raised by Chris L. on @synchronized...
2008-01-29 Fariborz JahanianBunch of type defs, etc. for @synchronized.
2008-01-17 Nate BegemanImplement basic overload support via a new builtin...
2008-01-07 Ted KremenekSubstituted all instances of the string "Objc" for...
2008-01-02 Fariborz JahanianNew declarations/defs for Objc2's foreach-statement...
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-11-26 Ted KremenekRemoved dependence on #including iostream.
2007-11-26 Ted KremenekFixed StmtPrinter to handle GCC extension to the ternar...
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-17 Steve NaroffMake sure Sema::ParsedFreeStandingDeclSpec() returns...
2007-11-12 Fariborz JahanianPatch to do statically typed ivar references.
2007-11-12 Steve NaroffImplement instance variable references.
2007-11-07 Fariborz JahanianAST for objective-c's @throw statement and its pretty...
2007-11-07 Fariborz JahanianFixed a pretty-printer bug whereby a @try statement...
2007-11-02 Fariborz Jahanianpretty-print @try/@catch/@finally from AST as the valid...
2007-11-01 Fariborz JahanianBunch of class declarations for objective-c's @try...
2007-10-29 Chris LattnerImplement *skeletal* support for representing GNU inlin...
2007-10-18 Chris Lattnerremove extraneous space in @selector()
2007-10-17 Ted KremenekFixed includes of "clang/AST/DeclObjC.h" to work on...
2007-10-17 Fariborz JahanianImplementation of AST for @protocol expression.
2007-10-16 Fariborz JahanianSteve, pointer out that getName() is available for...
2007-10-16 Fariborz JahanianFix problem dumping/printing method names with null...
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 Anders CarlssonAdd support for Pascal strings.
2007-10-07 Chris Lattnermove IdentifierTable.h from liblex to libbasic.
2007-10-02 Steve Naroff- Add ObjcInterfaceDecl::lookupInstanceMethod(), lookup...
2007-09-22 Chris Lattnerfurther apfloat'ize the front-end, allowing codegen...
2007-09-18 Steve NaroffProgress on message expressions...
2007-09-15 Chris Lattnerpretty print some nodes more nicely.
2007-09-13 Steve NaroffMove Decl::NextDeclarator (w/ setters/getters) down...
2007-09-11 Gabor Greifget rid of ugly "warning: no newline at end of file"
2007-08-31 Ted KremenekAdded "PrinterHelper" interface (include/AST/PrinterHel...
2007-08-31 Anders CarlssonAdd InitListExpr class.
2007-08-30 Chris Lattnerimplement pretty printing of offsetof
2007-08-26 Chris Lattneradd a new ImaginaryLiteral AST node that is used to
2007-08-25 Chris LattnerSplit the ASTNode out for compound assignments out...
2007-08-23 Chris LattnerPretty print as:
2007-08-22 Anders CarlssonParse @encode expressions.
2007-08-21 Anders CarlssonImplement parsing and code generation of Objective...
2007-08-21 Chris LattnerSwitch StmtVisitor from using dynamic to static dispatc...
2007-08-20 Ted KremenekModified ArraySubscriptExpr to have accessors getLHS...
2007-08-09 Chris Lattnermove a switch to common code.
2007-08-08 Chris Lattneradd a new AST dumper interface (E->dump()). This dumps out
2007-08-04 Chris LattnerImplement codegen for __builtin_choose_expr. For example:
2007-08-03 Steve NaroffImplement __builtin_choose_expr.
2007-08-03 Chris LattnerRename AddrLabel and OCUVectorComponent -> AddrLabelExp...
2007-08-01 Steve NaroffAdd AST/Sema support for __builtin_types_compatible_p...
2007-08-01 Chris LattnerPrint floating point literal values better.
2007-07-28 Steve NaroffAdded a new expression, OCUVectorComponent.
2007-07-24 Chris Lattnerimplement ast building and trivial semantic analysis...
2007-07-22 Anders CarlssonRefactor switch analysis to make it possible to detect...
2007-07-21 Anders CarlssonImplement code generation for __func__, __FUNCTION__...
2007-07-19 Steve NaroffFinish fixing crasher with compound literals.
2007-07-15 Chris LattnerRemove an extraneous QualType from CastExpr, it's type...
2007-07-13 Chris LattnerImprove char literal pretty printing, patch by Keith...
2007-07-13 Steve NaroffMore changes related to implementing ImplicitCastExpr.
2007-07-13 Steve NaroffAdd (explicit) AST support for implicit casts. This...
2007-07-13 Chris Lattner"Codegen for Character Literals and Conditional Operator
2007-07-12 Chris Lattnerremember the initializer for a variable in the AST...
2007-07-11 Reid SpencerStage two of getting CFE top correct.