Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/interpreter/bytecodeInterpreter.inline.hpp
32285 views
/*1* Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_INLINE_HPP25#define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_INLINE_HPP2627#include "interpreter/bytecodeInterpreter.hpp"28#include "runtime/stubRoutines.hpp"2930// This file holds platform-independent bodies of inline functions for the C++ based interpreter3132#ifdef CC_INTERP3334#ifdef ASSERT35#define VERIFY_OOP(o_) \36if (VerifyOops) { \37assert((oop(o_))->is_oop_or_null(), "Not an oop!"); \38StubRoutines::_verify_oop_count++; \39}40#else41#define VERIFY_OOP(o)42#endif4344// Platform dependent data manipulation45#ifdef TARGET_ARCH_x8646# include "bytecodeInterpreter_x86.inline.hpp"47#endif48#ifdef TARGET_ARCH_aarch3249# include "bytecodeInterpreter_aarch32.inline.hpp"50#endif51#ifdef TARGET_ARCH_aarch6452# include "bytecodeInterpreter_aarch64.inline.hpp"53#endif54#ifdef TARGET_ARCH_sparc55# include "bytecodeInterpreter_sparc.inline.hpp"56#endif57#ifdef TARGET_ARCH_zero58# include "bytecodeInterpreter_zero.inline.hpp"59#endif60#ifdef TARGET_ARCH_arm61# include "bytecodeInterpreter_arm.inline.hpp"62#endif63#ifdef TARGET_ARCH_ppc64# include "bytecodeInterpreter_ppc.inline.hpp"65#endif6667#endif // CC_INTERP6869#endif // SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_INLINE_HPP707172