Skip to content

Instantly share code, notes, and snippets.

@gkossakowski
Created June 3, 2013 20:56
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gkossakowski/5701350 to your computer and use it in GitHub Desktop.
Save gkossakowski/5701350 to your computer and use it in GitHub Desktop.
YourKit probe class that allows one to capture memory snapshots after certain phases has run in the Scala compiler.
import com.yourkit.probes.*;
import com.yourkit.api.*;
@MethodPattern("scala.tools.nsc.Global$Run:advancePhase()")
public class MemoryProbe {
public static void onEnter(@This scala.tools.nsc.Global.Run run) {
scala.reflect.internal.Phase patmatPhase = run.phaseNamed("patmat");
scala.reflect.internal.Phase postErasurePhase = run.phaseNamed("posterasure");
scala.reflect.internal.Phase icodePhase = run.phaseNamed("icode");
if (run.runIsAt(patmatPhase)) {
handlePhase(patmatPhase);
} else if (run.runIsAt(postErasurePhase)) {
handlePhase(postErasurePhase);
} else if (run.runIsAt(icodePhase)) {
handlePhase(icodePhase);
}
}
private static void handlePhase(scala.reflect.internal.Phase phase) {
try {
String name = phase.name();
System.out.println("After phase " + name);
Controller controller = new Controller();
controller.advanceGeneration(name);
System.gc();
System.gc();
controller.captureMemorySnapshot();
} catch (Exception e) {
System.out.println("Exception during taking memory dump " + e);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment