use of org.jikesrvm.adaptive.measurements.organizers.AccumulatingMethodSampleOrganizer in project JikesRVM by JikesRVM.
the class ControllerThread method createProfilers.
/**
* Create profiling entities that are independent of whether or not
* adaptive recompilation is actually enabled.
*/
private void createProfilers() {
if (Controller.options.GATHER_PROFILE_DATA) {
Controller.organizers.add(new AccumulatingMethodSampleOrganizer());
createDynamicCallGraphOrganizer();
}
}
Aggregations