[cfe-dev] [RFC] Proposing an Extended Integer Type

Chris Lattner via cfe-dev cfe-dev at lists.llvm.org
Wed Feb 5 15:35:48 PST 2020



> On Feb 5, 2020, at 7:23 AM, Keane, Erich <erich.keane at intel.com> wrote:
> 
>  
> >The first case seems unfortunate/inconsistent -- are you sure it's necessary to do that? When dealing with temporary values in an expression, LLVM should be able to determine that most of the bits aren't useful, and optimize based upon that. I'd expect that to be generally sufficient for handling the usual-int-promotion temporary values inside of an expression.
>  
> We found that it wasn’t the case in many cases (particularly in compound cases where intermediate values get large), which is incredibly expensive on some platforms.  Additionally, it heavily discourages the use of ‘auto’, which is otherwise incredibly useful for these types.
>  

C’s promotion rules are unfortunate for almost everything :-).  

I think there are two reasonable paths here:

1) Go for consistency with C and do the promotions, relying on the optimizer to trim them out.  You’ll want a suite of narrowing optimizations in any case.

2) Go for strict equivalent with no promotion rules, requiring everything to be explicit.

I agree with you that promotions are extremely extensive for FPGAs and the entire point of using this extension is to control widths.  If so, I think that argues for approach #2, which means that “int7 + int8” should be a compile time error, and that “int8” should be semantically different (but explicitly convertible) to other types like char that happen to have the same width.

WDYT?

-Chris

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-dev/attachments/20200205/f7061d2d/attachment.html>


More information about the cfe-dev mailing list