Home | History | Annotate | Download | only in config

Lines Matching refs:tc

0 /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000)
296 { "tc", ppc_tc, 0 },
996 and variables. Symbols are put in the TOC with the .tc pseudo-op.
4376 would be to have the tc field updated in ppc_symbol_new_hook. */
4873 /* The .tc pseudo-op. This is used when generating either XCOFF or
4878 TC. The rest of the arguments are N-byte values to actually put at
4901 as_bad (_(".tc not in .toc section"));
4919 as_bad (_(".tc with no label"));
5649 struct ppc_tc_sy *tc;
5652 tc = symbol_get_tc (sym);
5653 tc->next = NULL;
5654 tc->output = 0;
5655 tc->symbol_class = -1;
5656 tc->real_name = NULL;
5657 tc->subseg = 0;
5658 tc->align = 0;
5659 tc->u.size = NULL;
5660 tc->u.dw = NULL;
5661 tc->within = NULL;
5679 tc->symbol_class = XMC_BS;
5683 tc->symbol_class = XMC_DB;
5685 tc->symbol_class = XMC_DS;
5689 tc->symbol_class = XMC_GL;
5693 tc->symbol_class = XMC_PR;
5697 tc->symbol_class = XMC_RO;
5699 tc->symbol_class = XMC_RW;
5703 tc->symbol_class = XMC_SV;
5706 if (strcmp (s, "TC]") == 0)
5707 tc->symbol_class = XMC_TC;
5709 tc->symbol_class = XMC_TI;
5711 tc->symbol_class = XMC_TB;
5713 tc->symbol_class = XMC_TC0;
5717 tc->symbol_class = XMC_UA;
5719 tc->symbol_class = XMC_UC;
5723 tc->symbol_class = XMC_XO;
5727 if (tc->symbol_class == -1)
6177 corresponding .tc symbol. */
6184 TC_SYMFIELD_TYPE *tc;
6221 _("symbol in .toc does not match any .tc"));
6225 tc = symbol_get_tc (fix->fx_addsy);
6226 if (tc->subseg == 0
6227 && tc->symbol_class != XMC_TC0
6228 && tc->symbol_class != XMC_TC
6237 symbolS *csect = tc->within;