hotspot/src/cpu/zero/vm/interpreter_zero.cpp
changeset 34651 07b1cc0f6040
parent 22234 da823d78ad65
child 35214 d86005e0b4c2
equal deleted inserted replaced
34648:b7ea5d095ef5 34651:07b1cc0f6040
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
     3  * Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     6  * This code is free software; you can redistribute it and/or modify it
     7  * under the terms of the GNU General Public License version 2 only, as
     7  * under the terms of the GNU General Public License version 2 only, as
    36 #include "oops/oop.inline.hpp"
    36 #include "oops/oop.inline.hpp"
    37 #include "prims/jvmtiExport.hpp"
    37 #include "prims/jvmtiExport.hpp"
    38 #include "prims/jvmtiThreadState.hpp"
    38 #include "prims/jvmtiThreadState.hpp"
    39 #include "prims/methodHandles.hpp"
    39 #include "prims/methodHandles.hpp"
    40 #include "runtime/arguments.hpp"
    40 #include "runtime/arguments.hpp"
    41 #include "runtime/deoptimization.hpp"
       
    42 #include "runtime/frame.inline.hpp"
    41 #include "runtime/frame.inline.hpp"
    43 #include "runtime/sharedRuntime.hpp"
    42 #include "runtime/sharedRuntime.hpp"
    44 #include "runtime/stubRoutines.hpp"
    43 #include "runtime/stubRoutines.hpp"
    45 #include "runtime/synchronizer.hpp"
    44 #include "runtime/synchronizer.hpp"
    46 #include "runtime/timer.hpp"
    45 #include "runtime/timer.hpp"
    72 }
    71 }
    73 
    72 
    74 bool AbstractInterpreter::can_be_compiled(methodHandle m) {
    73 bool AbstractInterpreter::can_be_compiled(methodHandle m) {
    75   return true;
    74   return true;
    76 }
    75 }
    77 
       
    78 void Deoptimization::unwind_callee_save_values(frame* f,
       
    79                                                vframeArray* vframe_array) {
       
    80 }