< prev index next >

src/hotspot/share/prims/jvmtiEnvThreadState.cpp

Print this page
rev 47819 : imported patch 10.07.open.rebase_20171110.dcubed
   1 /*
   2  * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "interpreter/interpreter.hpp"
  28 #include "jvmtifiles/jvmtiEnv.hpp"
  29 #include "memory/resourceArea.hpp"
  30 #include "prims/jvmtiEnvThreadState.hpp"
  31 #include "prims/jvmtiEventController.inline.hpp"
  32 #include "prims/jvmtiImpl.hpp"
  33 #include "runtime/handles.hpp"
  34 #include "runtime/handles.inline.hpp"
  35 #include "runtime/interfaceSupport.hpp"
  36 #include "runtime/javaCalls.hpp"
  37 #include "runtime/signature.hpp"

  38 #include "runtime/vframe.hpp"
  39 #include "runtime/vm_operations.hpp"
  40 
  41 
  42 ///////////////////////////////////////////////////////////////
  43 //
  44 // class JvmtiFramePop
  45 //
  46 
  47 #ifndef PRODUCT
  48 void JvmtiFramePop::print() {
  49   tty->print_cr("_frame_number=%d", _frame_number);
  50 }
  51 #endif
  52 
  53 
  54 ///////////////////////////////////////////////////////////////
  55 //
  56 // class JvmtiFramePops - private methods
  57 //


   1 /*
   2  * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "interpreter/interpreter.hpp"
  28 #include "jvmtifiles/jvmtiEnv.hpp"
  29 #include "memory/resourceArea.hpp"
  30 #include "prims/jvmtiEnvThreadState.hpp"
  31 #include "prims/jvmtiEventController.inline.hpp"
  32 #include "prims/jvmtiImpl.hpp"
  33 #include "runtime/handles.hpp"
  34 #include "runtime/handles.inline.hpp"
  35 #include "runtime/interfaceSupport.hpp"
  36 #include "runtime/javaCalls.hpp"
  37 #include "runtime/signature.hpp"
  38 #include "runtime/thread.inline.hpp"
  39 #include "runtime/vframe.hpp"
  40 #include "runtime/vm_operations.hpp"
  41 
  42 
  43 ///////////////////////////////////////////////////////////////
  44 //
  45 // class JvmtiFramePop
  46 //
  47 
  48 #ifndef PRODUCT
  49 void JvmtiFramePop::print() {
  50   tty->print_cr("_frame_number=%d", _frame_number);
  51 }
  52 #endif
  53 
  54 
  55 ///////////////////////////////////////////////////////////////
  56 //
  57 // class JvmtiFramePops - private methods
  58 //


< prev index next >