summaryrefslogtreecommitdiffhomepage
path: root/include/mdso/mdso_output.h
blob: 9b158ed7785cbf3657720c12088f8f8a6fb08172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MDSO_OUTPUT_H
#define MDSO_OUTPUT_H

#include <stdint.h>

#define MDSO_PRETTY(x)			((uint64_t)x << 32)

/* output actions */
#define MDSO_OUTPUT_EXPORT_SYMS		0x00000001


/* pretty-printer flags */
#define MDSO_PRETTY_LIST		MDSO_PRETTY(0x00000001)
#define MDSO_PRETTY_TABLE		MDSO_PRETTY(0x00000002)
#define MDSO_PRETTY_READOBJ		MDSO_PRETTY(0x00000004)
#define MDSO_PRETTY_OBJDUMP		MDSO_PRETTY(0x00000008)
#define MDSO_PRETTY_YAML		MDSO_PRETTY(0x00000010)

#endif