| Index: src/ia32/stub-cache-ia32.cc
|
| diff --git a/src/ia32/stub-cache-ia32.cc b/src/ia32/stub-cache-ia32.cc
|
| index 704f8de205aa4b43d1d48c5f35c236f33cf984a8..96dc46bc72fdd96570d7ec55ce1b647016da9f9d 100644
|
| --- a/src/ia32/stub-cache-ia32.cc
|
| +++ b/src/ia32/stub-cache-ia32.cc
|
| @@ -2368,11 +2368,11 @@ Handle<Code> CallStubCompiler::CompileFastApiCall(
|
| }
|
|
|
|
|
| -Handle<Code> CallStubCompiler::CompileCallConstant(Handle<Object> object,
|
| - Handle<JSObject> holder,
|
| - Handle<JSFunction> function,
|
| - Handle<String> name,
|
| - CheckType check) {
|
| +void CallStubCompiler::CompileHandlerFrontend(Handle<Object> object,
|
| + Handle<JSObject> holder,
|
| + Handle<String> name,
|
| + CheckType check,
|
| + Label* success) {
|
| // ----------- S t a t e -------------
|
| // -- ecx : name
|
| // -- esp[0] : return address
|
| @@ -2380,15 +2380,6 @@ Handle<Code> CallStubCompiler::CompileCallConstant(Handle<Object> object,
|
| // -- ...
|
| // -- esp[(argc + 1) * 4] : receiver
|
| // -----------------------------------
|
| -
|
| - if (HasCustomCallGenerator(function)) {
|
| - Handle<Code> code = CompileCustomCall(object, holder,
|
| - Handle<JSGlobalPropertyCell>::null(),
|
| - function, name);
|
| - // A null handle means bail out to the regular compiler code below.
|
| - if (!code.is_null()) return code;
|
| - }
|
| -
|
| Label miss;
|
| GenerateNameCheck(name, &miss);
|
|
|
| @@ -2421,76 +2412,87 @@ Handle<Code> CallStubCompiler::CompileCallConstant(Handle<Object> object,
|
| break;
|
|
|
| case STRING_CHECK:
|
| - if (function->IsBuiltin() || !function->shared()->is_classic_mode()) {
|
| - // Check that the object is a string or a symbol.
|
| - __ CmpObjectType(edx, FIRST_NONSTRING_TYPE, eax);
|
| - __ j(above_equal, &miss);
|
| - // Check that the maps starting from the prototype haven't changed.
|
| - GenerateDirectLoadGlobalFunctionPrototype(
|
| - masm(), Context::STRING_FUNCTION_INDEX, eax, &miss);
|
| - CheckPrototypes(
|
| - Handle<JSObject>(JSObject::cast(object->GetPrototype())),
|
| - eax, holder, ebx, edx, edi, name, &miss);
|
| - } else {
|
| - // Calling non-strict non-builtins with a value as the receiver
|
| - // requires boxing.
|
| - __ jmp(&miss);
|
| - }
|
| + // Check that the object is a string or a symbol.
|
| + __ CmpObjectType(edx, FIRST_NONSTRING_TYPE, eax);
|
| + __ j(above_equal, &miss);
|
| + // Check that the maps starting from the prototype haven't changed.
|
| + GenerateDirectLoadGlobalFunctionPrototype(
|
| + masm(), Context::STRING_FUNCTION_INDEX, eax, &miss);
|
| + CheckPrototypes(
|
| + Handle<JSObject>(JSObject::cast(object->GetPrototype())),
|
| + eax, holder, ebx, edx, edi, name, &miss);
|
| break;
|
|
|
| - case NUMBER_CHECK:
|
| - if (function->IsBuiltin() || !function->shared()->is_classic_mode()) {
|
| - Label fast;
|
| - // Check that the object is a smi or a heap number.
|
| - __ JumpIfSmi(edx, &fast);
|
| - __ CmpObjectType(edx, HEAP_NUMBER_TYPE, eax);
|
| - __ j(not_equal, &miss);
|
| - __ bind(&fast);
|
| - // Check that the maps starting from the prototype haven't changed.
|
| - GenerateDirectLoadGlobalFunctionPrototype(
|
| - masm(), Context::NUMBER_FUNCTION_INDEX, eax, &miss);
|
| - CheckPrototypes(
|
| - Handle<JSObject>(JSObject::cast(object->GetPrototype())),
|
| - eax, holder, ebx, edx, edi, name, &miss);
|
| - } else {
|
| - // Calling non-strict non-builtins with a value as the receiver
|
| - // requires boxing.
|
| - __ jmp(&miss);
|
| - }
|
| + case NUMBER_CHECK: {
|
| + Label fast;
|
| + // Check that the object is a smi or a heap number.
|
| + __ JumpIfSmi(edx, &fast);
|
| + __ CmpObjectType(edx, HEAP_NUMBER_TYPE, eax);
|
| + __ j(not_equal, &miss);
|
| + __ bind(&fast);
|
| + // Check that the maps starting from the prototype haven't changed.
|
| + GenerateDirectLoadGlobalFunctionPrototype(
|
| + masm(), Context::NUMBER_FUNCTION_INDEX, eax, &miss);
|
| + CheckPrototypes(
|
| + Handle<JSObject>(JSObject::cast(object->GetPrototype())),
|
| + eax, holder, ebx, edx, edi, name, &miss);
|
| break;
|
| -
|
| - case BOOLEAN_CHECK:
|
| - if (function->IsBuiltin() || !function->shared()->is_classic_mode()) {
|
| - Label fast;
|
| - // Check that the object is a boolean.
|
| - __ cmp(edx, factory()->true_value());
|
| - __ j(equal, &fast);
|
| - __ cmp(edx, factory()->false_value());
|
| - __ j(not_equal, &miss);
|
| - __ bind(&fast);
|
| - // Check that the maps starting from the prototype haven't changed.
|
| - GenerateDirectLoadGlobalFunctionPrototype(
|
| - masm(), Context::BOOLEAN_FUNCTION_INDEX, eax, &miss);
|
| - CheckPrototypes(
|
| - Handle<JSObject>(JSObject::cast(object->GetPrototype())),
|
| - eax, holder, ebx, edx, edi, name, &miss);
|
| - } else {
|
| - // Calling non-strict non-builtins with a value as the receiver
|
| - // requires boxing.
|
| - __ jmp(&miss);
|
| - }
|
| + }
|
| + case BOOLEAN_CHECK: {
|
| + Label fast;
|
| + // Check that the object is a boolean.
|
| + __ cmp(edx, factory()->true_value());
|
| + __ j(equal, &fast);
|
| + __ cmp(edx, factory()->false_value());
|
| + __ j(not_equal, &miss);
|
| + __ bind(&fast);
|
| + // Check that the maps starting from the prototype haven't changed.
|
| + GenerateDirectLoadGlobalFunctionPrototype(
|
| + masm(), Context::BOOLEAN_FUNCTION_INDEX, eax, &miss);
|
| + CheckPrototypes(
|
| + Handle<JSObject>(JSObject::cast(object->GetPrototype())),
|
| + eax, holder, ebx, edx, edi, name, &miss);
|
| break;
|
| + }
|
| }
|
|
|
| + __ jmp(success);
|
| +
|
| + // Handle call cache miss.
|
| + __ bind(&miss);
|
| + GenerateMissBranch();
|
| +}
|
| +
|
| +
|
| +void CallStubCompiler::CompileHandlerBackend(Handle<JSFunction> function) {
|
| CallKind call_kind = CallICBase::Contextual::decode(extra_state_)
|
| ? CALL_AS_FUNCTION
|
| : CALL_AS_METHOD;
|
| __ InvokeFunction(function, arguments(), JUMP_FUNCTION,
|
| NullCallWrapper(), call_kind);
|
| +}
|
|
|
| - // Handle call cache miss.
|
| - __ bind(&miss);
|
| - GenerateMissBranch();
|
| +
|
| +Handle<Code> CallStubCompiler::CompileCallConstant(
|
| + Handle<Object> object,
|
| + Handle<JSObject> holder,
|
| + Handle<String> name,
|
| + CheckType check,
|
| + Handle<JSFunction> function) {
|
| +
|
| + if (HasCustomCallGenerator(function)) {
|
| + Handle<Code> code = CompileCustomCall(object, holder,
|
| + Handle<JSGlobalPropertyCell>::null(),
|
| + function, name);
|
| + // A null handle means bail out to the regular compiler code below.
|
| + if (!code.is_null()) return code;
|
| + }
|
| +
|
| + Label success;
|
| +
|
| + CompileHandlerFrontend(object, holder, name, check, &success);
|
| + __ bind(&success);
|
| + CompileHandlerBackend(function);
|
|
|
| // Return the generated code.
|
| return GetCode(function);
|
|
|