| Index: src/ia32/macro-assembler-ia32.h
|
| diff --git a/src/ia32/macro-assembler-ia32.h b/src/ia32/macro-assembler-ia32.h
|
| index 8b04f5b6380987d5f6162884561fe1b3315f1941..61c8b9d846143fba76741f9d6b9e24aab1f2f4cc 100644
|
| --- a/src/ia32/macro-assembler-ia32.h
|
| +++ b/src/ia32/macro-assembler-ia32.h
|
| @@ -303,9 +303,6 @@ class MacroAssembler: public Assembler {
|
| }
|
| }
|
|
|
| - // Compare the given value and the value of weak cell.
|
| - void CmpWeakValue(Register value, Handle<WeakCell> cell, Register scratch);
|
| -
|
| void GetWeakValue(Register value, Handle<WeakCell> cell);
|
|
|
| // Load the value of the weak cell in the value register. Branch to the given
|
| @@ -394,13 +391,6 @@ class MacroAssembler: public Assembler {
|
| void CheckMap(Register obj, Handle<Map> map, 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);
|
| -
|
| // Check if the object in register heap_object is a string. Afterwards the
|
| // register map contains the object map and the register instance_type
|
| // contains the instance_type. The registers map and instance_type can be the
|
| @@ -409,14 +399,6 @@ class MacroAssembler: public Assembler {
|
| Condition IsObjectStringType(Register heap_object, Register map,
|
| Register instance_type);
|
|
|
| - // Check if the object in register heap_object is a name. Afterwards the
|
| - // register map contains the object map and the register instance_type
|
| - // contains the instance_type. The registers map and instance_type can be the
|
| - // same in which case it contains the instance type afterwards. Either of the
|
| - // registers map and instance_type can be the same as heap_object.
|
| - Condition IsObjectNameType(Register heap_object, Register map,
|
| - Register instance_type);
|
| -
|
| // FCmp is similar to integer cmp, but requires unsigned
|
| // jcc instructions (je, ja, jae, jb, jbe, je, and jz).
|
| void FCmp();
|
| @@ -533,22 +515,12 @@ class MacroAssembler: public Assembler {
|
|
|
| void LoadPowerOf2(XMMRegister dst, Register scratch, int power);
|
|
|
| - // Abort execution if argument is not a number, enabled via --debug-code.
|
| - void AssertNumber(Register object);
|
| - void AssertNotNumber(Register object);
|
| -
|
| // Abort execution if argument is not a smi, enabled via --debug-code.
|
| void AssertSmi(Register object);
|
|
|
| // Abort execution if argument is a smi, enabled via --debug-code.
|
| void AssertNotSmi(Register object);
|
|
|
| - // 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);
|
| -
|
| // Abort execution if argument is not a JSFunction, enabled via --debug-code.
|
| void AssertFunction(Register object);
|
|
|
| @@ -560,9 +532,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);
|
| @@ -637,14 +606,6 @@ class MacroAssembler: public Assembler {
|
| // Check a boolean-bit of a Smi field.
|
| void BooleanBitTest(Register object, int field_offset, int bit_index);
|
|
|
| - // Check if result is zero and op is negative.
|
| - void NegativeZeroTest(Register result, Register op, Label* then_label);
|
| -
|
| - // Check if result is zero and any of op1 and op2 are negative.
|
| - // Register scratch is destroyed, and it must be different from op2.
|
| - void NegativeZeroTest(Register result, Register op1, Register op2,
|
| - Register scratch, Label* then_label);
|
| -
|
| // ---------------------------------------------------------------------------
|
| // Runtime calls
|
|
|
| @@ -654,9 +615,6 @@ class MacroAssembler: public Assembler {
|
| // Tail call a code stub (jump). Generate the code if necessary.
|
| void TailCallStub(CodeStub* stub);
|
|
|
| - // Return from a code stub after popping its arguments.
|
| - void StubReturn(int argc);
|
| -
|
| // Call a runtime routine.
|
| void CallRuntime(const Runtime::Function* f, int num_arguments,
|
| SaveFPRegsMode save_doubles = kDontSaveFPRegs);
|
| @@ -813,8 +771,6 @@ class MacroAssembler: public Assembler {
|
| // Use --debug_code to enable.
|
| void Assert(Condition cc, BailoutReason reason);
|
|
|
| - void AssertFastElements(Register elements);
|
| -
|
| // Like Assert(), but always enabled.
|
| void Check(Condition cc, BailoutReason reason);
|
|
|
|
|