[llvm-dev] Building aggregate types with dynamically sized elements

David Chisnall via llvm-dev llvm-dev at lists.llvm.org
Fri Jul 14 01:26:40 PDT 2017


On 14 Jul 2017, at 09:12, Christer Swahn via llvm-dev <llvm-dev at lists.llvm.org> wrote:
> 
> I'm looking into ways to represent complex aggregate types whose members and/or sub-members may be dynamically sized. This would conceptually correspond to a C struct containing other structs and arrays, and some of those arrays would have a length that is not known in compile time.

Note: C does not support this.  GCC has an extension (variable length arrays in structs), but clang doesn’t support it and it’s a terrible idea.

> LLVM IR allows me to do this for a top-level array (using 0 as its LLVM data type length and manually computing its needed allocation size). 
> 
> As far as I understand, if I want to represent structs containing dynamic arrays containing structs and so on, I will have to roll my own data size computation, element pointer computation and so on. This however seems to be a significant risk to portability and alignment handling.
> 
> Does anyone here have any experience with similar use cases, or any advice on how to handle this?

You will have to do this manually, via pointer casts of the results of GEPs.

David



More information about the llvm-dev mailing list