aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/clang18-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h
blob: 10361a32034452e7306012db2a4affa5dcf10abd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
//===-- sanitizer_stacktrace_printer.h --------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file is shared between sanitizers' run-time libraries.
//
//===----------------------------------------------------------------------===//
#ifndef SANITIZER_STACKTRACE_PRINTER_H
#define SANITIZER_STACKTRACE_PRINTER_H

#include "sanitizer_common.h"
#include "sanitizer_internal_defs.h"
#include "sanitizer_symbolizer.h"

namespace __sanitizer {

// StacktracePrinter is an interface that is implemented by
// classes that can perform rendering of the different parts
// of a stacktrace.
class StackTracePrinter {
 public:
  static StackTracePrinter *GetOrInit();

  // Strip interceptor prefixes from function name.
  const char *StripFunctionName(const char *function);

  virtual void RenderFrame(InternalScopedString *buffer, const char *format,
                           int frame_no, uptr address, const AddressInfo *info,
                           bool vs_style,
                           const char *strip_path_prefix = "") = 0;

  virtual bool RenderNeedsSymbolization(const char *format) = 0;

  void RenderSourceLocation(InternalScopedString *buffer, const char *file,
                            int line, int column, bool vs_style,
                            const char *strip_path_prefix);

  void RenderModuleLocation(InternalScopedString *buffer, const char *module,
                            uptr offset, ModuleArch arch,
                            const char *strip_path_prefix);
  virtual void RenderData(InternalScopedString *buffer, const char *format,
                          const DataInfo *DI,
                          const char *strip_path_prefix = "") = 0;

 private:
  // To be called from StackTracePrinter::GetOrInit
  static StackTracePrinter *NewStackTracePrinter();

 protected:
  ~StackTracePrinter() {}
};

class FormattedStackTracePrinter : public StackTracePrinter {
 public:
  // Render the contents of "info" structure, which represents the contents of
  // stack frame "frame_no" and appends it to the "buffer". "format" is a
  // string with placeholders, which is copied to the output with
  // placeholders substituted with the contents of "info". For example,
  // format string
  //   "  frame %n: function %F at %S"
  // will be turned into
  //   "  frame 10: function foo::bar() at my/file.cc:10"
  // You may additionally pass "strip_path_prefix" to strip prefixes of paths to
  // source files and modules.
  // Here's the full list of available placeholders:
  //   %% - represents a '%' character;
  //   %n - frame number (copy of frame_no);
  //   %p - PC in hex format;
  //   %m - path to module (binary or shared object);
  //   %o - offset in the module in hex format;
  //   %f - function name;
  //   %q - offset in the function in hex format (*if available*);
  //   %s - path to source file;
  //   %l - line in the source file;
  //   %c - column in the source file;
  //   %F - if function is known to be <foo>, prints "in <foo>", possibly
  //        followed by the offset in this function, but only if source file
  //        is unknown;
  //   %S - prints file/line/column information;
  //   %L - prints location information: file/line/column, if it is known, or
  //        module+offset if it is known, or (<unknown module>) string.
  //   %M - prints module basename and offset, if it is known, or PC.
  void RenderFrame(InternalScopedString *buffer, const char *format,
                   int frame_no, uptr address, const AddressInfo *info,
                   bool vs_style, const char *strip_path_prefix = "") override;

  bool RenderNeedsSymbolization(const char *format) override;

  // Same as RenderFrame, but for data section (global variables).
  // Accepts %s, %l from above.
  // Also accepts:
  //   %g - name of the global variable.
  void RenderData(InternalScopedString *buffer, const char *format,
                  const DataInfo *DI,
                  const char *strip_path_prefix = "") override;

 protected:
  ~FormattedStackTracePrinter() {}
};

}  // namespace __sanitizer

#endif  // SANITIZER_STACKTRACE_PRINTER_H