麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > C > 正文

C 語言restrict 關鍵字的使用淺談

2020-01-26 16:19:32
字體:
來源:轉載
供稿:網友

C99中新增加了restrict修飾的指針:

由restrict修飾的指針是最初唯一對指針所指向的對象進行存取的方法,
僅當第二個指針基于第一個時,才能對對象進行存取。
對對象的存取都限定于基于由restrict修飾的指針表達式中。

由restrict修飾的指針主要用于函數形參,或指向由malloc()分配的內存空間。
restrict數據類型不改變程序的語義。
編譯器能通過作出restrict修飾的指針是存取對象的唯一方法的假設,更好地優化某些類型的例程。


restrict是c99標準引入的,它只可以用于限定和約束指針,
并表明指針是訪問一個數據對象的唯一且初始的方式.
即它告訴編譯器,所有修改該指針所指向內存中內容的操作都必須通過該指針來修改,
而不能通過其它途徑(其它變量或指針)來修改;這樣做的好處是,
能幫助編譯器進行更好的優化代碼,生成更有效率的匯編代碼.如

int *restrict ptr,

ptr 指向的內存單元只能被 ptr 訪問到,任何同樣指向這個內存單元的其他指針都是未定義的,
直白點就是無效指針。

restrict 的出現是因為 C 語言本身固有的缺陷,
C 程序員應當主動地規避這個缺陷,而編譯器也會很配合地優化你的代碼.

例子 :

復制代碼 代碼如下:

int ar[10];
int * restrict restar=(int *)malloc(10*sizeof(int));
int *par=ar;
for(n=0;n<10;n++)
{
    par[n]+=5;
    restar[n]+=5;
    ar[n]*=2;
    par[n]+=3;
    restar[n]+=3;
}

因為restar是訪問分配的內存的唯一且初始的方式,那么編譯器可以將上述對restar的操作進行優化:
restar[n]+=8;


而par并不是訪問數組ar的唯一方式,因此并不能進行下面的優化:
par[n]+=8;


因為在par[n]+=3前,ar[n]*=2進行了改變。
使用了關鍵字restrict,編譯器就可以放心地進行優化了。

關鍵字restrict有兩個讀者。
一個是編譯器,它告訴編譯器可以自由地做一些有關優化的假定。
另一個讀者是用戶,他告訴用戶僅使用滿足restrict要求的參數。

一般,編譯器無法檢查您是否遵循了這一限制,如果您蔑視它也就是在讓自己冒險。
To help the compiler determine memory dependencies,
you can qualify a pointer, reference, or array
with the restrict keyword.
The restrict keyword is a type qualifier that may be
applied to pointers, references, and arrays.
Its use represents a guarantee by the programmer
that within the scope of the pointer declaration
the object pointed to can be accessed only by that pointer.

Any violation of this guarantee renders the program undefined.
This practice helps the compiler optimize certain sections of code
because aliasing information can be more easily determined.

 

Use of the restrict type qualifier with pointers

復制代碼 代碼如下:

void func1(int * restrict a, int * restrict b)
{
  /* func1's code here */
}

In the example that follows, the restrict keyword is
used to tell the compiler that the function func1 is
never called with the pointers a and b pointing
to objects that overlap in memory.
You are promising that accesses through a and b
will never conflict; this means that a write through one pointer
cannot affect a read from any other pointer.
The precise semantics of the restrict keyword are
described in the 1999 version of the ISO C standard.

Use of the restrict type qualifier with arrays

復制代碼 代碼如下:

void func2(int c[restrict], int d[restrict])
{
  int i;

  for(i = 0; i < 64; i++)
  {
    c[i] += d[i];
    d[i] += 1;
  }
}


This example illustrates using the restrict keyword when passing arrays to a function.
Here, the arrays c and d should not overlap, nor should c and d point to the same array.

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 国产成人精品一区在线播放 | 国产资源在线播放 | 韩国精品视频在线观看 | 日韩一级片一区二区三区 | 国产1区在线 | 538任你躁在线精品视频网站 | 国产精品久久久久久影院8一贰佰 | 午夜小网站 | 日韩欧美高清一区 | 成人免费观看49www在线观看 | 一级片999 | 99爱在线免费观看 | 一区二区三区在线播放视频 | 又黄又爽免费无遮挡在线观看 | 久久91精品 | 久久91亚洲精品久久91综合 | 精品国产成人 | 男女羞羞在线观看 | 一级黄色影片在线观看 | 国产精品久久久久久久久久久久久久久 | 国产小视频一区 | 国内精品免费一区二区2001 | 免费a级片视频 | 视频一区 中文字幕 | 日韩av电影在线免费观看 | 毛片成人网 | 特级黄色一级毛片 | 国产一区二区三区影视 | 麻豆一二区| 免费毛片观看 | 日本中文高清 | 午夜激情视频网站 | 一本色道久久99精品综合蜜臀 | 日韩视频中文 | 国产伊人色 | 国产一级淫片在线观看 | 日韩精品一区二区三区中文 | 一级做人爱c黑人影片 | 九九热精品在线播放 | 欧美视频不卡 | 国产精品呻吟 |