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

1 2 3

  /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;
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...]
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...]
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...]
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...]
emit-rtl.cc 1255 update_reg_offset (rtx new_rtx, rtx reg, poly_int64 offset)
1257 REG_ATTRS (new_rtx) = get_reg_attrs (REG_EXPR (reg),
1274 rtx new_rtx = gen_raw_REG (mode, regno);
1276 update_reg_offset (new_rtx, reg, offset);
1277 return new_rtx;
1286 rtx new_rtx = gen_reg_rtx (mode);
1288 update_reg_offset (new_rtx, reg, offset);
1289 return new_rtx;
1775 rtx new_rtx = adjust_address_nv (op, word_mode, offset * UNITS_PER_WORD);
1778 return new_rtx;
1270 rtx new_rtx = gen_raw_REG (mode, regno); local
1282 rtx new_rtx = gen_reg_rtx (mode); local
1768 rtx new_rtx = adjust_address_nv (op, word_mode, offset * UNITS_PER_WORD); local
2266 rtx new_rtx; local
2308 rtx new_rtx = change_address_1 (memref, mode, addr, 1, false); local
2352 rtx new_rtx; local
2498 rtx new_rtx, addr = XEXP (memref, 0); local
2522 update_temp_slot_address (XEXP (memref, 0), new_rtx); local
2572 rtx new_rtx = adjust_address_1 (memref, mode, offset, 1, 1, 0, 0); local
    [all...]
function.cc 1105 /* Indicate that NEW_RTX is an alternate way of referring to the temp
1109 update_temp_slot_address (rtx old_rtx, rtx new_rtx)
1113 if (rtx_equal_p (old_rtx, new_rtx))
1119 NEW_RTX is a register, see if one operand of the PLUS is a
1120 temporary location. If so, NEW_RTX points into it. Otherwise,
1121 if both OLD_RTX and NEW_RTX are a PLUS and if there is a register
1129 if (REG_P (new_rtx))
1131 update_temp_slot_address (XEXP (old_rtx, 0), new_rtx);
1132 update_temp_slot_address (XEXP (old_rtx, 1), new_rtx);
1135 else if (GET_CODE (new_rtx) != PLUS
1123 update_temp_slot_address (XEXP (old_rtx, 0), new_rtx); local
1124 update_temp_slot_address (XEXP (old_rtx, 1), new_rtx); local
1437 rtx new_rtx; local
1496 rtx new_rtx; local
1553 rtx set, new_rtx, x; local
1632 emit_move_insn (SET_DEST (set), new_rtx); local
    [all...]
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
combine.cc 5352 rtx new_rtx;
5412 new_rtx = subst (XVECEXP (x, 0, 0), from, to, 0, 0, unique_copy);
5415 if (GET_CODE (new_rtx) == CLOBBER
5416 && XEXP (new_rtx, 0) == const0_rtx)
5417 return new_rtx;
5419 SUBST (XVECEXP (x, 0, 0), new_rtx);
5427 new_rtx = subst (dest, from, to, 0, 0, unique_copy);
5430 if (GET_CODE (new_rtx) == CLOBBER
5431 && XEXP (new_rtx, 0) == const0_rtx)
5432 return new_rtx;
5335 rtx new_rtx; local
5478 SUBST (XVECEXP (x, i, j), new_rtx); local
6361 rtx new_rtx = lowpart_subreg (GET_MODE (x), trueop0, mode); local
6813 rtx new_rtx = simplify_rtx (SET_SRC (pat)); local
6815 SUBST (SET_SRC (pat), new_rtx); local
7506 rtx new_rtx = 0; local
7979 rtx new_rtx = 0; local
8400 rtx new_rtx, tem; local
8414 rtx new_rtx = make_compound_operation_int (mode, &x, in_code, local
8440 SUBST (XEXP (x, i), new_rtx); local
8446 SUBST (XVECEXP (x, i, j), new_rtx); local
9529 rtx new_rtx, r = known_cond (SUBREG_REG (x), cond, reg, val); local
9554 rtx new_rtx, r = known_cond (XEXP (x, 0), cond, reg, val); local
10504 rtx new_rtx, x; local
10910 rtx new_rtx = simplify_const_binary_operation (code, int_mode, 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...]
cse.cc 2815 rtx new_rtx = canon_reg (*xloc, insn);
2819 gcc_assert (insn && new_rtx);
2820 validate_change (insn, xloc, new_rtx, 1);
3118 rtx new_rtx = 0;
3156 if ((new_rtx = equiv_constant (x)) != NULL_RTX)
3157 return new_rtx;
3193 rtx new_rtx = lowpart_subreg (GET_MODE (x), trueop0, mode);
3194 if (new_rtx != NULL_RTX)
3195 return new_rtx;
3317 new_rtx = simplify_unary_operation (code, mode
    [all...]
  /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;
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...]
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...]
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...]
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...]
emit-rtl.cc 1265 update_reg_offset (rtx new_rtx, rtx reg, poly_int64 offset)
1267 REG_ATTRS (new_rtx) = get_reg_attrs (REG_EXPR (reg),
1284 rtx new_rtx = gen_raw_REG (mode, regno);
1286 update_reg_offset (new_rtx, reg, offset);
1287 return new_rtx;
1296 rtx new_rtx = gen_reg_rtx (mode);
1298 update_reg_offset (new_rtx, reg, offset);
1299 return new_rtx;
1785 rtx new_rtx = adjust_address_nv (op, word_mode, offset * UNITS_PER_WORD);
1788 return new_rtx;
1280 rtx new_rtx = gen_raw_REG (mode, regno); local
1292 rtx new_rtx = gen_reg_rtx (mode); local
1778 rtx new_rtx = adjust_address_nv (op, word_mode, offset * UNITS_PER_WORD); local
2282 rtx new_rtx; local
2324 rtx new_rtx = change_address_1 (memref, mode, addr, 1, false); local
2368 rtx new_rtx; local
2514 rtx new_rtx, addr = XEXP (memref, 0); local
2538 update_temp_slot_address (XEXP (memref, 0), new_rtx); local
2722 rtx new_rtx = adjust_address_1 (memref, mode, offset, 1, 1, 0, 0); local
    [all...]
function.cc 1107 /* Indicate that NEW_RTX is an alternate way of referring to the temp
1111 update_temp_slot_address (rtx old_rtx, rtx new_rtx)
1115 if (rtx_equal_p (old_rtx, new_rtx))
1121 NEW_RTX is a register, see if one operand of the PLUS is a
1122 temporary location. If so, NEW_RTX points into it. Otherwise,
1123 if both OLD_RTX and NEW_RTX are a PLUS and if there is a register
1131 if (REG_P (new_rtx))
1133 update_temp_slot_address (XEXP (old_rtx, 0), new_rtx);
1134 update_temp_slot_address (XEXP (old_rtx, 1), new_rtx);
1137 else if (GET_CODE (new_rtx) != PLUS
1125 update_temp_slot_address (XEXP (old_rtx, 0), new_rtx); local
1126 update_temp_slot_address (XEXP (old_rtx, 1), new_rtx); local
1438 rtx new_rtx; local
1497 rtx new_rtx; local
1554 rtx set, new_rtx, x; local
1633 emit_move_insn (SET_DEST (set), new_rtx); local
    [all...]
combine.cc 5371 rtx new_rtx;
5431 new_rtx = subst (XVECEXP (x, 0, 0), from, to, false, false, unique_copy);
5434 if (GET_CODE (new_rtx) == CLOBBER
5435 && XEXP (new_rtx, 0) == const0_rtx)
5436 return new_rtx;
5438 SUBST (XVECEXP (x, 0, 0), new_rtx);
5446 new_rtx = subst (dest, from, to, false, false, unique_copy);
5449 if (GET_CODE (new_rtx) == CLOBBER
5450 && XEXP (new_rtx, 0) == const0_rtx)
5451 return new_rtx;
5354 rtx new_rtx; local
5497 SUBST (XVECEXP (x, i, j), new_rtx); local
6401 rtx new_rtx = lowpart_subreg (GET_MODE (x), trueop0, mode); local
6853 rtx new_rtx = simplify_rtx (SET_SRC (pat)); local
6855 SUBST (SET_SRC (pat), new_rtx); local
7549 rtx new_rtx = 0; local
8021 rtx new_rtx = 0; local
8453 rtx new_rtx, tem; local
8467 rtx new_rtx = make_compound_operation_int (mode, &x, in_code, local
8493 SUBST (XEXP (x, i), new_rtx); local
8499 SUBST (XVECEXP (x, i, j), new_rtx); local
9580 rtx new_rtx, r = known_cond (SUBREG_REG (x), cond, reg, val); local
9605 rtx new_rtx, r = known_cond (XEXP (x, 0), cond, reg, val); local
10560 rtx new_rtx, x; local
10966 rtx new_rtx = simplify_const_binary_operation (code, int_mode, 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...]
  /src/external/gpl3/gcc.old/dist/gcc/config/spu/
spu.h 380 rtx new_rtx = spu_legitimize_reload_address (AD, MODE, OPNUM, \
382 if (new_rtx) \
384 (AD) = new_rtx; \
  /src/external/gpl3/gcc.old/dist/gcc/config/s390/
s390.cc 1927 /* Emit a SImode compare and swap instruction setting MEM to NEW_RTX if OLD
1934 rtx cmp, rtx new_rtx, machine_mode ccmode)
1944 new_rtx, cc));
1948 new_rtx, cc));
1952 new_rtx, cc));
4962 rtx new_rtx = orig;
5007 new_rtx = gen_rtx_PLUS (Pmode, temp, addend);
5011 s390_load_address (reg, new_rtx);
5012 new_rtx = reg;
5037 new_rtx = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp)
4961 rtx new_rtx = orig; local
5223 rtx new_rtx, tls_call, temp, base, r2; local
5532 rtx cst, tem, new_rtx; local
7452 rtx new_rtx = gen_reg_rtx (SImode); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/s390/
s390.cc 2074 /* Emit a SImode compare and swap instruction setting MEM to NEW_RTX if OLD
2081 rtx cmp, rtx new_rtx, machine_mode ccmode)
2091 new_rtx, cc));
2095 new_rtx, cc));
2099 new_rtx, cc));
5157 rtx new_rtx = orig;
5202 new_rtx = gen_rtx_PLUS (Pmode, temp, addend);
5206 s390_load_address (reg, new_rtx);
5207 new_rtx = reg;
5232 new_rtx = gen_rtx_PLUS (Pmode, pic_offset_table_rtx, temp)
5156 rtx new_rtx = orig; local
5418 rtx new_rtx, tls_call, temp, base, r2; local
5727 rtx cst, tem, new_rtx; local
7891 rtx new_rtx = gen_reg_rtx (SImode); local
    [all...]

Completed in 81 milliseconds

1 2 3