| Index: src/mips/macro-assembler-mips.h
|
| diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h
|
| index ac90204b24c82428eb361c1917144d6413dc9c57..a37c11322cf6958cce81ef705a48faeb2da8352b 100644
|
| --- a/src/mips/macro-assembler-mips.h
|
| +++ b/src/mips/macro-assembler-mips.h
|
| @@ -384,22 +384,10 @@ class MacroAssembler: public Assembler {
|
| Register scratch1,
|
| Label* on_black);
|
|
|
| - // Checks the color of an object. If the object is already grey or black
|
| - // then we just fall through, since it is already live. If it is white and
|
| - // we can determine that it doesn't need to be scanned, then we just mark it
|
| - // black and fall through. For the rest we jump to the label so the
|
| - // incremental marker can fix its assumptions.
|
| - void EnsureNotWhite(Register object,
|
| - Register scratch1,
|
| - Register scratch2,
|
| - Register scratch3,
|
| - Label* object_is_white_and_not_data);
|
| -
|
| - // Detects conservatively whether an object is data-only, i.e. it does need to
|
| - // be scanned by the garbage collector.
|
| - void JumpIfDataObject(Register value,
|
| - Register scratch,
|
| - Label* not_data_object);
|
| + // Checks the color of an object. If the object is white we jump to the
|
| + // incremental marker.
|
| + void JumpIfWhite(Register value, Register scratch1, Register scratch2,
|
| + Register scratch3, Label* value_is_white);
|
|
|
| // Notify the garbage collector that we wrote a pointer into an object.
|
| // |object| is the object being stored into, |value| is the object being
|
|
|