llvm中的立即数测试
在LLVM中,我想测试LoopInfo
传递获得的行程计数是否是立即数 数字。例如,以下循环的
for(i=0; i<10; i++) { ... }
行程计数为 10,并且它是一个立即数。可以调用Loop的成员函数getTripCount()来获取代表行程计数的Value。我如何确定这个值是否是立即数?
In LLVM, I'd like to test whether the trip count obtained by LoopInfo
pass is an immediate
number. For example, the following loop
for(i=0; i<10; i++) { ... }
has a trip count of 10, and it's an immediate number. The member function getTripCount()
of Loop can be called to get a Value representing the trip count. How can I decide this value is an immediate number or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用标量演化分析提供的以下 getter:
Use the following getter provided by the Scalar Evolution analysis: