だから、私はすでにこの記事Counting machine instruction of a process using PTRACE_SINGLESTEP を読んでおり、テストプログラムを ptrace プログラムに動的にリンクすると、実行時ライブラリの初期化もカウントする命令カウントが返されることを理解しています。ただし、テストプログラムの有効なカウントを取得しようとしています。これは次のとおりです。
int main(){
return 0;
}
私の ptrace プログラムも最初は 90k 以上の値を返したので、使用したテストプログラムを静的にリンクするように変更しました。カウンターは少なくなりましたが、それでも 12k を超えています。命令をカウントするために使用したプログラムは次のとおりです。
#include <sys/ptrace.h>
#include <unistd.h>
#include <stdio.h>
int main() {
long long counter = 1; // machine instruction counter
int wait_val; // child's return value
int pid; // child's process id
int dat;
switch (pid = fork()) { // copy entire parent space in child
case -1: perror("fork");
break;
case 0: // child process starts
ptrace(PTRACE_TRACEME,0,NULL,NULL);
/*
must be called in order to allow the
control over the child process and trace me (child)
0 refers to the parent pid
*/
execl("./returntestprog","returntestprog",NULL);
/*
executes the testprogram and causes
the child to stop and send a signal
to the parent, the parent can now
switch to PTRACE_SINGLESTEP
*/
break;
// child process ends
default: // parent process starts
wait(&wait_val);
if (ptrace(PTRACE_SINGLESTEP, pid, 0, 0) != 0)
perror("ptrace");
/*
switch to singlestep tracing and
release child
if unable call error.
*/
wait(&wait_val);
// parent waits for child to stop at next
// instruction (execl())
while (wait_val == 1407) {
counter++;
if (ptrace(PTRACE_SINGLESTEP, pid, 0, 0) != 0)
perror("ptrace");
/*
switch to singlestep tracing and
release child
if unable call error.
*/
wait(&wait_val);
// wait for next instruction to complete */
}
/*
continue to stop, wait and release until
the child is finished; wait_val != 1407
Low=0177L and High=05 (SIGTRAP)
*/
}
printf("Number of machine instructions : %lld\n", counter);
return 0;
} // end of switch
それが正しく機能しているか、まったく機能していないかどうかはよくわからないので、どんな助けも本当にありがたいです。着手したらptraceでタイミング解析をしたいのですが、まずは実行命令数をカウントしてみます
ありがとう!