Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/cpu/zero/vm/interpreter_zero.cpp
32285 views
/*1* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.2* Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.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 it6* under the terms of the GNU General Public License version 2 only, as7* published by the Free Software Foundation.8*9* This code is distributed in the hope that it will be useful, but WITHOUT10* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or11* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License12* version 2 for more details (a copy is included in the LICENSE file that13* accompanied this code).14*15* You should have received a copy of the GNU General Public License version16* 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 USA20* or visit www.oracle.com if you need additional information or have any21* questions.22*23*/2425#include "precompiled.hpp"26#include "asm/assembler.hpp"27#include "interpreter/bytecodeHistogram.hpp"28#include "interpreter/interpreter.hpp"29#include "interpreter/interpreterGenerator.hpp"30#include "interpreter/interpreterRuntime.hpp"31#include "interpreter/templateTable.hpp"32#include "oops/arrayOop.hpp"33#include "oops/methodData.hpp"34#include "oops/method.hpp"35#include "oops/oop.inline.hpp"36#include "prims/jvmtiExport.hpp"37#include "prims/jvmtiThreadState.hpp"38#include "prims/methodHandles.hpp"39#include "runtime/arguments.hpp"40#include "runtime/deoptimization.hpp"41#include "runtime/frame.inline.hpp"42#include "runtime/sharedRuntime.hpp"43#include "runtime/stubRoutines.hpp"44#include "runtime/synchronizer.hpp"45#include "runtime/timer.hpp"46#include "runtime/vframeArray.hpp"47#include "utilities/debug.hpp"48#ifdef COMPILER149#include "c1/c1_Runtime1.hpp"50#endif51#ifdef CC_INTERP52#include "interpreter/cppInterpreter.hpp"53#endif5455address AbstractInterpreterGenerator::generate_slow_signature_handler() {56_masm->advance(1);57return (address) InterpreterRuntime::slow_signature_handler;58}5960address InterpreterGenerator::generate_math_entry(61AbstractInterpreter::MethodKind kind) {62if (!InlineIntrinsics)63return NULL;6465Unimplemented();66return NULL;67}6869address InterpreterGenerator::generate_abstract_entry() {70return generate_entry((address) ShouldNotCallThisEntry());71}7273bool AbstractInterpreter::can_be_compiled(methodHandle m) {74return true;75}7677void Deoptimization::unwind_callee_save_values(frame* f,78vframeArray* vframe_array) {79}808182