< prev index next > src/hotspot/share/classfile/classPrinter.hpp
Print this page
PRINT_BYTECODE_ADDR = 1 << 2,
PRINT_DYNAMIC = 1 << 3, // extra information for invokedynamic (and dynamic constant ...)
PRINT_METHOD_HANDLE = 1 << 4, // extra information for invokehandle
PRINT_CLASS_DETAILS = 1 << 5, // print details of the C++ and Java objects that represent classes
PRINT_METHOD_DETAILS = 1 << 6, // print details of the C++ objects that represent methods
+ PRINT_PROFILE = 1 << 7, // print MDO contents
};
static bool has_mode(int flags, Mode mode) {
return (flags & static_cast<int>(mode)) != 0;
}
< prev index next >