hotspot/src/share/vm/interpreter/abstractInterpreter.hpp
changeset 33593 60764a78fa5c
parent 33066 d98eab8215c4
child 35214 d86005e0b4c2
equal deleted inserted replaced
33579:01ade4446d96 33593:60764a78fa5c
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   192                                      frame* interpreter_frame,
   192                                      frame* interpreter_frame,
   193                                      bool is_top_frame,
   193                                      bool is_top_frame,
   194                                      bool is_bottom_frame);
   194                                      bool is_bottom_frame);
   195 
   195 
   196   // Runtime support
   196   // Runtime support
   197   static bool       is_not_reached(                       methodHandle method, int bci);
   197   static bool       is_not_reached(const methodHandle& method, int bci);
   198   // Safepoint support
   198   // Safepoint support
   199   static void       notice_safepoints()                         { ShouldNotReachHere(); } // stops the thread when reaching a safepoint
   199   static void       notice_safepoints()                         { ShouldNotReachHere(); } // stops the thread when reaching a safepoint
   200   static void       ignore_safepoints()                         { ShouldNotReachHere(); } // ignores safepoints
   200   static void       ignore_safepoints()                         { ShouldNotReachHere(); } // ignores safepoints
   201 
   201 
   202   // Support for native calls
   202   // Support for native calls