use of com.ibm.j9ddr.vm29.tools.ddrinteractive.commands.MonitorsCommand in project openj9 by eclipse.
the class GetCommandsTask method run.
/*
* (non-Javadoc)
*
* @see com.ibm.j9ddr.IBootstrapRunnable#run(com.ibm.j9ddr.IVMData,
* java.lang.Object[])
*/
public void run(IVMData vmData, Object[] userData) {
Object[] passbackArray = (Object[]) userData[0];
Object loader = (Object) passbackArray[1];
List<ICommand> toPassBack = getBaseJVMCommands();
toPassBack.add(new StackWalkCommand());
toPassBack.add(new StructureCommand());
toPassBack.add(new ThreadsCommand());
toPassBack.add(new ACCommand());
toPassBack.add(new AllClassesCommand());
toPassBack.add(new ITableSizeCommand());
toPassBack.add(new BuildFlagsCommand());
toPassBack.add(new WalkInternTableCommand());
toPassBack.add(new ClassForNameCommand());
toPassBack.add(new DumpAllClassloadersCommand());
toPassBack.add(new DumpAllRegionsCommand());
toPassBack.add(new DumpAllSegmentsCommand());
toPassBack.add(new FindOverlappingSegmentsCommand());
toPassBack.add(new FindStackValueCommand());
toPassBack.add(new VmCheckCommand());
toPassBack.add(new DumpRomClassCommand());
toPassBack.add(new WhatIsCommand());
toPassBack.add(new DumpRamClassLinearCommand());
toPassBack.add(new DumpRomClassLinearCommand());
toPassBack.add(new DumpRomMethodCommand());
toPassBack.add(new DumpAllRomClassLinearCommand());
toPassBack.add(new DumpAllRamClassLinearCommand());
toPassBack.add(new VMConstantPoolCommand());
toPassBack.add(new J9VTablesCommand());
toPassBack.add(new MethodForNameCommand());
toPassBack.add(new BytecodesCommand());
toPassBack.add(new FindPatternCommand());
toPassBack.add(new JitMetadataFromPcCommand());
toPassBack.add(new FindMethodFromPcCommand());
toPassBack.add(new DumpSegmentsInListCommand());
toPassBack.add(new J9StaticsCommand());
toPassBack.add(new JitstackCommand());
toPassBack.add(new LocalMapCommand());
toPassBack.add(new StackmapCommand());
toPassBack.add(new J9ClassShapeCommand());
toPassBack.add(new FindVMCommand());
toPassBack.add(new ShrCCommand());
toPassBack.add(new QueryRomClassCommand());
toPassBack.add(new RamClassSummaryCommand());
toPassBack.add(new RomClassSummaryCommand());
toPassBack.add(new ClassloadersSummaryCommand());
toPassBack.add(new ExtendedMethodFlagInfoCommand());
toPassBack.add(new AnalyseRomClassUTF8Command());
toPassBack.add(new J9MemTagCommands());
toPassBack.add(new CompressedRefMappingCommand());
toPassBack.add(new ShowDumpAgentsCommand());
toPassBack.add(new NativeMemInfoCommand());
toPassBack.add(new SetVMCommand());
toPassBack.add(new TraceConfigCommand());
toPassBack.add(new WalkJ9PoolCommand());
toPassBack.add(new J9RegCommand());
toPassBack.add(new CoreInfoCommand());
toPassBack.add(new GCCheckCommand());
toPassBack.add(new DumpStringTableCommand());
toPassBack.add(new SearchStringTableCommand());
toPassBack.add(new RomClassForNameCommand());
toPassBack.add(new RuntimeSettingsCommand());
toPassBack.add(new RootPathCommand());
toPassBack.add(new HashCodeCommand());
toPassBack.add(new MonitorsCommand());
toPassBack.add(new MarkMapCommand());
toPassBack.add(new DumpSegregatedStatsCommand());
toPassBack.add(new ObjectSizeInfo());
toPassBack.add(new DumpContendedLoadTable());
loadPlugins(toPassBack, loader);
passbackArray[0] = toPassBack;
}
use of com.ibm.j9ddr.vm29.tools.ddrinteractive.commands.MonitorsCommand in project openj9 by eclipse.
the class ThreadsCommand method monitors.
/**
* Prints all of the J9ObjectMonitors in the list of monitor tables.
*
* NOTE: It does not dump system monitors found in the thread lib monitor_pool
*
* @param out the PrintStream to write output to
*
* @see {@link MonitorsCommand}
*/
private void monitors(PrintStream out) throws DDRInteractiveCommandException {
try {
MonitorTableListIterator iterator = new MonitorTableListIterator();
MonitorTable previousMonitorTable = null;
while (iterator.hasNext()) {
J9ObjectMonitorPointer objectMonitorPointer = iterator.next();
MonitorTable currentMonitorTable = iterator.currentMonitorTable();
if (!currentMonitorTable.equals(previousMonitorTable)) {
/* Print header for new monitor table */
out.append("Table = " + currentMonitorTable.getTableName() + ", itemCount=" + currentMonitorTable.getCount());
out.append(nl);
}
out.append(String.format("\n !j9thread 0x%s !j9threadmonitor 0x%s", Long.toHexString(objectMonitorPointer.monitor().owner().getAddress()), Long.toHexString(objectMonitorPointer.monitor().getAddress())));
out.append(nl);
previousMonitorTable = currentMonitorTable;
}
} catch (CorruptDataException e) {
throw new DDRInteractiveCommandException(e);
}
}
use of com.ibm.j9ddr.vm29.tools.ddrinteractive.commands.MonitorsCommand in project openj9 by eclipse.
the class MonitorsCommand method objectCommand.
/**
* See {@link MonitorsCommand#helpCommand(String[], PrintStream)} for
* function documentation
*
* @param args
* command args
* @param out
* the output stream
*/
private void objectCommand(String[] args, PrintStream out) throws DDRInteractiveCommandException {
FilterOptions filter = FilterOptions.defaultOption();
try {
J9ObjectPointer object = null;
if (args.length < 2) {
out.println("This command takes one address \"!monitors object <J9Object address>\"");
return;
}
long objectAddr = Long.decode(args[1]);
object = J9ObjectPointer.cast(objectAddr);
ObjectMonitor objMonitor = ObjectMonitor.fromJ9Object(object);
if (null == objMonitor) {
out.printf("No corresponding monitor was found for %s\n", object.getHexAddress());
} else {
writeObjectMonitor(filter, objMonitor, out);
}
} catch (CorruptDataException e) {
throw new DDRInteractiveCommandException(e);
}
}
use of com.ibm.j9ddr.vm29.tools.ddrinteractive.commands.MonitorsCommand in project openj9 by eclipse.
the class MonitorsCommand method j9threadCommand.
/**
* See {@link MonitorsCommand#helpCommand(String[], PrintStream)} for
* function documentation
*
* @param args
* command args
* @param out
* the output stream
* @throws DDRInteractiveCommandException
*/
private void j9threadCommand(String[] args, PrintStream out) throws DDRInteractiveCommandException {
if (args.length < 2) {
out.println("This command takes one address argument: \"!monitors j9thread <address>\"");
return;
}
try {
long address = CommandUtils.parsePointer(args[1], J9BuildFlags.env_data64);
VoidPointer ptr = VoidPointer.cast(address);
J9JavaVMPointer vm = J9RASHelper.getVM(DataType.getJ9RASPointer());
J9VMThreadPointer mainThread = vm.mainThread();
if (mainThread.isNull() || mainThread.osThread().isNull() || mainThread.osThread().library().isNull()) {
throw new CorruptDataException("Cannot locate thread library");
}
J9ThreadLibraryPointer lib = mainThread.osThread().library();
J9PoolPointer pool = lib.thread_pool();
Pool<J9ThreadPointer> threadPool = Pool.fromJ9Pool(pool, J9ThreadPointer.class);
SlotIterator<J9ThreadPointer> poolIterator = threadPool.iterator();
J9ThreadPointer osThreadPtr = null;
while (poolIterator.hasNext()) {
if (ptr.equals(poolIterator.next())) {
osThreadPtr = J9ThreadPointer.cast(ptr);
}
}
if (null == osThreadPtr) {
throw new DDRInteractiveCommandException(String.format("Could not find any j9thread at address %s\n", ptr.getHexAddress()));
}
// Is there an associated J9VMThread?
J9VMThreadPointer vmThread = J9ThreadHelper.getVMThread(osThreadPtr);
// Step 1: Print the general info for the VM and native threads:
out.println(String.format("%s\t%s\t// %s", osThreadPtr.formatShortInteractive(), vmThread.notNull() ? vmThread.formatShortInteractive() : "<none>", vmThread.notNull() ? J9VMThreadHelper.getName(vmThread) : "[osthread]"));
printMonitorsForJ9Thread(out, vm, osThreadPtr);
} catch (CorruptDataException e) {
throw new DDRInteractiveCommandException(e);
}
}
use of com.ibm.j9ddr.vm29.tools.ddrinteractive.commands.MonitorsCommand in project openj9 by eclipse.
the class MonitorsCommand method tableCommand.
/**
* See {@link MonitorsCommand#helpCommand(String[], PrintStream)} for
* function documentation
*
* @param args
* command args
* @param out
* the output stream
* @throws DDRInteractiveCommandException
*/
private void tableCommand(String[] args, PrintStream out) throws DDRInteractiveCommandException {
FilterOptions filter = FilterOptions.defaultOption();
if (args.length > 2) {
filter = FilterOptions.parseOption(args[2]);
} else if (args.length == 2) {
out.println("No filter specified, defaulting to 'active' monitors.");
} else if (args.length < 2) {
out.println("This command takes one address argument: \"!monitors table <address>\"");
return;
}
try {
StringBuilder builder = new StringBuilder();
long address = CommandUtils.parsePointer(args[1], J9BuildFlags.env_data64);
VoidPointer ptr = VoidPointer.cast(address);
MonitorTableListIterator iterator = new MonitorTableListIterator();
boolean foundTable = false;
while (iterator.hasNext()) {
J9ObjectMonitorPointer objectMonitorPointer = iterator.next();
MonitorTable currentMonitorTable = iterator.currentMonitorTable();
if (currentMonitorTable.getMonitorTableListEntryPointer().equals(ptr)) {
tablePrintHelper(filter, builder, objectMonitorPointer);
foundTable = true;
}
}
out.append(builder);
if (false == foundTable) {
out.append(String.format("Could not find any J9MonitorTableListEntryPointer at address %s\n", ptr.getHexAddress()));
}
} catch (CorruptDataException e) {
throw new DDRInteractiveCommandException(e);
}
}
Aggregations