22#define MAX_WORD_LEN 64
23#define LOWERCASE(c) if(c >= 'A' && c <= 'Z') c -= 'A' - 'a'
50 AtomRec* rec = ((AtomRec*) env->atomTable.
ptr.
v) + atom;
53 return env->atomNames.
ptr.
c + rec->nameIndex;
57uint32_t ur_hash(
const uint8_t* str,
const uint8_t* end )
66 hashval = (33 * hashval) + 720 + c;
89#define HASH_INSERT( atoms, avail, table, node, hash, index ) \
90 node = table + (hash % avail); \
91 if( node->head == 0xffff ) \
94 node = table + node->head; \
95 while( node->chain != 0xffff ) \
96 node = table + node->chain; \
97 node->chain = index; \
101static void _rebuildAtomHash(
UBuffer* buf )
109 table = ur_ptr(AtomRec, buf);
126 end = table + buf->
used;
129 HASH_INSERT( buf, avail, table, node, it->hash, it - table )
144 const uint8_t* str,
const uint8_t* end )
163 printf(
"KR intern {%s}\n", rep );
167 if( len > MAX_WORD_LEN )
172 hash = ur_hash( str, end );
174 table = ur_ptr(AtomRec, atoms);
177 node = table + (hash % avail);
178 if( node->head == 0xffff )
180 node->head = atoms->
used;
184 node = table + node->head;
187 if( node->nameLen == len )
189 sp = names->
ptr.
b + node->nameIndex;
211 if( node->chain == 0xffff )
213 node->chain = atoms->
used;
216 node = table + node->chain;
222 if( atoms->
used == avail )
228 return UR_INVALID_ATOM;
230 node = table + atoms->
used;
234 node->nameIndex = names->
used;
242 return UR_INVALID_ATOM;
245 ur_arrayReserve( names,
sizeof(
char), names->
used + len + 1 );
249 names->
used += len + 1;
275 const char* names = env->atomNames.
ptr.
c;
276 AtomRec* table = (AtomRec*) env->atomTable.
ptr.
v;
278 AtomRec* end = table + env->atomTable.
used;
288 dprint( OFFINT
" %08x %5d %5d %s\n", it - table, it->hash,
290 names + it->nameIndex );
const char * ur_atomCStr(UThread *ut, UAtom atom)
Get name of atom.
Definition atoms.c:47
UStatus ur_error(UThread *, int errorType, const char *fmt,...)
Create error! exception.
Definition env.c:964
The UBuffer struct holds information about a resource, usually a chunk of memory.
Definition urlan.h:266
uint8_t * b
bytes
Definition urlan.h:277
void * v
Other.
Definition urlan.h:285
char * c
chars
Definition urlan.h:276
UIndex used
This typically holds the number of elements in the buffer.
Definition urlan.h:271
union UBuffer::@312146223224040072236377336057316010374162171270 ptr
This typically holds a pointer to a chunk of memory.
The UThread struct stores the data specific to a thread of execution.
Definition urlan.h:309
UEnv * env
Pointer to the shared environment.
Definition urlan.h:321
#define ur_avail(buf)
Returns the capacity of a UBuffer that is known to have been allocated.
Definition urlan.h:687
@ UR_ERR_INTERNAL
Fatal internal problem.
Definition urlan.h:129
int32_t UIndex
This is an index into an array.
Definition urlan.h:150