<div>In my compiler, the multiple passes for resolving type names is done first, using high-level type classes, before any LLVM IR is involved. The high level classes are needed anyway since the LLVM type model does not capture concepts such as const, up-casting, and other aspects of high-level types. (Actually, I don't have discrete passes, what I have is a work-queue of symbols to be processed and analysis tasks to be performed on those symbols, with the ability to perform certain analysis tasks "just in time" if needed by other tasks. My friend jokingly refers to this as the "breadth-first compiler". However, that level of complexity is only required if you are doing things like type inference.)</div>

<div><br></div><div>Only when the types are fully resolved do I convert to LLVM types. This only requires a single pass:</div><div><br></div><div>   for each type:</div><div>      if the type has not yet been constructed:</div>

<div>         set the 'under construction' bit for that type.</div><div>         create an opaque type as a placeholder</div><div>         for each member type (recursively) construct the type</div><div>             (using the member type's placeholder if the member type is still under construction.)</div>

<div>         create the type from the member types.</div><div>         clear the 'under construction' bit.</div><div>         replace the placeholder with the constructed type.</div><div><br></div><div class="gmail_quote">

On Wed, Jan 6, 2010 at 5:20 AM, James Williams <span dir="ltr"><<a href="mailto:junk@giantblob.com">junk@giantblob.com</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've followed the instructions on constructing recursive types (<a href="http://llvm.org/docs/ProgrammersManual.html#BuildRecType" target="_blank">http://llvm.org/docs/ProgrammersManual.html#BuildRecType</a>) and I can succesfully create simple recursive types using the C bindings (e.g. struct Test { struct Test *t };). I want to generalize this to get type information from my language into generated LLVM code. My language allows arbitrary forward type declarations that I resolve using two passes - first all type names are entered into the symbol table in turn and then all type structures are built in turn with references to other types being resolved from the symbol table.<br>


<br>To make this work with LLVM I plan to:<br><br>- in the first type resolution pass, for every structured type in the compiled source create a type handle referencing an opaque type with LLVMCreateTypeHandle(LLVMCreateOpaqueType() and store it in the type's symbol table entry<br>


- in the second type resolution pass, create an LLVM structured type for every structured type in the program. The element types for any referenced types will be those types' opaque types<br>- in a third pass, for every structured type in the program, resolve its opaque type to its structured type with LLVMRefineType <br>


<br>Will I have a problem with TypeRefs becoming invalid underneath me as I repeatedly call LLVMRefineType in the third pass? If so how can I construct a web of mutually recursive types - is there some kind of atomic LLVMRefineType alternative that can refine the whole lot in one go?<br>


<br>I'd be grateful for any advice,<br><font color="#888888">-- James Williams<br>
</font><br>_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>-- Talin<br>