在ARM平臺上的C使用 pragma arm section
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
arm section section_sort_list
指定的程式碼或資料的節的名稱用於隨後的函式或物件。這包括編譯器初始化建立的匿名物件的定義。選項有沒有效果:
行內函數(及其區域性靜態模板例項(及其區域性靜態變數)
消除未使用的變數和函式。 (雖然使用
#pragma arm section可能使連線器,以消除函式或變數,否則將被保留,因為它是在同一節中使用的函式或變數。)
定義寫入物件檔案的順序。
pragma的完整語法是:
#pragma arm section [sort_type[[=]"name"]] [,sort_type="name"]*
其中name是名稱使用的部分,sort_type是一個:
rodata
rwdata
zidata。
如果sort_type被指定,但名稱不是為sort_type
int x1 = 5; // in .data (default)
int y1[100]; // in .bss (default)
int const z1[3] = {1,2,3}; // in .constdata (default)
#pragma arm section rwdata = "foo", rodata = "bar"
int x2 = 5; // in foo (data part of region)
int y2[100]; // in .bss
int const z2[3] = {1,2,3}; // in bar
char *s2 = "abc"; // s2 in foo, "abc" in .conststring
#pragma arm section rodata
int x3 = 5; // in foo
int y3[100]; // in .bss
int const z3[3] = {1,2,3}; // in .constdata
char *s3 = "abc"; // s3 in foo, "abc" in .conststring
#pragma arm section code = "foo"
int add1(int x) // in foo (code part of region)
{
return x+1;
}
#pragma arm section code
作為替代的#pragma arm section,使用GNU__ attribute__的功能屬性描述函式或變數,。
使用ARM連結器來控制如何放置在記憶體中的一個特定的地址(見章RealView編譯工具3.0版連結程式和實用程式指南中使用分散載入描述檔案)分散載入描述檔案。