Home | History | Annotate | Download | only in aic7xxx

Lines Matching defs:curnode

211 	symbol_node_t *curnode;
213 curnode = SLIST_FIRST(symlist);
214 while(curnode != NULL) {
215 if (strcmp(symname, curnode->symbol->name) == 0)
217 curnode = SLIST_NEXT(curnode, links);
219 return (curnode);
234 symbol_node_t *curnode;
255 curnode = SLIST_FIRST(symlist);
256 if (curnode == NULL
258 && (curnode->symbol->type > newnode->symbol->type
259 || (curnode->symbol->type == newnode->symbol->type
260 && (curnode->symbol->info.finfo->value >
262 || (!field && (curnode->symbol->info.rinfo->address >
269 if (SLIST_NEXT(curnode, links) == NULL) {
270 SLIST_INSERT_AFTER(curnode, newnode,
276 cursymbol = SLIST_NEXT(curnode, links)->symbol;
285 SLIST_INSERT_AFTER(curnode, newnode,
290 curnode = SLIST_NEXT(curnode, links);
440 aic_print_reg_dump_entry(FILE *dfile, symbol_node_t *curnode)
449 curnode->symbol->name);
451 num_tabs = 3 - (strlen(curnode->symbol->name) + 5) / 8;
456 curnode->symbol->info.finfo->value,
457 curnode->symbol->info.finfo->mask);
474 symbol_node_t *curnode;
536 SLIST_FOREACH(curnode, &registers, links) {
538 switch(curnode->symbol->type) {
548 fields = &curnode->symbol->info.rinfo->fields;
552 curnode);
559 curnode, num_entries);
570 curnode = SLIST_FIRST(&masks);
573 regnode = SLIST_FIRST(&curnode->symbol->info.finfo->symrefs);
576 SLIST_INSERT_AFTER(regnode, curnode, links);
583 curnode = SLIST_FIRST(&aliases);
586 regname = curnode->symbol->info.ainfo->parent->name;
588 SLIST_INSERT_AFTER(regnode, curnode, links);
593 symbol_node_t *curnode;
598 curnode = SLIST_FIRST(&registers);
600 switch(curnode->symbol->type) {
605 value = curnode->symbol->info.rinfo->address;
613 parent = curnode->symbol->info.ainfo->parent;
623 value = curnode->symbol->info.finfo->value;
636 tab_str, curnode->symbol->name, tab_str2,
638 free(curnode);
643 symbol_node_t *curnode;
645 curnode = SLIST_FIRST(&constants);
648 curnode->symbol->name,
649 curnode->symbol->info.cinfo->value);
650 free(curnode);
657 symbol_node_t *curnode;
659 curnode = SLIST_FIRST(&download_constants);
662 curnode->symbol->name,
663 curnode->symbol->info.cinfo->value);
664 free(curnode);
671 symbol_node_t *curnode;
673 curnode = SLIST_FIRST(&exported_labels);
676 curnode->symbol->name,
677 curnode->symbol->info.linfo->address);
678 free(curnode);