Skip to content
  1. Jul 22, 2007
  2. Jul 21, 2007
  3. Jul 20, 2007
  4. Jul 19, 2007
  5. Jul 18, 2007
  6. Jul 17, 2007
    • Bill Wendling's avatar
      Return the correct type from isReferenceType(). · ee673372
      Bill Wendling authored
      llvm-svn: 39956
      ee673372
    • Bill Wendling's avatar
      Change dyn_cast for reference types to be more like pointers and not need the... · 354fb267
      Bill Wendling authored
      Change dyn_cast for reference types to be more like pointers and not need the canonical type. Also fix so that we're not expecting a return value from a void function
      
      llvm-svn: 39954
      354fb267
    • Bill Wendling's avatar
      Fix references: · dfc81071
      Bill Wendling authored
          According to the spec (C++ 5p6[expr]), we need to adjust "T&" to
          "T" before further analysis. We do this via the "implicit cast"
          thingy.
      
      llvm-svn: 39953
      dfc81071
    • Chris Lattner's avatar
      In the final step for preserving typedef info better in the AST, upgrade · 96d423ef
      Chris Lattner authored
      isPointerType and isVectorType to only look through a single level of typedef
      when one is present.  For this invalid code:
      
      typedef float float4 __attribute__((vector_size(16)));
      typedef int int4 __attribute__((vector_size(16)));
      typedef int4* int4p;
      void test(float4 a, int4p result, int i) {
          result[i] = a;
      }
      
      we now get:
      
      t.c:5:15: error: incompatible types assigning 'float4' to 'int4'
          result[i] = a;
          ~~~~~~~~~ ^ ~
      
      instead of:
      
      t.c:5:15: error: incompatible types assigning 'float4' to 'int  __attribute__((vector_size(16)))'
          result[i] = a;
          ~~~~~~~~~ ^ ~
      
      The rest of the type predicates should be upgraded to do the same thing.
      
      llvm-svn: 39932
      96d423ef
  7. Jul 16, 2007
  8. Jul 15, 2007
    • Steve Naroff's avatar
      · 81569d20
      Steve Naroff authored
      This is the final step/commit for implementing exlicit implicit casts. Unlike the 
      previous two checkins, which involved lot's of tedious refactoring, this checkin is nice and clean:-)
      
      - Hacked UsualUnaryConversions, UsualArithmeticConversions, and DefaultFunctionArrayConversion
      to create the AST node (using a helper function promoteExprToType).
      - Added a setType method to Expr.
      - Changed Expr::isIntegerConstantExpr to allow for the new node.
      
      llvm-svn: 39866
      81569d20
  9. Jul 14, 2007
  10. Jul 13, 2007
    • Chris Lattner's avatar
      remove some extraneous spaces, no functionality change. · 2ce5dd4c
      Chris Lattner authored
      llvm-svn: 39832
      2ce5dd4c
    • Steve Naroff's avatar
      · 7a5af782
      Steve Naroff authored
      Add (explicit) AST support for implicit casts. This should simplify the 
      code generator. Source translation tools can simply ignore this node.
      
      - Added a new Expr node, ImplicitCastExpr.
      - Changed UsualUnaryConversions/UsualArithmeticConversions to take references 
      to Expr *'s. This will allow these routines to instantiate the new AST node
      and pass it back.
      - Changed all clients of UsualUnary/UsualArithmetic (lot's of diff's).
      - Changed some names in CheckConditionalOperands. Several variables where
      only distinguished by their case (e.g. Cond, cond). Yuck (what was I thinking).
      - Removed an old/crufty constructor in CastExpr (cleanup).
      
      This check-in does not actually create the new AST node. I wanted to separate
      the mechanical changes from the semantic changes. In addition, I need to 
      coordinate with Chris, since the semantic change will break the code generator.
      
      llvm-svn: 39814
      7a5af782
    • Chris Lattner's avatar
      "Codegen for Character Literals and Conditional Operator · 6e9d9b35
      Chris Lattner authored
      Both in one patch, and the test case that Chris didn't commit last
      time is in there too...
      
      I'll split the patch up if somebody wants it split."
      
      Patch by Keith Bauer.
      
      llvm-svn: 39796
      6e9d9b35
    • Chris Lattner's avatar
      Implement codegen for + and - with pointers. Patch contributed by · d2b88ab3
      Chris Lattner authored
      Keith Bauer.
      
      llvm-svn: 39793
      d2b88ab3
    • Anton Korobeynikov's avatar
      Workaround gcc 3.4.x bug · b6719478
      Anton Korobeynikov authored
      llvm-svn: 39792
      b6719478
  11. Jul 12, 2007
    • Steve Naroff's avatar
      · 1c8b7d36
      Steve Naroff authored
      Two changes...
      
      - Teach all the integer/float predicates on Type about Vectors.
      - Disallow bitwise compliment on float vectors. For example...
      
      typedef float __attribute__(( vector_size(16) )) float4;
      
      float4 float4_return()
      {
          float4 xx;
      
          return ~xx;
      }
      
      ...now emits the following diagnostic...
      
      [administrators-powerbook59:~/llvm/tools/clang] admin% ../../Debug/bin/clang bug.c
      bug.c:8:12: error: invalid argument type to unary expression 'float4'
          return ~xx;
                 ^
      1 diagnostic generated.
      
      llvm-svn: 39791
      1c8b7d36
    • Chris Lattner's avatar
      Fix "no newline at end of file" warnings. Patch contributed by · bd4de5df
      Chris Lattner authored
      Benoit Boissinot!
      
      llvm-svn: 39780
      bd4de5df
Loading