source: mainline/kernel/generic/include/debug/types.h

Last change on this file was 1170cfc7, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 20 months ago

Remove include sorcery from DWARF constant definitions

Also add a bunch of missing constants.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1/*
2 * Copyright (c) 2023 Jiří Zárevúcky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef DEBUG_DWARF_TYPES_H_
30#define DEBUG_DWARF_TYPES_H_
31
32typedef unsigned dw_access_t;
33typedef unsigned dw_at_t;
34typedef unsigned dw_ate_t;
35typedef unsigned dw_cc_t;
36typedef unsigned dw_cfa_t;
37typedef unsigned dw_defaulted_t;
38typedef unsigned dw_ds_t;
39typedef unsigned dw_dsc_t;
40typedef unsigned dw_end_t;
41typedef unsigned dw_form_t;
42typedef unsigned dw_id_t;
43typedef unsigned dw_idx_t;
44typedef unsigned dw_idx_t;
45typedef unsigned dw_inl_t;
46typedef unsigned dw_lang_t;
47typedef unsigned dw_lle_t;
48typedef unsigned dw_lnct_t;
49typedef unsigned dw_lne_t;
50typedef unsigned dw_lns_t;
51typedef unsigned dw_macro_t;
52typedef unsigned dw_op_t;
53typedef unsigned dw_ord_t;
54typedef unsigned dw_rle_t;
55typedef unsigned dw_sect_t;
56typedef unsigned dw_tag_t;
57typedef unsigned dw_ut_t;
58typedef unsigned dw_virtuality_t;
59typedef unsigned dw_vis_t;
60
61#endif /* DEBUG_DWARF_TYPES_H_ */
Note: See TracBrowser for help on using the repository browser.