Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

access struct fields based on their index in LLVM

I have the following struct:

%struct.A = type { i256, i256, i256 }

The struct is returned by the function func, in the end of the function, I return the struct using this code:

%r1 = insertvalue %struct.A undef, i256 %input1 , 0
%r2 = insertvalue %struct.A %r1 , i256 %input2 , 1
%r3 = insertvalue %struct.A %r2 , i256 %input3 , 2
ret %struct.A %r3

I would like to access the values of the three inputs I entered in the function when I call it and the struct is returned:

%r5 = call %struct.A @func()

Thank you in advance.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...