Skip to content
  1. Dec 04, 2012
    • Chandler Carruth's avatar
      Sort the #include lines for tools/... · 4d88a1c2
      Chandler Carruth authored
      Again, tools are trickier to pick the main module header for than
      library source files. I've started to follow the pattern of using
      LLVMContext.h when it is included as a stub for program source files.
      
      llvm-svn: 169252
      4d88a1c2
  2. Nov 30, 2012
    • Jakob Stoklund Olesen's avatar
      Add a -time-compilations=<N> option to llc. · 2776b4c6
      Jakob Stoklund Olesen authored
      This causes llc to repeat the module compilation N times, making it
      possible to get more accurate information from -time-passes when
      compiling small modules.
      
      llvm-svn: 169040
      2776b4c6
    • Chandler Carruth's avatar
      Move the InstVisitor utility into VMCore where it belongs. It heavily · dbd69581
      Chandler Carruth authored
      depends on the IR infrastructure, there is no sense in it being off in
      Support land.
      
      This is in preparation to start working to expand InstVisitor into more
      special-purpose visitors that are still generic and can be re-used
      across different passes. The expansion will go into the Analylis tree
      though as nothing in VMCore needs it.
      
      llvm-svn: 168972
      dbd69581
  3. Nov 29, 2012
  4. Nov 28, 2012
  5. Nov 27, 2012
  6. Nov 24, 2012
    • Benjamin Kramer's avatar
      libLTO: Add a utility method to initialize the disassemblers. · 9bcb9226
      Benjamin Kramer authored
      Necessary to give disassembler users (like darwin's otool) a possibility to
      dlopen libLTO and still initialize the required LLVM bits. This used to go
      through libMCDisassembler but that's a gross layering violation, the MC layer
      can't pull in functions from the targets. Adding a function to libLTO is a bit
      of a hack but not worse than exposing other disassembler bits from libLTO.
      
      Fixes PR14362.
      
      llvm-svn: 168545
      9bcb9226
  7. Nov 23, 2012
  8. Nov 21, 2012
  9. Nov 20, 2012
  10. Nov 18, 2012
  11. Nov 16, 2012
  12. Nov 15, 2012
  13. Nov 13, 2012
  14. Nov 12, 2012
  15. Nov 08, 2012
  16. Nov 07, 2012
  17. Nov 05, 2012
    • Andrew Kaylor's avatar
      Add a method to indicate section address re-assignment is finished. · a714efc1
      Andrew Kaylor authored
      Prior to this patch RuntimeDyld attempted to re-apply relocations every time reassignSectionAddress was called (via MCJIT::mapSectionAddress).  In addition to being inefficient and redundant, this led to a problem when a section was temporarily moved too far away from another section with a relative relocation referencing the section being moved.  To fix this, I'm adding a new method (finalizeObject) which the client can call to indicate that it is finished rearranging section addresses so the relocations can safely be applied.
      
      llvm-svn: 167400
      a714efc1
    • Jim Grosbach's avatar
      lli: Initialize the native asm parser for inline assembly. · 2cce3f91
      Jim Grosbach authored
      MCJIT supports inline assembly, but requires the asm parser to do so.
      Make sure to link it in and initialize it.
      
      llvm-svn: 167392
      2cce3f91
  18. Nov 01, 2012
  19. Oct 31, 2012
  20. Oct 29, 2012
  21. Oct 26, 2012
  22. Oct 24, 2012
  23. Oct 23, 2012
  24. Oct 19, 2012
Loading