Displaying 2 results from an estimated 2 matches for "diyp".
Did you mean:
disp
2014 Dec 19
2
[LLVMdev] question about the DIBuilder::createStructType
...; and the second one in the call for "name".
>
> As a general principle, when creating the DIType object for a given type,
> you must work from the bottom up (or recursively, from the top down)
> through the hierarchy of types which you are compiling : you must create
> the DIype for a type *before* you create the DItype for any other type
> which uses that type (e.g. as a member of a structure, or an element of an
> array, or the target type of a pointer type, etc.). Note that you can
> have cycles of type dependencies in your hierarchy; e.g. a struct S could...
2014 Dec 18
2
[LLVMdev] question about the DIBuilder::createStructType
Hello,
I'm using DIBuilder to create debugging information, I'm not clear about
two things:
[1] Could you help explain the meaning and the difference
between"alignment" and "offset" of a type ?
e.g class Actor{
int age;
const char* name;
}
Besides, I found the denotation of createMemberType and createStructType
both have "Member