Displaying 4 results from an estimated 4 matches for "originaltyp".
Did you mean:
originaltype
2011 Feb 24
4
[LLVMdev] DIFactory interface is going away
...tion entries to encode volatile type one would use following call in a language front end,
CreateDerivedType(DW_TAG_volatile_type, Context, StringRef(), File,
0 /*line no*/, type_size_in_bits, type_align_in_bits,
0 /* offset */, 0 /* flags */, OriginalType);
using DIFactory interface. Now, DIBuilder allows you to do the same using following call.
createQualifiedType(DW_TAG_volatile_type, OriginalType);
DIBuilder interface was introduced in Nov/Dec last year. Now, clang has fully adopted this new interface. So we are going to remove DIFactory fro...
2011 Feb 24
0
[LLVMdev] DIFactory interface is going away
...e volatile type one would use
> following call in a language front end,
> CreateDerivedType(DW_TAG_volatile_type, Context, StringRef(), File,
> 0 /*line no*/, type_size_in_bits,
> type_align_in_bits,
> 0 /* offset */, 0 /* flags */, OriginalType);
> using DIFactory interface. Now, DIBuilder allows you to do the same using
> following call.
> createQualifiedType(DW_TAG_volatile_type, OriginalType);
> DIBuilder interface was introduced in Nov/Dec last year. Now, clang has
> fully adopted this new interface. So we are going to...
2011 Feb 25
2
[LLVMdev] DIFactory interface is going away
...uld use
>> following call in a language front end,
>> CreateDerivedType(DW_TAG_volatile_type, Context, StringRef(), File,
>> 0 /*line no*/, type_size_in_bits,
>> type_align_in_bits,
>> 0 /* offset */, 0 /* flags */, OriginalType);
>> using DIFactory interface. Now, DIBuilder allows you to do the same using
>> following call.
>> createQualifiedType(DW_TAG_volatile_type, OriginalType);
>> DIBuilder interface was introduced in Nov/Dec last year. Now, clang has
>> fully adopted this new interface...
2011 Apr 02
0
[LLVMdev] Callee prototype info in LowerCall()
Hello, I'm having trouble getting the function prototype of an
ExternalSymbolSDNode inside TargetLowering::LowerCall(), this way i could
get the original argument sizes before they're legalized into smaller parts.
I need this sort of information because depending on the originaltypes of
the arguments i need to use some regs or others. I tried using the isSplit
flag in ArgFlagsTy but it only marks the first splitted argument piece, so
it's not possible to know into how many pieces is the argument divided. So
my question is how would i get this information or if it's po...