[cfe-dev] Do we intentionally 'transform' non-dependent expressions?

Keane, Erich via cfe-dev cfe-dev at lists.llvm.org
Fri Sep 20 09:39:31 PDT 2019


> It is necessary in some cases (including this one): we need to rewrite the reference to 'v' to refer to the instantiated variable rather than the variable in the template.

I see, thank you. Then this was the wrong path here.  I can see how that would break in the case of magic-statics in a template.

It seems here then that the solution is more AtomicExpr specific than this.  The solution in CodeGen is actually quite trivial (change a getPointeeType to a getPointeeOrArrayElementType), but it seems to me the problem should be solved way before then (somewhere in Sema to properly get the AST).

Thanks!
-Erich

From: Richard Smith <richard at metafoo.co.uk>
Sent: Friday, September 20, 2019 9:32 AM
To: Keane, Erich <erich.keane at intel.com>
Cc: Clang Dev <cfe-dev at lists.llvm.org>
Subject: Re: [cfe-dev] Do we intentionally 'transform' non-dependent expressions?

On Fri, 20 Sep 2019, 10:14 Keane, Erich via cfe-dev, <cfe-dev at lists.llvm.org<mailto:cfe-dev at lists.llvm.org>> wrote:
I decided to investigate https://bugs.llvm.org/show_bug.cgi?id=43370

First, this code is in a dependent context (but is not dependent itself):
uint64_t v[2];
    __atomic_store_n(v, 0, 0);

The function template declaration in the AST shows the first parameter as having an ArrayToPointerDecay implicit cast.

However, the AtomicExpr transform calls “TransformExpr” on this, which then strips off all implicit casts. The expression then is NOT checked later, since it was already checked the first time.  If the expression is dependent, it gets properly checked, and the cast is added back in.

It seems to me that transforming a dependent expression should be unnecessary at best, and a risk of crashing at worst (due to running out of Transform stack space).  SO, I put a test in the beginning of TransformExpr to just return the expr.
It is necessary in some cases (including this one): we need to rewrite the reference to 'v' to refer to the instantiated variable rather than the variable in the template.
However, check-clang resulted in 600+ test failures.  I evaluated a couple, and all seem to be because they are re-checking a statement that doesn’t need to be (since it isn’t dependent!).  There is unfortunately no good way it seems to determine whether a Stmt is dependent, so I can’t find anything to put into TransformStmt to skip like before.  So, I think I will have to manage these tests 1 by 1.

Before I deep-dive into this, I’d like to hear whether I’m missing something obvious and would just be wasting my time?  Does anyone know whether there is a good reason to still transform non-dependent expressions?

Thanks,
Erich

_______________________________________________
cfe-dev mailing list
cfe-dev at lists.llvm.org<mailto:cfe-dev at lists.llvm.org>
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-dev/attachments/20190920/871db1e6/attachment.html>


More information about the cfe-dev mailing list