Skip to content
  1. Nov 07, 2013
  2. Nov 06, 2013
  3. Nov 05, 2013
    • Andrew Trick's avatar
      Slightly change the way stackmap and patchpoint intrinsics are lowered. · 6664df12
      Andrew Trick authored
      MorphNodeTo is not safe to call during DAG building. It eagerly
      deletes dependent DAG nodes which invalidates the NodeMap. We could
      expose a safe interface for morphing nodes, but I don't think it's
      worth it. Just create a new MachineNode and replaceAllUsesWith.
      
      My understaning of the SD design has been that we want to support
      early target opcode selection. That isn't very well supported, but
      generally works. It seems reasonable to rely on this feature even if
      it isn't widely used.
      
      llvm-svn: 194102
      6664df12
    • Tim Northover's avatar
      ARM: permit bare dmb/dsb/isb aliases on Cortex-M0 · f02287db
      Tim Northover authored
      Cortex-M0 supports these 32-bit instructions despite being Thumb1 only
      (mostly). We knew about that but not that the aliases without the default "sy"
      operand were also permitted.
      
      llvm-svn: 194094
      f02287db
    • Jiangning Liu's avatar
      d7c52676
    • Michael Gottesman's avatar
      [objc-arc] Convert the one directional retain/release relation assert to a... · 24b2f6fd
      Michael Gottesman authored
      [objc-arc] Convert the one directional retain/release relation assert to a conditional check + fail.
      
      Due to the previously added overflow checks, we can have a retain/release
      relation that is one directional. This occurs specifically when we run into an
      additive overflow causing us to drop state in only one direction. If that
      occurs, we should bail and not optimize that retain/release instead of
      asserting.
      
      Apologies for the size of the testcase. It is necessary to cause the additive
      cfg overflow to trigger.
      
      rdar://15377890
      
      llvm-svn: 194083
      24b2f6fd
    • Alp Toker's avatar
      Provide a test input for opt · a2f1b8d2
      Alp Toker authored
      This was only working previously due to a quirk in the way lit
      concatenates script commands.
      
      llvm-svn: 194078
      a2f1b8d2
    • Peter Zotov's avatar
      [OCaml] (PR16318) Add missing argument to Llvm.const_intcast · 28f6876e
      Peter Zotov authored
      llvm-svn: 194065
      28f6876e
    • Peter Zotov's avatar
      [OCaml] (PR11717) Make declare_qualified_global respect address argument · ce7a91b2
      Peter Zotov authored
      Original patch by Jonathan Ragan-Kelley
      
      llvm-svn: 194064
      ce7a91b2
    • Reed Kotler's avatar
      Fix r194019 as requested by Eric Christopher. · 0f007fc4
      Reed Kotler authored
      Submit the basic port of the rest of ARM constant islands code to Mips. 
      Two test cases are added which reflect the next level of functionality:
      constants getting moved to water areas that are out of range from the
      initial placement at the end of the function and basic blocks being split to
      create water when none exists that can be used. There is a bunch of this
      code that is not complete and has been marked with IN_PROGRESS. I will
      finish cleaning this all up during the next week or two and submit the
      rest of the test cases. I have elminated some code for dealing with
      inline assembly because to me it unecessarily complicates things and
      some of the newer features of llvm like function attributies and builtin
      assembler give me better tools to solve the alignment issues created
      there. Also, for Mips16 I even have the option of not doing constant
      islands in the present of inline assembler if I chose. When everything
      has been completed I will summarize the port and notify people that
      are knowledgable regarding the ARM Constant Islands code so they can
      review it in it's entirety if they wish.
      
      llvm-svn: 194053
      0f007fc4
    • Hao Liu's avatar
      Implement AArch64 post-index vector load/store multiple N-element structure... · d6b40b51
      Hao Liu authored
      Implement AArch64 post-index vector load/store multiple N-element structure class SIMD(lselem-post).
      Including following 14 instructions:
      4 ld1 insts: post-index load multiple 1-element structure to sequential 1/2/3/4 registers.
      ld2/ld3/ld4: post-index load multiple N-element structure to sequential N registers (N=2,3,4).
      4 st1 insts: post-index store multiple 1-element structure from sequential 1/2/3/4 registers.
      st2/st3/st4: post-index store multiple N-element structure from sequential N registers (N = 2,3,4).
      
      llvm-svn: 194043
      d6b40b51
    • Kevin Qin's avatar
      Implemented aarch64 neon intrinsic vcopy_lane with float type. · 97f6aaa8
      Kevin Qin authored
      llvm-svn: 194041
      97f6aaa8
    • Yuchen Wu's avatar
      Revert "Added basic unit test for llvm-cov." · f3e653e9
      Yuchen Wu authored
      This reverts commit 9cacd131c22b888303cb88e9a3235b2d7b2f19a1.
      
      llvm-svn: 194039
      f3e653e9
    • Yuchen Wu's avatar
      Added basic unit test for llvm-cov. · 0b8e9a14
      Yuchen Wu authored
      This test compares the output of llvm-cov against a coverage file
      generated by gcov.
      
      llvm-svn: 194038
      0b8e9a14
    • NAKAMURA Takumi's avatar
      Revert r194019 to r194021, "Submit the basic port of the rest of ARM constant... · 5267613e
      NAKAMURA Takumi authored
      Revert r194019 to r194021, "Submit the basic port of the rest of ARM constant islands code to Mips."
      
      It broke -Asserts build.
      
      llvm-svn: 194026
      5267613e
    • Tim Northover's avatar
      AArch64: use default asm operand printing when modifier inapplicable · ace0bd4d
      Tim Northover authored
      If an inline assembly operand has multiple constraints (e.g. "Ir" for immediate
      or register) and an operand modifier (E.g. "w" for "print register as wN") then
      we need to decide behaviour when the modifier doesn't apply to the constraint.
      
      Previousely produced some combination of an assertion failure and a fatal
      error. GCC's behaviour appears to be to ignore the modifier and print the
      operand in the default way. This patch should implement that.
      
      llvm-svn: 194024
      ace0bd4d
  4. Nov 04, 2013
  5. Nov 03, 2013
Loading