hotspot/src/share/vm/ci/ciMethodHandle.cpp
changeset 10973 3b6e9c685073
parent 10514 e229a19078cf
child 13391 30245956af37
equal deleted inserted replaced
10972:ef164805934c 10973:3b6e9c685073
    84   }
    84   }
    85   return result;
    85   return result;
    86 }
    86 }
    87 
    87 
    88 
    88 
    89 #ifndef PRODUCT
    89 #ifdef ASSERT
    90 // ------------------------------------------------------------------
    90 // ------------------------------------------------------------------
    91 // ciMethodHandle::print_chain_impl
    91 // ciMethodHandle::print_chain_impl
    92 //
    92 //
    93 // Implementation of the print method.
    93 // Implementation of the print method.
    94 void ciMethodHandle::print_chain_impl(outputStream* st) {
    94 void ciMethodHandle::print_chain_impl() {
    95   ASSERT_IN_VM;
    95   ASSERT_IN_VM;
    96   MethodHandleChain::print(get_oop());
    96   MethodHandleChain::print(get_oop());
    97 }
    97 }
    98 
    98 
    99 
    99 
   100 // ------------------------------------------------------------------
   100 // ------------------------------------------------------------------
   101 // ciMethodHandle::print_chain
   101 // ciMethodHandle::print_chain
   102 //
   102 //
   103 // Implementation of the print_chain method.
   103 // Implementation of the print_chain method.
   104 void ciMethodHandle::print_chain(outputStream* st) {
   104 void ciMethodHandle::print_chain() {
   105   GUARDED_VM_ENTRY(print_chain_impl(st););
   105   GUARDED_VM_ENTRY(print_chain_impl(););
   106 }
   106 }
   107 #endif
   107 #endif