<div dir="ltr">Hello everyone. I'll tell you my goal then my question. In pseudo code I'd like to do the following<br><br>  values = lookup_table[offsets]<br><br>offsets is `<8 x i8>` which I get by doing `and <8 x i8> %a, %b`<br>lookup_table is simply a 16 byte constant array of i8 aligned to 16.<br>values would be `<8 x i8>` which I'll use with another vector operation<br><br>I was thinking I might need an array of pointers but I looked at getelementptr for a solution. It appears it can use it <a href="https://llvm.org/docs/LangRef.html#vector-of-pointers">https://llvm.org/docs/LangRef.html#vector-of-pointers</a><br>Specifically the following line<br><br> %A = getelementptr i8, i8* %ptr, <4 x i64> %offsets<br><br>However it doesn't show how I should load %A but mentions gather (I don't need a mask or pass through values). I looked at 'load' and it doesn't appear to support a vector. Is there anything else I can use that may be more efficient? If llvm.masked.gather is the way to go do I want the mask all 1's or 0's? I heard of masked-off bit being different things to different people but my first impression is I want all 0's<br><br></div>