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

1 2 3

  /src/external/gpl3/gcc/dist/gcc/
rtlhooks.cc 120 rtx new_rtx = adjust_address_nv (x, mode, offset);
121 if (! memory_address_addr_space_p (mode, XEXP (new_rtx, 0),
125 return new_rtx;
119 rtx new_rtx = adjust_address_nv (x, mode, offset); local
lists.cc 185 rtx_insn_list *new_rtx = old; local
188 new_rtx = alloc_INSN_LIST (copy->insn (), new_rtx);
189 PUT_REG_NOTE_KIND (new_rtx, REG_NOTE_KIND (copy));
191 return new_rtx;
fwprop.cc 246 fwprop_propagation::classify_result (rtx old_rtx, rtx new_rtx)
248 if (CONSTANT_P (new_rtx))
251 and NEW_RTX is likely not a legitimate address. We want it to
257 && !memory_address_p (GET_MODE (old_rtx), new_rtx))
265 if (REG_P (new_rtx)
266 && !HARD_REGISTER_P (new_rtx)
269 && GET_MODE (new_rtx) == GET_MODE_INNER (GET_MODE (from)))
284 && MEM_P (new_rtx)
285 && !MEM_VOLATILE_P (new_rtx))
291 /* Record that OLD_RTX has been simplified to NEW_RTX. OLD_NUM_CHANGE
804 rtx new_rtx = simplify_replace_rtx (old_rtx, src, x); local
    [all...]
genemit.cc 377 rtx new_rtx = XEXP (XVECEXP (insn, 1, j), 0);
382 if (! (GET_CODE (old_rtx) == GET_CODE (new_rtx)
383 && GET_MODE (old_rtx) == GET_MODE (new_rtx)
385 && GET_CODE (new_rtx) == MATCH_SCRATCH)
386 || (REG_P (old_rtx) && REG_P (new_rtx)
387 && REGNO (old_rtx) == REGNO (new_rtx)))))
374 rtx new_rtx = XEXP (XVECEXP (insn, 1, j), 0); local
lra-eliminations.cc 342 rtx new_rtx;
533 new_rtx = lra_eliminate_regs_1 (insn, XEXP (x, 0), mem_mode,
536 if (new_rtx != XEXP (x, 0))
548 x = alloc_reg_note (REG_NOTE_KIND (x), new_rtx, XEXP (x, 1));
561 new_rtx = lra_eliminate_regs_1 (insn, XEXP (x, 1), mem_mode,
564 if (new_rtx != XEXP (x, 1))
567 XEXP (x, 0), new_rtx);
589 rtx new_rtx = lra_eliminate_regs_1 (insn, XEXP (XEXP (x, 1), 1),
593 if (new_rtx != XEXP (XEXP (x, 1), 1))
596 XEXP (x, 0), new_rtx));
341 rtx new_rtx; local
588 rtx new_rtx = lra_eliminate_regs_1 (insn, XEXP (XEXP (x, 1), 1), local
    [all...]
cprop.cc 906 rtx new_rtx, set_src, note_src;
938 new_rtx = simplify_replace_rtx (set_src, from, src);
941 if (rtx_equal_p (new_rtx, SET_SRC (set)))
945 if (new_rtx == pc_rtx)
951 if (setcc && modified_in_p (new_rtx, setcc))
953 if (! validate_unshare_change (jump, &SET_SRC (set), new_rtx, 0))
964 if (!rtx_equal_p (new_rtx, note_src))
965 set_unique_reg_note (jump, REG_EQUAL, copy_rtx (new_rtx));
988 if (new_rtx != pc_rtx && simplejump_p (jump))
1393 rtx cond, new_rtx;
900 rtx new_rtx, set_src, note_src; local
1387 rtx cond, new_rtx; local
1597 rtx src, new_rtx; local
    [all...]
regcprop.cc 55 rtx new_rtx; member in struct:queued_debug_insn_change
482 rtx new_rtx; local
487 new_rtx = maybe_mode_change (oldmode, vd->e[regno].mode, mode, i, regno);
488 if (new_rtx)
490 /* NEW_RTX may be the global stack pointer rtx, in which case we
492 if (new_rtx != stack_pointer_rtx)
494 ORIGINAL_REGNO (new_rtx) = ORIGINAL_REGNO (reg);
495 REG_ATTRS (new_rtx) = REG_ATTRS (reg);
496 REG_POINTER (new_rtx) = REG_POINTER (reg);
498 return new_rtx;
512 rtx new_rtx = find_oldest_value_reg (cl, *loc, vd); local
909 rtx new_rtx; local
1042 rtx new_rtx; local
    [all...]
recog.cc 201 at which NEW_RTX will be placed. If NEW_LEN is >= 0, XVECLEN (NEW_RTX, 0)
221 validate_change_1 (rtx object, rtx *loc, rtx new_rtx, bool in_group,
229 if (new_len == 1 && GET_CODE (new_rtx) == PARALLEL)
231 new_rtx = XVECEXP (new_rtx, 0, 0);
235 if ((old == new_rtx || rtx_equal_p (old, new_rtx))
236 && (new_len < 0 || XVECLEN (new_rtx, 0) == new_len))
240 && (new_len < 0 || new_rtx == *loc))
660 rtx new_rtx = NULL_RTX; local
    [all...]
reorg.cc 1333 rtx_insn *new_rtx;
1336 new_rtx = delete_from_delay_slot (dtrial);
1338 thread = new_rtx;
1372 rtx_insn *new_rtx = delete_from_delay_slot (merged_insns[i].first);
1374 thread = new_rtx;
1317 rtx_insn *new_rtx; local
1356 rtx_insn *new_rtx = delete_from_delay_slot (merged_insns[i].first); local
rtlanal.cc 3398 rtx new_rtx = replace_rtx (SUBREG_REG (x), from, to, all_regs);
3400 if (CONST_SCALAR_INT_P (new_rtx))
3402 x = simplify_subreg (GET_MODE (x), new_rtx,
3408 SUBREG_REG (x) = new_rtx;
3414 rtx new_rtx = replace_rtx (XEXP (x, 0), from, to, all_regs);
3416 if (CONST_SCALAR_INT_P (new_rtx))
3419 new_rtx, GET_MODE (XEXP (x, 0)));
3423 XEXP (x, 0) = new_rtx;
4917 rtx new_rtx = rtl_hooks.reg_nonzero_bits (x, xmode, mode,
4920 if (new_rtx)
3376 rtx new_rtx = replace_rtx (SUBREG_REG (x), from, to, all_regs); local
3392 rtx new_rtx = replace_rtx (XEXP (x, 0), from, to, all_regs); local
    [all...]
calls.cc 2475 rtx new_rtx;
2486 new_rtx = gen_reg_rtx (GET_MODE (x));
2488 emit_move_insn (new_rtx, x);
2489 return new_rtx;
2474 rtx new_rtx; local
expmed.cc 6366 rtx_insn *new_rtx = gen_move_insn (reg, new_imm);
6369 if (insn_cost (old_rtx, true) > insn_cost (new_rtx, true))
6351 rtx_insn *new_rtx = gen_move_insn (reg, new_imm); local
final.cc 2816 rtx_insn *new_rtx = try_split (body, insn, 0);
2819 if (new_rtx == insn && PATTERN (new_rtx) == body)
2827 return new_rtx;
3130 rtx new_rtx = simplify_subreg (GET_MODE (x), y, GET_MODE (y),
3133 if (new_rtx != 0)
3134 *xp = new_rtx;
2807 rtx_insn *new_rtx = try_split (body, insn, 0); local
3119 rtx new_rtx = simplify_subreg (GET_MODE (x), y, GET_MODE (y), local
gcse.cc 2446 rtx_insn *new_rtx;
2455 new_rtx = emit_insn_after (gen_move_insn (dest, src), insn);
2460 set2 = single_set (new_rtx);
2462 return new_rtx;
2470 set_unique_reg_note (new_rtx, REG_EQUAL, copy_insn_1 (eqv));
2472 return new_rtx;
2433 rtx_insn *new_rtx; local
genattrtab.cc 1847 rtx new_rtx = insert_right_side (code, XEXP (exp, 1), local
1849 if (new_rtx != XEXP (exp, 1))
1851 newexp = attr_rtx (code, XEXP (exp, 0), new_rtx);
  /src/external/gpl3/gcc.old/dist/gcc/
rtlhooks.cc 120 rtx new_rtx = adjust_address_nv (x, mode, offset);
121 if (! memory_address_addr_space_p (mode, XEXP (new_rtx, 0),
125 return new_rtx;
119 rtx new_rtx = adjust_address_nv (x, mode, offset); local
lists.cc 185 rtx_insn_list *new_rtx = old; local
188 new_rtx = alloc_INSN_LIST (copy->insn (), new_rtx);
189 PUT_REG_NOTE_KIND (new_rtx, REG_NOTE_KIND (copy));
191 return new_rtx;
genemit.cc 376 rtx new_rtx = XEXP (XVECEXP (insn, 1, j), 0);
381 if (! (GET_CODE (old_rtx) == GET_CODE (new_rtx)
382 && GET_MODE (old_rtx) == GET_MODE (new_rtx)
384 && GET_CODE (new_rtx) == MATCH_SCRATCH)
385 || (REG_P (old_rtx) && REG_P (new_rtx)
386 && REGNO (old_rtx) == REGNO (new_rtx)))))
373 rtx new_rtx = XEXP (XVECEXP (insn, 1, j), 0); local
fwprop.cc 246 fwprop_propagation::classify_result (rtx old_rtx, rtx new_rtx)
248 if (CONSTANT_P (new_rtx))
251 and NEW_RTX is likely not a legitimate address. We want it to
257 && !memory_address_p (GET_MODE (old_rtx), new_rtx))
265 if (REG_P (new_rtx)
266 && !HARD_REGISTER_P (new_rtx)
269 && GET_MODE (new_rtx) == GET_MODE_INNER (GET_MODE (from)))
284 && MEM_P (new_rtx)
285 && !MEM_VOLATILE_P (new_rtx))
291 /* Record that OLD_RTX has been simplified to NEW_RTX. OLD_NUM_CHANGE
799 rtx new_rtx = simplify_replace_rtx (old_rtx, src, x); local
    [all...]
lra-eliminations.cc 339 rtx new_rtx;
521 new_rtx = lra_eliminate_regs_1 (insn, XEXP (x, 0), mem_mode,
524 if (new_rtx != XEXP (x, 0))
536 x = alloc_reg_note (REG_NOTE_KIND (x), new_rtx, XEXP (x, 1));
549 new_rtx = lra_eliminate_regs_1 (insn, XEXP (x, 1), mem_mode,
552 if (new_rtx != XEXP (x, 1))
555 XEXP (x, 0), new_rtx);
577 rtx new_rtx = lra_eliminate_regs_1 (insn, XEXP (XEXP (x, 1), 1),
581 if (new_rtx != XEXP (XEXP (x, 1), 1))
584 XEXP (x, 0), new_rtx));
338 rtx new_rtx; local
576 rtx new_rtx = lra_eliminate_regs_1 (insn, XEXP (XEXP (x, 1), 1), local
    [all...]
cprop.cc 906 rtx new_rtx, set_src, note_src;
938 new_rtx = simplify_replace_rtx (set_src, from, src);
941 if (rtx_equal_p (new_rtx, SET_SRC (set)))
945 if (new_rtx == pc_rtx)
951 if (setcc && modified_in_p (new_rtx, setcc))
953 if (! validate_unshare_change (jump, &SET_SRC (set), new_rtx, 0))
964 if (!rtx_equal_p (new_rtx, note_src))
965 set_unique_reg_note (jump, REG_EQUAL, copy_rtx (new_rtx));
988 if (new_rtx != pc_rtx && simplejump_p (jump))
1390 rtx cond, new_rtx;
900 rtx new_rtx, set_src, note_src; local
1384 rtx cond, new_rtx; local
1594 rtx src, new_rtx; local
    [all...]
regcprop.cc 55 rtx new_rtx; member in struct:queued_debug_insn_change
477 rtx new_rtx; local
482 new_rtx = maybe_mode_change (oldmode, vd->e[regno].mode, mode, i, regno);
483 if (new_rtx)
485 ORIGINAL_REGNO (new_rtx) = ORIGINAL_REGNO (reg);
486 REG_ATTRS (new_rtx) = REG_ATTRS (reg);
487 REG_POINTER (new_rtx) = REG_POINTER (reg);
488 return new_rtx;
502 rtx new_rtx = find_oldest_value_reg (cl, *loc, vd); local
503 if (new_rtx && (!DEBUG_INSN_P (insn) || !skip_debug_insn_p)
899 rtx new_rtx; local
1027 rtx new_rtx; local
    [all...]
recog.cc 201 at which NEW_RTX will be placed. If NEW_LEN is >= 0, XVECLEN (NEW_RTX, 0)
221 validate_change_1 (rtx object, rtx *loc, rtx new_rtx, bool in_group,
229 if (new_len == 1 && GET_CODE (new_rtx) == PARALLEL)
231 new_rtx = XVECEXP (new_rtx, 0, 0);
235 if ((old == new_rtx || rtx_equal_p (old, new_rtx))
236 && (new_len < 0 || XVECLEN (new_rtx, 0) == new_len))
240 && (new_len < 0 || new_rtx == *loc))
660 rtx new_rtx = NULL_RTX; local
    [all...]
reorg.cc 1333 rtx_insn *new_rtx;
1336 new_rtx = delete_from_delay_slot (dtrial);
1338 thread = new_rtx;
1372 rtx_insn *new_rtx = delete_from_delay_slot (merged_insns[i].first);
1374 thread = new_rtx;
1317 rtx_insn *new_rtx; local
1356 rtx_insn *new_rtx = delete_from_delay_slot (merged_insns[i].first); local
rtlanal.cc 3425 rtx new_rtx = replace_rtx (SUBREG_REG (x), from, to, all_regs);
3427 if (CONST_SCALAR_INT_P (new_rtx))
3429 x = simplify_subreg (GET_MODE (x), new_rtx,
3435 SUBREG_REG (x) = new_rtx;
3441 rtx new_rtx = replace_rtx (XEXP (x, 0), from, to, all_regs);
3443 if (CONST_SCALAR_INT_P (new_rtx))
3446 new_rtx, GET_MODE (XEXP (x, 0)));
3450 XEXP (x, 0) = new_rtx;
4937 rtx new_rtx = rtl_hooks.reg_nonzero_bits (x, xmode, mode,
4940 if (new_rtx)
3403 rtx new_rtx = replace_rtx (SUBREG_REG (x), from, to, all_regs); local
3419 rtx new_rtx = replace_rtx (XEXP (x, 0), from, to, all_regs); local
    [all...]

Completed in 67 milliseconds

1 2 3