Add an optional type to a span.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5253 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-08-21 19:44:02 +00:00
parent f2de523b5d
commit 913db79017
3 changed files with 35 additions and 16 deletions

View File

@@ -43,6 +43,7 @@
#include "objfile.h"
#include "segment.h"
#include "span.h"
#include "spool.h"
@@ -155,7 +156,7 @@ static Span* NewSpan (Segment* Seg, unsigned long Start, unsigned long End)
S->Seg = Seg;
S->Start = Start;
S->End = End;
S->Type = 0;
S->Type = EMPTY_STRING_ID;
/* Return the new struct */
return S;
@@ -183,9 +184,11 @@ static Span* MergeSpan (Span* S)
Span* E = HT_Find (&SpanTab, S);
if (E) {
/* If S has a type and E not, move the type */
CHECK (E->Type == 0);
E->Type = S->Type;
S->Type = 0;
if (S->Type != EMPTY_STRING_ID) {
CHECK (E->Type == EMPTY_STRING_ID);
E->Type = S->Type;
}
/* Free S and return E */
FreeSpan (S);
return E;
@@ -199,6 +202,14 @@ static Span* MergeSpan (Span* S)
void SetSpanType (Span* S, const StrBuf* Type)
/* Set the generic type of the span to Type */
{
S->Type = GetStrBufId (Type);
}
Span* OpenSpan (void)
/* Open a span for the active segment and return it. */
{
@@ -377,6 +388,7 @@ void WriteSpans (void)
ObjWriteVar (S->Seg->Num);
ObjWriteVar (S->Start);
ObjWriteVar (S->End - S->Start);
ObjWriteVar (S->Type);
}
/* Free the collection with the spans */

View File

@@ -43,6 +43,7 @@
#include "gentype.h"
#include "hashtab.h"
#include "inline.h"
#include "strbuf.h"
@@ -84,6 +85,9 @@ INLINE unsigned long GetSpanSize (const Span* R)
# define GetSpanSize(R) ((R)->End - (R)->Start)
#endif
void SetSpanType (Span* S, const StrBuf* Type);
/* Set the generic type of the span to Type */
Span* OpenSpan (void);
/* Open a span for the active segment and return it. */