如果你在Mac上開發,那麼你可以使用Instruments,其中有一個內存分析器,它告訴你在哪裏內存被分配並聚集基於那。
否則,如果您使用的是Mac,你可以使用儀器可以使用的valgrind的Massif工具
。否則,您可以嘗試使用Massif。從Massif manual輸出樣本:
--------------------------------------------------------------------------------
n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
--------------------------------------------------------------------------------
10 10,080 10,080 10,000 80 0
11 12,088 12,088 12,000 88 0
12 16,096 16,096 16,000 96 0
13 20,104 20,104 20,000 104 0
14 20,104 20,104 20,000 104 0
99.48% (20,000B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
->49.74% (10,000B) 0x804841A: main (example.c:20)
|
->39.79% (8,000B) 0x80483C2: g (example.c:5)
| ->19.90% (4,000B) 0x80483E2: f (example.c:11)
| | ->19.90% (4,000B) 0x8048431: main (example.c:23)
| |
| ->19.90% (4,000B) 0x8048436: main (example.c:25)
|
->09.95% (2,000B) 0x80483DA: f (example.c:10)
->09.95% (2,000B) 0x8048431: main (example.c:23)
如果這個問題是一個堆棧溢出,這會有所幫助,但聽起來並不像這裏發生了什麼。問題描述表明一個錯誤的指針或一個數組索引超出範圍。 –
如果您在Mac上,則可以使用樂器。否則,你可以嘗試使用[Massif](http://stackoverflow.com/questions/2473438/how-can-i-use-valgrind-for-memory-profile) – Claudiu
在我看來,它聽起來不像一個堆棧溢出,而是寫入一個超出範圍的數組,覆蓋堆棧中的相鄰值。 –