Pin には、ルーチン、命令、イメージ、トレースの 4 つのレベルの粒度があります。計装コードの挿入を開始および停止する制限/領域を指定できますか? ( # start instrumentation , # end instrumentation ) のようなディレクティブまたはそのようなものによって、
例:
for( int i=0; i< x; i++)
{
#startInstrumentation
for( ....;.....;.....)
{
// some code
// function call, conditions , loops, ....
}
#endInstrumentation
}
これを行う方法はありますか?