Skip to content
  1. Dec 12, 2014
    • Charlie Turner's avatar
      Emit Tag_ABI_FP_16bit_format build attribute. · 1a53996c
      Charlie Turner authored
      The __fp16 type is unconditionally exposed. Since -mfp16-format is not yet
      supported, there is not a user switch to change this behaviour. This build
      attribute should capture the default behaviour of the compiler, which is to
      expose the IEEE 754 version of __fp16.
      
      When -mfp16-format is emitted, that will be the way to control the value of
      this build attribute.
      
      Change-Id: I8a46641ff0fd2ef8ad0af5f482a6d1af2ac3f6b0
      llvm-svn: 224115
      1a53996c
    • Ekaterina Romanova's avatar
      A fix for PR21176. · 90ff20d8
      Ekaterina Romanova authored
       
      DW_OP_const <const> doesn't describe a constant value, but a value at a constant address. 
      The proper way to describe a constant value is DW_OP_constu <const>, DW_OP_stack_value. 
      Added DW_OP_stack_value to the stack. 
      
      Marked incorrect-variable-debugloc1.ll to xfail for PowerPC64, while the the failure (PR21881) 
      is being investigated. 
      
      llvm-svn: 224098
      90ff20d8
    • Steven Wu's avatar
      Fix another infinite loop in InstCombine · 881916de
      Steven Wu authored
      Summary:
      InstCombine infinite-loops for the testcase added
      It is because InstCombine is generating instructions that can be
      optimized by itself. Fix by not optimizing frem if the optimized
      type is the same as original type.
      rdar://problem/19150820
      
      Reviewers: majnemer
      
      Differential Revision: http://reviews.llvm.org/D6634
      
      llvm-svn: 224097
      881916de
    • Matt Arsenault's avatar
      R600: Fix min/max matching problems with unordered compares · 1e3a4ebc
      Matt Arsenault authored
      The returned operand needs to be permuted for the unordered
      compares. Also fix incorrectly producing fmin_legacy / fmax_legacy
      for f64, which don't exist.
      
      llvm-svn: 224094
      1e3a4ebc
    • Matt Arsenault's avatar
      R600/SI: Don't promote f32 select to i32 · 477b1782
      Matt Arsenault authored
      This is nice for the instruction patterns, but it complicates
      min / max matching. The select doesn't have the correct type and would
      require looking through the bitcasts for the real float operands.
      
      llvm-svn: 224092
      477b1782
    • Matt Arsenault's avatar
      Add target hook for whether it is profitable to reduce load widths · 810cb629
      Matt Arsenault authored
      Add an option to disable optimization to shrink truncated larger type
      loads to smaller type loads. On SI this prevents using scalar load
      instructions in some cases, since there are no scalar extloads.
      
      llvm-svn: 224084
      810cb629
    • Duncan P. N. Exon Smith's avatar
      Bitcode: Use unsigned char to record MDStrings · eca1e031
      Duncan P. N. Exon Smith authored
      `MDString`s can have arbitrary characters in them.  Prevent an assertion
      that fired in `BitcodeWriter` because of sign extension by copying the
      characters into the record as `unsigned char`s.
      
      Based on a patch by Keno Fischer; fixes PR21882.
      
      llvm-svn: 224077
      eca1e031
    • Ahmed Bougacha's avatar
      [X86] Add a temporary testcase for PR21876/r223996. · 79c79744
      Ahmed Bougacha authored
      llvm-svn: 224074
      79c79744
    • Duncan P. N. Exon Smith's avatar
      Bitcode: Add METADATA_NODE and METADATA_VALUE · 5c7006e0
      Duncan P. N. Exon Smith authored
      This reflects the typelessness of `Metadata` in the bitcode format,
      removing types from all metadata operands.
      
      `METADATA_VALUE` represents a `ValueAsMetadata`, and always has two
      fields: the type and the value.
      
      `METADATA_NODE` represents an `MDNode`, and unlike `METADATA_OLD_NODE`,
      doesn't store types.  It stores operands at their ID+1 so that `0` can
      reference `nullptr` operands.
      
      Part of PR21532.
      
      llvm-svn: 224073
      5c7006e0
  2. Dec 11, 2014
  3. Dec 10, 2014
Loading