Would it be difficult to add support for broadcasted indexing? For example, accessing arrays/tuples of arrays ```julia function foo(x) @avx for i = 1:length(first(x)) x_i = getindex.(x,i) end end ``` using @avx gives an `Expression not recognized` error.