<div dir="ltr"><div><div><div>  Hello.<br></div>    I've managed to patch the various files from the back end related to lanemask - now I have 1024-bit long lanemask.<br>    But now I get the following error when giving make llc:<br>        <<error:unhandled vector type width in intrinsic!>><br>    This error comes from this file <a href="https://github.com/llvm-mirror/llvm/blob/master/utils/TableGen/IntrinsicEmitter.cpp">https://github.com/llvm-mirror/llvm/blob/master/utils/TableGen/IntrinsicEmitter.cpp</a>,  comes from the fact there is no IIT_V128 (nor IIT_V256), and they is a switch case using them in method static void EncodeFixedType(Record *R, std::vector<unsigned char> 
&ArgCodes, std::vector<unsigned char> &Sig).<br><br>    Is there any reason these <span class="gmail-pl-k">enum</span> IIT_Info ( IIT_V128, IIT_V256) are not added in file /IntrinsicEmitter.cpp?<br><br></div>  Thank you,<br></div>    Alex<br><div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Sep 13, 2016 at 1:47 AM, Matthias Braun <span dir="ltr"><<a href="mailto:mbraun@apple.com" target="_blank">mbraun@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
> On Sep 8, 2016, at 6:37 AM, Alex Susu via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
>  Hello.<br>
>    In my TableGen back end description I need to use more than 32 (e.g., 128, 1024, etc) subregisters per register for my research SIMD processor. I have used so far with success 32 subregisters.<br>
><br>
>    However, when using 128 subregisters when I now give the command:<br>
>      llvm-tblgen -gen-register-info Connex.td<br>
>     I get an error message "error:Ran out of lanemask bits to represent subregister sub_16_033".<br>
><br>
>    To handle this limitation, I started editing the files where this error comes from:<br>
>      llvm/utils/TableGen/<wbr>CodeGenRegisters.h<br>
>      llvm/utils/TableGen/<wbr>CodeGenRegisters.cpp<br>
>    More exactly, the error comes from the fact the member LaneMask of the classes CodeGenSubRegIndex and CodeGenRegister is unsigned (i.e., 32 bits). So for every lane/subregister we require a bit from the type LaneMask.<br>
>    I plan to use type long (or even type int1024_t from the boost library, header cpp_int.hpp) for LaneMask and change accordingly the methods handing the type.<br>
><br>
>    Is there are any limitation I am not aware of (maybe in LLVMV's register allocator) that would prevent me from using more than 32 lanes/subregisters?<br>
<br>
</span>There is no known limitation. I chose uint32_t out of concern for compiletime. Going up for uint64_t should be no problem, I'd be more concerned about bigger types; hopefully all code properly uses the LaneBitmask type instead of plain unsigned, you may need a few fixes in that area.<br>
(For history: We had a scheme in the past where the liveness tracking mapped all lanes after lane 31 to the bit 32, however that turned out to need special code in some places that turned out to be a constant source of bugs that typically only happened in big and hard to debug inputs so we moved away from this scheme).<br>
<span class="HOEnZb"><font color="#888888"><br>
- Matthias<br>
<br>
<br>
</font></span></blockquote></div><br></div>