Skip to content
  1. Aug 30, 2007
    • Chris Lattner's avatar
      implement pretty printing of offsetof · 98dbf0a3
      Chris Lattner authored
      llvm-svn: 41615
      98dbf0a3
    • Chris Lattner's avatar
      implement initial sema support for __builtin_offsetof · f17bd423
      Chris Lattner authored
      llvm-svn: 41613
      f17bd423
    • Ted Kremenek's avatar
      Fixed bug for CaseStmt where the child_begin/child_end methods were not · 14f0d1a8
      Ted Kremenek authored
      including the expressions in the case statement itself (not the body of
      the case).
      
      This required moving SubStmt out of SwitchCase into CaseStmt and DefaultStmt
      respectively.  getSubStmt() now is a virtual call for SwitchCase, but is
      a direct (static) call for CaseStmt and DefaultStmt.
      
      llvm-svn: 41609
      14f0d1a8
    • Chris Lattner's avatar
      fix a bug that is causing CodeGen/complex.c to be grumpy. · 1e43547a
      Chris Lattner authored
      llvm-svn: 41603
      1e43547a
    • Chris Lattner's avatar
      Teach the stmtdumper to dump location/range info when a SourceMgr is available. · 11e30d35
      Chris Lattner authored
      For example, -parse-ast-dump now prints:
      
      static inline int __inline_isinff(float __x)
      (CompoundStmt 0x2409a20
        (ReturnStmt 0x2409a10
          (BinaryOperator 0x24099f0 'int' <///usr/include/architecture/i386/math.h:183:63, col:102> '=='
            (CallExpr 0x24098f0 'float' <col:63, col:82>
              (ImplicitCastExpr 0x24098e0 'float (*)(float)' <col:63>
                (DeclRefExpr 0x2409880 'float (float)' <col:63> Decl='__builtin_fabsf' 0x2409840))
              (DeclRefExpr 0x24098a0 'float' <col:79> Decl='__x' 0x2409810))
            (CallExpr 0x24099c0 'float' <col:87, col:102>
              (ImplicitCastExpr 0x2409870 'float (*)(void)' <col:87>
                (DeclRefExpr 0x2409980 'float (void)' <col:87> Decl='__builtin_inff' 0x2409940))))))
      
      where it only prints filename/line# if it changes from the previous value.  We 
      really need loc info on stmts though, like we have on exprs.
      
      llvm-svn: 41602
      11e30d35
    • Steve Naroff's avatar
      · 5c13180a
      Steve Naroff authored
      Fix the following redefinition errors submitted by Keith Bauer...
      
      [dylan:~/llvm/tools/clang] admin% cat tentative_decls.c 
      // incorrectly generates redefinition error
      extern int array[3];
      int array[3];
      
      // incorrectly generates a redefinition error
      extern void nup(int a[3]);
      void nup(int a[3]) {}
      
      It turns out that this exposed a fairly major flaw in the type system,
      array types were never getting uniqued! This is because all array types
      contained an expression, which aren't unique.
      
      To solve this, we now have 2 array types, ConstantArrayType and
      VariableArrayType. ConstantArrayType's are unique, VAT's aren't.
      
      This is a fairly extensive set of fundamental changes. Fortunately,
      all the tests pass. Nevertheless, there may be some collateral damage:-)
      If so, let me know!
      
      llvm-svn: 41592
      5c13180a
    • Chris Lattner's avatar
      Previous commit should have been: · 84ca3762
      Chris Lattner authored
        Use Ted's child walking interface to allow the dumper to walk the tree 
        in one place and only have node-specific callbacks worry about 
        formatting the nodes (instead of formatting the nodes plus walking the
        tree).
      
      This commit eliminates now default cases by letting them fall through with
      the normal visitor stuff.
      
      llvm-svn: 41591
      84ca3762
    • Chris Lattner's avatar
      elimiante some virtual calls. · cfb83dd7
      Chris Lattner authored
      llvm-svn: 41589
      cfb83dd7
    • Chris Lattner's avatar
      Allow a SourceManager to optionally be passed into Stmt::dump · 779d5d94
      Chris Lattner authored
      llvm-svn: 41588
      779d5d94
    • Ted Kremenek's avatar
      Added an (optional) explicit "Label" statement to CFGBlock. If a · 71eca012
      Ted Kremenek authored
      block begins with a label or case statement, CFGBlock::getLabel() will
      return the corresponding LabelStmt/CaseStmt/DefaultStmt.
      
      LabelStmts and SwitchCases no longer appear within the "executable"
      statements of a CFGBlock.
      
      More cleanups on visualization/pretty-printing of CFGs (less verbose).
      
      llvm-svn: 41585
      71eca012
  2. Aug 29, 2007
    • Ted Kremenek's avatar
      Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allow · 4e5f99da
      Ted Kremenek authored
      (LLVM-provided) graph algorithms such as DFS and graph visualization
      to work effortless on source-level CFGs.
      
      Further cleanup on pretty printing of CFGs.  CFGBlock::dump and
      CFGBlock::print now take the parent CFG as an argument.  This allows
      CFGBlocks to print their own appropriate label indicating whether or
      not they are the Entry/Exit/IndirectGotoBlock without the CFG::print
      routine doing it instead.
      
      Added Graphviz visualization for CFGs: CFG::viewCFG.  This employs the
      GraphTraits just implemented.
      
      Added "-view-cfg" mode the to clang driver.  This is identical to
      "-dump-cfg" except that it calls Graphviz to visualize the CFGs
      instead of dumping them to the terminal.
      
      llvm-svn: 41580
      4e5f99da
    • Chris Lattner's avatar
      Teach Type::is[un]SignedIntegerType about enum decls. This allows the code generator · 8a241f93
      Chris Lattner authored
      to emit signed comparisons when needed for enum decl references.  This implements
      test/CodeGen/enum.c.  I think enums should be good now.
      
      llvm-svn: 41572
      8a241f93
    • Steve Naroff's avatar
      Re-teach Expr::isNullPointerConstant() about ImplicitCastExpr:-) · c5e5027b
      Steve Naroff authored
      This fixes the following bug submitted by Neil...
      
      const char *f (void) { return 0; }
      
      ...which would incorrectly warn with -pedantic enabled.
      
      llvm-svn: 41559
      c5e5027b
  3. Aug 28, 2007
  4. Aug 27, 2007
    • Ted Kremenek's avatar
      12687ff9
    • Ted Kremenek's avatar
      Implemented support for ternary "?" operators in source-level CFGs. · 9e248870
      Ted Kremenek authored
      llvm-svn: 41514
      9e248870
    • Ted Kremenek's avatar
      Fixed bug in child_begin/child_end for CallExpr where we incorrectly calculated a Stmt** pointer · 251c9544
      Ted Kremenek authored
      based on an offset within SubExprs.
      
      llvm-svn: 41512
      251c9544
    • Ted Kremenek's avatar
      Fixed bug in child_begin/child_end for ReturnStmt where the iterator · 5b3ed283
      Ted Kremenek authored
      would be invalid when RetValExp == NULL.
      
      llvm-svn: 41511
      5b3ed283
    • Ted Kremenek's avatar
      Changes to CFGBuilder: · 81e1485d
      Ted Kremenek authored
      + Added the creation of an empty Entry block at the end of CFG
        construction if the Entry block in the CFG contains multiple
        predecessors (which can happen with labels and do loops).
      
      + Fixed bug in the creation of an empty Exit block with functions where not
        all paths end in a return statement (but some do).  Basic blocks with
        return statements were jumping to a (sometimes) non-empty block.
      
      + FinishBlock no longer checks for labels at the beginning of a basic
        block before reversing the statements in the block.  This is because
        the recursion invariants of the builder methods have been cleaned up,
        and blocks are only passed to FinishBlock at most once.
      
      + Modified handling of "if", "for", "while", "do", and "switch" to allow
        condition expressions that can span multiple basic blocks.  This allows
        such conditions to contain short-circuit expressions (which span multiple
        blocks in the CFG).
      
      llvm-svn: 41508
      81e1485d
    • Chris Lattner's avatar
      constify some stuff · 8f63b9d5
      Chris Lattner authored
      llvm-svn: 41503
      8f63b9d5
    • Chris Lattner's avatar
      implement sizeof(enum x), patch inspired by Keith Bauer. · a9e7961a
      Chris Lattner authored
      llvm-svn: 41500
      a9e7961a
    • Steve Naroff's avatar
      Replaced ASTContext::maxFloatingType() with ASTContext::compareFloatingType(). · 7af82d46
      Steve Naroff authored
      Changed Sema::UsualArithmeticConversions to use the new API.
      
      This fixes the following case...
      
      _Complex double X;
      double y;
      
      void foo() {
        X = X + y;
      }
      
      [dylan:~/llvm/tools/clang] admin% ../../Debug/bin/clang complex.c -parse-ast-dump
      Read top-level variable decl: 'X'
      Read top-level variable decl: 'y'
      
      void foo()
      (CompoundStmt 0x2605cc0
        (BinaryOperator 0x2605ca0 '_Complex double' '='
          (DeclRefExpr 0x2605c10 '_Complex double' Decl='X' 0x2605ab0)
          (BinaryOperator 0x2605c80 '_Complex double' '+'
            (DeclRefExpr 0x2605c30 '_Complex double' Decl='X' 0x2605ab0)
            (ImplicitCastExpr 0x2605c70 '_Complex double'
              (DeclRefExpr 0x2605c50 'double' Decl='y' 0x2605ae0)))))
      
      llvm-svn: 41483
      7af82d46
    • Steve Naroff's avatar
      · 808eb8fe
      Steve Naroff authored
      Add Type::getAsBuiltinType() and Type::builtinTypesAreCompatible().
      Modified Type::typesAreCompatible() to use the above.
      
      This fixes the following bug submitted by Keith Bauer (thanks!).
      
      int equal(char *a, const char *b)
      {
          return a == b;
      }
      
      Also tweaked Sema::CheckCompareOperands() to ignore the qualifiers when
      comparing two pointer types (though it doesn't relate directly to this bug).
      
      llvm-svn: 41476
      808eb8fe
    • Steve Naroff's avatar
      · fc6ffa25
      Steve Naroff authored
      Tweak a comment and assert.
      
      llvm-svn: 41475
      fc6ffa25
    • Steve Naroff's avatar
      · 9091ef70
      Steve Naroff authored
      Replaced ASTContext::maxComplexType() with ASTContext::getFloatingTypeOfSizeWithinDomain().
      
      Changed Sema::UsualArithmeticConversions to correctly implement complex/float conversions, 
      using maxFloatingType() with getFloatingTypeOfSizeWithinDomain().
      
      llvm-svn: 41474
      9091ef70
  5. Aug 26, 2007
  6. Aug 25, 2007
    • Steve Naroff's avatar
      · 46c72915
      Steve Naroff authored
      Surpress the UsualUnaryConversions for compound assignment operators. This change
      eliminates the possibility that the left hand expression is an ImplicitCastExpr.
      As a result, I removed the check for ImplicitCastExpr in Expr::isLvalue().
      
      This results in the following AST's...
      
      [dylan:~/llvm/tools/clang] admin% cat fix.c
      
      short x; void test4(char c) { 
        x += c; 
        x = x + c;
      }
      [dylan:~/llvm/tools/clang] admin% ../../Debug/bin/clang fix.c -parse-ast-dump
      Read top-level variable decl: 'x'
      
      void test4(char c)
      (CompoundStmt 0x2605d30
        (CompoundAssignOperator 0x2605c40 'short' '+='
          (DeclRefExpr 0x2605c00 'short' Decl='x' 0x2605a80)
          (DeclRefExpr 0x2605c20 'char' Decl='c' 0x2605bc0))
        (BinaryOperator 0x2605d10 'short' '='
          (DeclRefExpr 0x2605c60 'short' Decl='x' 0x2605a80)
          (ImplicitCastExpr 0x2605d00 'short'
            (BinaryOperator 0x2605ce0 'int' '+'
              (ImplicitCastExpr 0x2605cc0 'int'
                (DeclRefExpr 0x2605c80 'short' Decl='x' 0x2605a80))
              (ImplicitCastExpr 0x2605cd0 'int'
                (DeclRefExpr 0x2605ca0 'char' Decl='c' 0x2605bc0))))))
      
      llvm-svn: 41404
      46c72915
    • Steve Naroff's avatar
      Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. · e2562ff9
      Steve Naroff authored
      This fixes the following bug...
      
      t.c:1:31: error: expression is not assignable
      short x; void foo(char c) { x += c; }
      
      This case, among others are now captured in implicit-casts.c.
      
      llvm-svn: 41402
      e2562ff9
    • Chris Lattner's avatar
      Split the ASTNode out for compound assignments out from binary operators. Now · 86928119
      Chris Lattner authored
      they show up in dumps etc.
      
      llvm-svn: 41393
      86928119
    • Chris Lattner's avatar
      fix off-by-one error · d8c9fc5e
      Chris Lattner authored
      llvm-svn: 41392
      d8c9fc5e
    • Chris Lattner's avatar
      rename sNames -> StmtClassInfo. Make lookups constant time. · 4d15a0db
      Chris Lattner authored
      llvm-svn: 41390
      4d15a0db
  7. Aug 24, 2007
Loading