|
| 1 | +/* |
| 2 | + * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 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 |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + * |
| 23 | + */ |
| 24 | + |
| 25 | + |
| 26 | +#include "precompiled.hpp" |
| 27 | +#include "jfr/jni/jfrJavaSupport.hpp" |
| 28 | +#include "jfr/recorder/stacktrace/jfrStackFilter.hpp" |
| 29 | +#include "jfr/recorder/stacktrace/jfrStackFilterRegistry.hpp" |
| 30 | +#include "logging/log.hpp" |
| 31 | + |
| 32 | +static const intptr_t STACK_FILTER_ELEMENTS_SIZE = 4096; |
| 33 | +static const intptr_t STACK_FILTER_ERROR_CODE = -1; |
| 34 | +static const JfrStackFilter* _elements[STACK_FILTER_ELEMENTS_SIZE]; |
| 35 | +static intptr_t _free_list[STACK_FILTER_ELEMENTS_SIZE]; |
| 36 | +static intptr_t _index = 0; |
| 37 | +static intptr_t _free_list_index = 0; |
| 38 | + |
| 39 | +int64_t JfrStackFilterRegistry::add(jobjectArray classes, jobjectArray methods, JavaThread* jt) { |
| 40 | + intptr_t c_size = 0; |
| 41 | + Symbol** class_names = JfrJavaSupport::symbol_array(classes, jt, &c_size, true); |
| 42 | + assert(class_names != nullptr, "invariant"); |
| 43 | + intptr_t m_size = 0; |
| 44 | + Symbol** method_names = JfrJavaSupport::symbol_array(methods, jt, &m_size, true); |
| 45 | + assert(method_names != nullptr, "invariant"); |
| 46 | + if (c_size != m_size) { |
| 47 | + FREE_C_HEAP_ARRAY(Symbol*, class_names); |
| 48 | + FREE_C_HEAP_ARRAY(Symbol*, method_names); |
| 49 | + JfrJavaSupport::throw_internal_error("Method array size doesn't match class array size", jt); |
| 50 | + return STACK_FILTER_ERROR_CODE; |
| 51 | + } |
| 52 | + assert(c_size >= 0, "invariant"); |
| 53 | + const JfrStackFilter* filter = new JfrStackFilter(class_names, method_names, static_cast<size_t>(c_size)); |
| 54 | + return JfrStackFilterRegistry::add(filter); |
| 55 | +} |
| 56 | + |
| 57 | +#ifdef ASSERT |
| 58 | +static bool range_check(int64_t idx) { |
| 59 | + return idx < STACK_FILTER_ELEMENTS_SIZE && idx >= 0; |
| 60 | +} |
| 61 | +#endif |
| 62 | + |
| 63 | +int64_t JfrStackFilterRegistry::add(const JfrStackFilter* filter) { |
| 64 | + if (_free_list_index > 0) { |
| 65 | + assert(range_check(_free_list_index), "invariant"); |
| 66 | + const intptr_t free_index = _free_list[_free_list_index - 1]; |
| 67 | + _elements[free_index] = filter; |
| 68 | + _free_list_index--; |
| 69 | + return free_index; |
| 70 | + } |
| 71 | + if (_index >= STACK_FILTER_ELEMENTS_SIZE - 1) { |
| 72 | + log_warning(jfr)("Maximum number of @StackFrame in use has been reached."); |
| 73 | + return STACK_FILTER_ERROR_CODE; |
| 74 | + } |
| 75 | + assert(range_check(_index), "invariant"); |
| 76 | + _elements[_index] = filter; |
| 77 | + return _index++; |
| 78 | +} |
| 79 | + |
| 80 | +const JfrStackFilter* JfrStackFilterRegistry::lookup(int64_t id) { |
| 81 | + if (id < 0) { |
| 82 | + return nullptr; |
| 83 | + } |
| 84 | + assert(range_check(id), "invariant"); |
| 85 | + return _elements[id]; |
| 86 | +} |
| 87 | + |
| 88 | +void JfrStackFilterRegistry::remove(int64_t index) { |
| 89 | + assert(range_check(index), "invariant"); |
| 90 | + delete _elements[index]; |
| 91 | + if (_free_list_index < STACK_FILTER_ELEMENTS_SIZE - 1) { |
| 92 | + assert(range_check(_free_list_index), "invariant"); |
| 93 | + _free_list[_free_list_index++] = index; |
| 94 | + } |
| 95 | +} |
0 commit comments