Skip to content
  1. Nov 02, 2011
    • Tanya Lattner's avatar
      Add support to the linker to lazily link in functions. This change only links... · 0a48b877
      Tanya Lattner authored
      Add support to the linker to lazily link in functions. This change only links functions marked with specific linkage (internal, private, linker_private, linker_private_weak, linker_private_weak_def_auto, linkonce, linkonce_odr, and available_externally) if they have uses in the destination module. Instead of automatically linking, these functions are placed onto a worklist to be processed in the final stage of linking. We iterate over the list and if any functions on the list have uses in the destination module, we link them in and repeat the process until no changes in the state (uses) has changed. This means that any functions in the LazilyLink worklist that have a use in the destination module will be linked in and none that don't. 
      
      llvm-svn: 143524
      0a48b877
    • Chad Rosier's avatar
      Factor out a SelectTrunc function. No functionality change intended. · ee7e4525
      Chad Rosier authored
      llvm-svn: 143523
      ee7e4525
    • Andrew Trick's avatar
      Broaden an assert to handle enable-iv-rewrite=true following r143183. · 0dae8903
      Andrew Trick authored
      Narrowest possible fix for PR11279.
      
      llvm-svn: 143522
      0dae8903
    • Kevin Enderby's avatar
      Fixed a bug in the code to create a dwarf file and directory table entires when · 82ed3be1
      Kevin Enderby authored
      it is separating the directory part from the basename of the FileName.  Noticed 
      that this:
      
        .file 1 "dir/foo"
      
      when assembled got the two parts switched.  Using the Mac OS X dwarfdump tool
      it can be seen easily:
      
      % dwarfdump -a a.out
      include_directories[  1] = 'foo'
                      Dir  Mod Time   File Len   File Name
                      ---- ---------- ---------- ---------------------------
      file_names[  1]    1 0x00000000 0x00000000 dir
      ...
      
      Which should be:
      ...
      include_directories[  1] = 'dir'
                      Dir  Mod Time   File Len   File Name
                      ---- ---------- ---------- ---------------------------
      file_names[  1]    1 0x00000000 0x00000000 foo
      
      llvm-svn: 143521
      82ed3be1
  2. Nov 01, 2011
  3. Oct 31, 2011
  4. Oct 30, 2011
  5. Oct 29, 2011
  6. Oct 28, 2011
Loading