Skip to content
  1. Jul 30, 2012
  2. Jul 29, 2012
  3. Jul 28, 2012
  4. Jul 27, 2012
  5. Jul 26, 2012
    • Jakob Stoklund Olesen's avatar
      Eliminate a batch of uses of sub_ss and sub_sd in the X86 target. · ceee4a9d
      Jakob Stoklund Olesen authored
      These idempotent sub-register indices don't do anything --- They simply
      map XMM registers to themselves.  They no longer affect register classes
      either since the SubRegClasses field has been removed from Target.td.
      
      This patch replaces XMM->XMM EXTRACT_SUBREG and INSERT_SUBREG patterns
      with COPY_TO_REGCLASS patterns which simply become COPY instructions.
      
      The number of IMPLICIT_DEF instructions before register allocation is
      reduced, and that is the cause of the test case changes.
      
      llvm-svn: 160816
      ceee4a9d
    • Micah Villmow's avatar
      Add support for v16i32/v16i64 into the code generator. This is required for... · 7b473d9f
      Micah Villmow authored
      Add support for v16i32/v16i64 into the code generator. This is required for backends that use i32/i64 vectors for the getSetCCResultType function.
      
      llvm-svn: 160814
      7b473d9f
    • Chad Rosier's avatar
      Make comments in Debug.cpp and Debug.h consistent. Rename SetCurrentDebugType; · 7c427c40
      Chad Rosier authored
      Function names should be camel case, and start with a lower case letter.  No
      functional change intended.
      
      llvm-svn: 160813
      7c427c40
    • Jakob Stoklund Olesen's avatar
      Use an otherwise unused variable. · 35400b1d
      Jakob Stoklund Olesen authored
      llvm-svn: 160798
      35400b1d
    • Jakob Stoklund Olesen's avatar
      Start scaffolding for a MachineTraceMetrics analysis pass. · f9029fef
      Jakob Stoklund Olesen authored
      This is still a work in progress.
      
      Out-of-order CPUs usually execute instructions from multiple basic
      blocks simultaneously, so it is necessary to look at longer traces when
      estimating the performance effects of code transformations.
      
      The MachineTraceMetrics analysis will pick a typical trace through a
      given basic block and provide performance metrics for the trace. Metrics
      will include:
      
      - Instruction count through the trace.
      - Issue count per functional unit.
      - Critical path length, and per-instruction 'slack'.
      
      These metrics can be used to determine the performance limiting factor
      when executing the trace, and how it will be affected by a code
      transformation.
      
      Initially, this will be used by the early if-conversion pass.
      
      llvm-svn: 160796
      f9029fef
    • Dan Gohman's avatar
      Add a floor intrinsic. · 0b3d7829
      Dan Gohman authored
      llvm-svn: 160791
      0b3d7829
Loading