]> git.sur5r.net Git - cc65/blob - src/cc65/segments.h
Working on the backend
[cc65] / src / cc65 / segments.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                segments.h                                 */
4 /*                                                                           */
5 /*                            Segment management                             */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2001 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
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 SEGMENTS_H
37 #define SEGMENTS_H
38
39
40
41 #include <stdio.h>
42
43 /* common */
44 #include "attrib.h"
45
46
47
48 /*****************************************************************************/
49 /*                                 Forwards                                  */
50 /*****************************************************************************/
51
52
53
54 struct CodeSeg;
55 struct DataSeg;
56 struct TextSeg;
57 struct SymEntry;
58
59
60
61 /*****************************************************************************/
62 /*                                   Data                                    */
63 /*****************************************************************************/
64
65
66
67 /* Segment types */
68 typedef enum segment_t {
69     SEG_CODE,
70     SEG_RODATA,
71     SEG_DATA,
72     SEG_BSS,
73     SEG_COUNT
74 } segment_t;
75
76 /* A list of all segments used when generating code */
77 typedef struct Segments Segments;
78 struct Segments {
79     struct TextSeg*     Text;           /* Text segment */
80     struct CodeSeg*     Code;           /* Code segment */
81     struct DataSeg*     Data;           /* Data segment */
82     struct DataSeg*     ROData;         /* Readonly data segment */
83     struct DataSeg*     BSS;            /* Segment for uninitialized data */
84     segment_t           CurDSeg;        /* Current data segment */
85 };
86
87 /* Pointer to the current segment list. Output goes here. */
88 extern Segments* CS;
89
90
91
92 /*****************************************************************************/
93 /*                                   Code                                    */
94 /*****************************************************************************/
95
96
97
98 void InitSegNames (void);
99 /* Initialize the segment names */
100
101 void NewSegName (segment_t Seg, const char* Name);
102 /* Set a new name for a segment */
103
104 int ValidSegName (const char* Name);
105 /* Return true if the given segment name is valid, return false otherwise */
106
107 Segments* PushSegments (struct SymEntry* Func);
108 /* Make the new segment list current but remember the old one */
109
110 void PopSegments (void);
111 /* Pop the old segment list (make it current) */
112
113 void UseDataSeg (segment_t DSeg);
114 /* For the current segment list, use the data segment DSeg */
115
116 struct DataSeg* GetDataSeg (void);
117 /* Return the current data segment */
118
119 void AddTextLine (const char* Format, ...) attribute ((format (printf, 1, 2)));
120 /* Add a line of code to the current text segment */
121
122 void AddCodeLine (const char* Format, ...) attribute ((format (printf, 1, 2)));
123 /* Add a line of code to the current code segment */
124
125 void AddDataLine (const char* Format, ...) attribute ((format (printf, 1, 2)));
126 /* Add a line of data to the current data segment */
127
128 void OutputSegments (const Segments* S, FILE* F);
129 /* Output the given segments to the file */
130
131
132
133 /* End of segments.h */
134 #endif
135
136
137