< prev index next >

src/hotspot/cpu/aarch64/stubRoutines_aarch64.hpp

Print this page
rev 58823 : [mq]: aarch64-jdk-nmethod-barriers-3.patch

*** 1,7 **** /* ! * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2014, Red Hat Inc. 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 * under the terms of the GNU General Public License version 2 only, as --- 1,7 ---- /* ! * Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2014, Red Hat Inc. 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 * under the terms of the GNU General Public License version 2 only, as
*** 67,76 **** --- 67,79 ---- static address _compare_long_string_UU; static address _string_indexof_linear_ll; static address _string_indexof_linear_uu; static address _string_indexof_linear_ul; static address _large_byte_array_inflate; + + static address _method_entry_barrier; + static bool _completed; public: static address get_previous_fp_entry()
*** 169,178 **** --- 172,185 ---- static address large_byte_array_inflate() { return _large_byte_array_inflate; } + static address method_entry_barrier() { + return _method_entry_barrier; + } + static bool complete() { return _completed; } static void set_completed() {
< prev index next >