Home | History | Annotate | Download | only in libcpp

Lines Matching refs:virt_locs

42   location_t *virt_locs;	/* Where virtual locations for
841 location_t *virt_locs = NULL;
842 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
845 tokens_buff_add_token (token_buf, virt_locs, token,
849 push_extended_tokens_context (pfile, node, token_buf, virt_locs,
1129 location_t *virt_locs = NULL;
1130 _cpp_buff *token_buf = tokens_buff_new (pfile, 1, &virt_locs);
1131 tokens_buff_add_token (token_buf, virt_locs, lhs,
1134 token_buf, virt_locs,
1256 arg->virt_locs = XNEWVEC (location_t,
1274 arg->virt_locs = XRESIZEVEC (location_t,
1275 arg->virt_locs,
1570 location_t *virt_locs = NULL;
1572 = tokens_buff_new (pfile, tokens_count, &virt_locs);
1581 tokens_buff_add_token (macro_tokens, virt_locs,
1588 virt_locs,
1666 as their macro_arg::virt_locs members. */
1674 if (macro_args[i].virt_locs)
1676 free (macro_args[i].virt_locs);
1677 macro_args[i].virt_locs = NULL;
1771 *virt_location = &arg->virt_locs[index];
1957 location_t *virt_locs = NULL;
2018 VIRT_LOCS holds the virtual locations of the tokens held by BUFF.
2038 buff = tokens_buff_new (pfile, total, track_macro_exp ? &virt_locs : NULL);
2094 VIRT_LOCS. */
2095 tokens_buff_add_token (buff, virt_locs, t,
2156 tokens_buff_add_token (buff, virt_locs,
2186 tokens_buff_add_token (buff, virt_locs,
2198 VIRT_LOCS. */
2200 tokens_buff_add_token (buff, virt_locs, src,
2310 VIRT_LOCS. */
2311 tokens_buff_add_token (buff, virt_locs, t,
2349 tokens_buff_add_token (buff, virt_locs, tok,
2392 tokens_buff_add_token (buff, virt_locs,
2405 push_extended_tokens_context (pfile, node, buff, virt_locs, first,
2501 location_t *virt_locs,
2517 m->virt_locs = virt_locs;
2518 m->cur_virt_loc = virt_locs;
2540 for the purpose of storing them on a cpp_context. If VIRT_LOCS is
2542 *VIRT_LOCS is set to a newly allocated buffer that is supposed to
2547 location_t **virt_locs)
2552 if (virt_locs != NULL)
2553 *virt_locs = XNEWVEC (location_t, locs_size);
2647 macro map; It is not considered if MAP is NULL. If VIRT_LOCS is
2649 this function adds the virtual location DEF_LOC to the VIRT_LOCS
2655 location_t *virt_locs,
2671 if (virt_locs != NULL)
2672 virt_loc_dest = &virt_locs[token_index];
2753 arg->virt_locs,
2838 if (context->buff && mc->virt_locs)
2840 free (mc->virt_locs);
2841 mc->virt_locs = NULL;
2925 if (m->virt_locs)
3345 gcc_checking_assert (m->cur_virt_loc >= m->virt_locs);