src/share/vm/runtime/vm_operations.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 459,471 **** }; class VM_PrintClassHierachry: public VM_Operation { private: outputStream* _out; public: ! VM_PrintClassHierachry(outputStream* st) : _out(st) {} VMOp_Type type() const { return VMOp_PrintClassHierachry; } void doit(); }; #endif // SHARE_VM_RUNTIME_VM_OPERATIONS_HPP --- 459,476 ---- }; class VM_PrintClassHierachry: public VM_Operation { private: outputStream* _out; + bool _print_interfaces; + bool _print_subclasses; + char* _classname; public: ! VM_PrintClassHierachry(outputStream* st, bool print_interfaces, bool print_subclasses, char* classname) : ! _out(st), _print_interfaces(print_interfaces), _print_subclasses(print_subclasses), ! _classname(classname) {} VMOp_Type type() const { return VMOp_PrintClassHierachry; } void doit(); }; #endif // SHARE_VM_RUNTIME_VM_OPERATIONS_HPP