Skip to content
  1. Aug 21, 2007
  2. Aug 20, 2007
  3. Aug 11, 2007
  4. Aug 08, 2007
  5. Aug 04, 2007
  6. Aug 03, 2007
  7. Jul 21, 2007
  8. Jul 18, 2007
  9. Jul 16, 2007
  10. Jul 13, 2007
  11. Jul 12, 2007
  12. Jul 10, 2007
  13. Jun 29, 2007
  14. Jun 23, 2007
  15. Jun 22, 2007
  16. Jun 20, 2007
  17. Jun 16, 2007
  18. Jun 15, 2007
    • Chris Lattner's avatar
      implement codegen of calls. We can now compile: · 2b228c95
      Chris Lattner authored
      double foo( int (*FP)(int, int, int)) {
        return FP(1, 2, 3);
      }
      
      to:
      
      define double @foo(i32 (i32, i32, i32)* %FP) {
      entry:
              %call = tail call i32 %FP( i32 1, i32 2, i32 3 )
              %conv = sitofp i32 %call to double
              ret double %conv
      }
      
      llvm-svn: 39658
      2b228c95
  19. Jun 13, 2007
    • Chris Lattner's avatar
      Implement support for formal arguments. We can now compile this: · 53621a53
      Chris Lattner authored
      int test(int X, short Y, float Z) {
        return (int)(X*Y+Z);
      }
      
      to:
      
      define i32 @test(i32 %X, i16 %Y, float %Z) {
      entry:
              %promote = sext i16 %Y to i32           ; <i32> [#uses=1]
              %mul = mul i32 %promote, %X             ; <i32> [#uses=1]
              %promote3 = sitofp i32 %mul to float            ; <float> [#uses=1]
              %add = add float %promote3, %Z          ; <float> [#uses=1]
              %conv = fptosi float %add to i32                ; <i32> [#uses=1]
              ret i32 %conv
      }
      
      with:
      
      $ clang -emit-llvm t.c | llvm-as | opt -std-compile-opts | llvm-dis
      
      llvm-svn: 39652
      53621a53
  20. Jun 09, 2007
Loading