Searched refs:newvec (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/rtl-ssa/ |
H A D | changes.cc | 824 rtvec newvec; in recog_level2() local 829 newvec = rtvec_alloc (num_clobbers + oldlen); in recog_level2() 831 RTVEC_ELT (newvec, i) = XVECEXP (pat, 0, i); in recog_level2() 836 newvec = rtvec_alloc (num_clobbers + oldlen); in recog_level2() 837 RTVEC_ELT (newvec, 0) = pat; in recog_level2() 839 rtx newpat = gen_rtx_PARALLEL (VOIDmode, newvec); in recog_level2()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | rtl.c | 185 rtvec newvec; in shallow_copy_rtvec() local 189 newvec = rtvec_alloc (n); in shallow_copy_rtvec() 190 memcpy (&newvec->elem[0], &vec->elem[0], sizeof (rtx) * n); in shallow_copy_rtvec() 191 return newvec; in shallow_copy_rtvec()
|
H A D | fwprop.c | 566 rtvec newvec; in propagate_rtx_1() local 575 newvec = vec; in propagate_rtx_1() 582 if (newvec == vec) in propagate_rtx_1() 584 newvec = shallow_copy_rtvec (vec); in propagate_rtx_1() 587 XVEC (tem, i) = newvec; in propagate_rtx_1() 589 RTVEC_ELT (newvec, j) = op; in propagate_rtx_1()
|
H A D | ira-build.c | 707 ira_object_t *newvec; in add_to_conflicts() local 709 newvec = (ira_object_t *) ira_allocate (size); in add_to_conflicts() 710 memcpy (newvec, vec, curr_num * sizeof (ira_object_t)); in add_to_conflicts() 712 vec = newvec; in add_to_conflicts()
|
H A D | simplify-rtx.c | 419 rtvec vec, newvec; in simplify_replace_fn_rtx() local 526 newvec = XVEC (newx, i); in simplify_replace_fn_rtx() 533 if (newvec == vec) in simplify_replace_fn_rtx() 535 newvec = shallow_copy_rtvec (vec); in simplify_replace_fn_rtx() 538 XVEC (newx, i) = newvec; in simplify_replace_fn_rtx() 540 RTVEC_ELT (newvec, j) = op; in simplify_replace_fn_rtx()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | rtl.cc | 188 rtvec newvec; in shallow_copy_rtvec() local 192 newvec = rtvec_alloc (n); in shallow_copy_rtvec() 193 memcpy (&newvec->elem[0], &vec->elem[0], sizeof (rtx) * n); in shallow_copy_rtvec() 194 return newvec; in shallow_copy_rtvec()
|
H A D | ira-build.cc | 711 ira_object_t *newvec; in add_to_conflicts() local 713 newvec = (ira_object_t *) ira_allocate (size); in add_to_conflicts() 714 memcpy (newvec, vec, curr_num * sizeof (ira_object_t)); in add_to_conflicts() 716 vec = newvec; in add_to_conflicts()
|
H A D | simplify-rtx.cc | 414 rtvec vec, newvec; in simplify_replace_fn_rtx() local 521 newvec = XVEC (newx, i); in simplify_replace_fn_rtx() 528 if (newvec == vec) in simplify_replace_fn_rtx() 530 newvec = shallow_copy_rtvec (vec); in simplify_replace_fn_rtx() 533 XVEC (newx, i) = newvec; in simplify_replace_fn_rtx() 535 RTVEC_ELT (newvec, j) = op; in simplify_replace_fn_rtx()
|