src/cpu/zero/vm/compiledIC_zero.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff src/cpu/zero/vm

src/cpu/zero/vm/compiledIC_zero.cpp

Print this page




  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 
  63 void CompiledStaticCall::set_to_interpreted(methodHandle callee, address entry) {
  64   ShouldNotReachHere(); // Only needed for COMPILER2.
  65 }
  66 
  67 void CompiledStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) {
  68   ShouldNotReachHere(); // Only needed for COMPILER2.
  69 }
  70 
  71 //-----------------------------------------------------------------------------
  72 // Non-product mode code.
  73 #ifndef PRODUCT
  74 
  75 void CompiledStaticCall::verify() {
  76   ShouldNotReachHere(); // Only needed for COMPILER2.
  77 }
  78 
  79 #endif // !PRODUCT


  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 
  63 void CompiledDirectStaticCall::set_to_interpreted(const methodHandle& callee, address entry) {
  64   ShouldNotReachHere(); // Only needed for COMPILER2.
  65 }
  66 
  67 void CompiledDirectStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) {
  68   ShouldNotReachHere(); // Only needed for COMPILER2.
  69 }
  70 
  71 //-----------------------------------------------------------------------------
  72 // Non-product mode code.
  73 #ifndef PRODUCT
  74 
  75 void CompiledDirectStaticCall::verify() {
  76   ShouldNotReachHere(); // Only needed for COMPILER2.
  77 }
  78 
  79 #endif // !PRODUCT
src/cpu/zero/vm/compiledIC_zero.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File