Home | History | Annotate | Download | only in libcpp

Lines Matching refs:virt_locs

42   location_t *virt_locs;	/* Where virtual locations for
850 location_t *virt_locs = NULL;
851 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
854 tokens_buff_add_token (token_buf, virt_locs, token,
858 push_extended_tokens_context (pfile, node, token_buf, virt_locs,
1138 location_t *virt_locs = NULL;
1139 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
1140 tokens_buff_add_token (token_buf, virt_locs, lhs,
1143 token_buf, virt_locs,
1265 arg->virt_locs = XNEWVEC (location_t,
1283 arg->virt_locs = XRESIZEVEC (location_t,
1284 arg->virt_locs,
1579 location_t *virt_locs = NULL;
1581 = tokens_buff_new (pfile, tokens_count, &virt_locs);
1590 tokens_buff_add_token (macro_tokens, virt_locs,
1597 virt_locs,
1675 as their macro_arg::virt_locs members. */
1683 if (macro_args[i].virt_locs)
1685 free (macro_args[i].virt_locs);
1686 macro_args[i].virt_locs = NULL;
1780 *virt_location = &arg->virt_locs[index];
1966 location_t *virt_locs = NULL;
2027 VIRT_LOCS holds the virtual locations of the tokens held by BUFF.
2047 buff = tokens_buff_new (pfile, total, track_macro_exp ? &virt_locs : NULL);
2103 VIRT_LOCS. */
2104 tokens_buff_add_token (buff, virt_locs, t,
2165 tokens_buff_add_token (buff, virt_locs,
2195 tokens_buff_add_token (buff, virt_locs,
2207 VIRT_LOCS. */
2209 tokens_buff_add_token (buff, virt_locs, src,
2319 VIRT_LOCS. */
2320 tokens_buff_add_token (buff, virt_locs, t,
2358 tokens_buff_add_token (buff, virt_locs, tok,
2401 tokens_buff_add_token (buff, virt_locs,
2414 push_extended_tokens_context (pfile, node, buff, virt_locs, first,
2510 location_t *virt_locs,
2526 m->virt_locs = virt_locs;
2527 m->cur_virt_loc = virt_locs;
2549 for the purpose of storing them on a cpp_context. If VIRT_LOCS is
2551 *VIRT_LOCS is set to a newly allocated buffer that is supposed to
2556 location_t **virt_locs)
2561 if (virt_locs != NULL)
2562 *virt_locs = XNEWVEC (location_t, locs_size);
2656 macro map; It is not considered if MAP is NULL. If VIRT_LOCS is
2658 this function adds the virtual location DEF_LOC to the VIRT_LOCS
2664 location_t *virt_locs,
2680 if (virt_locs != NULL)
2681 virt_loc_dest = &virt_locs[token_index];
2762 arg->virt_locs,
2847 if (context->buff && mc->virt_locs)
2849 free (mc->virt_locs);
2850 mc->virt_locs = NULL;
2934 if (m->virt_locs)
3354 gcc_checking_assert (m->cur_virt_loc >= m->virt_locs);