cur_symbol         74 dev/microcode/aic7xxx/aicasm_gram.y static symbol_t *cur_symbol;
cur_symbol        310 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol = $1; 
cur_symbol        311 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol->type = cur_symtype;
cur_symbol        312 dev/microcode/aic7xxx/aicasm_gram.y 			initialize_symbol(cur_symbol);
cur_symbol        321 dev/microcode/aic7xxx/aicasm_gram.y 			if (cur_symbol->info.rinfo->valid_bitmask == 0)
cur_symbol        322 dev/microcode/aic7xxx/aicasm_gram.y 				cur_symbol->info.rinfo->valid_bitmask = 0xFF;
cur_symbol        324 dev/microcode/aic7xxx/aicasm_gram.y 			if (cur_symbol->info.rinfo->size == 0)
cur_symbol        325 dev/microcode/aic7xxx/aicasm_gram.y 				cur_symbol->info.rinfo->size = 1;
cur_symbol        330 dev/microcode/aic7xxx/aicasm_gram.y 			if (cur_symbol->type != REGISTER) {
cur_symbol        331 dev/microcode/aic7xxx/aicasm_gram.y 				if (cur_symbol->info.rinfo->address == 0)
cur_symbol        332 dev/microcode/aic7xxx/aicasm_gram.y 					cur_symbol->info.rinfo->address =
cur_symbol        335 dev/microcode/aic7xxx/aicasm_gram.y 				    cur_symbol->info.rinfo->size;
cur_symbol        337 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol = NULL;
cur_symbol        366 dev/microcode/aic7xxx/aicasm_gram.y 		cur_symbol->info.rinfo->address = $2;
cur_symbol        373 dev/microcode/aic7xxx/aicasm_gram.y 		cur_symbol->info.rinfo->size = $2;
cur_symbol        380 dev/microcode/aic7xxx/aicasm_gram.y 			sym_max_addr = cur_symbol->info.rinfo->address
cur_symbol        381 dev/microcode/aic7xxx/aicasm_gram.y 				     + cur_symbol->info.rinfo->size;
cur_symbol        392 dev/microcode/aic7xxx/aicasm_gram.y 		cur_symbol->info.rinfo->mode = $2;
cur_symbol        399 dev/microcode/aic7xxx/aicasm_gram.y 		cur_symbol->info.rinfo->modes = $2;
cur_symbol        519 dev/microcode/aic7xxx/aicasm_gram.y 		$2->info.ainfo->parent = cur_symbol;
cur_symbol        531 dev/microcode/aic7xxx/aicasm_gram.y 		accumulator.symbol = cur_symbol;
cur_symbol        543 dev/microcode/aic7xxx/aicasm_gram.y 		mode_ptr.symbol = cur_symbol;
cur_symbol        555 dev/microcode/aic7xxx/aicasm_gram.y 		allones.symbol = cur_symbol;
cur_symbol        567 dev/microcode/aic7xxx/aicasm_gram.y 		allzeros.symbol = cur_symbol;
cur_symbol        579 dev/microcode/aic7xxx/aicasm_gram.y 		none.symbol = cur_symbol;
cur_symbol        591 dev/microcode/aic7xxx/aicasm_gram.y 		sindex.symbol = cur_symbol;
cur_symbol        748 dev/microcode/aic7xxx/aicasm_gram.y 		cur_symbol = $2;
cur_symbol        749 dev/microcode/aic7xxx/aicasm_gram.y 		cur_symbol->type = MACRO;
cur_symbol        750 dev/microcode/aic7xxx/aicasm_gram.y 		initialize_symbol(cur_symbol);
cur_symbol        762 dev/microcode/aic7xxx/aicasm_gram.y 		cur_symbol->info.macroinfo->narg = $3;
cur_symbol        793 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol = symtable_get(SRAM_SYMNAME);
cur_symbol        795 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol->type = SRAMLOC;
cur_symbol        796 dev/microcode/aic7xxx/aicasm_gram.y 			initialize_symbol(cur_symbol);
cur_symbol        800 dev/microcode/aic7xxx/aicasm_gram.y 			sram_or_scb_offset = cur_symbol->info.rinfo->address;
cur_symbol        804 dev/microcode/aic7xxx/aicasm_gram.y 			scb_or_sram_symbol = cur_symbol;
cur_symbol        809 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol = NULL;
cur_symbol        817 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol = symtable_get(SCB_SYMNAME);
cur_symbol        819 dev/microcode/aic7xxx/aicasm_gram.y 			if (cur_symbol->type != UNINITIALIZED) {
cur_symbol        824 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol->type = SCBLOC;
cur_symbol        825 dev/microcode/aic7xxx/aicasm_gram.y 			initialize_symbol(cur_symbol);
cur_symbol        827 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol->info.rinfo->size = 64;
cur_symbol        831 dev/microcode/aic7xxx/aicasm_gram.y 			sram_or_scb_offset = cur_symbol->info.rinfo->address;
cur_symbol        835 dev/microcode/aic7xxx/aicasm_gram.y 			scb_or_sram_symbol = cur_symbol;
cur_symbol        840 dev/microcode/aic7xxx/aicasm_gram.y 			cur_symbol = NULL;
cur_symbol       1418 dev/microcode/aic7xxx/aicasm_gram.y 			   cur_symbol->name) != NULL) {
cur_symbol       1422 dev/microcode/aic7xxx/aicasm_gram.y 	symlist_add(&(sym->info.finfo->symrefs), cur_symbol,
cur_symbol       1424 dev/microcode/aic7xxx/aicasm_gram.y 	cur_symbol->info.rinfo->valid_bitmask |= sym->info.finfo->mask;
cur_symbol       1425 dev/microcode/aic7xxx/aicasm_gram.y 	cur_symbol->info.rinfo->typecheck_masks = TRUE;
cur_symbol       1426 dev/microcode/aic7xxx/aicasm_gram.y 	symlist_add(&(cur_symbol->info.rinfo->fields), sym, SYMLIST_SORT);
cur_symbol       1542 dev/microcode/aic7xxx/aicasm_gram.y 	if (cur_symbol == NULL || cur_symbol->type != MACRO) {
cur_symbol       1567 dev/microcode/aic7xxx/aicasm_gram.y 	TAILQ_INSERT_TAIL(&cur_symbol->info.macroinfo->args, marg, links);
cur_symbol       1573 dev/microcode/aic7xxx/aicasm_gram.y 	if (cur_symbol == NULL || cur_symbol->type != MACRO) {
cur_symbol       1578 dev/microcode/aic7xxx/aicasm_gram.y 	cur_symbol->info.macroinfo->body = strdup(bodytext);
cur_symbol       1579 dev/microcode/aic7xxx/aicasm_gram.y 	if (cur_symbol->info.macroinfo->body == NULL) {