I was always unsure, what does the restrict keyword mean in C++?
Does it mean the two or more pointer given to the function does not overlap? What else does it mean?
|
I was always unsure, what does the restrict keyword mean in C++? Does it mean the two or more pointer given to the function does not overlap? What else does it mean? |
||||
|
In his paper, Memory Optimization, Christer Ericson (G-d of War) says that while
In C++ compilers that support it it should probably behave the same as in C. See this SO post for details: Realistic usage of the C99 ‘restrict’ keyword? Take half an hour to skim through Ericson's paper, it's interesting and worth the time. Edit I also found that IBM's AIX C/C++ compiler supports the g++ also seems to support this as the following program compiles cleanly on g++:
I also found a nice article on the use of Demystifying The Restrict Keyword Edit2 I ran across an article which specifically discusses the use of restrict in C++ programs: Load-hit-stores and the __restrict keyword Also, Microsoft Visual C++ also supports the |
||||
|
|
|
Nothing. It was added to the C99 standard. |
|||||||||||||||||||||
|
|
This is the original proposal to add this keyword. As dirkgently pointed out though, this is a C99 feature, it has nothing to do with C++. |
|||||
|
|
There's no such keyword in C++. List of C++ keywords can be found in section 2.11/1 of C++ language standard. |
|||||||||
|
|
Since header files from some C libraries use the keyword, the C++ language will have to do something about it.. at the minimum, ignoring the keyword, so we don't have to #define the keyword to a blank macro to suppress the keyword. |
|||||
|
restrictis a c99 keyword. Yes, Rpbert S. Barnes, I know that most compilers support__restrict__. You will note that anything with double underscores is, by definition, implementation specific and thus NOT C++, but a compiler specific version of it. – KitsuneYMG Jan 6 '10 at 9:31