Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / util / pstack.c
bloba1d1e4ef6257ee9a4d6d1f8e5e317f00b6412955
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Simple pointer stack
5 * (c) 2010 Arnaldo Carvalho de Melo <acme@redhat.com>
6 */
8 #include "pstack.h"
9 #include "debug.h"
10 #include <linux/kernel.h>
11 #include <linux/zalloc.h>
12 #include <stdlib.h>
13 #include <string.h>
15 struct pstack {
16 unsigned short top;
17 unsigned short max_nr_entries;
18 void *entries[];
21 struct pstack *pstack__new(unsigned short max_nr_entries)
23 struct pstack *pstack = zalloc((sizeof(*pstack) +
24 max_nr_entries * sizeof(void *)));
25 if (pstack != NULL)
26 pstack->max_nr_entries = max_nr_entries;
27 return pstack;
30 void pstack__delete(struct pstack *pstack)
32 free(pstack);
35 bool pstack__empty(const struct pstack *pstack)
37 return pstack->top == 0;
40 void pstack__remove(struct pstack *pstack, void *key)
42 unsigned short i = pstack->top, last_index = pstack->top - 1;
44 while (i-- != 0) {
45 if (pstack->entries[i] == key) {
46 if (i < last_index)
47 memmove(pstack->entries + i,
48 pstack->entries + i + 1,
49 (last_index - i) * sizeof(void *));
50 --pstack->top;
51 return;
54 pr_err("%s: %p not on the pstack!\n", __func__, key);
57 void pstack__push(struct pstack *pstack, void *key)
59 if (pstack->top == pstack->max_nr_entries) {
60 pr_err("%s: top=%d, overflow!\n", __func__, pstack->top);
61 return;
63 pstack->entries[pstack->top++] = key;
66 void *pstack__pop(struct pstack *pstack)
68 void *ret;
70 if (pstack->top == 0) {
71 pr_err("%s: underflow!\n", __func__);
72 return NULL;
75 ret = pstack->entries[--pstack->top];
76 pstack->entries[pstack->top] = NULL;
77 return ret;
80 void *pstack__peek(struct pstack *pstack)
82 if (pstack->top == 0)
83 return NULL;
84 return pstack->entries[pstack->top - 1];