2007-08-26 |
Chris Lattner | refactor scalar conversions out into CGExprScalar.cpp |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | steve's recent changes fixed this bogus warning. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | Break the assumption that any sort of scope (e.g. a... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | remove some dead enum values. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | Implement casts from scalar -> complex and complex... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | require that operands to __real/__imag are complex... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | implement codegen of __imag of a scalar. Our impl... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | Make initialization of complex vars work. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | fix codegen of pre/post inc/dec of a pointer. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | tolerate unimplemented codegen better |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | int X[] isn't a VLA. This improves support for stdio... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Neil Booth | Make some diags EXTENSION so they are errors with pedan... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | implement rudimentary union layout support. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | Why didn't gcc catch this? :( |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | Don't make unknown builtins fatal errors yet. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | remove a bunch of dead code |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | fix a bug introduced by the recent childification of... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | Make parse-ast-print print the storage class and inline |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | null pointers don't get an extra newline. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | implement codegen for complex literals. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | add a new ImaginaryLiteral AST node that is used to |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | 1.0 is double, 1.0F is a float. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | 1) refactor some code. |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | merge checkrelational and checkequality into CheckCompa... |
commit | commitdiff | tree | snapshot |
2007-08-26 |
Chris Lattner | Cases like this: |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | new testcase |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | The new correct compound assignment operators exposed... |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Steve Naroff | Surpress the UsualUnaryConversions for compound assignm... |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | read and ignore the body of a namespace. |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Steve Naroff | Change Expr::isLvalue() to properly deal with ImplicitC... |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Steve Naroff | Give CXXBoolLiteralExpr a type (all expressions need... |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | refactor enough of the top-level parsing logic to parse and |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | C++ explicitly allows an empty source file. |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | Fix the test/Sema/format-strings.c regression. This... |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | reenable this. |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | Fix the regression on test/Sema/cfstring.c |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | test the parser only, not sema. |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | Split the ASTNode out for compound assignments out... |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | fix off-by-one error |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | Fix clang -parse-ast-dump carbon.c |
commit | commitdiff | tree | snapshot |
2007-08-25 |
Chris Lattner | rename sNames -> StmtClassInfo. Make lookups constant... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Steve Naroff | This modest change insures ImplicitCastExpr's get gener... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | remove a dead argument |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | implement codegen for real/imag. TODO: imag of non... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | Implement sema support for __real/__imag nodes. |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Ted Kremenek | Added child_begin/child_end to all subclasses of Stmt... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | Teach emit-llvm for scalars to properly handle compound... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Ted Kremenek | Added ExprCXX.cpp |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Ted Kremenek | Implementation of child_begin/child_end for C++ express... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Ted Kremenek | Implemented child_begin/child_end for our current set... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Ted Kremenek | Finished adding child_begin/child_end to all subclasses... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Steve Naroff | Surpress ImplicitCastExprs for compound assignment... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Ted Kremenek | Began implementing "child iterator" interface for Stmts... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Steve Naroff | Make sure we get extension diagnostics for GCC's comple... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | print the computation type for compound assignment... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | completely refactor codegen of scalar expressions out... |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | rename two files. |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | implement codegen of builtin_choose_expr for complex. |
commit | commitdiff | tree | snapshot |
2007-08-24 |
Chris Lattner | stub out complex -> bool conversion. |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | make this harder |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | implement complex subtraction |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | implement passing of complex and aggregates through... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | in the truncation case, make sure to propagate the... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Steve Naroff | Support '~' for complex conjugation. This is a GCC... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | fix a bug where we would type 0ULL as unsigned instead... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | Pretty print as: |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | sizeof(x) doesn't require x to be an i-c-e for sizeof... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | No functionality change. Moved visitor methods for... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | add support for codegen of calls returning complex. |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Steve Naroff | Remove a FIXME, allowing ++/-- on Complex types (a... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | moved CFGBuilder into an anonymous namespace |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Steve Naroff | - Cleanup "hack" comment and fix typos. |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | Added support for switch, default, and case statements... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | finish off switch case overlap checking, adding support for |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Steve Naroff | Add helper functions Token::isObjCAtKeyword() and Token... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | Refactored "getSubStmt" and "SubStmt" from the CaseStmt... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | detect and diagnose empty case ranges: |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | For gotos, breaks, and continues where we cannot find... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | Added support for do..while loops in CFG construction. |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | Modified CFG to have explicit "Exit" pointer for exit... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Ted Kremenek | Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Anders Carlsson | As suggested by Chris, use MatchRHSPunctuation instead... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Anders Carlsson | Parse ObjC @protocol expressions. |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | fix a segfault in cases where there are no cases. |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | report duplicate case values. TODO: report duplicate... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | this test is passing, though it is generating bogus... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | start checking case values of switch stmts more closely... |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | Update to match the API from LLVM mainline. |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | run .m files as tests |
commit | commitdiff | tree | snapshot |
2007-08-23 |
Chris Lattner | Test that cocoa parses with -parse-noop. In the future |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Steve Naroff | With this commit, we now successfully parse "Cocoa.h"! |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Ted Kremenek | Fixed bugs in source-level CFG construction for "for... |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Steve Naroff | Fix a misleading comment... |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Steve Naroff | Add support for parsing protocols. |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Ted Kremenek | Added support for "break" statements in source-level... |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Ted Kremenek | Added support for "continue" statements in source-level... |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Ted Kremenek | Added preliminary support for while loops within source... |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Ted Kremenek | Added explicit pointer within class CFG to the Entry... |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Steve Naroff | Finish up method prototype parsing. |
commit | commitdiff | tree | snapshot |
2007-08-22 |
Ted Kremenek | Added CFG support for: for loops |
commit | commitdiff | tree | snapshot |
next |