arm c中位元組對齊

來源:互聯網
上載者:User
__align

__align 關鍵字指示編譯器在 n 位元組邊界上對齊變數。

__align 是一個儲存類修飾符。它不影響函數的類型。

文法
__align(n)

其中:

n

是對齊邊界。

對於局部變數,n 值可為 1、2、4 或 8。

對於全域變數,n 可以具有最大為 2 的 0x80000000 次冪的任何值。

__align 關鍵字緊靠變數名稱前面放置。

用法

如果聲明的變數的常規對齊邊界小於 n__align(n) 是非常有用的。八位元組對齊可以顯著提高 VFP 指令的效能。

可以將 __align 與 extern 和 static 一起使用。

限制

由於 __align 是儲存類修飾符,因此不能將其用於:

  • 類型,包括 typedef 和結構定義

  • 函數參數。

只能進行過對齊。也就是說,可以將兩個位元組的對象按 4 個位元組對齊,而不能將 4 個位元組的對象按兩個位元組對齊。

樣本
__align(8) char buffer[128];  // buffer starts on eight-byte boundary
void foo(void){    ...    __align(16) int i; // this alignment value is not permitted for                       // a local variable    ...}__align(16) int i; // permitted as a global variable.參考:ARM手冊

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.