I'm not aware of any such utility.
But the flip-side is that I don't see how such a utility would be helpful.
Long GC times typically occur because your heap is too full. As the heap approaches 100% full, the amount of time spent in the GC tends to grow exponentially. In the worst case, the heap fills completely and your application gets an OutOfMemoryError. There are two possible solutions:
If the root issue is that the hep is too small for the size of problem that your application is trying to solve, then either increase the heap size, or look for a way to reduce the application's working seat of non-garbage objects.
If the root cause is a memory leak, then find and fix it.
In both cases, using a memory profiler will help you analyse the problem. But you don't need to know which objects are in the old generation. It is not relevant to either the root cause or the solution to the problem.
I want to know which objects are the "survivors" that remains in the old area, in order to know which object creation to optimize.
This is starting to make a bit more sense. It sounds like you need to find out which objects are long-lived ... rather than specifically which space they live in. You could possibly do that by using jhat to compare a sequence of heap snapshots. (There may be a better way ...)
However, I still don't think this approach will help. The problem is that a full GC needs to traverse all reachable (hard,soft,weak,phantom) objects. And if you've got a 32Gb heap that is 30% full you've still got a lot of objects to mark/sweep/relocate. I think the solution is likely to be to use a concurrent collector and tweak it so that it can keep up with your object allocation rate.
It is also unclear what you mean by "optimizing object creation". Do you mean reducing the object creation rate? Or are you thinking of something else to manage the retention of long-lived (cached?) objects?