Skip to content
  1. Sep 26, 2013
  2. Aug 29, 2013
    • Hal Finkel's avatar
      Add useAA() to TargetSubtargetInfo · b350ffd1
      Hal Finkel authored
      There are several optional (off-by-default) features in CodeGen that can make
      use of alias analysis. These features are important for generating code for
      some kinds of cores (for example the (in-order) PPC A2 core). This adds a
      useAA() function to TargetSubtargetInfo to allow these features to be enabled
      by default on a per-subtarget basis.
      
      Here is the first use of this function: To control the default of the
      -enable-aa-sched-mi feature.
      
      llvm-svn: 189563
      b350ffd1
  3. Nov 13, 2012
    • Andrew Trick's avatar
      misched: Allow subtargets to enable misched and dependent options. · 108c88c5
      Andrew Trick authored
      This allows me to begin enabling (or backing out) misched by default
      for one subtarget at a time. To run misched we typically want to:
      - Disable SelectionDAG scheduling (use the source order scheduler)
      - Enable more aggressive coalescing (until we decide to always run the coalescer this way)
      - Enable MachineScheduler pass itself.
      
      Disabling PostRA sched may follow for some subtargets.
      
      llvm-svn: 167826
      108c88c5
  4. Jul 01, 2011
  5. Nov 13, 2009
  6. Nov 10, 2009
  7. Dec 29, 2007
  8. Jul 27, 2005
  9. Jul 12, 2005
    • Jeff Cohen's avatar
      ddc8b78c
    • Nate Begeman's avatar
      Implement Subtarget support · f26625e1
      Nate Begeman authored
      Implement the X86 Subtarget.
      
      This consolidates the checks for target triple, and setting options based
      on target triple into one place.  This allows us to convert the asm printer
      and isel over from being littered with "forDarwin", "forCygwin", etc. into
      just having the appropriate flags for each subtarget feature controlling
      the code for that feature.
      
      This patch also implements indirect external and weak references in the
      X86 pattern isel, for darwin.  Next up is to convert over the asm printers
      to use this new interface.
      
      llvm-svn: 22389
      f26625e1
Loading