Skip to content
  1. Mar 25, 2013
  2. Mar 24, 2013
  3. Mar 23, 2013
    • Hal Finkel's avatar
      PPC ZERO register needs a register number of 0. · 915769ed
      Hal Finkel authored
      In order for the new ZERO register to be used with MC, etc. we need to specify
      its register number (0).
      
      Thanks to Kai for reporting the problem!
      
      llvm-svn: 177833
      915769ed
    • Hal Finkel's avatar
      Note in PPCFunctionInfo VRSAVE spills · cc1eeda1
      Hal Finkel authored
      In preparation for using the new register scavenger capability for providing
      more than one register simultaneously, specifically note functions that have
      spilled VRSAVE (currently, this can happen only in functions that use the
      setjmp intrinsic). As with CR spilling, such functions will need to provide two
      emergency spill slots to the scavenger.
      
      No functionality change intended.
      
      llvm-svn: 177832
      cc1eeda1
    • Tobias Grosser's avatar
      RegisterPasses: Improve comments · c2bdf197
      Tobias Grosser authored
      llvm-svn: 177831
      c2bdf197
    • Hal Finkel's avatar
      MCize the bcl instruction in PPCAsmPrinter · f07a8e04
      Hal Finkel authored
      I recently added a BCL instruction definition as part of implementing SjLj
      support. This can also be used to MCize bcl emission in the asm printer.
      
      No functionality change intended.
      
      llvm-svn: 177830
      f07a8e04
    • Jakob Stoklund Olesen's avatar
      Use direct types in Sparc def : Pat patterns. · b1f7c287
      Jakob Stoklund Olesen authored
      The SelectionDAG graph has MVT type labels, not register classes, so
      this makes it clearer what is happening.
      
      This notation is also robust against adding more types to the IntRegs
      register class.
      
      llvm-svn: 177829
      b1f7c287
    • Jakob Stoklund Olesen's avatar
      Allow direct value types in pattern definitions. · d906b903
      Jakob Stoklund Olesen authored
      Just like register classes, value types can be used in two ways in
      patterns:
      
        (sext_inreg i32:$src, i16)
      
      In a named leaf node like i32:$src, the value type simply provides the
      type of the node directly. This simplifies type inference a lot compared
      to the current practice of specifiying types indirectly with register
      classes.
      
      As an unnamed leaf node, like i16 above, the value type represents
      itself as an MVT::Other immediate.
      
      llvm-svn: 177828
      d906b903
Loading