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

Side by Side Diff: src/ia32/code-stubs-ia32.cc

Issue 172383003: Revert "Second attempt at introducing a premonomorphic state in the call" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/mips/code-stubs-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 2312 matching lines...) Expand 10 before | Expand all | Expand 10 after
2323 2323
2324 static void GenerateRecordCallTarget(MacroAssembler* masm) { 2324 static void GenerateRecordCallTarget(MacroAssembler* masm) {
2325 // Cache the called function in a feedback vector slot. Cache states 2325 // Cache the called function in a feedback vector slot. Cache states
2326 // are uninitialized, monomorphic (indicated by a JSFunction), and 2326 // are uninitialized, monomorphic (indicated by a JSFunction), and
2327 // megamorphic. 2327 // megamorphic.
2328 // eax : number of arguments to the construct function 2328 // eax : number of arguments to the construct function
2329 // ebx : Feedback vector 2329 // ebx : Feedback vector
2330 // edx : slot in feedback vector (Smi) 2330 // edx : slot in feedback vector (Smi)
2331 // edi : the function to call 2331 // edi : the function to call
2332 Isolate* isolate = masm->isolate(); 2332 Isolate* isolate = masm->isolate();
2333 Label check_array, initialize_array, initialize_non_array, megamorphic, done; 2333 Label initialize, done, miss, megamorphic, not_array_function;
2334 2334
2335 // Load the cache state into ecx. 2335 // Load the cache state into ecx.
2336 __ mov(ecx, FieldOperand(ebx, edx, times_half_pointer_size, 2336 __ mov(ecx, FieldOperand(ebx, edx, times_half_pointer_size,
2337 FixedArray::kHeaderSize)); 2337 FixedArray::kHeaderSize));
2338 2338
2339 // A monomorphic cache hit or an already megamorphic state: invoke the 2339 // A monomorphic cache hit or an already megamorphic state: invoke the
2340 // function without changing the state. 2340 // function without changing the state.
2341 __ cmp(ecx, edi); 2341 __ cmp(ecx, edi);
2342 __ j(equal, &done, Label::kFar); 2342 __ j(equal, &done, Label::kFar);
2343 __ cmp(ecx, Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate))); 2343 __ cmp(ecx, Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate)));
2344 __ j(equal, &done, Label::kFar); 2344 __ j(equal, &done, Label::kFar);
2345 2345
2346 // Load the global or builtins object from the current context and check 2346 // If we came here, we need to see if we are the array function.
2347 // if we're dealing with the Array function or not. 2347 // If we didn't have a matching function, and we didn't find the megamorph
2348 // sentinel, then we have in the slot either some other function or an
2349 // AllocationSite. Do a map check on the object in ecx.
2350 Handle<Map> allocation_site_map =
2351 masm->isolate()->factory()->allocation_site_map();
2352 __ cmp(FieldOperand(ecx, 0), Immediate(allocation_site_map));
2353 __ j(not_equal, &miss);
2354
2355 // Load the global or builtins object from the current context
2348 __ LoadGlobalContext(ecx); 2356 __ LoadGlobalContext(ecx);
2357 // Make sure the function is the Array() function
2349 __ cmp(edi, Operand(ecx, 2358 __ cmp(edi, Operand(ecx,
2350 Context::SlotOffset(Context::ARRAY_FUNCTION_INDEX))); 2359 Context::SlotOffset(Context::ARRAY_FUNCTION_INDEX)));
2351 __ j(equal, &check_array);
2352
2353 // Non-array cache: Reload the cache state and check it.
2354 __ mov(ecx, FieldOperand(ebx, edx, times_half_pointer_size,
2355 FixedArray::kHeaderSize));
2356 __ cmp(ecx, Immediate(TypeFeedbackInfo::PremonomorphicSentinel(isolate)));
2357 __ j(equal, &initialize_non_array);
2358 __ cmp(ecx, Immediate(TypeFeedbackInfo::UninitializedSentinel(isolate)));
2359 __ j(not_equal, &megamorphic); 2360 __ j(not_equal, &megamorphic);
2360
2361 // Non-array cache: Uninitialized -> premonomorphic. The sentinel is an
2362 // immortal immovable object (null) so no write-barrier is needed.
2363 __ mov(FieldOperand(ebx, edx, times_half_pointer_size,
2364 FixedArray::kHeaderSize),
2365 Immediate(TypeFeedbackInfo::PremonomorphicSentinel(isolate)));
2366 __ jmp(&done, Label::kFar); 2361 __ jmp(&done, Label::kFar);
2367 2362
2368 // Array cache: Reload the cache state and check to see if we're in a 2363 __ bind(&miss);
2369 // monomorphic state where the state object is an AllocationSite object.
2370 __ bind(&check_array);
2371 __ mov(ecx, FieldOperand(ebx, edx, times_half_pointer_size,
2372 FixedArray::kHeaderSize));
2373 Handle<Map> allocation_site_map = isolate->factory()->allocation_site_map();
2374 __ cmp(FieldOperand(ecx, 0), Immediate(allocation_site_map));
2375 __ j(equal, &done, Label::kFar);
2376 2364
2377 // Array cache: Uninitialized or premonomorphic -> monomorphic. 2365 // A monomorphic miss (i.e, here the cache is not uninitialized) goes
2366 // megamorphic.
2378 __ cmp(ecx, Immediate(TypeFeedbackInfo::UninitializedSentinel(isolate))); 2367 __ cmp(ecx, Immediate(TypeFeedbackInfo::UninitializedSentinel(isolate)));
2379 __ j(equal, &initialize_array); 2368 __ j(equal, &initialize);
2380 __ cmp(ecx, Immediate(TypeFeedbackInfo::PremonomorphicSentinel(isolate))); 2369 // MegamorphicSentinel is an immortal immovable object (undefined) so no
2381 __ j(equal, &initialize_array); 2370 // write-barrier is needed.
2382
2383 // Both caches: Monomorphic -> megamorphic. The sentinel is an
2384 // immortal immovable object (undefined) so no write-barrier is needed.
2385 __ bind(&megamorphic); 2371 __ bind(&megamorphic);
2386 __ mov(FieldOperand(ebx, edx, times_half_pointer_size, 2372 __ mov(FieldOperand(ebx, edx, times_half_pointer_size,
2387 FixedArray::kHeaderSize), 2373 FixedArray::kHeaderSize),
2388 Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate))); 2374 Immediate(TypeFeedbackInfo::MegamorphicSentinel(isolate)));
2389 __ jmp(&done, Label::kFar); 2375 __ jmp(&done, Label::kFar);
2390 2376
2391 // Array cache: Uninitialized or premonomorphic -> monomorphic. 2377 // An uninitialized cache is patched with the function or sentinel to
2392 __ bind(&initialize_array); 2378 // indicate the ElementsKind if function is the Array constructor.
2379 __ bind(&initialize);
2380 __ LoadGlobalContext(ecx);
2381 // Make sure the function is the Array() function
2382 __ cmp(edi, Operand(ecx,
2383 Context::SlotOffset(Context::ARRAY_FUNCTION_INDEX)));
2384 __ j(not_equal, &not_array_function);
2385
2386 // The target function is the Array constructor,
2387 // Create an AllocationSite if we don't already have it, store it in the slot.
2393 { 2388 {
2394 FrameScope scope(masm, StackFrame::INTERNAL); 2389 FrameScope scope(masm, StackFrame::INTERNAL);
2395 2390
2396 // Arguments register must be smi-tagged to call out. 2391 // Arguments register must be smi-tagged to call out.
2397 __ SmiTag(eax); 2392 __ SmiTag(eax);
2398 __ push(eax); 2393 __ push(eax);
2399 __ push(edi); 2394 __ push(edi);
2400 __ push(edx); 2395 __ push(edx);
2401 __ push(ebx); 2396 __ push(ebx);
2402 2397
2403 CreateAllocationSiteStub create_stub; 2398 CreateAllocationSiteStub create_stub;
2404 __ CallStub(&create_stub); 2399 __ CallStub(&create_stub);
2405 2400
2406 __ pop(ebx); 2401 __ pop(ebx);
2407 __ pop(edx); 2402 __ pop(edx);
2408 __ pop(edi); 2403 __ pop(edi);
2409 __ pop(eax); 2404 __ pop(eax);
2410 __ SmiUntag(eax); 2405 __ SmiUntag(eax);
2411 } 2406 }
2412 __ jmp(&done); 2407 __ jmp(&done);
2413 2408
2414 // Non-array cache: Premonomorphic -> monomorphic. 2409 __ bind(&not_array_function);
2415 __ bind(&initialize_non_array);
2416 __ mov(FieldOperand(ebx, edx, times_half_pointer_size, 2410 __ mov(FieldOperand(ebx, edx, times_half_pointer_size,
2417 FixedArray::kHeaderSize), 2411 FixedArray::kHeaderSize),
2418 edi); 2412 edi);
2413 // We won't need edx or ebx anymore, just save edi
2419 __ push(edi); 2414 __ push(edi);
2420 __ push(ebx); 2415 __ push(ebx);
2421 __ push(edx); 2416 __ push(edx);
2422 __ RecordWriteArray(ebx, edi, edx, kDontSaveFPRegs, 2417 __ RecordWriteArray(ebx, edi, edx, kDontSaveFPRegs,
2423 EMIT_REMEMBERED_SET, OMIT_SMI_CHECK); 2418 EMIT_REMEMBERED_SET, OMIT_SMI_CHECK);
2424 __ pop(edx); 2419 __ pop(edx);
2425 __ pop(ebx); 2420 __ pop(ebx);
2426 __ pop(edi); 2421 __ pop(edi);
2427 2422
2428 __ bind(&done); 2423 __ bind(&done);
(...skipping 3034 matching lines...) Expand 10 before | Expand all | Expand 10 after
5463 Operand(ebp, 7 * kPointerSize), 5458 Operand(ebp, 7 * kPointerSize),
5464 NULL); 5459 NULL);
5465 } 5460 }
5466 5461
5467 5462
5468 #undef __ 5463 #undef __
5469 5464
5470 } } // namespace v8::internal 5465 } } // namespace v8::internal
5471 5466
5472 #endif // V8_TARGET_ARCH_IA32 5467 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/mips/code-stubs-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698