1 /**
2 * Copyright (c) 2022-2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #ifndef PANDA_PROFILING_INL_H
17 #define PANDA_PROFILING_INL_H
18
19 #include "profiling.h"
20 #include "runtime/profiling/generated/profiling_includes.h"
21 #include "runtime/include/profiling_gen.h"
22
23 namespace ark::profiling {
24
ClearProfile(const BytecodeInstruction & inst,Method * method,PandaVM * vm,ark::panda_file::SourceLang lang)25 inline void ClearProfile([[maybe_unused]] const BytecodeInstruction &inst, [[maybe_unused]] Method *method,
26 [[maybe_unused]] PandaVM *vm, [[maybe_unused]] ark::panda_file::SourceLang lang)
27 {
28 // NOLINTNEXTLINE(hicpp-multiway-paths-covered)
29 switch (lang) {
30 #include "runtime/profiling/generated/clear_profile.h"
31 default:
32 break;
33 }
34 }
35
36 } // namespace ark::profiling
37
38 #endif // PANDA_PROFILING_INL_H