Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C - How to find all inner loops using grep?

I have a giant C project with numerous C files. I have to find all inner-loops. I am sure there is no any O(n³) block in the project, so only O(n²)-compexity blocks must be found (a loop in a loop).

Is it possible to find all inner loops using grep? If yes, what regexp may I use to find all occurrences of inner loops of all kinds like {for,for}, {while,for}, {for, while}, {do, while}, etc. ? If no, is there any simple unix-way method to do it (maybe multiple greps or a kind of awk)?

like image 946
psihodelia Avatar asked Nov 25 '11 14:11

psihodelia


1 Answers

Regex are for regular languages, what you are describing seems like a Context-Free, and i'm pretty sure it can't be done using Regular Expressions. See the answer to a similar question here . You should look for other type of automata like a scripting language(python or so).

like image 188
6D65 Avatar answered Oct 04 '22 13:10

6D65