Lines Matching refs:decl_rtl

3124       rtx decl_rtl = DECL_RTL (decl_result);  in assign_parms()  local
3126 if (REG_P (decl_rtl) in assign_parms()
3127 ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER in assign_parms()
4275 rtx decl_rtl = DECL_RTL (decl_result); in clobber_return_register() local
4276 if (REG_P (decl_rtl) && REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER) in clobber_return_register()
4278 do_clobber_return_reg (decl_rtl, NULL); in clobber_return_register()
4430 rtx decl_rtl = DECL_RTL (decl_result); in expand_function_end() local
4432 if (REG_P (decl_rtl) in expand_function_end()
4433 ? REGNO (decl_rtl) >= FIRST_PSEUDO_REGISTER in expand_function_end()
4446 PUT_MODE (real_decl_rtl, GET_MODE (decl_rtl)); in expand_function_end()
4455 emit_move_insn (gen_rtx_REG (GET_MODE (decl_rtl), in expand_function_end()
4457 decl_rtl); in expand_function_end()
4458 shift_return_value (GET_MODE (decl_rtl), true, real_decl_rtl); in expand_function_end()
4463 else if (GET_MODE (real_decl_rtl) != GET_MODE (decl_rtl)) in expand_function_end()
4468 promote_mode (TREE_TYPE (decl_result), GET_MODE (decl_rtl), in expand_function_end()
4471 convert_move (real_decl_rtl, decl_rtl, unsignedp); in expand_function_end()
4478 if (GET_CODE (decl_rtl) == PARALLEL) in expand_function_end()
4479 emit_group_move (real_decl_rtl, decl_rtl); in expand_function_end()
4481 emit_group_load (real_decl_rtl, decl_rtl, in expand_function_end()
4488 else if (GET_CODE (decl_rtl) == CONCAT in expand_function_end()
4489 && GET_MODE_CLASS (GET_MODE (decl_rtl)) == MODE_COMPLEX_INT in expand_function_end()
4490 && GET_MODE_BITSIZE (GET_MODE (decl_rtl)) <= BITS_PER_WORD) in expand_function_end()
4497 tmp = gen_reg_rtx (GET_MODE (decl_rtl)); in expand_function_end()
4500 emit_move_insn (tmp, decl_rtl); in expand_function_end()
4504 emit_move_insn (real_decl_rtl, decl_rtl); in expand_function_end()