mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 03:04:31 +00:00
a4b43370e7
git-svn-id: svn://svn.cc65.org/cc65/trunk@3806 b7a2c559-68d2-44c3-8de9-860c34a00d81
113 lines
4.6 KiB
C
113 lines
4.6 KiB
C
/*****************************************************************************/
|
|
/* */
|
|
/* segment.c */
|
|
/* */
|
|
/* Segment handling for da65 */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* (C) 2007 Ullrich von Bassewitz */
|
|
/* Roemerstrasse 52 */
|
|
/* D-70794 Filderstadt */
|
|
/* EMail: uz@cc65.org */
|
|
/* */
|
|
/* */
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
|
/* arising from the use of this software. */
|
|
/* */
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
/* including commercial applications, and to alter it and redistribute it */
|
|
/* freely, subject to the following restrictions: */
|
|
/* */
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
/* claim that you wrote the original software. If you use this software */
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
|
/* appreciated but is not required. */
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
|
/* be misrepresented as being the original software. */
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
/* distribution. */
|
|
/* */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
/* common */
|
|
#include "addrsize.h"
|
|
#include "xmalloc.h"
|
|
|
|
/* da65 */
|
|
#include "attrtab.h"
|
|
#include "segment.h"
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
/* Data */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
/* Hash definitions */
|
|
#define HASH_SIZE 53
|
|
|
|
/* Segment definition */
|
|
typedef struct Segment Segment;
|
|
struct Segment {
|
|
Segment* NextStart; /* Pointer to next segment */
|
|
Segment* NextEnd; /* Pointer to next segment */
|
|
unsigned long Start;
|
|
unsigned long End;
|
|
unsigned AddrSize;
|
|
char Name[1]; /* Name, dynamically allocated */
|
|
};
|
|
|
|
/* Tables containing the segments. A segment is inserted using it's hash
|
|
* value. Collision is done by single linked lists.
|
|
*/
|
|
static Segment* StartTab[HASH_SIZE]; /* Table containing segment starts */
|
|
static Segment* EndTab[HASH_SIZE]; /* Table containing segment ends */
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
/* Code */
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
void AddAbsSegment (unsigned Start, unsigned End, const char* Name)
|
|
/* Add an absolute segment to the segment table */
|
|
{
|
|
/* Get the length of the name */
|
|
unsigned Len = strlen (Name);
|
|
|
|
/* Create a new segment */
|
|
Segment* S = xmalloc (sizeof (Segment) + Len);
|
|
|
|
/* Fill in the data */
|
|
S->Start = Start;
|
|
S->End = End;
|
|
S->AddrSize = ADDR_SIZE_ABS;
|
|
memcpy (S->Name, Name, Len + 1);
|
|
|
|
/* Insert the segment into the hash tables */
|
|
S->NextStart = StartTab[Start % HASH_SIZE];
|
|
StartTab[Start % HASH_SIZE] = S;
|
|
S->NextEnd = EndTab[End % HASH_SIZE];
|
|
EndTab[End % HASH_SIZE] = S;
|
|
|
|
/* Mark start and end of the segment */
|
|
MarkAddr (Start, atSegmentChange);
|
|
MarkAddr (End, atSegmentChange);
|
|
|
|
/* Mark the addresses within the segment */
|
|
MarkRange (Start, End, atSegment);
|
|
}
|
|
|
|
|
|
|