Skip to content
  1. Oct 15, 2014
    • Tim Northover's avatar
      ARM: drop check for triple that's no longer used. · e9ff4c29
      Tim Northover authored
      Early attempts to support AAPCS bare metal MachO targets based the decision on
      the CPU being compiled for. This was not a particularly great idea and we've
      got a better option now, but this check remained.
      
      No functional change for any target we care about.
      
      llvm-svn: 219767
      e9ff4c29
    • Tim Northover's avatar
      ARM: remove ARM/Thumb distinction for preferred alignment. · cf6ce0c8
      Tim Northover authored
      Thumb1 has legitimate reasons for preferring 32-bit alignment of types
      i1/i8/i16, since the 16-bit encoding of "add rD, sp, #imm" requires #imm to be
      a multiple of 4. However, this is a trade-off betweem code size and RAM usage;
      the DataLayout string is not the best place to represent it even if desired.
      
      So this patch removes the extra Thumb requirements, hopefully making ARM and
      Thumb completely compatible in this respect.
      
      llvm-svn: 219734
      cf6ce0c8
  2. Oct 14, 2014
    • Tim Northover's avatar
      ARM: set preferred aggregate alignment to 32 universally. · aa09ac6e
      Tim Northover authored
      Before, ARM and Thumb mode code had different preferred alignments, which could
      lead to some rather unexpected results. There's justification for reducing it
      from the default 64-bits (wasted space), but I don't think there is for going
      below 32-bits.
      
      There's no actual ABI change here, just to reassure people.
      
      llvm-svn: 219719
      aa09ac6e
  3. Oct 09, 2014
  4. Oct 08, 2014
  5. Oct 03, 2014
  6. Sep 17, 2014
    • Richard Trieu's avatar
      | -> || · 1fbe1a8b
      Richard Trieu authored
      No functional change.
      
      llvm-svn: 217934
      1fbe1a8b
  7. Sep 03, 2014
  8. Sep 02, 2014
  9. Aug 21, 2014
  10. Aug 19, 2014
  11. Aug 08, 2014
  12. Aug 07, 2014
    • Rafael Espindola's avatar
      Nuke the old JIT. · f8b27c41
      Rafael Espindola authored
      I am sure we will be finding bits and pieces of dead code for years to
      come, but this is a good start.
      
      Thanks to Lang Hames for making MCJIT a good replacement!
      
      llvm-svn: 215111
      f8b27c41
  13. Jul 16, 2014
    • Chris Bieneman's avatar
      [RegisterCoalescer] Moving the RegisterCoalescer subtarget hook onto the... · df4b763b
      Chris Bieneman authored
      [RegisterCoalescer] Moving the RegisterCoalescer subtarget hook onto the TargetRegisterInfo instead of the TargetSubtargetInfo.
      
      llvm-svn: 213188
      df4b763b
    • Chris Bieneman's avatar
      Added documentation for SizeMultiplier in the ARM subtarget hook for register... · 80a866a3
      Chris Bieneman authored
      Added documentation for SizeMultiplier in the ARM subtarget hook for register coalescing. Also fixed some 80 col violations.
      
      No functional code changes.
      
      llvm-svn: 213169
      80a866a3
    • Sanjay Patel's avatar
      Move Post RA Scheduling flag bit into SchedMachineModel · a2f658d6
      Sanjay Patel authored
      Refactoring; no functional changes intended
      
          Removed PostRAScheduler bits from subtargets (X86, ARM).
          Added PostRAScheduler bit to MCSchedModel class.
          This bit is set by a CPU's scheduling model (if it exists).
          Removed enablePostRAScheduler() function from TargetSubtargetInfo and subclasses.
          Fixed the existing enablePostMachineScheduler() method to use the MCSchedModel (was just returning false!).
          Added methods to TargetSubtargetInfo to allow overrides for AntiDepBreakMode, CriticalPathRCs, and OptLevel for PostRAScheduling.
          Added enablePostRAScheduler() function to PostRAScheduler class which queries the subtarget for the above values.
          Preserved existing scheduler behavior for ARM, MIPS, PPC, and X86: 
             a. ARM overrides the CPU's postRA settings by enabling postRA for any non-Thumb or Thumb2 subtarget. 
             b. MIPS overrides the CPU's postRA settings by enabling postRA for everything. 
             c. PPC overrides the CPU's postRA settings by enabling postRA for everything. 
             d. X86 is the only target that actually has postRA specified via sched model info.
      
      Differential Revision: http://reviews.llvm.org/D4217
      
      llvm-svn: 213101
      a2f658d6
  14. Jul 15, 2014
    • Chris Bieneman's avatar
      [RegisterCoalescer] Add new subtarget hook allowing targets to opt-out of coalescing. · 03695ab5
      Chris Bieneman authored
      The coalescer is very aggressive at propagating constraints on the register classes, and the register allocator doesn’t know how to split sub-registers later to recover. This patch provides an escape valve for targets that encounter this problem to limit coalescing.
      
      This patch also implements such for ARM to lower register pressure when using lots of large register classes. This works around PR18825.
      
      llvm-svn: 213078
      03695ab5
  15. Jul 04, 2014
    • Eric Christopher's avatar
      Move function dependent resetting of a subtarget variable out of the · c1058df6
      Eric Christopher authored
      subtarget. This involved having the movt predicate take the current
      function - since we care about size in instruction selection for
      whether or not to use movw/movt take the function so we can check
      the attributes. This required adding the current MachineFunction to
      FastISel and propagating through.
      
      llvm-svn: 212309
      c1058df6
  16. Jun 26, 2014
  17. Jun 19, 2014
  18. Jun 15, 2014
  19. Jun 14, 2014
  20. Jun 13, 2014
  21. Jun 04, 2014
    • Andrew Trick's avatar
      Add a subtarget hook: enablePostMachineScheduler. · 8d2ee37f
      Andrew Trick authored
      As requested by AArch64 subtargets.
      
      Note that this will have no effect until the
      AArch64 target actually enables the pass like this:
      substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
      
      As soon as armv7 switches over, PostMachineScheduler will become the
      default postRA scheduler, so this won't be necessary any more.
      Targets using the old postRA schedule would then do:
      substitutePass(&PostMachineSchedulerID, &PostRASchedulerID);
      
      llvm-svn: 210167
      8d2ee37f
  22. Apr 22, 2014
    • Chandler Carruth's avatar
      [cleanup] Lift using directives, DEBUG_TYPE definitions, and even some · d174b72a
      Chandler Carruth authored
      system headers above the includes of generated '.inc' files that
      actually contain code. In a few targets this was already done pretty
      consistently, but it wasn't done *really* consistently anywhere. It is
      strictly cleaner IMO and necessary in a bunch of places where the
      DEBUG_TYPE is referenced from the generated code. Consistency with the
      necessary places trumps. Hopefully the build bots are OK with the
      movement of intrin.h...
      
      llvm-svn: 206838
      d174b72a
    • Chandler Carruth's avatar
      [Modules] Make Support/Debug.h modular. This requires it to not change · e96dd897
      Chandler Carruth authored
      behavior based on other files defining DEBUG_TYPE, which means it cannot
      define DEBUG_TYPE at all. This is actually better IMO as it forces folks
      to define relevant DEBUG_TYPEs for their files. However, it requires all
      files that currently use DEBUG(...) to define a DEBUG_TYPE if they don't
      already. I've updated all such files in LLVM and will do the same for
      other upstream projects.
      
      This still leaves one important change in how LLVM uses the DEBUG_TYPE
      macro going forward: we need to only define the macro *after* header
      files have been #include-ed. Previously, this wasn't possible because
      Debug.h required the macro to be pre-defined. This commit removes that.
      By defining DEBUG_TYPE after the includes two things are fixed:
      
      - Header files that need to provide a DEBUG_TYPE for some inline code
        can do so by defining the macro before their inline code and undef-ing
        it afterward so the macro does not escape.
      
      - We no longer have rampant ODR violations due to including headers with
        different DEBUG_TYPE definitions. This may be mostly an academic
        violation today, but with modules these types of violations are easy
        to check for and potentially very relevant.
      
      Where necessary to suppor headers with DEBUG_TYPE, I have moved the
      definitions below the includes in this commit. I plan to move the rest
      of the DEBUG_TYPE macros in LLVM in subsequent commits; this one is big
      enough.
      
      The comments in Debug.h, which were hilariously out of date already,
      have been updated to reflect the recommended practice going forward.
      
      llvm-svn: 206822
      e96dd897
  23. Apr 02, 2014
  24. Apr 01, 2014
  25. Mar 28, 2014
  26. Mar 11, 2014
    • Saleem Abdulrasool's avatar
      ARM: enable tail call optimisation on Thumb 2 · ec1ec1b4
      Saleem Abdulrasool authored
      Tail call optimisation was previously disabled on all targets other than
      iOS5.0+.  This enables the tail call optimisation on all Thumb 2 capable
      platforms.
      
      The test adjustments are to remove the IR hint "tail" to function invocation.
      The tests were designed assuming that tail call optimisations would not kick in
      which no longer holds true.
      
      llvm-svn: 203575
      ec1ec1b4
  27. Mar 06, 2014
    • Saleem Abdulrasool's avatar
      Support: split object format out of environment · 35476334
      Saleem Abdulrasool authored
      This is a preliminary setup change to support a renaming of Windows target
      triples.  Split the object file format information out of the environment into a
      separate entity.  Unfortunately, file format was previously treated as an
      environment with an unknown OS.  This is most obvious in the ARM subtarget where
      the handling for macho on an arbitrary platform switches to AAPCS rather than
      APCS (as per Apple's needs).
      
      llvm-svn: 203160
      35476334
  28. Feb 16, 2014
    • Mark Seaborn's avatar
      Use 16 byte stack alignment for NaCl on ARM · be266aa3
      Mark Seaborn authored
      NaCl's ARM ABI uses 16 byte stack alignment, so set that in
      ARMSubtarget.cpp.
      
      Using 16 byte alignment exposes an issue in code generation in which a
      varargs function leaves a 4 byte gap between the values of r1-r3 saved
      to the stack and the following arguments that were passed on the
      stack.  (Previously, this code only needed to support 4 byte and 8
      byte alignment.)
      
      With this issue, llc generated:
      
      varargs_func:
              sub     sp, sp, #16
              push    {lr}
              sub     sp, sp, #12
              add     r0, sp, #16   // Should be 20
              stm     r0, {r1, r2, r3}
              ldr     r0, .LCPI0_0  // Address of va_list
              add     r1, sp, #16
              str     r1, [r0]
              bl      external_func
      
      Fix the bug by checking for "Align > 4".  Also simplify the code by
      using OffsetToAlignment(), and update comments.
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D2677
      
      llvm-svn: 201497
      be266aa3
  29. Feb 02, 2014
  30. Jan 07, 2014
Loading