mips.c (machine_function): Rename load_label_length to load_label_num_insns.

* config/mips/mips.c (machine_function): Rename load_label_length to
	load_label_num_insns.
	(mips_load_label_length): Rename to...
	(mips_load_label_num_insns): ...this.  Adjust to first renaming.
	(mips_adjust_insn_length): Adjust to second renaming.  Fix thinko.

From-SVN: r167001
This commit is contained in:
Eric Botcazou 2010-11-21 10:36:54 +00:00 committed by Eric Botcazou
parent 2dc82a83be
commit 5a48683457
2 changed files with 14 additions and 6 deletions

View File

@ -1,3 +1,11 @@
2010-11-21 Eric Botcazou <ebotcazou@adacore.com>
* config/mips/mips.c (machine_function): Rename load_label_length to
load_label_num_insns.
(mips_load_label_length): Rename to...
(mips_load_label_num_insns): ...this. Adjust to first renaming.
(mips_adjust_insn_length): Adjust to second renaming. Fix thinko.
2010-11-21 Uros Bizjak <ubizjak@gmail.com>
PR target/46533

View File

@ -346,7 +346,7 @@ struct GTY(()) machine_function {
/* How many instructions it takes to load a label into $AT, or 0 if
this property hasn't yet been calculated. */
unsigned int load_label_length;
unsigned int load_label_num_insns;
/* True if mips_adjust_insn_length should ignore an instruction's
hazard attribute. */
@ -11275,14 +11275,14 @@ mips_process_load_label (rtx target)
/* Return the number of instructions needed to load a label into $AT. */
static unsigned int
mips_load_label_length (void)
mips_load_label_num_insns (void)
{
if (cfun->machine->load_label_length == 0)
if (cfun->machine->load_label_num_insns == 0)
{
mips_process_load_label (pc_rtx);
cfun->machine->load_label_length = mips_multi_num_insns;
cfun->machine->load_label_num_insns = mips_multi_num_insns;
}
return cfun->machine->load_label_length;
return cfun->machine->load_label_num_insns;
}
/* Emit an asm sequence to start a noat block and load the address
@ -11324,7 +11324,7 @@ mips_adjust_insn_length (rtx insn, int length)
/* Load the label into $AT and jump to it. Ignore the delay
slot of the jump. */
length += mips_load_label_length () + 4;
length += 4 * mips_load_label_num_insns() + 4;
}
/* A unconditional jump has an unfilled delay slot if it is not part