I have a large source code tree in C, and i am interesting in searching the source files for occurences of calls to two specific functions, sin() and cos(), with the same argument being passed to the two functions. A few examples:
double t = sin(1.2) + cos(1.2); //match
y = sin ( x/a ); //match
z = cos(x / a );
j = sin(x) + cos(y); //no match
if (something) {
x = sin(x); // match
y = cos(x);
}
if (something)
x = sin(x); //no match!!! This is a tough case...
else
y = cos(x)
So the question is: how to implement a program/script which can run on a typical Linux shell which will search for what is described above?