< prev index next >

src/hotspot/cpu/sparc/compiledIC_sparc.cpp

Print this page
rev 48402 : 8193260: AArch64: JVMCI: Implement trampoline calls
Reviewed-by: adinn

@@ -71,10 +71,15 @@
   __ end_a_stub();
   return base;
 }
 #undef __
 
+int CompiledStaticCall::to_trampoline_stub_size() {
+  // SPARC doesn't use trampolines.
+  return 0;
+}
+
 int CompiledStaticCall::to_interp_stub_size() {
   // This doesn't need to be accurate but it must be larger or equal to
   // the real size of the stub.
   return (NativeMovConstReg::instruction_size +  // sethi/setlo;
           NativeJump::instruction_size); // sethi; jmp; nop
< prev index next >