<div dir="ltr">Use ASTContext factory methods (getFunctionType, etc) to produce new type objects. It will own the memory for them and structurally unique them, so that there will only be one type for "const double".</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Oct 12, 2020 at 1:27 PM Ray Zhang 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"><div dir="ltr"><div>Hi,</div><div><br></div><div>In writing tests for a clang tool, I couldn't find a way to compare a QualType parsed from the AST with a programmatically defined (not parsed from the AST) QualType. In particular, I find it hard to create a QualType from scratch, since although QualType has a default constructor, Type subclasses don't have public constructors. This added flexibility will greatly reduce boilerplate code for my tests. How is this usually done?<br></div><div><br></div><div><div><b>Some context:</b><br></div><div><br></div><div>I'm currently writing some tests for a clang-cast tool that converts C-style casts to C++ style casts. I wanted to test a specific scenario where a reinterpret_cast should be followed by a const_cast, and we havey an intermediate type which doesn't have the necessary qualifiers. For example:</div><div><br></div><div>void f() {<br></div><div>    const int * const ptr;</div><div>    (double*) ptr;</div><div>    const_cast<double*>(reinterpret_cast<const double*>(ptr));</div><div>}<br></div><div><br></div><div>where the intermediate type above is const double* (it could also be const double* const, depending on where you want the implicit <a href="https://timsong-cpp.github.io/cppwp/n4140/conv#lval" target="_blank">lvalue-to-rvalue</a> conversion to happen). In any case, given the subexpression type (ptr), and the cast type (double*) as QualTypes, I wanted to say something along the lines of:</div><div><br></div><div>ASSERT_TRUE(ChangeQualifiers(CastType, SubExpressionType), QualType("const double*"));</div><div><br></div><div>Obviously, this doesn't exactly work because there is no such constructor for QualType. I can append a VarDecl statement into the above code to match a QualType:</div><div><br></div><div>    ...<br></div><div>    const double* ptr; // match the type here</div><div>}<br></div><div><br></div><div>I just want to make sure there's no better way to do this.<br></div><div><br></div><div><div>Best,</div><div>Ray</div></div></div></div>
_______________________________________________<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>