search for: leaf10

Displaying 3 results from an estimated 3 matches for "leaf10".

Did you mean: leaf11
2018 Jul 23
2
LLVM FunctionType cannot be returned as VectorType?
..._extract_epi64(result, 3); //////////////////////////////////////////////////////////// /////////////////////////////// I can retrieve the returned value using the following IR define <4 x i64> @tpchq6(<4 x i64> %leaf7, <4 x i64> %leaf8, <4 x i64> %leaf9, <4 x i64> %leaf10, <4 x i64> %leaf11, <4 x i64> %leaf12, <4 x i64> %leaf13, <4 x i64> %leaf14) #0 { entry: ret <4 x i64> <i64 5, i64 6, i64 7, i64 8> } //////////////////////////////////////////////////////////// /////////////////////////////// I cannot retrieve the returned va...
2018 Jul 23
2
LLVM FunctionType cannot be returned as VectorType?
...vecArguments, false); //////////////////////////////////////////////////////////// /////////////////////////////// The generated IR: define <4 x i64> @tpchq6(<4 x i64> %leaf7, <4 x i64> %leaf8, <4 x i64> %leaf9, <4 x i64> %leaf10, <4 x i64> %leaf11, <4 x i64> %leaf12, <4 x i64> %leaf13, <4 x i64> %leaf14) #0 { entry: %addtmp = add <4 x i64> %leaf8, %leaf7 %addtmp1 = add <4 x i64> %addtmp, %leaf9 %addtmp4 = add <4 x i64> %addtmp1, %leaf10 %addtmp2 = add <4 x i64> %addtm...
2018 Jul 20
2
LLVM FunctionType cannot be returned as VectorType?
...I can successfully use this way to produce the IR of my function properly like this: /////////////////////////////////////////////////////////////////////////////////////////// define <4 x i64> @tpchq6(<4 x i64> %leaf7, <4 x i64> %leaf8, <4 x i64> %leaf9, <4 x i64> %leaf10, <4 x i64> %leaf11, <4 x i64> %leaf12, <4 x i64> %leaf13, <4 x i64> %leaf14) { entry: %addtmp = add <4 x i64> %leaf14, %leaf13 %leaf8.neg = sub <4 x i64> zeroinitializer, %leaf8 %xortmp = xor <4 x i64> %addtmp, %leaf11 %addtmp1 = add <4 x i6...