Skip to content
  1. May 27, 2014
  2. May 22, 2014
    • Tim Northover's avatar
      Segmented stacks: omit __morestack call when there's no frame. · f9e798ba
      Tim Northover authored
      Patch by Florian Zeitz
      
      llvm-svn: 209436
      f9e798ba
    • Saleem Abdulrasool's avatar
      ARM: introduce llvm.arm.undefined intrinsic · 2bd1262a
      Saleem Abdulrasool authored
      This intrinsic permits the emission of platform specific undefined sequences.
      ARM has reserved the 0xde opcode which takes a single integer parameter (ignored
      by the CPU).  This permits the operating system to implement custom behaviour on
      this trap.  The llvm.arm.undefined intrinsic is meant to provide a means for
      generating the target specific behaviour from the frontend.  This is
      particularly useful for Windows on ARM which has made use of a series of these
      special opcodes.
      
      llvm-svn: 209390
      2bd1262a
  3. May 21, 2014
    • Saleem Abdulrasool's avatar
      ARM: correct bundle generation for MOV32T relocations · 8d60fdc5
      Saleem Abdulrasool authored
      Although the previous code would construct a bundle and add the correct elements
      to it, it would not finalise the bundle.  This resulted in the InternalRead
      markers not being added to the MachineOperands nor, more importantly, the
      externally visible defs to the bundle itself.  So, although the bundle was not
      exposing the def, the generated code would be correct because there was no
      optimisations being performed.  When optimisations were enabled, the post
      register allocator would kick in, and the hazard recognizer would reorder
      operations around the load which would define the value being operated upon.
      
      Rather than manually constructing the bundle, simply construct and finalise the
      bundle via the finaliseBundle call after both MIs have been emitted.  This
      improves the code generation with optimisations where IMAGE_REL_ARM_MOV32T
      relocations are emitted.
      
      The changes to the other tests are the result of the bundle generation
      preventing the scheduler from hoisting the moves across the loads.  The net
      effect of the generated code is equivalent, but, is much more identical to what
      is actually being lowered.
      
      llvm-svn: 209267
      8d60fdc5
  4. May 19, 2014
  5. May 18, 2014
    • Saleem Abdulrasool's avatar
      ARM: improve WoA ABI conformance for frame register · a5218453
      Saleem Abdulrasool authored
      Windows on ARM uses R11 for the frame pointer even though the environment is a
      pure Thumb-2, thumb-only environment.  Replicate this behaviour to improve
      Windows ABI compatibility.  This register is used for fast stack walking, and
      thus is part of the Windows ABI.
      
      llvm-svn: 209085
      a5218453
  6. May 17, 2014
  7. May 16, 2014
    • Rafael Espindola's avatar
      Fix most of PR10367. · 6b238633
      Rafael Espindola authored
      This patch changes the design of GlobalAlias so that it doesn't take a
      ConstantExpr anymore. It now points directly to a GlobalObject, but its type is
      independent of the aliasee type.
      
      To avoid changing all alias related tests in this patches, I kept the common
      syntax
      
      @foo = alias i32* @bar
      
      to mean the same as now. The cases that used to use cast now use the more
      general syntax
      
      @foo = alias i16, i32* @bar.
      
      Note that GlobalAlias now behaves a bit more like GlobalVariable. We
      know that its type is always a pointer, so we omit the '*'.
      
      For the bitcode, a nice surprise is that we were writing both identical types
      already, so the format change is minimal. Auto upgrade is handled by looking
      through the casts and no new fields are needed for now. New bitcode will
      simply have different types for Alias and Aliasee.
      
      One last interesting point in the patch is that replaceAllUsesWith becomes
      smart enough to avoid putting a ConstantExpr in the aliasee. This seems better
      than checking and updating every caller.
      
      A followup patch will delete getAliasedGlobal now that it is redundant. Another
      patch will add support for an explicit offset.
      
      llvm-svn: 209007
      6b238633
    • David Blaikie's avatar
      DebugInfo: Assume the CU's Subprogram list only contains definitions. · 825f487b
      David Blaikie authored
      DIBuilder maintains this invariant and the current DwarfDebug code could
      end up doing weird things if it contained declarations (such as putting
      the definition DIE inside a CU that contained the declaration - this
      doesn't seem like a good idea, so rather than adding logic to handle
      this case we'll just ban in for now & cross that bridge if we come to
      it later).
      
      llvm-svn: 209004
      825f487b
    • James Molloy's avatar
      Re-enable inline memcpy expansion for Thumb1. · a70697e1
      James Molloy authored
      Patch by Moritz Roth!
      
      llvm-svn: 208994
      a70697e1
    • Rafael Espindola's avatar
      Revert "Implement global merge optimization for global variables." · 5a52b9f1
      Rafael Espindola authored
      This reverts commit r208934.
      
      The patch depends on aliases to GEPs with non zero offsets. That is not
      supported and fairly broken.
      
      The good news is that GlobalAlias is being redesigned and will have support
      for offsets, so this patch should be a nice match for it.
      
      llvm-svn: 208978
      5a52b9f1
    • Saleem Abdulrasool's avatar
      ARM: add some integer/floating point conversion libcalls · 056fc3da
      Saleem Abdulrasool authored
      Add some Windows on ARM specific library calls.  These are provided by msvcrt,
      and can be used to perform integer to floating-point conversions (and
      vice-versa) mirroring similar functions in the RTABI.
      
      llvm-svn: 208949
      056fc3da
    • Jiangning Liu's avatar
      Implement global merge optimization for global variables. · 932e1c39
      Jiangning Liu authored
      This commit implements two command line switches -global-merge-on-external
      and -global-merge-aligned, and both of them are false by default, so this
      optimization is disabled by default for all targets.
      
      For ARM64, some back-end behaviors need to be tuned to get this optimization
      further enabled.
      
      llvm-svn: 208934
      932e1c39
  8. May 14, 2014
  9. May 13, 2014
  10. May 12, 2014
  11. May 09, 2014
  12. May 08, 2014
  13. May 07, 2014
    • Joerg Sonnenberger's avatar
      Allow using normal .eh_frame based unwinding on ARM. Use the same · cf86ce13
      Joerg Sonnenberger authored
      encodings as x86. Use this exception model for NetBSD.
      
      llvm-svn: 208166
      cf86ce13
    • Saleem Abdulrasool's avatar
      ARM: fix WoA PEI instruction selection · acd0338c
      Saleem Abdulrasool authored
      The ARM::BLX instruction is an ARM mode instruction.  The Windows on ARM target
      is limited to Thumb instructions.  Correctly use the thumb mode tBLXr
      instruction.  This would manifest as an errant write into the object file as the
      instruction is 4-bytes in length rather than 2.  The result would be a corrupted
      object file that would eventually result in an executable that would crash at
      runtime.
      
      llvm-svn: 208152
      acd0338c
  14. May 06, 2014
    • Joerg Sonnenberger's avatar
      If a function needs a frame pointer, but r11 (aka fp) has not been used, · 818e7251
      Joerg Sonnenberger authored
      remove it from the list of unspilled registers. Otherwise the following
      attempt to keep the stack aligned by picking an extra GPR register to
      spill will not work as it picks up r11.
      
      llvm-svn: 208129
      818e7251
    • Renato Golin's avatar
      Implememting named register intrinsics · c7aea40e
      Renato Golin authored
      This patch implements the infrastructure to use named register constructs in
      programs that need access to specific registers (bare metal, kernels, etc).
      
      So far, only the stack pointer is supported as a technology preview, but as it
      is, the intrinsic can already support all non-allocatable registers from any
      architecture.
      
      llvm-svn: 208104
      c7aea40e
  15. May 05, 2014
Loading