P4C
The P4 Compiler
Loading...
Searching...
No Matches
alloc_trace.h
1/*
2Copyright 2023-present Intel
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17#ifndef LIB_ALLOC_TRACE_H_
18#define LIB_ALLOC_TRACE_H_
19
20#include <map>
21#include <ostream>
22
23#include "config.h"
24#include "exceptions.h"
25#include "gc.h"
26
28 struct backtrace {
29 void *trace[ALLOC_TRACE_DEPTH];
30
31 backtrace(const backtrace &) = default;
32 explicit backtrace(void **bt) { memcpy(trace, bt, sizeof(trace)); }
33 bool operator<(const backtrace &a) const {
34 for (int i = 0; i < ALLOC_TRACE_DEPTH; ++i)
35 if (trace[i] != a.trace[i]) return trace[i] < a.trace[i];
36 return false;
37 }
38 bool operator==(const backtrace &a) const {
39 for (int i = 0; i < ALLOC_TRACE_DEPTH; ++i)
40 if (trace[i] != a.trace[i]) return false;
41 return true;
42 }
43 };
44 std::map<backtrace, std::map<size_t, int>> data;
45 void count(void **, size_t);
46 static void callback(void *t, void **bt, size_t sz) {
47 static_cast<AllocTrace *>(t)->count(bt, sz);
48 }
49
50 public:
51 void clear() { data.clear(); }
52#if HAVE_LIBGC
53 alloc_trace_cb_t start() { return set_alloc_trace(callback, this); }
54 void stop(alloc_trace_cb_t old) {
55 auto tmp = set_alloc_trace(old);
56 BUG_CHECK(tmp.fn == callback && tmp.arg == this, "AllocTrace stopped when not running");
57 }
58#else
59 alloc_trace_cb_t start() {
60 BUG("Can't trace allocations without garbage collection");
61 return alloc_trace_cb_t{};
62 }
63 void stop(alloc_trace_cb_t) {}
64#endif
65 friend std::ostream &operator<<(std::ostream &, const AllocTrace &);
66};
67
69#if HAVE_LIBGC
71 PauseTrace(const PauseTrace &) = delete;
72
73 public:
74 PauseTrace() { hold = set_alloc_trace(nullptr, nullptr); }
75 ~PauseTrace() { set_alloc_trace(hold); }
76#endif
77};
78
79#endif /* LIB_ALLOC_TRACE_H_ */
Definition alloc_trace.h:27
Definition alloc_trace.h:68
Definition gc.h:26