導航:首頁 > 版本升級 > stvdmap文件分析

stvdmap文件分析

發布時間:2024-07-20 06:02:02

❶ stm8s stvd 怎麼看代碼大小

下載一個小工具

1、把解開後的size.exe復制到COSMICCXSTM8文件夾,就是你的COSMIC編譯工具里有cpstm8.exe的那個文件夾。
2、在SVTD的Project->settings中打開Post-Build選項卡,在commands的最後一行加入:size $(OutputPath)$(TargetSName).map
3、保存返回,編譯試試,最後會出現如:Program Size: Code=12470 Eeprom=0 ZeroPage=227 Ram=180的結果。


思路:


打開map文件,統計各段的長度,然後輸出。


主要代碼:

static void Main(string[] args)

{

StreamReader sr = new StreamReader(args[0]);

string[] s;

char[] charSeparators = new char[] { ' ' };


int code_size = 0;

int zeropage_size = 0;

int ram_size = 0;

int eeprom_size = 0;


for (int i = 0; i < 8; i++)

{

string s1 = sr.ReadLine();

}


while (true)

{

string s1 = sr.ReadLine();

s = s1.Split(charSeparators, StringSplitOptions.RemoveEmptyEntries);

if(s.Length == 0)

{

break;

}

else if (s[7] == ".text" || s[7] == ".const" || s[7] == ".init")

{

code_size += int.Parse(s[5]);

}

else if (s[7] == ".eeprom")

{

eeprom_size += int.Parse(s[5]);

}

else if (s[7] == ".bsct," && s[8] == "initialized")

{

zeropage_size += int.Parse(s[5]);

}

else if (s[7] == ".ubsct" || s[7] == ".share")

{

zeropage_size += int.Parse(s[5]);

}

else if (s[7] == ".data," && s[8] == "initialized")

{

ram_size += int.Parse(s[5]);

}

else if (s[7] == ".bss")

{

ram_size += int.Parse(s[5]);

}

}

Console.WriteLine("");

//Program Size: Code=5056 RO-data=288 RW-data=68 ZI-data=1140

Console.WriteLine("Program Size: Code=" + code_size.ToString() + " Eeprom=" + eeprom_size.ToString() + " ZeroPage=" + zeropage_size.ToString() + " Ram=" + ram_size.ToString());

}

閱讀全文

與stvdmap文件分析相關的資料

熱點內容
excel文件常用的擴展名 瀏覽:204
pdf壓縮包文件 瀏覽:932
cad中安裝了etexpress工具 瀏覽:887
怎麼解決ug曲面編程刀路不連續 瀏覽:89
灰色問號文件是什麼 瀏覽:754
密碼符號是什麼意思啊 瀏覽:461
比較開放的聊天工具 瀏覽:884
c語言課題設計模板文件加密 瀏覽:64
得物app如何查看鑒定帖子 瀏覽:182
小米微信數據文件損壞 瀏覽:9
qq打開文件失敗 瀏覽:841
哪些app有數字人民幣活動 瀏覽:771
什麼是計算機編程學習 瀏覽:214
如何刪除電腦漏洞文件 瀏覽:95
有哪個大神會壓縮文件密碼 瀏覽:662
企業文化版本 瀏覽:148
哪個vrapp可變速 瀏覽:880
monodevelop版本 瀏覽:833
如何用電視播放mp4文件 瀏覽:701
oracle導入大量資料庫 瀏覽:474

友情鏈接