< prev index next >

src/hotspot/share/jvmci/jvmciCompilerToVM.cpp

Print this page
rev 49211 : 8199472: Fix non-PCH build after JDK-8199319


  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 #include "precompiled.hpp"
  25 #include "classfile/javaClasses.inline.hpp"
  26 #include "code/scopeDesc.hpp"
  27 #include "memory/oopFactory.hpp"
  28 #include "oops/cpCache.inline.hpp"
  29 #include "oops/generateOopMap.hpp"

  30 #include "oops/method.inline.hpp"
  31 #include "oops/objArrayOop.inline.hpp"
  32 #include "oops/typeArrayOop.inline.hpp"
  33 #include "compiler/compileBroker.hpp"
  34 #include "compiler/disassembler.hpp"
  35 #include "jvmci/jvmciCompilerToVM.hpp"
  36 #include "jvmci/jvmciCodeInstaller.hpp"
  37 #include "jvmci/jvmciRuntime.hpp"
  38 #include "runtime/jniHandles.inline.hpp"
  39 #include "runtime/timerTrace.hpp"
  40 #include "runtime/vframe_hp.hpp"
  41 
  42 
  43 void JNIHandleMark::push_jni_handle_block() {
  44   JavaThread* thread = JavaThread::current();
  45   if (thread != NULL) {
  46     // Allocate a new block for JNI handles.
  47     // Inlined code from jni_PushLocalFrame()
  48     JNIHandleBlock* java_handles = ((JavaThread*)thread)->active_handles();
  49     JNIHandleBlock* compile_handles = JNIHandleBlock::allocate_block(thread);




  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 #include "precompiled.hpp"
  25 #include "classfile/javaClasses.inline.hpp"
  26 #include "code/scopeDesc.hpp"
  27 #include "memory/oopFactory.hpp"
  28 #include "oops/cpCache.inline.hpp"
  29 #include "oops/generateOopMap.hpp"
  30 #include "oops/instanceKlass.inline.hpp"
  31 #include "oops/method.inline.hpp"
  32 #include "oops/objArrayOop.inline.hpp"
  33 #include "oops/typeArrayOop.inline.hpp"
  34 #include "compiler/compileBroker.hpp"
  35 #include "compiler/disassembler.hpp"
  36 #include "jvmci/jvmciCompilerToVM.hpp"
  37 #include "jvmci/jvmciCodeInstaller.hpp"
  38 #include "jvmci/jvmciRuntime.hpp"
  39 #include "runtime/jniHandles.inline.hpp"
  40 #include "runtime/timerTrace.hpp"
  41 #include "runtime/vframe_hp.hpp"
  42 
  43 
  44 void JNIHandleMark::push_jni_handle_block() {
  45   JavaThread* thread = JavaThread::current();
  46   if (thread != NULL) {
  47     // Allocate a new block for JNI handles.
  48     // Inlined code from jni_PushLocalFrame()
  49     JNIHandleBlock* java_handles = ((JavaThread*)thread)->active_handles();
  50     JNIHandleBlock* compile_handles = JNIHandleBlock::allocate_block(thread);


< prev index next >