Skip to content
  1. Jul 31, 2009
  2. Jul 30, 2009
  3. Jul 29, 2009
  4. Jul 26, 2009
  5. Jul 25, 2009
  6. Jul 19, 2009
    • Daniel Dunbar's avatar
      Fix thinko. · 669521c9
      Daniel Dunbar authored
      llvm-svn: 76362
      669521c9
    • Daniel Dunbar's avatar
      Avoid generation of dead code in a few more situations. · b6adc43f
      Daniel Dunbar authored
       - Emit variable declarations as "simple", we want to avoid forcing the creation
         of a dummy basic block, but still need to make the variable available for
         later use.
      
       - With that, we can now skip IRgen for other unreachable statements (which
         don't define a label).
      
       - Anders, I added two fixmes on calls to EmitVLASize, can you check them?
      
      llvm-svn: 76361
      b6adc43f
  7. Jul 15, 2009
  8. Jul 13, 2009
  9. Jul 08, 2009
  10. Jun 30, 2009
    • Argyrios Kyrtzidis's avatar
      Remove the ASTContext parameter from the attribute-related methods of Decl. · b4b64ca7
      Argyrios Kyrtzidis authored
      The implementations of these methods can Use Decl::getASTContext() to get the ASTContext.
      
      This commit touches a lot of files since call sites for these methods are everywhere.
      I used pre-tokenized "carbon.h" and "cocoa.h" headers to do some timings, and there was no real time difference between before the commit and after it.
      
      llvm-svn: 74501
      b4b64ca7
  11. Jun 26, 2009
  12. Jun 18, 2009
  13. Jun 06, 2009
    • Mike Stump's avatar
      As an optimization, we maintain a cache of generated · cbc2bcaf
      Mike Stump authored
      ___Block_byref_id_object_dispose and ___Block_byref_id_object_copy
      functions so that we can simply reuse instead of creating a new one.
      Additionally, add an assert to ensure no one yet tries to align a
      __block variable beyond the alignment of a pointer as the codegen is
      incomplete.
      
      llvm-svn: 72974
      cbc2bcaf
  14. May 27, 2009
  15. May 22, 2009
  16. May 19, 2009
  17. May 18, 2009
  18. May 15, 2009
    • Mike Stump's avatar
      Fixup debug information for the location information for __block · 2c002929
      Mike Stump authored
      variables.  For this to work, the backend needs to handle more complex
      forms for locations.
      
      A typical utterance would be:
      
              %forwarding = getelementptr %0* %use_by_ref, i32 0, i32 1               ; <i8**> [#uses=1]
              %0 = load i8** %forwarding              ; <i8*> [#uses=1]
              %1 = bitcast i8* %0 to %0*              ; <%0*> [#uses=1]
              %x = getelementptr %0* %1, i32 0, i32 4         ; <i32*> [#uses=1]
              %2 = bitcast i32* %x to { }*            ; <{ }*> [#uses=1]
              call void @llvm.dbg.declare({ }* %2, { }* bitcast (%llvm.dbg.variable.type* @llvm.dbg.variable to { }*))
      
      Presently when selection finds something it doesn't understand, it
      just avoids generating any information, which is safe, just
      incomplete.  Radar 6867696
      
      llvm-svn: 71824
      2c002929
  19. May 12, 2009
  20. Apr 26, 2009
  21. Apr 20, 2009
  22. Apr 19, 2009
  23. Apr 14, 2009
    • Daniel Dunbar's avatar
      Audit __private_extern__ handling. · 0ca16601
      Daniel Dunbar authored
       - Exposed quite a few Sema issues and a CodeGen crash.
      
       - See FIXMEs in test case, and in SemaDecl.cpp (PR3983).
      
      I'm skeptical that __private_extern__ should actually be a storage
      class value. I think that __private_extern__ basically amounts to
        extern A __attribute__((visibility("hidden")))
      and would be better off handled (a) as that, or (b) with an extra bit
      in the VarDecl.
      
      llvm-svn: 69020
      0ca16601
  24. Apr 13, 2009
  25. Apr 10, 2009
  26. Apr 08, 2009
  27. Apr 02, 2009
  28. Mar 30, 2009
  29. Mar 22, 2009
  30. Mar 21, 2009
  31. Mar 20, 2009
  32. Mar 07, 2009
  33. Mar 06, 2009
Loading