Skip to content
  1. Oct 07, 2013
  2. Sep 28, 2013
    • Akira Hatanaka's avatar
      [mips] Make sure loads from lazy-binding entries do not get CSE'd or hoisted out · af4211ad
      Akira Hatanaka authored
      of loops.
      
      Previously, two consecutive calls to function "func" would result in the
      following sequence of instructions:
      
      1. load $16, %got(func)($gp) // load address of lazy-binding stub.
      2. move $25, $16
      3. jalr $25                  // jump to lazy-binding stub.
      4. nop
      5. move $25, $16
      6. jalr $25                  // jump to lazy-binding stub again.
      
      With this patch, the second call directly jumps to func's address, bypassing
      the lazy-binding resolution routine:
      
      1. load $25, %got(func)($gp) // load address of lazy-binding stub.
      2. jalr $25                  // jump to lazy-binding stub.
      3. nop
      4. load $25, %got(func)($gp) // load resolved address of func.
      5. jalr $25                  // directly jump to func.
      
      llvm-svn: 191591
      af4211ad
  3. Jul 03, 2013
  4. Jun 07, 2013
  5. Mar 25, 2013
  6. Mar 01, 2013
  7. Feb 26, 2013
  8. Feb 15, 2013
  9. Feb 07, 2013
  10. Dec 07, 2012
  11. Dec 03, 2012
    • Chandler Carruth's avatar
      Use the new script to sort the includes of every file under lib. · ed0881b2
      Chandler Carruth authored
      Sooooo many of these had incorrect or strange main module includes.
      I have manually inspected all of these, and fixed the main module
      include to be the nearest plausible thing I could find. If you own or
      care about any of these source files, I encourage you to take some time
      and check that these edits were sensible. I can't have broken anything
      (I strictly added headers, and reordered them, never removed), but they
      may not be the headers you'd really like to identify as containing the
      API being implemented.
      
      Many forward declarations and missing includes were added to a header
      files to allow them to parse cleanly when included first. The main
      module rule does in fact have its merits. =]
      
      llvm-svn: 169131
      ed0881b2
  12. Nov 16, 2012
  13. Aug 24, 2012
  14. Aug 22, 2012
  15. Jun 14, 2012
  16. Jun 01, 2012
  17. May 15, 2012
    • Akira Hatanaka's avatar
      Add a command line option to skip the delay slot filler pass entirely for Mips. · 4773e67e
      Akira Hatanaka authored
      The purpose of this option is to silence error messages issued by machine
      verifier passes and enable them to run to the end. If this option is not
      provided, -verify-machineinstrs complains when it discovers there is a
      non-terminator instruction (an instruction that is in a delay slot) after the
      first terminator in a basic block.
      
      llvm-svn: 156790
      4773e67e
  18. Mar 04, 2012
  19. Feb 28, 2012
  20. Feb 17, 2012
  21. Dec 19, 2011
  22. Dec 07, 2011
    • Evan Cheng's avatar
      Add bundle aware API for querying instruction properties and switch the code · 7f8e563a
      Evan Cheng authored
      generator to it. For non-bundle instructions, these behave exactly the same
      as the MC layer API.
      
      For properties like mayLoad / mayStore, look into the bundle and if any of the
      bundled instructions has the property it would return true.
      For properties like isPredicable, only return true if *all* of the bundled
      instructions have the property.
      For properties like canFoldAsLoad, isCompare, conservatively return false for
      bundles.
      
      llvm-svn: 146026
      7f8e563a
  23. Oct 05, 2011
Loading