Skip to content
  1. Oct 10, 2012
    • NAKAMURA Takumi's avatar
      [CMake] check-all: Don't include check-llvm into check-all without LLVM_BUILD_TOOLS. · 02a0ac4a
      NAKAMURA Takumi authored
      FIXME: Would you like to run llvm/unittests w/o LLVM_BUILD_TESTS regardless of LLVM_BUILD_TOOLS?
      llvm-svn: 165619
      02a0ac4a
    • Stepan Dyatkovskiy's avatar
      Fix for LDRB instruction: · 283baa00
      Stepan Dyatkovskiy authored
      SDNode for LDRB_POST_IMM is invalid: number of registers added to SDNode fewer
      that described in .td.
      
      7 ops is needed, but SDNode with only 6 is created.
      
      In more details:
      In ARMInstrInfo.td, in multiclass AI2_ldridx, in definition _POST_IMM, offset
      operand is defined as am2offset_imm. am2offset_imm is complex parameter type,
      and actually it consists from dummy register and imm itself. As I understood
      trick with dummy reg was made for AsmParser. In ARMISelLowering.cpp, this dummy
      register was not added to SDNode, and it cause crash in Peephole Optimizer pass.
      
      The problem fixed by setting up additional dummy reg when emitting
      LDRB_POST_IMM instruction.
      
      llvm-svn: 165617
      283baa00
    • Stepan Dyatkovskiy's avatar
      Issue description: · f13dbb8e
      Stepan Dyatkovskiy authored
      SchedulerDAGInstrs::buildSchedGraph ignores dependencies between FixedStack
      objects and byval parameters. So loading byval parameters from stack may be
      inserted *before* it will be stored, since these operations are treated as
      independent.
      
      Fix:
      Currently ARMTargetLowering::LowerFormalArguments saves byval registers with
      FixedStack MachinePointerInfo. To fix the problem we need to store byval
      registers with MachinePointerInfo referenced to first the "byval" parameter.
      
      Also commit adds two new fields to the InputArg structure: Function's argument
      index and InputArg's part offset in bytes relative to the start position of
      Function's argument. E.g.: If function's argument is 128 bit width and it was
      splitted onto 32 bit regs, then we got 4 InputArg structs with same arg index,
      but different offset values. 
      
      llvm-svn: 165616
      f13dbb8e
    • Craig Topper's avatar
      Test case for r165480. · 38b25bab
      Craig Topper authored
      llvm-svn: 165594
      38b25bab
    • Akira Hatanaka's avatar
      Implement MipsTargetLowering::CanLowerReturn. · 9c8dcfc7
      Akira Hatanaka authored
      Patch by Sasa Stankovic. 
      
      llvm-svn: 165585
      9c8dcfc7
    • Evan Cheng's avatar
    • Jack Carter's avatar
      Initial assembler implementation of Mips load address macro · 543fdf85
      Jack Carter authored
      This patch provides initial implementation of load address 
      macro instruction for Mips. We have implemented two kinds 
      of expansions with their variations depending on the size 
      of immediate operand:
      
       1) load address with immediate value directly:
          * la d,j => addiu d,$zero,j   (for -32768 <= j <= 65535)
          * la d,j => lui d,hi16(j)
                      ori d,d,lo16(j)   (for any other 32 bit value of j)
      
       2) load load address with register offset value
          * la d,j(s) => addiu d,s,j     (for -32768 <= j <= 65535)
          * la d,j(s) => lui d,hi16(j)   (for any other 32 bit value of j)
                         ori d,d,lo16(j)
                         addu d,d,s
      
      This patch does not cover the case when the address is loaded 
      from the value of the label or function.
      
      Contributer: Vladimir Medic
      llvm-svn: 165561
      543fdf85
  2. Oct 09, 2012
  3. Oct 08, 2012
    • Adhemerval Zanella's avatar
      PR12716: PPC crashes on vector compare · fe3f793c
      Adhemerval Zanella authored
      Vector compare using altivec 'vcmpxxx' instructions have as third argument
      a vector register instead of CR one, different from integer and float-point
      compares. This leads to a failure in code generation, where 'SelectSETCC'
      expects a DAG with a CR register and gets vector register instead.
      
      This patch changes the behavior by just returning a DAG with the 
      vector compare instruction based on the type. The patch also adds a testcase
      for all vector types llvm defines.
      
      It also included a fix on signed 5-bits predicates printing, where
      signed values were not handled correctly as signed (char are unsigned by
      default for PowerPC). This generates 'vspltisw' (vector splat)
      instruction with SIM out of range.
      
      llvm-svn: 165419
      fe3f793c
    • Adhemerval Zanella's avatar
      Add floating-point to and from integer conversion · 5c6e0843
      Adhemerval Zanella authored
      This patch add altivec support for v4i32 to v4f32 and for v4f32 to
      v4i32 vector rounding conversion.
      
      llvm-svn: 165409
      5c6e0843
    • Micah Villmow's avatar
      Move TargetData to DataLayout. · 9cfc13d4
      Micah Villmow authored
      llvm-svn: 165403
      9cfc13d4
    • James Molloy's avatar
      Some regression tests which are testing the old jit and are exercising... · 0ae35af5
      James Molloy authored
      Some regression tests which are testing the old jit and are exercising functionality which is both known to be broken and not expected to be fixed in the old jit. To remove these from the regression test output, I've marked them XFAIL (for lit tests) and ifdef'd them out (unit tests). These modifications remove the last long-standing regression test failures from the buildbots (though updating the triple to reflect new ubuntu configuration has temporarily caused some new failures). Tested on x86-64 and ARM Linux.
      
      Patch by David Tweed!
      
      llvm-svn: 165390
      0ae35af5
  4. Oct 07, 2012
  5. Oct 06, 2012
  6. Oct 05, 2012
  7. Oct 04, 2012
    • Jim Grosbach's avatar
      ARM: locate user-defined text sections next to default text. · 330840ff
      Jim Grosbach authored
      Make sure functions located in user specified text sections (via the
      section attribute) are located together with the default text sections.
      Otherwise, for large object files, the relocations for call instructions
      are more likely to be out of range. This becomes even more likely in the
      presence of LTO.
      
      rdar://12402636
      
      llvm-svn: 165254
      330840ff
    • Eric Christopher's avatar
      Update this a bit more to represent how the prologue should work: · 13319578
      Eric Christopher authored
      a) frame setup instructions define the prologue
      b) we shouldn't change our location mid-stream
      
      Add a test to make sure that the stack adjustment stays within
      the prologue.
      
      llvm-svn: 165250
      13319578
    • Benjamin Kramer's avatar
      SimplifyCFG: Enhance the "remove CFG edge that leads to null pointer... · d12e82e5
      Benjamin Kramer authored
      SimplifyCFG: Enhance the "remove CFG edge that leads to null pointer dereference" optimization to also handle instructions with multiple uses.
      
      We conservatively only check the first use to avoid walking long use chains.
      This catches the common case of having both a load and a store to a pointer
      supplied by a PHI node.
      
      llvm-svn: 165232
      d12e82e5
    • Duncan Sands's avatar
      In my recent change to avoid use of underaligned memory I didn't notice that · a6d20010
      Duncan Sands authored
      cpyDest can be mutated in some cases, which would then cause a crash later if
      indeed the memory was underaligned.  This brought down several buildbots, so
      I guess the underaligned case is much more common than I thought!
      
      llvm-svn: 165228
      a6d20010
    • Duncan Sands's avatar
      The alignment of an sret parameter is known: it must be at least the · 271ea6cd
      Duncan Sands authored
      alignment of the return type.  Teach the optimizers this.
      
      llvm-svn: 165226
      271ea6cd
    • Chandler Carruth's avatar
      Fix PR13969, a mini-phase-ordering issue with the new SROA pass. · ac8317fd
      Chandler Carruth authored
      Currently, we re-visit allocas when something changes about the way they
      might be *split* to allow better scalarization to take place. However,
      we weren't handling the case when the *promotion* is what would change
      the behavior of SROA. When an address derived from an alloca is stored
      into another alloca, we consider the first to have escaped. If the
      second is ever promoted to an SSA value, we will suddenly be able to run
      the SROA pass on the first alloca.
      
      This patch adds explicit support for this form if iteration. When we
      detect a store of a pointer derived from an alloca, we flag the
      underlying alloca for reprocessing after promotion. The logic works hard
      to only do this when there is definitely going to be promotion and it
      might remove impediments to the analysis of the alloca.
      
      Thanks to Nick for the great test case and Benjamin for some sanity
      check review.
      
      llvm-svn: 165223
      ac8317fd
    • Duncan Sands's avatar
      The memcpy optimizer was happily doing call slot forwarding when the new memory · c6ada69a
      Duncan Sands authored
      was less aligned than the old.  In the testcase this results in an overaligned
      memset: the memset alignment was correct for the original memory but is too much
      for the new memory.  Fix this by either increasing the alignment of the new
      memory or bailing out if that isn't possible.  Should fix the gcc-4.7 self-host
      buildbot failure.
      
      llvm-svn: 165220
      c6ada69a
    • Chandler Carruth's avatar
      Teach the integer-promotion rewrite strategy to be endianness aware. · 43c8b46d
      Chandler Carruth authored
      Sorry for this being broken so long. =/
      
      As part of this, switch all of the existing tests to be Little Endian,
      which is the behavior I was asserting in them anyways! Add in a new
      big-endian test that checks the interesting behavior there.
      
      Another part of this is to tighten the rules abotu when we perform the
      full-integer promotion. This logic now rejects cases where there fully
      promoted integer is a non-multiple-of-8 bitwidth or cases where the
      loads or stores touch bits which are in the allocated space of the
      alloca but are not loaded or stored when accessing the integer. Sadly,
      these aren't really observable today as the rest of the pass will
      already ensure the invariants hold. However, the latter situation is
      likely to become a potential concern in the future.
      
      Thanks to Benjamin and Duncan for early review of this patch. I'm still
      looking into whether there are further endianness issues, please let me
      know if anyone sees BE failures persisting past this.
      
      llvm-svn: 165219
      43c8b46d
    • Jack Carter's avatar
      Implement methods that enable expansion of load immediate · 30a5982e
      Jack Carter authored
      macro instruction (li) in the assembler.
      
      We have identified three possible expansions depending on 
      the size of immediate operand:
        1) for 0 ≤ j ≤ 65535.
           li d,j =>
           ori d,$zero,j
      
        2) for −32768 ≤ j < 0.
           li d,j =>
           addiu d,$zero,j
      
        3) for any other value of j that is representable as a 32-bit integer.
           li d,j =>
           lui d,hi16(j)
           ori d,d,lo16(j)
      
      All of the above have been implemented in ths patch.
      
      Contributer: Vladimir Medic
      llvm-svn: 165199
      30a5982e
    • Jack Carter's avatar
      This patch is a partial implementation of mips .set assembler directive.... · 0b744b31
      Jack Carter authored
      This patch is a partial implementation of mips .set assembler directive. Directive is defined as follows:
      .set option
      The patch implements following options
      
          at - lets the assembler use the $at register for macros,
               but generates warnings if the source program uses $at
      
          noat - let source programs use $at without issuingwarnings.
      
          noreorder - prevents the assembler from reordering machine 
                      language instructions.
          nomacro - causes the assembler to print a warning whenever 
                    an assembler operation generates more than one 
                    machine language instruction.
          macro - lets the assembler generate multiple machine instructions 
                  from a single assembler instruction
          reorder - lets the assembler reorder machine language 
                     instructions to improve performance
      
      The above variants are parsed and their boolean values set or unset.
      The code to actually use them will come later.
      
      Following options are not implemented yet:
      
      nomips16
      nomicromips
      move
      nomove
      
      Contributer: Vladimir Medic
      llvm-svn: 165194
      0b744b31
    • Jakub Staszak's avatar
      Fix PR13967. · f8a81295
      Jakub Staszak authored
      llvm-svn: 165187
      f8a81295
    • Chad Rosier's avatar
      [ms-inline asm] Add support in the X86AsmPrinter for printing memory references · 271623f8
      Chad Rosier authored
      in the Intel syntax.
      
      The MC layer supports emitting in the Intel syntax, but this would require the
      inline assembly MachineInstr to be lowered to an MCInst before emission.  This
      is potential future work, but for now emitting directly from the MachineInstr
      suffices.
      
      llvm-svn: 165173
      271623f8
  8. Oct 03, 2012
Loading