< prev index next >

src/hotspot/cpu/zero/compiledIC_zero.cpp

Print this page
rev 56464 : 8231707: Improve Mutex inlining
Contributed-by: robbin.ehn@oracle.com, claes.redestad@oracle.com


  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "code/codeCache.hpp"
  28 #include "code/compiledIC.hpp"
  29 #include "code/icBuffer.hpp"
  30 #include "code/nmethod.hpp"
  31 #include "code/vtableStubs.hpp"
  32 #include "interpreter/interpreter.hpp"
  33 #include "interpreter/linkResolver.hpp"
  34 #include "memory/metadataFactory.hpp"
  35 #include "memory/oopFactory.hpp"
  36 #include "oops/method.hpp"
  37 #include "oops/oop.inline.hpp"
  38 #include "oops/symbol.hpp"
  39 #include "runtime/icache.hpp"
  40 #include "runtime/sharedRuntime.hpp"
  41 #include "runtime/stubRoutines.hpp"
  42 #include "utilities/events.hpp"
  43 
  44 
  45 // ----------------------------------------------------------------------------
  46 
  47 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
  48   ShouldNotReachHere(); // Only needed for COMPILER2.
  49   return NULL;
  50 }
  51 
  52 int CompiledStaticCall::to_interp_stub_size() {
  53   ShouldNotReachHere(); // Only needed for COMPILER2.
  54   return 0;
  55 }
  56 
  57 // Relocation entries for call stub, compiled java to interpreter.
  58 int CompiledStaticCall::reloc_to_interp_stub() {
  59   ShouldNotReachHere(); // Only needed for COMPILER2.
  60   return 0;
  61 }
  62 


  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/systemDictionary.hpp"
  27 #include "code/codeCache.hpp"
  28 #include "code/compiledIC.hpp"
  29 #include "code/icBuffer.hpp"
  30 #include "code/nmethod.hpp"
  31 #include "code/vtableStubs.hpp"
  32 #include "interpreter/interpreter.hpp"
  33 #include "interpreter/linkResolver.hpp"
  34 #include "memory/metadataFactory.hpp"
  35 #include "memory/oopFactory.hpp"
  36 #include "oops/method.hpp"
  37 #include "oops/oop.inline.hpp"
  38 #include "oops/symbol.hpp"
  39 #include "runtime/icache.hpp"
  40 #include "runtime/sharedRuntime.hpp"
  41 #include "runtime/stubRoutines.hpp"
  42 #include "utilities/events.inline.hpp"
  43 
  44 
  45 // ----------------------------------------------------------------------------
  46 
  47 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
  48   ShouldNotReachHere(); // Only needed for COMPILER2.
  49   return NULL;
  50 }
  51 
  52 int CompiledStaticCall::to_interp_stub_size() {
  53   ShouldNotReachHere(); // Only needed for COMPILER2.
  54   return 0;
  55 }
  56 
  57 // Relocation entries for call stub, compiled java to interpreter.
  58 int CompiledStaticCall::reloc_to_interp_stub() {
  59   ShouldNotReachHere(); // Only needed for COMPILER2.
  60   return 0;
  61 }
  62 
< prev index next >