<div dir="ltr">Hello Sam,<div><br></div><div>Can I get some information from you?  Do you have any other overloads in your recursive AST visitor besides the DeclRefExpr overload?  And what version of Clang are you using?  It is possible that this may already be fixed in a newer version.</div>
<div><br></div><div>Richard</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Oct 18, 2013 at 6:56 AM, Sam Parker <span dir="ltr"><<a href="mailto:S.Parker3@lboro.ac.uk" target="_blank">S.Parker3@lboro.ac.uk</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I'm playing with a recursive AST, and I want to visit all the DeclRefExprs and record them. I have been able to do this successfully, by overloading VisitDeclRefExpr, except for this section:<br>
<br>
bool isValid = IN_RANGE(tx, validXmin, validXmax);<br>
<br>
if (isValid)<br>
    validBuffer[get_global_id(0)] = true;<br>
<br>
Where the AST looks like this:<br>
<br>
(DeclStmt 0x5003680 <line:67:2, col:51><br>
    (0x5003410 "bool isValid =<br>
      (ParenExpr 0x5003660 <line:1:31, col:56> '_Bool'<br>
        (BinaryOperator 0x5003638 <col:32, col:55> '_Bool' '&&'<br>
          (BinaryOperator 0x5003528 <col:32, col:41> '_Bool' '>='<br>
            (ImplicitCastExpr 0x50034f8 <col:32, col:34> 'int' <LValueToRValue><br>
              (ParenExpr 0x5003490 <col:32, col:34> 'int' lvalue<br>
                (DeclRefExpr 0x5003468 <line:67:26> 'int' lvalue Var 0x5002000 'tx' 'int')))<br>
            (ImplicitCastExpr 0x5003510 <line:1:37, col:41> 'int' <LValueToRValue><br>
              (ParenExpr 0x50034d8 <col:37, col:41> 'int' lvalue<br>
                (DeclRefExpr 0x50034b0 <line:67:30> 'int' lvalue Var 0x5002860 'validXmin' 'int'))))<br>
          (BinaryOperator 0x5003610 <line:1:46, col:55> '_Bool' '<='<br>
            (ImplicitCastExpr 0x50035e0 <col:46, col:48> 'int' <LValueToRValue><br>
              (ParenExpr 0x5003578 <col:46, col:48> 'int' lvalue<br>
                (DeclRefExpr 0x5003550 <line:67:26> 'int' lvalue Var 0x5002000 'tx' 'int')))<br>
            (ImplicitCastExpr 0x50035f8 <line:1:51, col:55> 'int' <LValueToRValue><br>
              (ParenExpr 0x50035c0 <col:51, col:55> 'int' lvalue<br>
                (DeclRefExpr 0x5003598 <line:67:41> 'int' lvalue Var 0x5002a40 'validXmax' 'int'))))))"))<br>
  (IfStmt 0x5003868 <line:69:2, line:70:35><br>
    (<<<NULL>>>)<br>
    (ImplicitCastExpr 0x50036c0 <line:69:6> '_Bool' <LValueToRValue><br>
      (DeclRefExpr 0x5003698 <col:6> '_Bool' lvalue Var 0x5003410 'isValid' '_Bool'))<br>
    (BinaryOperator 0x5003840 <line:70:3, col:35> '_Bool' lvalue '='<br>
      (ArraySubscriptExpr 0x5003800 <col:3, col:31> '_Bool' lvalue<br>
        (ImplicitCastExpr 0x50037e8 <col:3> '_Bool *' <LValueToRValue><br>
          (DeclRefExpr 0x50036d8 <col:3> '_Bool *' lvalue ParmVar 0x5001940 'validBuffer' '_Bool *'))<br>
        (CallExpr 0x50037b8 <col:15, col:30> 'int'<br>
          (ImplicitCastExpr 0x50037a0 <col:15> 'int (*)(int)' <FunctionToPointerDecay><br>
            (DeclRefExpr 0x5003778 <col:15> 'int (int)' lvalue Function 0x5000d90 'get_global_id' 'int (int)'))<br>
          (IntegerLiteral 0x5003758 <col:29> 'int' 0)))<br>
      (CXXBoolLiteralExpr 0x5003828 <col:35> '_Bool' true))<br>
    (<<<NULL>>>))<br>
<br>
My problem is that isValid in the if condition is not visited here. isValid is visited if i use a variable to store the result from get_global_id and use it to id the array, what is the reason for this?<br>
<br>
Many thanks,<br>
Sam<span class="HOEnZb"><font color="#888888"><br>
<br>
-- <br>
Sam Parker<br>
Research Student<br>
Electronic Systems Design Group<br>
School of Electronic and Systems Engineering<br>
Loughborough University<br>
UK<br>
<br>
______________________________<u></u>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/cfe-dev</a><br>
</font></span></blockquote></div><br></div>