限制限定符和指针算术
递增或递减限制限定指针是否保留不别名假设?
// a and b point to disjoint arrays
void foo(size_t n, double * __restrict a, double * __restrict b) {
size_t i;
double x, y, z;
double * c = b; // copy
for(i=0; i<n; ++i) {
x = *(a++); // not aliased
y = *(b + i); // not aliased
z = c[i]; // not aliased
}
}
谢谢。
Does incrementing or decrementing a restrict qualified pointer preserve no aliasing assumption?
// a and b point to disjoint arrays
void foo(size_t n, double * __restrict a, double * __restrict b) {
size_t i;
double x, y, z;
double * c = b; // copy
for(i=0; i<n; ++i) {
x = *(a++); // not aliased
y = *(b + i); // not aliased
z = c[i]; // not aliased
}
}
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
restrict
限定符是指针类型的一部分,当您递增、递减或赋值时,该类型不会改变。Yes. The
restrict
qualifier is part of the type of the pointer, and this type isn't changed when you increment, decrement, or assign it.