| Index: src/ppc/macro-assembler-ppc.h
|
| diff --git a/src/ppc/macro-assembler-ppc.h b/src/ppc/macro-assembler-ppc.h
|
| index 8354caffebf869018e0a284236bc744953b5b5fd..6023173028c59f63f9731e55d460b2c258eb7b87 100644
|
| --- a/src/ppc/macro-assembler-ppc.h
|
| +++ b/src/ppc/macro-assembler-ppc.h
|
| @@ -634,8 +634,6 @@ class MacroAssembler : public Assembler {
|
|
|
| void IsObjectJSStringType(Register object, Register scratch, Label* fail);
|
|
|
| - void IsObjectNameType(Register object, Register scratch, Label* fail);
|
| -
|
| void DebugBreak();
|
| // Frame restart support
|
| void MaybeDropFrames();
|
| @@ -784,17 +782,6 @@ class MacroAssembler : public Assembler {
|
| Label* fail, SmiCheckType smi_check_type);
|
|
|
|
|
| - // Check if the map of an object is equal to a specified weak map and branch
|
| - // to a specified target if equal. Skip the smi check if not required
|
| - // (object is known to be a heap object)
|
| - void DispatchWeakMap(Register obj, Register scratch1, Register scratch2,
|
| - Handle<WeakCell> cell, Handle<Code> success,
|
| - SmiCheckType smi_check_type);
|
| -
|
| - // Compare the given value and the value of weak cell.
|
| - void CmpWeakValue(Register value, Handle<WeakCell> cell, Register scratch,
|
| - CRegister cr = cr7);
|
| -
|
| void GetWeakValue(Register value, Handle<WeakCell> cell);
|
|
|
| // Load the value of the weak cell in the value register. Branch to the given
|
| @@ -1029,7 +1016,6 @@ class MacroAssembler : public Assembler {
|
| // Calls Abort(msg) if the condition cond is not satisfied.
|
| // Use --debug_code to enable.
|
| void Assert(Condition cond, BailoutReason reason, CRegister cr = cr7);
|
| - void AssertFastElements(Register elements);
|
|
|
| // Like Assert(), but always enabled.
|
| void Check(Condition cond, BailoutReason reason, CRegister cr = cr7);
|
| @@ -1279,9 +1265,6 @@ class MacroAssembler : public Assembler {
|
| // Jump if either of the registers contain a smi.
|
| void JumpIfEitherSmi(Register reg1, Register reg2, Label* on_either_smi);
|
|
|
| - // Abort execution if argument is a number, enabled via --debug-code.
|
| - void AssertNotNumber(Register object);
|
| -
|
| // Abort execution if argument is a smi, enabled via --debug-code.
|
| void AssertNotSmi(Register object);
|
| void AssertSmi(Register object);
|
| @@ -1315,12 +1298,6 @@ class MacroAssembler : public Assembler {
|
| #define SmiWordOffset(offset) offset
|
| #endif
|
|
|
| - // Abort execution if argument is not a string, enabled via --debug-code.
|
| - void AssertString(Register object);
|
| -
|
| - // Abort execution if argument is not a name, enabled via --debug-code.
|
| - void AssertName(Register object);
|
| -
|
| void AssertFunction(Register object);
|
|
|
| // Abort execution if argument is not a JSBoundFunction,
|
| @@ -1331,9 +1308,6 @@ class MacroAssembler : public Assembler {
|
| // enabled via --debug-code.
|
| void AssertGeneratorObject(Register object);
|
|
|
| - // Abort execution if argument is not a JSReceiver, enabled via --debug-code.
|
| - void AssertReceiver(Register object);
|
| -
|
| // Abort execution if argument is not undefined or an AllocationSite, enabled
|
| // via --debug-code.
|
| void AssertUndefinedOrAllocationSite(Register object, Register scratch);
|
|
|