Skip to content
  1. Jan 30, 2012
  2. Jan 28, 2012
  3. Jan 27, 2012
  4. Jan 26, 2012
    • Jakob Stoklund Olesen's avatar
      Handle call-clobbered ymm registers on Win64. · fc9dce25
      Jakob Stoklund Olesen authored
      The Win64 calling convention has xmm6-15 as callee-saved while still
      clobbering all ymm registers.
      
      Add a YMM_HI_6_15 pseudo-register that aliases the clobbered part of the
      ymm registers, and mark that as call-clobbered.  This allows live xmm
      registers across calls.
      
      This hack wouldn't be necessary with RegisterMask operands representing
      the call clobbers, but they are not quite operational yet.
      
      llvm-svn: 149088
      fc9dce25
    • Chad Rosier's avatar
      Replace the use of isPredicable() with isPredicated() in · 1a1531d6
      Chad Rosier authored
      MachineBasicBlock::canFallThrough().  We're interested in the state of the
      instruction (i.e., is this a barrier or not?), not if the instruction is
      predicable or not.
      rdar://10501092
      
      llvm-svn: 149070
      1a1531d6
    • Jakob Stoklund Olesen's avatar
      Clear kill flags before propagating a copy. · 8c139a51
      Jakob Stoklund Olesen authored
      The live range of the source register may be extended when a redundant
      copy is eliminated. Make sure any kill flags between the two copies are
      cleared.
      
      This fixes PR11765.
      
      llvm-svn: 149069
      8c139a51
    • James Molloy's avatar
      Add support for the R_ARM_TARGET1 relocation, which should be given to... · 6685c08e
      James Molloy authored
      Add support for the R_ARM_TARGET1 relocation, which should be given to relocations applied to all C++ constructors and destructors.
      
      This enables the linker to match concrete relocation types (absolute or relative) with whatever library or C++ support code is being linked against.
      
      llvm-svn: 149057
      6685c08e
    • Victor Umansky's avatar
      Fix for the following bug in AVX codegen for double-to-int conversions: · 5f29b0e5
      Victor Umansky authored
      .	"fptosi" and "fptoui" IR instructions are defined with round-to-zero rounding mode.
      .	Currently for AVX mode for <4xdouble> and <8xdouble>  the "VCVTPD2DQ.128" and "VCVTPD2DQ.256" instructions are selected (for .fp_to_sint. DAG node operation ) by AVX codegen. However they use round-to-nearest-even rounding mode.
      .	Consequently, the conversion produces incorrect numbers.
       
      The fix is to replace selection of VCVTPD2DQ instructions with VCVTTPD2DQ instructions. The latter use truncate (i.e. round-to-zero) rounding mode. 
      As .fp_to_sint. DAG node operation is used only for lowering of  "fptosi" and "fptoui" IR instructions, the fix in X86InstrSSE.td definition file doesn.t have an impact on other LLVM flows.
       
      The patch includes changes in the .td file, LIT test for the changes and a fix in a legacy LIT test (which produced asm code conflicting with LLVN IR spec). 
      
      llvm-svn: 149056
      5f29b0e5
    • Jakob Stoklund Olesen's avatar
      Improve sub-register def handling in ProcessImplicitDefs. · 4864a81a
      Jakob Stoklund Olesen authored
      This boils down to using MachineOperand::readsReg() more.
      
      This fixes PR11829 where a use ended up after the first def when
      lowering REG_SEQUENCE instructions involving IMPLICIT_DEFs.
      
      llvm-svn: 148996
      4864a81a
  5. Jan 25, 2012
  6. Jan 24, 2012
Loading