Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Unified Diff: src/mips/builtins-mips.cc

Issue 1335193002: [builtins] Simplify String constructor code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address Jaro's comments. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ia32/macro-assembler-ia32.cc ('k') | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/builtins-mips.cc
diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
index 558c0757e19d354c8d52406ef90f7a0432cce927..b90866823dafb48a9eb57fe68209ed7875ada5e7 100644
--- a/src/mips/builtins-mips.cc
+++ b/src/mips/builtins-mips.cc
@@ -149,121 +149,76 @@ void Builtins::Generate_StringConstructCode(MacroAssembler* masm) {
// -- sp[(argc - n - 1) * 4] : arg[n] (zero based)
// -- sp[argc * 4] : receiver
// -----------------------------------
- Counters* counters = masm->isolate()->counters();
- __ IncrementCounter(counters->string_ctor_calls(), 1, a2, a3);
- Register function = a1;
- if (FLAG_debug_code) {
- __ LoadGlobalFunction(Context::STRING_FUNCTION_INDEX, a2);
- __ Assert(eq, kUnexpectedStringFunction, function, Operand(a2));
- }
-
- // Load the first arguments in a0 and get rid of the rest.
- Label no_arguments;
- __ Branch(&no_arguments, eq, a0, Operand(zero_reg));
- // First args = sp[(argc - 1) * 4].
- __ Subu(a0, a0, Operand(1));
- __ sll(a0, a0, kPointerSizeLog2);
- __ Addu(sp, a0, sp);
- __ lw(a0, MemOperand(sp));
- // sp now point to args[0], drop args[0] + receiver.
- __ Drop(2);
-
- Register argument = a2;
- Label not_cached, argument_is_string;
- __ LookupNumberStringCache(a0, // Input.
- argument, // Result.
- a3, // Scratch.
- t0, // Scratch.
- t1, // Scratch.
- &not_cached);
- __ IncrementCounter(counters->string_ctor_cached_number(), 1, a3, t0);
- __ bind(&argument_is_string);
-
- // ----------- S t a t e -------------
- // -- a2 : argument converted to string
- // -- a1 : constructor function
- // -- ra : return address
- // -----------------------------------
-
- Label gc_required;
- __ Allocate(JSValue::kSize,
- v0, // Result.
- a3, // Scratch.
- t0, // Scratch.
- &gc_required,
- TAG_OBJECT);
-
- // Initialising the String Object.
- Register map = a3;
- __ LoadGlobalFunctionInitialMap(function, map, t0);
- if (FLAG_debug_code) {
- __ lbu(t0, FieldMemOperand(map, Map::kInstanceSizeOffset));
- __ Assert(eq, kUnexpectedStringWrapperInstanceSize,
- t0, Operand(JSValue::kSize >> kPointerSizeLog2));
- __ lbu(t0, FieldMemOperand(map, Map::kUnusedPropertyFieldsOffset));
- __ Assert(eq, kUnexpectedUnusedPropertiesOfStringWrapper,
- t0, Operand(zero_reg));
+ // 1. Load the first argument into a0 and get rid of the rest (including the
+ // receiver).
+ {
+ Label no_arguments, done;
+ __ Branch(&no_arguments, eq, a0, Operand(zero_reg));
+ __ Subu(a0, a0, Operand(1));
+ __ sll(a0, a0, kPointerSizeLog2);
+ __ Addu(sp, a0, sp);
+ __ lw(a0, MemOperand(sp));
+ __ Drop(2);
+ __ jmp(&done);
+ __ bind(&no_arguments);
+ __ LoadRoot(a0, Heap::kempty_stringRootIndex);
+ __ Drop(1);
+ __ bind(&done);
}
- __ sw(map, FieldMemOperand(v0, HeapObject::kMapOffset));
-
- __ LoadRoot(a3, Heap::kEmptyFixedArrayRootIndex);
- __ sw(a3, FieldMemOperand(v0, JSObject::kPropertiesOffset));
- __ sw(a3, FieldMemOperand(v0, JSObject::kElementsOffset));
-
- __ sw(argument, FieldMemOperand(v0, JSValue::kValueOffset));
-
- // Ensure the object is fully initialized.
- STATIC_ASSERT(JSValue::kSize == 4 * kPointerSize);
- __ Ret();
-
- // The argument was not found in the number to string cache. Check
- // if it's a string already before calling the conversion builtin.
- Label convert_argument;
- __ bind(&not_cached);
- __ JumpIfSmi(a0, &convert_argument);
-
- // Is it a String?
- __ lw(a2, FieldMemOperand(a0, HeapObject::kMapOffset));
- __ lbu(a3, FieldMemOperand(a2, Map::kInstanceTypeOffset));
- STATIC_ASSERT(kNotStringTag != 0);
- __ And(t0, a3, Operand(kIsNotStringMask));
- __ Branch(&convert_argument, ne, t0, Operand(zero_reg));
- __ mov(argument, a0);
- __ IncrementCounter(counters->string_ctor_conversions(), 1, a3, t0);
- __ Branch(&argument_is_string);
-
- // Invoke the conversion builtin and put the result into a2.
- __ bind(&convert_argument);
- __ push(function); // Preserve the function.
- __ IncrementCounter(counters->string_ctor_conversions(), 1, a3, t0);
+ // 2. Make sure a0 is a string.
{
- FrameScope scope(masm, StackFrame::INTERNAL);
- ToStringStub stub(masm->isolate());
- __ CallStub(&stub);
+ Label convert, done_convert;
+ __ JumpIfSmi(a0, &convert);
+ __ GetObjectType(a0, a2, a2);
+ __ And(t0, a2, Operand(kIsNotStringMask));
+ __ Branch(&done_convert, eq, t0, Operand(zero_reg));
+ __ bind(&convert);
+ {
+ FrameScope scope(masm, StackFrame::INTERNAL);
+ ToStringStub stub(masm->isolate());
+ __ Push(a1);
+ __ CallStub(&stub);
+ __ Move(a0, v0);
+ __ Pop(a1);
+ }
+ __ bind(&done_convert);
}
- __ pop(function);
- __ mov(argument, v0);
- __ Branch(&argument_is_string);
-
- // Load the empty string into a2, remove the receiver from the
- // stack, and jump back to the case where the argument is a string.
- __ bind(&no_arguments);
- __ LoadRoot(argument, Heap::kempty_stringRootIndex);
- __ Drop(1);
- __ Branch(&argument_is_string);
-
- // At this point the argument is already a string. Call runtime to
- // create a string wrapper.
- __ bind(&gc_required);
- __ IncrementCounter(counters->string_ctor_gc_required(), 1, a3, t0);
+
+ // 3. Allocate a JSValue wrapper for the string.
{
- FrameScope scope(masm, StackFrame::INTERNAL);
- __ push(argument);
- __ CallRuntime(Runtime::kNewStringWrapper, 1);
+ // ----------- S t a t e -------------
+ // -- a0 : the first argument
+ // -- a1 : constructor function
+ // -- ra : return address
+ // -----------------------------------
+
+ Label allocate, done_allocate;
+ __ Allocate(JSValue::kSize, v0, a2, a3, &allocate, TAG_OBJECT);
+ __ bind(&done_allocate);
+
+ // Initialize the JSValue in eax.
+ __ LoadGlobalFunctionInitialMap(a1, a2, a3);
+ __ sw(a2, FieldMemOperand(v0, HeapObject::kMapOffset));
+ __ LoadRoot(a3, Heap::kEmptyFixedArrayRootIndex);
+ __ sw(a3, FieldMemOperand(v0, JSObject::kPropertiesOffset));
+ __ sw(a3, FieldMemOperand(v0, JSObject::kElementsOffset));
+ __ sw(a0, FieldMemOperand(v0, JSValue::kValueOffset));
+ STATIC_ASSERT(JSValue::kSize == 4 * kPointerSize);
+ __ Ret();
+
+ // Fallback to the runtime to allocate in new space.
+ __ bind(&allocate);
+ {
+ FrameScope scope(masm, StackFrame::INTERNAL);
+ __ Move(a2, Smi::FromInt(JSValue::kSize));
+ __ Push(a0, a1, a2);
+ __ CallRuntime(Runtime::kAllocateInNewSpace, 1);
+ __ Pop(a0, a1);
+ }
+ __ jmp(&done_allocate);
}
- __ Ret();
}
« no previous file with comments | « src/ia32/macro-assembler-ia32.cc ('k') | src/mips/macro-assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698