--- old/src/hotspot/share/interpreter/templateInterpreter.hpp 2017-10-11 15:25:29.893085807 +0200 +++ new/src/hotspot/share/interpreter/templateInterpreter.hpp 2017-10-11 15:25:29.653075502 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -162,6 +162,7 @@ static int distance_from_dispatch_table(TosState state){ return _active_table.distance_from(state); } static address* normal_table(TosState state) { return _normal_table.table_for(state); } static address* normal_table() { return _normal_table.table_for(); } + static address* safept_table(TosState state) { return _safept_table.table_for(state); } // Support for invokes static address* invoke_return_entry_table() { return _invoke_return_entry; }