index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
AST
/
Stmt.cpp
Age
Commit message (
Expand
)
Author
2009-10-18
Move clients to use IdentifierInfo::getNameStart() instead of getName()
Daniel Dunbar
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-08-24
Fix build of clang with gcc-4.4: #include <cstdio> was missing.
Torok Edwin
2009-08-08
Get rid of Stmt::Clone now that we can reference count statements instead.
Anders Carlsson
2009-08-08
Introduce reference counting for statements and expressions, using it
Douglas Gregor
2009-08-07
Separate Stmt::Destroy into the entrypoint for destroying a statement
Douglas Gregor
2009-05-26
Simplify printing of the statistics for types.
Douglas Gregor
2009-05-18
Template instantiation for C++ try/catch statements.
Douglas Gregor
2009-05-15
Template instantiation for break and continue statements.
Douglas Gregor
2009-05-15
Add NullStmt::Clone and use it
Anders Carlsson
2009-04-26
split ObjC and C++ Statements out into their own headers.
Chris Lattner
2009-04-17
PCH support for inline assembly statements.
Douglas Gregor
2009-04-17
PCH support for the first batch of statements, including null,
Douglas Gregor
2009-04-03
Ignore plus operands when looking up the operand number from a named operand....
Anders Carlsson
2009-03-11
add some spaces :)
Chris Lattner
2009-03-11
don't use strtoul on a non-null-terminated string.
Chris Lattner
2009-03-11
fix PR3258 by rejecting invalid numeric operands.
Chris Lattner
2009-03-11
checking for symbolic operands as well as % at end of string.
Chris Lattner
2009-03-10
position the caret properly on asm string diagnostics, e.g.:
Chris Lattner
2009-03-10
reject invalid escape characters in extended-asm strings with a nice diagnostic.
Chris Lattner
2009-03-10
add plumbing to report diagnostics back through sema for malformed asmstrings.
Chris Lattner
2009-03-10
move the asm string analysis code out of codegen into common
Chris Lattner
2009-03-10
move matching of named operands into AsmStmt class. At the same
Chris Lattner
2009-03-10
add some helper methods to AsmStmt and add some comments.
Chris Lattner
2009-03-04
Change Parser::ParseCaseStatement to use an iterative approach to parsing
Chris Lattner
2009-03-03
Fix <rdar://problem/6640991> Exception handling executes wrong clause (Daniel...
Steve Naroff
2009-03-01
ObjCAtCatchStmt's ParamStmt is always a DeclStmt.
Daniel Dunbar
2009-02-13
Remove DeclGroupOwningRef, since we intend for declarations to be owned
Douglas Gregor
2009-02-07
Overhaul of Stmt allocation:
Ted Kremenek
2009-02-06
Use ASTContext's allocator to deallocate Stmt objects instead of using 'delet...
Ted Kremenek
2009-01-16
Don't advance the statement iterator after we've deallocated the statement
Douglas Gregor
2008-12-22
Full AST support and better Sema support for C++ try-catch.
Sebastian Redl
2008-12-22
Partial AST and Sema support for C++ try-catch.
Sebastian Redl
2008-11-14
Don't require us to manually number the statements and expressions in StmtNod...
Douglas Gregor
2008-10-27
- Move ExprIterator to Stmt.h so that it can be used by classes defined in St...
Ted Kremenek
2008-10-07
Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDe...
Ted Kremenek
2008-10-06
Add DeclStmt::hasSolitaryDecl() and DeclStmt::getSolitaryDecl()
Ted Kremenek
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-05
remove spaces at eol to test commit access
Nico Weber
2008-08-05
Added decl_iterator to DeclStmt to provide an abstract interface to iterate o...
Ted Kremenek
2008-06-17
Fix more strict-aliasing warnings.
Ted Kremenek
2008-05-29
- Move ObjC Expresssion AST's from Expr.h => ExprObjC.h
Steve Naroff
2008-05-25
Always initialize NEXT_CATCH; fixes a Valgrind uninitialized read error
Eli Friedman
2008-05-21
Fix potential double-free.
Ted Kremenek
2008-05-21
When destroying DeclStmts, also destroy the associated Decl (reclaim its memo...
Ted Kremenek
2008-05-20
Delete AST nodes, not just Decls.
Ted Kremenek
2008-05-20
Try to plug some memory leaks...
Ted Kremenek
2008-05-19
Added Stmt::DestroyChildren, which will be used by the dstors of the subclass...
Ted Kremenek
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner