関数に入ったばかりのときにセグメンテーション違反が発生する原因は何ですか?
入力された関数は次のようになります。
21: void eesu3(Matrix & iQ)
22: {
はどこMatrix
ですかstruct
。GDB で実行すると、バックトレースは以下を生成します。
(gdb) backtrace
#0 eesu3 (iQ=...) at /home/.../eesu3.cc:22
#1 ...
GDBは何が何であるかを言いませんiQ
。...
文字通りそこにあります。何が原因でしょうか?
GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
で構築されたプログラム-O3 -g
呼び出し元は次のようになります。
Matrix q;
// do some stuff with q
eesu3(q);
ここでは特別なことは何もありません
valgrind でプログラムを再実行しました。
valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes <prgname>
出力:
==2240== Warning: client switching stacks? SP change: 0x7fef7ef68 --> 0x7fe5e3000
==2240== to suppress, use: --max-stackframe=10076008 or greater
==2240== Invalid write of size 8
==2240== at 0x14C765B: eesu3( Matrix &) (eesu3.cc:22)
...
==2240== Address 0x7fe5e3fd8 is on thread 1's stack
==2240==
==2240== Can't extend stack to 0x7fe5e2420 during signal delivery for thread 1:
==2240== no stack segment
==2240==
==2240== Process terminating with default action of signal 11 (SIGSEGV)
==2240== Access not within mapped region at address 0x7FE5E2420
==2240== at 0x14C765B: eesu3( Matrix&) (eesu3.cc:22)
==2240== If you believe this happened as a result of a stack
==2240== overflow in your program's main thread (unlikely but
==2240== possible), you can try to increase the size of the
==2240== main thread stack using the --main-stacksize= flag.
==2240== The main thread stack size used in this run was 8388608.
スタックが破損しているようです。
Dump of assembler code for function eesu3( Matrix & ):
0x00000000014c7640 <+0>: push %rbp
0x00000000014c7641 <+1>: mov %rsp,%rbp
0x00000000014c7644 <+4>: push %r15
0x00000000014c7646 <+6>: push %r14
0x00000000014c7648 <+8>: push %r13
0x00000000014c764a <+10>: push %r12
0x00000000014c764c <+12>: push %rbx
0x00000000014c764d <+13>: and $0xfffffffffffff000,%rsp
0x00000000014c7654 <+20>: sub $0x99b000,%rsp
=> 0x00000000014c765b <+27>: mov %rdi,0xfd8(%rsp)
分かりやすく言えば、Matrix のデータはヒープ上に存在します。基本的に、データへのポインターを保持します。構造体は小さく、32 バイトです。(チェックしただけ)
ここで、さまざまな最適化オプションを使用してプログラムを再構築しました。
-O0
: エラーは表示されません。
-O1
: エラーが表示されます。
-O3
: エラーが表示されます。
- アップデート
-O3 -fno-inline -fno-inline-functions
: エラーは表示されません。
なるほどね。関数へのインライン化が多すぎるため、スタックが過剰に使用されました。
問題はスタックオーバーフローによるものでした