Vladimir writes: > Hello, > I would like to profile a pure java application (without any aot > compiled classes) running on gij. > Is there any possibility? Yes: you'll have to either modify the interpreter to record the currently executing method or use -finstrument-functions to call a user-defined routine to do the same. Andrew.