< prev index next >

src/hotspot/share/jvmci/jvmciCompilerToVM.hpp

Print this page
rev 60538 : imported patch jep387-all.patch


   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 #ifndef SHARE_JVMCI_JVMCICOMPILERTOVM_HPP
  25 #define SHARE_JVMCI_JVMCICOMPILERTOVM_HPP
  26 
  27 #include "gc/shared/cardTable.hpp"

  28 #include "jvmci/jvmciExceptions.hpp"
  29 #include "runtime/javaCalls.hpp"
  30 #include "runtime/signature.hpp"
  31 
  32 class JVMCIObjectArray;
  33 
  34 class CompilerToVM {
  35  public:
  36   class Data {
  37     friend class JVMCIVMStructs;
  38 
  39    private:
  40     static int Klass_vtable_start_offset;
  41     static int Klass_vtable_length_offset;
  42 
  43     static int Method_extra_stack_entries;
  44 
  45     static address SharedRuntime_ic_miss_stub;
  46     static address SharedRuntime_handle_wrong_method_stub;
  47     static address SharedRuntime_deopt_blob_unpack;




   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 #ifndef SHARE_JVMCI_JVMCICOMPILERTOVM_HPP
  25 #define SHARE_JVMCI_JVMCICOMPILERTOVM_HPP
  26 
  27 #include "gc/shared/cardTable.hpp"
  28 #include "gc/shared/collectedHeap.hpp"
  29 #include "jvmci/jvmciExceptions.hpp"
  30 #include "runtime/javaCalls.hpp"
  31 #include "runtime/signature.hpp"
  32 
  33 class JVMCIObjectArray;
  34 
  35 class CompilerToVM {
  36  public:
  37   class Data {
  38     friend class JVMCIVMStructs;
  39 
  40    private:
  41     static int Klass_vtable_start_offset;
  42     static int Klass_vtable_length_offset;
  43 
  44     static int Method_extra_stack_entries;
  45 
  46     static address SharedRuntime_ic_miss_stub;
  47     static address SharedRuntime_handle_wrong_method_stub;
  48     static address SharedRuntime_deopt_blob_unpack;


< prev index next >