Displaying 2 results from an estimated 2 matches for "_d_channelreg".
2012 Sep 22
2
[LLVMdev] Typedef struct types
...t, i32 %TransferWidth) nounwind {
entry:
}
How to I get information about "%struct.DEBLOCK_UNIT" from the 'Module' of this file ?
The approach I tried was to iterate through the "global variable list" and extract type from there. This works well for below case.
%struct._D_ChannelReg = type { %struct._D_ChannelReg*, i8*, i8*, i32, i32, i32, [2 x i32] }
@gInterPredD = external global %struct._D_ChannelReg*
In this case "gInterPredD" is a global variable and hence I easily get information about it's type and their element type.
But for the case, where an instance...
2012 Sep 22
0
[LLVMdev] Typedef struct types
...> entry:
> }
> How to I get information about "%struct.DEBLOCK_UNIT" from the 'Module' of this
> file ?
> The approach I tried was to iterate through the "global variable list" and
> extract type from there. This works well for below case.
> %struct._D_ChannelReg = type { %struct._D_ChannelReg*, i8*, i8*, i32, i32, i32,
> [2 x i32] }
> @gInterPredD = external global %struct._D_ChannelReg*
> In this case "gInterPredD" is a global variable and hence I easily get
> information about it's type and their element type.
> But for the c...