1. 13 Nov, 2017 1 commit
    • Simon Guo's avatar
      core:ppc Fix 2 interleave logic errors in vsx_utils.hpp · 2610a47c
      Simon Guo authored
      When elements are 64 bits, the vec_st_interleave()/vec_ld_deinterleave()
      doesn't interleave 4 elements correctly.
      
      For vec_st_interleave(), following is saved into mem:
      	a0 b0 a1 b1 c0 d0 c1 d1
           -> we expected:
      	a0 b0 c0 d0 a1 b1 c1 d1
      
      for vec_ld_deinterleave(), following is loaded into a b c d for memory
      string { 1 2 3 4 5 6 7 8 }:
      	a: 1 3
      	b: 2 4
      	c: 5 7
      	d: 6 8
         -> we expected:
         	a: 1 5
      	b: 2 6
      	c: 3 7
      	d: 4 8
      
      This patch corrects this behavior.
      Signed-off-by: 's avatarSimon Guo <wei.guo.simon@gmail.com>
      2610a47c
  2. 12 Nov, 2017 1 commit
  3. 11 Nov, 2017 1 commit
  4. 10 Nov, 2017 4 commits
  5. 09 Nov, 2017 6 commits
  6. 08 Nov, 2017 8 commits
  7. 07 Nov, 2017 14 commits
  8. 06 Nov, 2017 1 commit
  9. 04 Nov, 2017 2 commits
  10. 03 Nov, 2017 2 commits