HomeSort by: relevance | last modified time | path
    Searched defs:this_rtx (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/gcc/
combine-stack-adj.cc 134 rtx this_rtx = XVECEXP (tmp, 0, i);
137 if (GET_CODE (this_rtx) == SET
138 && SET_SRC (this_rtx) == SET_DEST (this_rtx))
140 else if (GET_CODE (this_rtx) != CLOBBER
141 && GET_CODE (this_rtx) != USE)
259 rtx this_rtx = XVECEXP (p, 0, i);
260 if (this_rtx == other_set)
262 if (GET_CODE (this_rtx) != CLOBBER)
264 if (!REG_P (XEXP (this_rtx, 0)
133 rtx this_rtx = XVECEXP (tmp, 0, i); local
258 rtx this_rtx = XVECEXP (p, 0, i); local
    [all...]
reg-stack.cc 745 rtx *note_link, this_rtx;
748 for (this_rtx = *note_link; this_rtx; this_rtx = XEXP (this_rtx, 1))
749 if (REG_NOTE_KIND (this_rtx) == note
750 && REG_P (XEXP (this_rtx, 0)) && REGNO (XEXP (this_rtx, 0)) == regno)
752 *note_link = XEXP (this_rtx, 1);
756 note_link = &XEXP (this_rtx, 1)
737 rtx *note_link, this_rtx; local
    [all...]
cprop.cc 1204 rtx this_rtx = l->loc;
1207 if (cprop_constant_p (this_rtx))
1208 newcnst = this_rtx;
1209 if (cprop_reg_p (this_rtx)
1217 newreg = this_rtx;
1198 rtx this_rtx = l->loc; local
postreload.cc 292 rtx this_rtx = l->loc; local
295 if (CONSTANT_P (this_rtx) && ! references_value_p (this_rtx, 0))
301 if (!CONST_SCALAR_INT_P (this_rtx))
307 result = wide_int::from (rtx_mode_t (this_rtx,
312 result = wide_int::from (rtx_mode_t (this_rtx,
319 this_rtx = immed_wide_int_const (result, word_mode);
322 this_cost = set_src_cost (this_rtx, GET_MODE (SET_DEST (set)), speed);
324 else if (REG_P (this_rtx))
328 this_rtx = gen_rtx_fmt_e (extend_op, word_mode, this_rtx)
    [all...]
cfgrtl.cc 2364 rtx *note_link, this_rtx;
2367 for (this_rtx = *note_link; this_rtx; this_rtx = XEXP (this_rtx, 1))
2368 if (this_rtx == note)
2370 *note_link = XEXP (this_rtx, 1);
2352 rtx *note_link, this_rtx; local
  /src/external/gpl3/gcc.old/dist/gcc/
combine-stack-adj.cc 134 rtx this_rtx = XVECEXP (tmp, 0, i);
137 if (GET_CODE (this_rtx) == SET
138 && SET_SRC (this_rtx) == SET_DEST (this_rtx))
140 else if (GET_CODE (this_rtx) != CLOBBER
141 && GET_CODE (this_rtx) != USE)
259 rtx this_rtx = XVECEXP (p, 0, i);
260 if (this_rtx == other_set)
262 if (GET_CODE (this_rtx) != CLOBBER)
264 if (!REG_P (XEXP (this_rtx, 0)
133 rtx this_rtx = XVECEXP (tmp, 0, i); local
258 rtx this_rtx = XVECEXP (p, 0, i); local
    [all...]
reg-stack.cc 745 rtx *note_link, this_rtx;
748 for (this_rtx = *note_link; this_rtx; this_rtx = XEXP (this_rtx, 1))
749 if (REG_NOTE_KIND (this_rtx) == note
750 && REG_P (XEXP (this_rtx, 0)) && REGNO (XEXP (this_rtx, 0)) == regno)
752 *note_link = XEXP (this_rtx, 1);
756 note_link = &XEXP (this_rtx, 1)
737 rtx *note_link, this_rtx; local
    [all...]
cprop.cc 1201 rtx this_rtx = l->loc;
1204 if (cprop_constant_p (this_rtx))
1205 newcnst = this_rtx;
1206 if (cprop_reg_p (this_rtx)
1214 newreg = this_rtx;
1195 rtx this_rtx = l->loc; local
postreload.cc 292 rtx this_rtx = l->loc; local
295 if (CONSTANT_P (this_rtx) && ! references_value_p (this_rtx, 0))
301 if (!CONST_SCALAR_INT_P (this_rtx))
307 result = wide_int::from (rtx_mode_t (this_rtx,
312 result = wide_int::from (rtx_mode_t (this_rtx,
319 this_rtx = immed_wide_int_const (result, word_mode);
322 this_cost = set_src_cost (this_rtx, GET_MODE (SET_DEST (set)), speed);
324 else if (REG_P (this_rtx))
328 this_rtx = gen_rtx_fmt_e (extend_op, word_mode, this_rtx)
    [all...]
cfgrtl.cc 2344 rtx *note_link, this_rtx;
2347 for (this_rtx = *note_link; this_rtx; this_rtx = XEXP (this_rtx, 1))
2348 if (this_rtx == note)
2350 *note_link = XEXP (this_rtx, 1);
2332 rtx *note_link, this_rtx; local
  /src/external/gpl3/gcc/dist/gcc/config/or1k/
or1k.cc 2105 rtx this_rtx, funexp; local
2117 this_rtx = gen_rtx_REG (Pmode, 4);
2119 this_rtx = gen_rtx_REG (Pmode, 3);
2134 /* THIS_RTX += DELTA. */
2135 emit_insn (gen_add2_insn (this_rtx, delta_rtx));
2138 /* Add the word at address (*THIS_RTX + VCALL_OFFSET). */
2146 /* SCRATCH = *THIS_RTX. */
2147 tmp = gen_rtx_MEM (Pmode, this_rtx);
2157 /* SCRATCH = *(*THIS_RTX + VCALL_OFFSET). */
2162 /* THIS_RTX += *(*THIS_RTX + VCALL_OFFSET). *
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-call.cc 2934 rtx this_rtx, funexp;
2946 this_rtx = gen_rtx_REG (Pmode, 4);
2948 this_rtx = gen_rtx_REG (Pmode, 3);
2952 emit_insn (gen_add3_insn (this_rtx, this_rtx, GEN_INT (delta)));
2960 emit_move_insn (tmp, gen_rtx_MEM (Pmode, this_rtx));
2972 emit_insn (gen_add3_insn (this_rtx, this_rtx, tmp));
2928 rtx this_rtx, funexp; local
  /src/external/gpl3/gcc.old/dist/gcc/config/or1k/
or1k.cc 2102 rtx this_rtx, funexp; local
2114 this_rtx = gen_rtx_REG (Pmode, 4);
2116 this_rtx = gen_rtx_REG (Pmode, 3);
2131 /* THIS_RTX += DELTA. */
2132 emit_insn (gen_add2_insn (this_rtx, delta_rtx));
2135 /* Add the word at address (*THIS_RTX + VCALL_OFFSET). */
2143 /* SCRATCH = *THIS_RTX. */
2144 tmp = gen_rtx_MEM (Pmode, this_rtx);
2154 /* SCRATCH = *(*THIS_RTX + VCALL_OFFSET). */
2159 /* THIS_RTX += *(*THIS_RTX + VCALL_OFFSET). *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-call.cc 2930 rtx this_rtx, funexp;
2942 this_rtx = gen_rtx_REG (Pmode, 4);
2944 this_rtx = gen_rtx_REG (Pmode, 3);
2948 emit_insn (gen_add3_insn (this_rtx, this_rtx, GEN_INT (delta)));
2956 emit_move_insn (tmp, gen_rtx_MEM (Pmode, this_rtx));
2968 emit_insn (gen_add3_insn (this_rtx, this_rtx, tmp));
2924 rtx this_rtx, funexp; local
  /src/external/gpl3/gcc/dist/gcc/config/c6x/
c6x.cc 769 rtx this_rtx = gen_rtx_REG (Pmode, REG_A4);
786 xops[1] = this_rtx;
844 xops[2] = this_rtx;
761 rtx this_rtx = gen_rtx_REG (Pmode, REG_A4); local
  /src/external/gpl3/gcc/dist/gcc/config/microblaze/
microblaze.cc 3312 rtx this_rtx, funexp; local
3324 this_rtx = gen_rtx_REG (Pmode, (MB_ABI_FIRST_ARG_REGNUM + 1));
3326 this_rtx = gen_rtx_REG (Pmode, MB_ABI_FIRST_ARG_REGNUM);
3330 emit_insn (gen_addsi3 (this_rtx, this_rtx, GEN_INT (delta)));
3338 emit_move_insn (temp1, gen_rtx_MEM (Pmode, this_rtx));
3343 emit_insn (gen_addsi3 (this_rtx, this_rtx, temp1));
  /src/external/gpl3/gcc/dist/gcc/config/xtensa/
xtensa.cc 5296 rtx this_rtx;
5310 this_rtx = gen_rtx_REG (Pmode, A0_REG + this_reg_no);
5313 xtensa_emit_add_imm (this_rtx, this_rtx, delta, temp0, false);
5320 emit_move_insn (temp0, gen_rtx_MEM (Pmode, this_rtx));
5326 emit_insn (gen_add2_insn (this_rtx, temp1));
5294 rtx this_rtx; local
  /src/external/gpl3/gcc.old/dist/gcc/config/c6x/
c6x.cc 769 rtx this_rtx = gen_rtx_REG (Pmode, REG_A4);
786 xops[1] = this_rtx;
844 xops[2] = this_rtx;
761 rtx this_rtx = gen_rtx_REG (Pmode, REG_A4); local
  /src/external/gpl3/gcc.old/dist/gcc/config/microblaze/
microblaze.cc 3308 rtx this_rtx, funexp; local
3320 this_rtx = gen_rtx_REG (Pmode, (MB_ABI_FIRST_ARG_REGNUM + 1));
3322 this_rtx = gen_rtx_REG (Pmode, MB_ABI_FIRST_ARG_REGNUM);
3326 emit_insn (gen_addsi3 (this_rtx, this_rtx, GEN_INT (delta)));
3334 emit_move_insn (temp1, gen_rtx_MEM (Pmode, this_rtx));
3339 emit_insn (gen_addsi3 (this_rtx, this_rtx, temp1));
  /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
tilegx.cc 4919 rtx this_rtx, funexp, addend;
4931 this_rtx = gen_rtx_REG (Pmode, 1);
4933 this_rtx = gen_rtx_REG (Pmode, 0);
4935 /* Add DELTA to THIS_RTX. */
4945 emit_insn (gen_addsi3 (this_rtx, this_rtx, addend));
4947 emit_insn (gen_adddi3 (this_rtx, this_rtx, addend));
4949 /* If needed, add *(*THIS_RTX + VCALL_OFFSET) to THIS_RTX. *
4908 rtx this_rtx, funexp, addend; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
tilepro.cc 4366 rtx this_rtx, funexp;
4378 this_rtx = gen_rtx_REG (Pmode, 1);
4380 this_rtx = gen_rtx_REG (Pmode, 0);
4382 /* Add DELTA to THIS_RTX. */
4383 emit_insn (gen_addsi3 (this_rtx, this_rtx, GEN_INT (delta)));
4385 /* If needed, add *(*THIS_RTX + VCALL_OFFSET) to THIS_RTX. */
4391 emit_move_insn (tmp, gen_rtx_MEM (Pmode, this_rtx));
4397 emit_insn (gen_addsi3 (this_rtx, this_rtx, tmp))
4355 rtx this_rtx, funexp; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/bfin/
bfin.cc 4990 rtx this_rtx = gen_rtx_REG (Pmode, REG_R0);
4996 xops[1] = this_rtx;
5040 xops[2] = this_rtx;
4969 rtx this_rtx = gen_rtx_REG (Pmode, REG_R0); local
  /src/external/gpl3/gcc/dist/gcc/config/nios2/
nios2.cc 4515 rtx this_rtx, funexp;
4530 this_rtx = gen_rtx_REG (Pmode, FIRST_ARG_REGNO + 1);
4532 this_rtx = gen_rtx_REG (Pmode, FIRST_ARG_REGNO);
4534 /* Add DELTA to THIS_RTX. */
4535 nios2_emit_add_constant (this_rtx, delta);
4537 /* If needed, add *(*THIS_RTX + VCALL_OFFSET) to THIS_RTX. */
4543 emit_move_insn (tmp, gen_rtx_MEM (Pmode, this_rtx));
4546 emit_insn (gen_add2_insn (this_rtx, tmp));
4504 rtx this_rtx, funexp; local
  /src/external/gpl3/gcc.old/dist/gcc/config/bfin/
bfin.cc 4990 rtx this_rtx = gen_rtx_REG (Pmode, REG_R0);
4996 xops[1] = this_rtx;
5040 xops[2] = this_rtx;
4969 rtx this_rtx = gen_rtx_REG (Pmode, REG_R0); local
  /src/external/gpl3/gcc.old/dist/gcc/config/loongarch/
loongarch.cc 5431 rtx this_rtx, temp1, temp2, fnaddr; local
5451 this_rtx = gen_rtx_REG (Pmode, GP_ARG_FIRST + 1);
5453 this_rtx = gen_rtx_REG (Pmode, GP_ARG_FIRST);
5455 /* Add DELTA to THIS_RTX. */
5464 emit_insn (gen_add3_insn (this_rtx, this_rtx, offset));
5467 /* If needed, add *(*THIS_RTX + VCALL_OFFSET) to THIS_RTX. */
5472 /* Set TEMP1 to *THIS_RTX. */
5473 loongarch_emit_move (temp1, gen_rtx_MEM (Pmode, this_rtx));
    [all...]

Completed in 88 milliseconds

1 2