Skip to content
  1. Dec 09, 2009
  2. Nov 03, 2009
  3. Oct 22, 2009
  4. Oct 14, 2009
  5. Sep 11, 2009
    • Dan Gohman's avatar
      Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't · e5929236
      Dan Gohman authored
      working. To support this, add an is_displayed() function to raw_ostream,
      and generalize Process::StandardOutIsDisplayed and friends in order to
      support it.
      
      Also, call RemoveFileOnSignal before creating a file instead of after, so
      that the file isn't left behind if the program is interrupted between when
      the file is created and RemoveFileOnSignal is called.
      
      While here, add a -S to llvm-extract and port it to IRReader so that it
      supports assembly input.
      
      llvm-svn: 81568
      e5929236
  6. Sep 05, 2009
  7. Sep 03, 2009
  8. Aug 31, 2009
    • Chris Lattner's avatar
      Fix some nasty callgraph dangling pointer problems in · 305b115a
      Chris Lattner authored
      argpromotion and structretpromote.  Basically, when replacing
      a function, they used the 'changeFunction' api which changes
      the entry in the function map (and steals/reuses the callgraph
      node).
      
      This has some interesting effects: first, the problem is that it doesn't
      update the "callee" edges in any callees of the function in the call graph.
      Second, this covers for a major problem in all the CGSCC pass stuff, which 
      is that it is completely broken when functions are deleted if they *don't*
      reuse a CGN.  (there is a cute little fixme about this though :).
      
      This patch changes the protocol that CGSCC passes must obey: now the CGSCC 
      pass manager copies the SCC and preincrements its iterator to avoid passes
      invalidating it.  This allows CGSCC passes to mutate the current SCC.  However
      multiple passes may be run on that SCC, so if passes do this, they are now
      required to *update* the SCC to be current when they return.
      
      Other less interesting parts of this patch are that it makes passes update
      the CG more directly, eliminates changeFunction, and requires clients of
      replaceCallSite to specify the new callee CGN if they are changing it.
      
      llvm-svn: 80527
      305b115a
  9. Aug 25, 2009
    • Dan Gohman's avatar
      Make LLVM command-line tools overwrite their output files without -f. · 61a8796d
      Dan Gohman authored
      This is conventional command-line tool behavior. -f now just means
      "enable binary output on terminals".
      
      Add a -f option to llvm-extract and llvm-link, for consistency.
      
      Remove F_Force from raw_fd_ostream and enable overwriting and
      truncating by default. Introduce an F_Excl flag to permit users to
      enable a failure when the file already exists. This flag is
      currently unused.
      
      Update Makefiles and documentation accordingly.
      
      llvm-svn: 79990
      61a8796d
  10. Aug 24, 2009
  11. Aug 23, 2009
  12. Aug 22, 2009
  13. Jul 17, 2009
  14. Jul 16, 2009
  15. Jul 15, 2009
  16. Jul 01, 2009
  17. Jun 03, 2009
  18. Feb 18, 2009
  19. Dec 31, 2008
  20. Dec 04, 2008
  21. Nov 26, 2008
  22. Nov 05, 2008
    • Nuno Lopes's avatar
      fix memory leak in pass manager when adding an analysis pass that already... · 0460bb27
      Nuno Lopes authored
      fix memory leak in pass manager when adding an analysis pass that already existed. as pass manager takes ownership of the added passes, it has to delete the pass if it isnt added to the pass list
      tweak the opt tool so that it doesnt access a Pass after the ownership was taken by the pass manager
      
      llvm-svn: 58730
      0460bb27
  23. Oct 22, 2008
  24. Sep 19, 2008
  25. Sep 17, 2008
  26. Sep 15, 2008
  27. Sep 12, 2008
  28. Aug 27, 2008
Loading