Skip to content
  1. Oct 15, 2013
  2. Oct 14, 2013
  3. Oct 11, 2013
  4. Sep 30, 2013
    • Arnold Schwaighofer's avatar
      IfConverter: Use TargetSchedule for instruction latencies · d2f96b91
      Arnold Schwaighofer authored
      For targets that have instruction itineraries this means no change. Targets
      that move over to the new schedule model will use be able the new schedule
      module for instruction latencies in the if-converter (the logic is such that if
      there is no itineary we will use the new sched model for the latencies).
      
      Before, we queried "TTI->getInstructionLatency()" for the instruction latency
      and the extra prediction cost. Now, we query the TargetSchedule abstraction for
      the instruction latency and TargetInstrInfo for the extra predictation cost. The
      TargetSchedule abstraction will internally call "TTI->getInstructionLatency" if
      an itinerary exists, otherwise it will use the new schedule model.
      
      ATTENTION: Out of tree targets!
      
      (I will also send out an email later to LLVMDev)
      
      This means, if your target implements
      
       unsigned getInstrLatency(const InstrItineraryData *ItinData,
                                const MachineInstr *MI,
                                unsigned *PredCost);
      
      and returns a value for "PredCost", you now also need to implement
      
       unsigned getPredictationCost(const MachineInstr *MI);
      
      (if your target uses the IfConversion.cpp pass)
      
      radar://15077010
      
      llvm-svn: 191671
      d2f96b91
  5. Sep 09, 2013
  6. Jul 24, 2013
    • Quentin Colombet's avatar
      Fix a bug in IfConverter with nested predicates. · bdab227e
      Quentin Colombet authored
      Prior to this patch, IfConverter may widen the cases where a sequence of
      instructions were executed because of the way it uses nested predicates. This
      result in incorrect execution.
      
      For instance, Let A be a basic block that flows conditionally into B and B be a
      predicated block.
      B can be predicated with A.BrToBPredicate into A iff B.Predicate is less
      "permissive" than A.BrToBPredicate, i.e., iff A.BrToBPredicate subsumes
      B.Predicate.
      
      The IfConverter was checking the opposite: B.Predicate subsumes
      A.BrToBPredicate.
      
      <rdar://problem/14379453>
      
      llvm-svn: 187071
      bdab227e
  7. May 23, 2013
  8. May 05, 2013
  9. Apr 11, 2013
    • Hal Finkel's avatar
      Manually remove successors in if conversion when CopyAndPredicateBlock is used · 95081bff
      Hal Finkel authored
      In the simple and triangle if-conversion cases, when CopyAndPredicateBlock is
      used because the to-be-predicated block has other predecessors, we need to
      explicitly remove the old copied block from the successors list. Normally if
      conversion relies on TII->AnalyzeBranch combined with BB->CorrectExtraCFGEdges
      to cleanup the successors list, but if the predicated block contained an
      un-analyzable branch (such as a now-predicated return), then this will fail.
      
      These extra successors were causing a problem on PPC because it was causing
      later passes (such as PPCEarlyReturm) to leave dead return-only basic blocks in
      the code.
      
      llvm-svn: 179227
      95081bff
  10. Jan 25, 2013
  11. Jan 11, 2013
  12. Dec 20, 2012
  13. 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
  14. Aug 22, 2012
  15. Jun 08, 2012
  16. Jun 02, 2012
    • Jakob Stoklund Olesen's avatar
      Switch all register list clients to the new MC*Iterator interface. · 54038d79
      Jakob Stoklund Olesen authored
      No functional change intended.
      
      Sorry for the churn. The iterator classes are supposed to help avoid
      giant commits like this one in the future. The TableGen-produced
      register lists are getting quite large, and it may be necessary to
      change the table representation.
      
      This makes it possible to do so without changing all clients (again).
      
      llvm-svn: 157854
      54038d79
  17. May 30, 2012
  18. Mar 05, 2012
  19. Feb 08, 2012
    • Andrew Trick's avatar
      Codegen pass definition cleanup. No functionality. · 1fa5bcbe
      Andrew Trick authored
      Moving toward a uniform style of pass definition to allow easier target configuration.
      Globally declare Pass ID.
      Globally declare pass initializer.
      Use INITIALIZE_PASS consistently.
      Add a call to the initializer from CodeGen.cpp.
      Remove redundant "createPass" functions and "getPassName" methods.
      
      While cleaning up declarations, cleaned up comments (sorry for large diff).
      
      llvm-svn: 150100
      1fa5bcbe
  20. Feb 05, 2012
  21. Dec 19, 2011
    • Evan Cheng's avatar
      Add a if-conversion optimization that allows 'true' side of a diamond to be · 4266a793
      Evan Cheng authored
      unpredicated. That is, turn
       subeq  r0, r1, #1
       addne  r0, r1, #1                                                                                                                                                                                                     
      into
       sub    r0, r1, #1
       addne  r0, r1, #1
      
      For targets where conditional instructions are always executed, this may be
      beneficial. It may remove pseudo anti-dependency in out-of-order execution
      CPUs. e.g.
       op    r1, ...
       str   r1, [r10]        ; end-of-life of r1 as div result
       cmp   r0, #65
       movne r1, #44  ; raw dependency on previous r1
       moveq r1, #12
      
      If movne is unpredicated, then
       op    r1, ...
       str   r1, [r10]
       cmp   r0, #65
       mov   r1, #44  ; r1 written unconditionally
       moveq r1, #12
      
      Both mov and moveq are no longer depdendent on the first instruction. This gives
      the out-of-order execution engine more freedom to reorder them.
      
      This has passed entire LLVM test suite. But it has not been enabled for any ARM
      variant pending more performance evaluation.
      
      rdar://8951196
      
      llvm-svn: 146914
      4266a793
  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. Nov 05, 2011
  24. Aug 04, 2011
  25. Jul 22, 2011
  26. Jul 10, 2011
  27. Jun 29, 2011
  28. Jun 28, 2011
  29. May 12, 2011
  30. May 11, 2011
  31. Apr 27, 2011
Loading