[LLVMdev] Crash in SLP for vector data type as function argument.

Suyog Kamal Sarda suyog.sarda at samsung.com
Mon Jan 5 04:09:52 PST 2015


Hi all,

Came across a crash in SLP vectorization while testing following code for AArch64 :

int foo(uint32x4_t a) {
 return a[0] + a[1] + a[2] + a[3];
}

The LLVM IR for above code will be:

define i32 @hadd(<4 x i32> %a) {
entry:
  %vecext = extractelement <4 x i32> %a, i32 0
  %vecext1 = extractelement <4 x i32> %a, i32 1
  %add = add i32 %vecext, %vecext1
  %vecext2 = extractelement <4 x i32> %a, i32 2
  %add3 = add i32 %add, %vecext2
  %vecext4 = extractelement <4 x i32> %a, i32 3
  %add5 = add i32 %add3, %vecext4
  ret i32 %add5
}

I somehow try to recognize this pattern and try to vectorize it using existing code for horizontal reductions
(I just recognize the pattern and fill up the data, rest is done by already existing code. 
I do pattern matching very badly though, but that's a different story).


Please note that whatever follows is with existing code, I haven't modified any bit of it.

Now, once the pattern is recognized, we call "trytoReduce()" where we try to vectorize tree by function call
"vectorizeTree()" which returns root of the vectorized tree. Then we emit the reduction using call "emitRedcution()"
which takes the root of the vector tree as argument. Inside "emitReduction()", we cast root of the tree into an instruction.

Now, for above case, while setting the root of the vectorized tree, extractelement instruction is encountered, and its 0th operand
is set as the root of the tree, which in above case is "%a". However, this is not an instruction and hence, when we cast it into an
instruction in "emitReduction()" code, it returns nullptr which causes a crash ahead when referencing it. 

Take a second case where the vector data type is in global scope.

unint32x4_t a;
int foo() {
 return a[0] + a[1] + a[2] + a[3];
}

The IR for above code is:

@a = common global <4 x i32> zeroinitializer, align 16

define i32 @hadd() #0 {
entry:
  %0 = load <4 x i32>* @a, align 16, !tbaa !1
  %vecext = extractelement <4 x i32> %0, i32 0
  %vecext1 = extractelement <4 x i32> %0, i32 1
  %add = add i32 %vecext, %vecext1
  %vecext2 = extractelement <4 x i32> %0, i32 2
  %add3 = add i32 %add, %vecext2
  %vecext4 = extractelement <4 x i32> %0, i32 3
  %add5 = add i32 %add3, %vecext4
  ret i32 %add5
}

Now in above case, 0th operand of extractelement %0 is a load instruction, and hence it doesn't crash 
while casting into an instruction and runs smoothly further.

Can someone please suggest how to resolve this? Is there something I am missing or is it a basic problem 
with IR itself ?

Regards,
Suyog 
 




More information about the llvm-dev mailing list