<div dir="ltr">How did you get the CFG? There is a build option called setAlwaysAdd that you probably set before the CFG was built.<br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, 16 Mar 2020 at 17:13, Stefan Schulze Frielinghaus via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi all,<br>
<br>
Is there some way to iterate over a CFGBlock excluding subexpressions?<br>
<br>
Currently I iterate over a CFGBlock as e.g.<br>
<br>
   const CFGBlock *block;<br>
   /* ... */<br>
   for (const auto &I : *block) {<br>
     if (Optional<CFGStmt> S = I.getAs<CFGStmt>())<br>
       foo(const_cast<Stmt*>(S->getStmt()));<br>
   }<br>
<br>
where function foo *recursively* descends into statements.  This has the<br>
drawback that I visit some (sub)expressions twice: one time via the loop and<br>
another time by recursively descending into subexpressions via function foo.<br>
For example, a CFGBlock for a single statement e1=e2 looks as follows:<br>
<br>
   <begin>  (e2)  (e1)  (e1=e2)  <end><br>
<br>
Therefore, I would first call foo for e2, then for e1, and in the end for e1=e2<br>
where I would recursively call foo for e1 and e2 again. Although they have been<br>
visited previously.<br>
<br>
Maybe this is not the supposed way to iterate over a CFGBlock?<br>
<br>
Cheers,<br>
Stefan<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div>