]> git.sur5r.net Git - cc65/blob - src/ld65/condes.h
Improved code generation
[cc65] / src / ld65 / condes.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                 condes.h                                  */
4 /*                                                                           */
5 /*                   Module constructor/destructor support                   */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2003 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 52                                             */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef CONDES_H
37 #define CONDES_H
38
39
40
41 /*****************************************************************************/
42 /*                                 Forwards                                  */
43 /*****************************************************************************/
44
45
46
47 struct Export;
48
49
50
51 /*****************************************************************************/
52 /*                                   Data                                    */
53 /*****************************************************************************/
54
55
56
57 /* Order of the tables */
58 typedef enum {
59     cdIncreasing,               /* Increasing priority - default */
60     cdDecreasing                /* Decreasing priority */
61 } ConDesOrder;
62
63
64
65 /*****************************************************************************/
66 /*                                   Code                                    */
67 /*****************************************************************************/
68
69
70
71 void ConDesAddExport (struct Export* E);
72 /* Add the given export to the list of constructors/destructor */
73
74 void ConDesSetSegName (unsigned Type, unsigned SegName);
75 /* Set the segment name where the table should go */
76
77 void ConDesSetLabel (unsigned Type, unsigned Name);
78 /* Set the label for the given ConDes type */
79
80 void ConDesSetCountSym (unsigned Type, unsigned Name);
81 /* Set the name for the given ConDes count symbol */
82
83 void ConDesSetOrder (unsigned Type, ConDesOrder Order);
84 /* Set the sorting oder for the given ConDes table */
85
86 int ConDesHasSegName (unsigned Type);
87 /* Return true if a segment name is already defined for this ConDes type */
88
89 int ConDesHasLabel (unsigned Type);
90 /* Return true if a label is already defined for this ConDes type */
91
92 void ConDesCreate (void);
93 /* Create the condes tables if requested */
94
95 void ConDesDump (void);
96 /* Dump ConDes data to stdout for debugging */
97
98
99
100 /* End of condes.h */
101
102 #endif
103
104
105