| Index: src/full-codegen/mips64/full-codegen-mips64.cc
|
| diff --git a/src/full-codegen/mips64/full-codegen-mips64.cc b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| index 6900a946457ec80acf1bec1c8720ac5fb070913f..a273d570e2c63d3dedae5c4516f4318c9fdd9d48 100644
|
| --- a/src/full-codegen/mips64/full-codegen-mips64.cc
|
| +++ b/src/full-codegen/mips64/full-codegen-mips64.cc
|
| @@ -3320,95 +3320,6 @@ void FullCodeGenerator::EmitIsSimdValue(CallRuntime* expr) {
|
| }
|
|
|
|
|
| -void FullCodeGenerator::EmitIsStringWrapperSafeForDefaultValueOf(
|
| - CallRuntime* expr) {
|
| - ZoneList<Expression*>* args = expr->arguments();
|
| - DCHECK(args->length() == 1);
|
| -
|
| - VisitForAccumulatorValue(args->at(0));
|
| -
|
| - Label materialize_true, materialize_false, skip_lookup;
|
| - Label* if_true = NULL;
|
| - Label* if_false = NULL;
|
| - Label* fall_through = NULL;
|
| - context()->PrepareTest(&materialize_true, &materialize_false,
|
| - &if_true, &if_false, &fall_through);
|
| -
|
| - __ AssertNotSmi(v0);
|
| -
|
| - __ ld(a1, FieldMemOperand(v0, HeapObject::kMapOffset));
|
| - __ lbu(a4, FieldMemOperand(a1, Map::kBitField2Offset));
|
| - __ And(a4, a4, 1 << Map::kStringWrapperSafeForDefaultValueOf);
|
| - __ Branch(&skip_lookup, ne, a4, Operand(zero_reg));
|
| -
|
| - // Check for fast case object. Generate false result for slow case object.
|
| - __ ld(a2, FieldMemOperand(v0, JSObject::kPropertiesOffset));
|
| - __ ld(a2, FieldMemOperand(a2, HeapObject::kMapOffset));
|
| - __ LoadRoot(a4, Heap::kHashTableMapRootIndex);
|
| - __ Branch(if_false, eq, a2, Operand(a4));
|
| -
|
| - // Look for valueOf name in the descriptor array, and indicate false if
|
| - // found. Since we omit an enumeration index check, if it is added via a
|
| - // transition that shares its descriptor array, this is a false positive.
|
| - Label entry, loop, done;
|
| -
|
| - // Skip loop if no descriptors are valid.
|
| - __ NumberOfOwnDescriptors(a3, a1);
|
| - __ Branch(&done, eq, a3, Operand(zero_reg));
|
| -
|
| - __ LoadInstanceDescriptors(a1, a4);
|
| - // a4: descriptor array.
|
| - // a3: valid entries in the descriptor array.
|
| - STATIC_ASSERT(kSmiTag == 0);
|
| - STATIC_ASSERT(kSmiTagSize == 1);
|
| -// Does not need?
|
| -// STATIC_ASSERT(kPointerSize == 4);
|
| - __ li(at, Operand(DescriptorArray::kDescriptorSize));
|
| - __ Dmul(a3, a3, at);
|
| - // Calculate location of the first key name.
|
| - __ Daddu(a4, a4, Operand(DescriptorArray::kFirstOffset - kHeapObjectTag));
|
| - // Calculate the end of the descriptor array.
|
| - __ mov(a2, a4);
|
| - __ dsll(a5, a3, kPointerSizeLog2);
|
| - __ Daddu(a2, a2, a5);
|
| -
|
| - // Loop through all the keys in the descriptor array. If one of these is the
|
| - // string "valueOf" the result is false.
|
| - // The use of a6 to store the valueOf string assumes that it is not otherwise
|
| - // used in the loop below.
|
| - __ LoadRoot(a6, Heap::kvalueOf_stringRootIndex);
|
| - __ jmp(&entry);
|
| - __ bind(&loop);
|
| - __ ld(a3, MemOperand(a4, 0));
|
| - __ Branch(if_false, eq, a3, Operand(a6));
|
| - __ Daddu(a4, a4, Operand(DescriptorArray::kDescriptorSize * kPointerSize));
|
| - __ bind(&entry);
|
| - __ Branch(&loop, ne, a4, Operand(a2));
|
| -
|
| - __ bind(&done);
|
| -
|
| - // Set the bit in the map to indicate that there is no local valueOf field.
|
| - __ lbu(a2, FieldMemOperand(a1, Map::kBitField2Offset));
|
| - __ Or(a2, a2, Operand(1 << Map::kStringWrapperSafeForDefaultValueOf));
|
| - __ sb(a2, FieldMemOperand(a1, Map::kBitField2Offset));
|
| -
|
| - __ bind(&skip_lookup);
|
| -
|
| - // If a valueOf property is not found on the object check that its
|
| - // prototype is the un-modified String prototype. If not result is false.
|
| - __ ld(a2, FieldMemOperand(a1, Map::kPrototypeOffset));
|
| - __ JumpIfSmi(a2, if_false);
|
| - __ ld(a2, FieldMemOperand(a2, HeapObject::kMapOffset));
|
| - __ ld(a3, ContextOperand(cp, Context::GLOBAL_OBJECT_INDEX));
|
| - __ ld(a3, FieldMemOperand(a3, GlobalObject::kNativeContextOffset));
|
| - __ ld(a3, ContextOperand(a3, Context::STRING_FUNCTION_PROTOTYPE_MAP_INDEX));
|
| - PrepareForBailoutBeforeSplit(expr, true, if_true, if_false);
|
| - Split(eq, a2, Operand(a3), if_true, if_false, fall_through);
|
| -
|
| - context()->Plug(if_true, if_false);
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::EmitIsFunction(CallRuntime* expr) {
|
| ZoneList<Expression*>* args = expr->arguments();
|
| DCHECK(args->length() == 1);
|
|
|