Skip to content
  1. Feb 01, 2008
    • Ted Kremenek's avatar
      For ObjCAtCatchStmt, removed field 'NextAtCatchStmt' (which referenced the next @catch) · a496584c
      Ted Kremenek authored
      and put the the next ObjcAtCatchStmt* as part of SubExprs.  This fixes a bug with
      iterating over the children of ObjcAtCatch, where the next @catch was not
      properly being iterated over as a child.
      
      Altered serialization of ObjCAtCatchStmt to reflect this new layout of
      its subexpressions, and fixed an ownership issue with the next @catch not
      being serialized as an owned pointer.
      
      llvm-svn: 46647
      a496584c
  2. Jan 31, 2008
    • Anders Carlsson's avatar
      Make CallExpr::isBuiltinConstantExpr slightly more efficient. · fbcf676a
      Anders Carlsson authored
      llvm-svn: 46594
      fbcf676a
    • Steve Naroff's avatar
      · f6e3b329
      Steve Naroff authored
      Add support for CallExpr::isBuiltinConstantExpr(). For now, this hook is used to support CFConstantStrings. Can be extended to support other built-in functions.
      
      This allows the following code to compile without error...
      
      #include <CoreFoundation/CoreFoundation.h>
      
      #define CONST_STRING_DECL(S, V) const CFStringRef S = (const CFStringRef)__builtin___CFStringMakeConstantString(V);
      
      CONST_STRING_DECL(kCFTimeZoneSystemTimeZoneDidChangeNotification, "kCFTimeZoneSystemTimeZoneDidChangeNotification")
      
      llvm-svn: 46592
      f6e3b329
    • Ted Kremenek's avatar
      Added method "printTerminator" to CFGBlock so that external clients can · 1564763b
      Ted Kremenek authored
      pretty-print a block's terminator.
      
      When building CFGs, for IfStmts ('if'), we no longer add the ParenExpr
      that is the subexpression of the IfStmt to the CFG; instead we add its
      first descendant subexpression that is not a ParenExpr.
      
      llvm-svn: 46580
      1564763b
  3. Jan 30, 2008
  4. Jan 29, 2008
  5. Jan 26, 2008
  6. Jan 25, 2008
  7. Jan 24, 2008
    • Steve Naroff's avatar
      · d9d581fc
      Steve Naroff authored
      Exclude vectors from Type::isScalar() predicate.
      
      llvm-svn: 46328
      d9d581fc
  8. Jan 23, 2008
  9. Jan 22, 2008
  10. Jan 21, 2008
    • Steve Naroff's avatar
      · c505c679
      Steve Naroff authored
      Add a predicate/getter when checking for incomplete array types ("[]").
      
      llvm-svn: 46231
      c505c679
  11. Jan 17, 2008
    • Ted Kremenek's avatar
      Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This · 85be7cf8
      Ted Kremenek authored
      is because GNU-style Statement-expressions cause the last statement in the
      statement-expression to act like an expression.
      
      We now have two notions: block-level statements and block-level expressions.
      
      The former are all Stmt* that appear in the list of statements in CFGBlocks. The
      latter is the subset of the former; these block-level statements are used as
      subexpressions somewhere in the AST. CFG::isBlockExpr() returns true for the
      latter, not the former (previously isBlockExpr() always returned true for
      non-Expr Stmt*).
      
      Modified the LiveVariables analysis to also track liveness state for block-level
      expressions (using the updated definition of block-level expressions).
      
      Modified the dataflow solver so that when it records values for block-level
      statements, it records the dataflow value *before* the transfer function for a
      Stmt* is evaluated (not after). This is more in sync in what clients will want.
      
      Modified CFGStmtVisitor to record the current block-level statement.
      
      llvm-svn: 46143
      85be7cf8
    • Nate Begeman's avatar
      Implement basic overload support via a new builtin, __builtin_overload. · 1e36a85f
      Nate Begeman authored
      __builtin_overload takes 2 or more arguments:
      0) a non-zero constant-expr for the number of arguments the overloaded 
         functions will take
      1) the arguments to pass to the matching overloaded function
      2) a list of functions to match.
      
      The return type of __builtin_overload is inferred from the function whose args
      match the types of the arguments passed to the builtin.  For example:
      
      float a;
      float sinf(float);
      int   sini(int);
      
      float b = __builtin_overload(1, a, sini, sinf);
      
      Says that we are overloading functions that take one argument, and trying to 
      pass an argument of the same type as 'a'.  sini() does not match since it takes
      and argument of type int.  sinf does match, so at codegen time this will turn
      into float b = sinf(a);
      
      llvm-svn: 46132
      1e36a85f
    • Fariborz Jahanian's avatar
      Renamed getSynthesizedSelectorSize to getSynthesizedMethodSize. Compute method name · ad134b98
      Fariborz Jahanian authored
      size in accordance with how rewriter synthesizes method name.
      
      llvm-svn: 46131
      ad134b98
    • Ted Kremenek's avatar
      Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*. · fff70962
      Ted Kremenek authored
      Refactored the use of this method into both the Sema module and Analysis module,
      which were using their own static functions that did the same thing.
      
      llvm-svn: 46129
      fff70962
    • Fariborz Jahanian's avatar
      Computed length of a __func__ identifier used in an objective-c method correctly, · 38669951
      Fariborz Jahanian authored
      when creating its type.
      
      llvm-svn: 46109
      38669951
    • Steve Naroff's avatar
      · d8583eb9
      Steve Naroff authored
      Simplify comment.
      
      llvm-svn: 46103
      d8583eb9
    • Steve Naroff's avatar
      · 8a0abea9
      Steve Naroff authored
      Type::isArithmeticType(): disallow incomplete enum decls.
      
      Bug submitted by Eli.
      
      llvm-svn: 46102
      8a0abea9
  12. Jan 15, 2008
    • Steve Naroff's avatar
      · 6fcfd058
      Steve Naroff authored
      - Change Type::isComplexType() to exlude GCC's complex integer extension. In general, we will keep the lowest level Type predicates "pure" (i.e. true to the C99 spec). 
      - Modify Sema::UsualArithmeticConversions() to work with the new definition of Type::isComplexType().
      
      This is a nice cleanup and also fixes a bug submitted by Eli (which I've added to the test suite).
      
      llvm-svn: 46005
      6fcfd058
    • Steve Naroff's avatar
      · 7f988889
      Steve Naroff authored
      Rework commit r45976, which was incorrect.
      
      - Add Type::isComplexIntegerType(), Type::getAsComplexIntegerType().
      - Don't inlude complex types with Type::isIntegerType(), which is too general.
      - Use the new predicates in Sema::UsualArithmeticConversions() to recognize/convert the types.
      
      llvm-svn: 45992
      7f988889
  13. Jan 14, 2008
Loading