Tagged Questions
2
votes
1answer
69 views
Confusing adapting code to use restrict qualifier
I'm trying to adapt the following version of the stpcpy function to use restrict-qualified pointers as its arguments and internally, but I'm not sure if simply adding the qualifier would result ...
8
votes
1answer
237 views
Understanding restrict qualifier by examples
The restrict keyword's behavior is defined in C99 by 6.7.3.1:
Let D be a declaration of an ordinary identifier that provides a means
of designating an object P as a restrict-qualified pointer to ...
5
votes
1answer
250 views
c99 __restrict and compiler optimization
typedef struct {
void * field1;
} s1;
void func1(void) {
s1 my_s1;
s1 * __restrict my_s1_ptr = &my_s1;
*((int*)((char*)my_s1_ptr->field1 + 4)) = 0;
...
6
votes
1answer
249 views
Is there a practical use for a `volatile restrict` pointer?
I can see practical use for a const volatile qualified variable, like
const volatile uint64_t seconds_since_1970;
if an underlying hardware mechanism updates the value every second, but the ...
3
votes
4answers
148 views
C99: Restricted Pointers to Document Thread Safety?
This question isn't about the technical usage of restricted, more about the subjective usage. Although I might be mistaken as to how restricted technically works, in which case you should feel free to ...
4
votes
2answers
576 views
Is this an invalid use of restrict pointers?
Suppose I have large array which I calculate an index into and pass to a second function. As a simple example, something like:
void foo(float* array, float c, unsigned int n)
{
for (unsigned int ...
3
votes
1answer
181 views
Restricted pointer assignments
I have a question regarding restricted pointer assignments. See the comments in code for specific questions. Overall, I'm just wondering what's legal with restrict (I've read the standard, but still ...
4
votes
2answers
837 views
Restricted pointer questions
I'm a little confused about the rules regarding restricted pointers. Maybe someone out there can help me out.
Is it legal to define nested restricted pointers as follows:
int* restrict a;
int* ...
10
votes
6answers
1k views
What can human beings make out of the restrict qualifier?
If I got the C99 restrict keyword right, qualifying a pointer with it is a promise made that the data it references won't be modified behind the compiler's back through aliasing.
By contrast, the way ...
6
votes
3answers
672 views
What are the semantics of C99's “restrict” with regards to pointers to pointers?
I am doing lots of matrix arithmetic and would like to take advantage of C99's restrict pointer qualifier.
I'd like to setup my matrices as pointers to pointers to allow for easy subscripting, like ...
2
votes
2answers
275 views
restrict-edness with pre-c99
Considering this code, VC9 doesn't detect aliasing :
typedef struct { int x, y; } vec_t;
void rotate_cw(vec_t const *from,
vec_t *to)
{
/* Notice x depends on y and vice ...
8
votes
3answers
1k views
When to use restrict and when not to
I have a general understanding of restrict but I'm hoping to clarify some fine points. I have a function that reads a null-terminated string from one buffer and writes out a URL encoded version in ...
36
votes
1answer
6k views
Realistic usage of the C99 'restrict' keyword?
I was browsing through some documentation and questions/answers and saw it mentioned. I read a brief description, stating that it would be basically a promise from the programmer that the pointer ...