blob: 86a8ce2cab2b7283fa287549ab506cebb575e880 [file] [log] [blame]
Andreas Gampe5dd44d02016-08-02 17:20:03 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_RUNTIME_NATIVE_STACK_DUMP_H_
18#define ART_RUNTIME_NATIVE_STACK_DUMP_H_
19
20#include <unistd.h>
21
22#include <iosfwd>
23
24#include "base/macros.h"
25
Christopher Ferrisf44070e2022-03-26 09:54:32 -070026namespace unwindstack {
27class AndroidLocalUnwinder;
28} // namespace unwindstack
Andreas Gampe5dd44d02016-08-02 17:20:03 -070029
30namespace art {
31
32class ArtMethod;
33
David Srbecky6940a812022-09-29 14:40:10 +010034// Remove method parameters by finding matching top-level parenthesis and removing them.
35// Since functions can be defined inside functions, this can remove multiple substrings.
36std::string StripParameters(std::string name);
37
Andreas Gampe5dd44d02016-08-02 17:20:03 -070038// Dumps the native stack for thread 'tid' to 'os'.
39void DumpNativeStack(std::ostream& os,
40 pid_t tid,
Christopher Ferrisf44070e2022-03-26 09:54:32 -070041 const char* prefix = "",
42 ArtMethod* current_method = nullptr,
43 void* ucontext = nullptr,
44 bool skip_frames = true)
45 NO_THREAD_SAFETY_ANALYSIS;
46
47void DumpNativeStack(std::ostream& os,
48 unwindstack::AndroidLocalUnwinder& unwinder,
49 pid_t tid,
Andreas Gampe5dd44d02016-08-02 17:20:03 -070050 const char* prefix = "",
51 ArtMethod* current_method = nullptr,
Christopher Ferrisb2749312018-03-23 13:03:45 -070052 void* ucontext = nullptr,
53 bool skip_frames = true)
Andreas Gampe5dd44d02016-08-02 17:20:03 -070054 NO_THREAD_SAFETY_ANALYSIS;
55
Andreas Gampe5dd44d02016-08-02 17:20:03 -070056} // namespace art
57
58#endif // ART_RUNTIME_NATIVE_STACK_DUMP_H_