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

Side by Side Diff: src/hydrogen.cc

Issue 279423005: Customized support for feedback on calls to Array. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ports. Created 6 years, 7 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "hydrogen.h" 5 #include "hydrogen.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "v8.h" 9 #include "v8.h"
10 #include "allocation-site-scopes.h" 10 #include "allocation-site-scopes.h"
(...skipping 2450 matching lines...) Expand 10 before | Expand all | Expand 10 after
2461 double nan_double = FixedDoubleArray::hole_nan_as_double(); 2461 double nan_double = FixedDoubleArray::hole_nan_as_double();
2462 HValue* hole = IsFastSmiOrObjectElementsKind(elements_kind) 2462 HValue* hole = IsFastSmiOrObjectElementsKind(elements_kind)
2463 ? Add<HConstant>(factory->the_hole_value()) 2463 ? Add<HConstant>(factory->the_hole_value())
2464 : Add<HConstant>(nan_double); 2464 : Add<HConstant>(nan_double);
2465 2465
2466 if (to == NULL) { 2466 if (to == NULL) {
2467 to = AddLoadFixedArrayLength(elements); 2467 to = AddLoadFixedArrayLength(elements);
2468 } 2468 }
2469 2469
2470 // Special loop unfolding case 2470 // Special loop unfolding case
2471 static const int kLoopUnfoldLimit = 8; 2471 STATIC_ASSERT(JSArray::kPreallocatedArrayElements <=
2472 STATIC_ASSERT(JSArray::kPreallocatedArrayElements <= kLoopUnfoldLimit); 2472 kElementLoopUnrollThreshold);
2473 int initial_capacity = -1; 2473 int initial_capacity = -1;
2474 if (from->IsInteger32Constant() && to->IsInteger32Constant()) { 2474 if (from->IsInteger32Constant() && to->IsInteger32Constant()) {
2475 int constant_from = from->GetInteger32Constant(); 2475 int constant_from = from->GetInteger32Constant();
2476 int constant_to = to->GetInteger32Constant(); 2476 int constant_to = to->GetInteger32Constant();
2477 2477
2478 if (constant_from == 0 && constant_to <= kLoopUnfoldLimit) { 2478 if (constant_from == 0 && constant_to <= kElementLoopUnrollThreshold) {
2479 initial_capacity = constant_to; 2479 initial_capacity = constant_to;
2480 } 2480 }
2481 } 2481 }
2482 2482
2483 // Since we're about to store a hole value, the store instruction below must 2483 // Since we're about to store a hole value, the store instruction below must
2484 // assume an elements kind that supports heap object values. 2484 // assume an elements kind that supports heap object values.
2485 if (IsFastSmiOrObjectElementsKind(elements_kind)) { 2485 if (IsFastSmiOrObjectElementsKind(elements_kind)) {
2486 elements_kind = FAST_HOLEY_ELEMENTS; 2486 elements_kind = FAST_HOLEY_ELEMENTS;
2487 } 2487 }
2488 2488
(...skipping 5736 matching lines...) Expand 10 before | Expand all | Expand 10 after
8225 // as is it dropped on deserialization. 8225 // as is it dropped on deserialization.
8226 CHECK(!Serializer::enabled(isolate())); 8226 CHECK(!Serializer::enabled(isolate()));
8227 Handle<JSObject> global_receiver( 8227 Handle<JSObject> global_receiver(
8228 target->context()->global_object()->global_receiver()); 8228 target->context()->global_object()->global_receiver());
8229 return Add<HConstant>(global_receiver); 8229 return Add<HConstant>(global_receiver);
8230 } 8230 }
8231 return graph()->GetConstantUndefined(); 8231 return graph()->GetConstantUndefined();
8232 } 8232 }
8233 8233
8234 8234
8235 void HOptimizedGraphBuilder::BuildArrayCall(Expression* expression,
8236 int arguments_count,
8237 HValue* function,
8238 Handle<AllocationSite> site) {
8239 Add<HCheckValue>(function, array_function());
8240
8241 if (IsCallArrayInlineable(arguments_count, site)) {
8242 BuildInlinedCallArray(expression, arguments_count, site);
8243 return;
8244 }
8245
8246 HInstruction* call = PreProcessCall(New<HCallNewArray>(
8247 function, arguments_count + 1, site->GetElementsKind()));
8248 if (expression->IsCall()) {
8249 Drop(1);
8250 }
8251 ast_context()->ReturnInstruction(call, expression->id());
8252 }
8253
8254
8255 bool HOptimizedGraphBuilder::TryHandleArrayCall(Call* expr, HValue* function) {
8256 if (!array_function().is_identical_to(expr->target())) {
8257 return false;
8258 }
8259
8260 Handle<AllocationSite> site = expr->allocation_site();
8261 if (site.is_null()) return false;
8262
8263 BuildArrayCall(expr,
8264 expr->arguments()->length(),
8265 function,
8266 site);
8267 return true;
8268 }
8269
8270
8271 bool HOptimizedGraphBuilder::TryHandleArrayCallNew(CallNew* expr,
8272 HValue* function) {
8273 if (!array_function().is_identical_to(expr->target())) {
8274 return false;
8275 }
8276
8277 BuildArrayCall(expr,
8278 expr->arguments()->length(),
8279 function,
8280 expr->allocation_site());
8281 return true;
8282 }
8283
8284
8235 void HOptimizedGraphBuilder::VisitCall(Call* expr) { 8285 void HOptimizedGraphBuilder::VisitCall(Call* expr) {
8236 ASSERT(!HasStackOverflow()); 8286 ASSERT(!HasStackOverflow());
8237 ASSERT(current_block() != NULL); 8287 ASSERT(current_block() != NULL);
8238 ASSERT(current_block()->HasPredecessor()); 8288 ASSERT(current_block()->HasPredecessor());
8239 Expression* callee = expr->expression(); 8289 Expression* callee = expr->expression();
8240 int argument_count = expr->arguments()->length() + 1; // Plus receiver. 8290 int argument_count = expr->arguments()->length() + 1; // Plus receiver.
8241 HInstruction* call = NULL; 8291 HInstruction* call = NULL;
8242 8292
8243 Property* prop = callee->AsProperty(); 8293 Property* prop = callee->AsProperty();
8244 if (prop != NULL) { 8294 if (prop != NULL) {
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
8319 } else { 8369 } else {
8320 VariableProxy* proxy = expr->expression()->AsVariableProxy(); 8370 VariableProxy* proxy = expr->expression()->AsVariableProxy();
8321 if (proxy != NULL && proxy->var()->is_possibly_eval(isolate())) { 8371 if (proxy != NULL && proxy->var()->is_possibly_eval(isolate())) {
8322 return Bailout(kPossibleDirectCallToEval); 8372 return Bailout(kPossibleDirectCallToEval);
8323 } 8373 }
8324 8374
8325 // The function is on the stack in the unoptimized code during 8375 // The function is on the stack in the unoptimized code during
8326 // evaluation of the arguments. 8376 // evaluation of the arguments.
8327 CHECK_ALIVE(VisitForValue(expr->expression())); 8377 CHECK_ALIVE(VisitForValue(expr->expression()));
8328 HValue* function = Top(); 8378 HValue* function = Top();
8329 bool global_call = proxy != NULL && proxy->var()->IsUnallocated(); 8379 if (expr->global_call()) {
8330 if (global_call) {
8331 Variable* var = proxy->var(); 8380 Variable* var = proxy->var();
8332 bool known_global_function = false; 8381 bool known_global_function = false;
8333 // If there is a global property cell for the name at compile time and 8382 // If there is a global property cell for the name at compile time and
8334 // access check is not enabled we assume that the function will not change 8383 // access check is not enabled we assume that the function will not change
8335 // and generate optimized code for calling the function. 8384 // and generate optimized code for calling the function.
8336 LookupResult lookup(isolate()); 8385 LookupResult lookup(isolate());
8337 GlobalPropertyAccess type = LookupGlobalProperty(var, &lookup, LOAD); 8386 GlobalPropertyAccess type = LookupGlobalProperty(var, &lookup, LOAD);
8338 if (type == kUseCell && 8387 if (type == kUseCell &&
8339 !current_info()->global_object()->IsAccessCheckNeeded()) { 8388 !current_info()->global_object()->IsAccessCheckNeeded()) {
8340 Handle<GlobalObject> global(current_info()->global_object()); 8389 Handle<GlobalObject> global(current_info()->global_object());
(...skipping 13 matching lines...) Expand all
8354 8403
8355 if (TryInlineBuiltinFunctionCall(expr)) { 8404 if (TryInlineBuiltinFunctionCall(expr)) {
8356 if (FLAG_trace_inlining) { 8405 if (FLAG_trace_inlining) {
8357 PrintF("Inlining builtin "); 8406 PrintF("Inlining builtin ");
8358 expr->target()->ShortPrint(); 8407 expr->target()->ShortPrint();
8359 PrintF("\n"); 8408 PrintF("\n");
8360 } 8409 }
8361 return; 8410 return;
8362 } 8411 }
8363 if (TryInlineApiFunctionCall(expr, receiver)) return; 8412 if (TryInlineApiFunctionCall(expr, receiver)) return;
8413 if (TryHandleArrayCall(expr, function)) return;
8364 if (TryInlineCall(expr)) return; 8414 if (TryInlineCall(expr)) return;
8365 8415
8366 PushArgumentsFromEnvironment(argument_count); 8416 PushArgumentsFromEnvironment(argument_count);
8367 call = BuildCallConstantFunction(expr->target(), argument_count); 8417 call = BuildCallConstantFunction(expr->target(), argument_count);
8368 } else { 8418 } else {
8369 Push(graph()->GetConstantUndefined()); 8419 Push(graph()->GetConstantUndefined());
8370 CHECK_ALIVE(VisitExpressions(expr->arguments())); 8420 CHECK_ALIVE(VisitExpressions(expr->arguments()));
8371 PushArgumentsFromEnvironment(argument_count); 8421 PushArgumentsFromEnvironment(argument_count);
8372 call = New<HCallFunction>(function, argument_count); 8422 call = New<HCallFunction>(function, argument_count);
8373 } 8423 }
(...skipping 29 matching lines...) Expand all
8403 PushArgumentsFromEnvironment(argument_count); 8453 PushArgumentsFromEnvironment(argument_count);
8404 call = New<HCallFunction>(function, argument_count); 8454 call = New<HCallFunction>(function, argument_count);
8405 } 8455 }
8406 } 8456 }
8407 8457
8408 Drop(1); // Drop the function. 8458 Drop(1); // Drop the function.
8409 return ast_context()->ReturnInstruction(call, expr->id()); 8459 return ast_context()->ReturnInstruction(call, expr->id());
8410 } 8460 }
8411 8461
8412 8462
8413 void HOptimizedGraphBuilder::BuildInlinedCallNewArray(CallNew* expr) { 8463 void HOptimizedGraphBuilder::BuildInlinedCallArray(
8464 Expression* expression,
8465 int argument_count,
8466 Handle<AllocationSite> site) {
8467 ASSERT(!site.is_null());
8468 ASSERT(argument_count >= 0 && argument_count <= 1);
8414 NoObservableSideEffectsScope no_effects(this); 8469 NoObservableSideEffectsScope no_effects(this);
8415 8470
8416 int argument_count = expr->arguments()->length();
8417 // We should at least have the constructor on the expression stack. 8471 // We should at least have the constructor on the expression stack.
8418 HValue* constructor = environment()->ExpressionStackAt(argument_count); 8472 HValue* constructor = environment()->ExpressionStackAt(argument_count);
8419 8473
8420 ElementsKind kind = expr->elements_kind();
8421 Handle<AllocationSite> site = expr->allocation_site();
8422 ASSERT(!site.is_null());
8423
8424 // Register on the site for deoptimization if the transition feedback changes. 8474 // Register on the site for deoptimization if the transition feedback changes.
8425 AllocationSite::AddDependentCompilationInfo( 8475 AllocationSite::AddDependentCompilationInfo(
8426 site, AllocationSite::TRANSITIONS, top_info()); 8476 site, AllocationSite::TRANSITIONS, top_info());
8477 ElementsKind kind = site->GetElementsKind();
8427 HInstruction* site_instruction = Add<HConstant>(site); 8478 HInstruction* site_instruction = Add<HConstant>(site);
8428 8479
8429 // In the single constant argument case, we may have to adjust elements kind 8480 // In the single constant argument case, we may have to adjust elements kind
8430 // to avoid creating a packed non-empty array. 8481 // to avoid creating a packed non-empty array.
8431 if (argument_count == 1 && !IsHoleyElementsKind(kind)) { 8482 if (argument_count == 1 && !IsHoleyElementsKind(kind)) {
8432 HValue* argument = environment()->Top(); 8483 HValue* argument = environment()->Top();
8433 if (argument->IsConstant()) { 8484 if (argument->IsConstant()) {
8434 HConstant* constant_argument = HConstant::cast(argument); 8485 HConstant* constant_argument = HConstant::cast(argument);
8435 ASSERT(constant_argument->HasSmiValue()); 8486 ASSERT(constant_argument->HasSmiValue());
8436 int constant_array_size = constant_argument->Integer32Value(); 8487 int constant_array_size = constant_argument->Integer32Value();
8437 if (constant_array_size != 0) { 8488 if (constant_array_size != 0) {
8438 kind = GetHoleyElementsKind(kind); 8489 kind = GetHoleyElementsKind(kind);
8439 } 8490 }
8440 } 8491 }
8441 } 8492 }
8442 8493
8443 // Build the array. 8494 // Build the array.
8444 JSArrayBuilder array_builder(this, 8495 JSArrayBuilder array_builder(this,
8445 kind, 8496 kind,
8446 site_instruction, 8497 site_instruction,
8447 constructor, 8498 constructor,
8448 DISABLE_ALLOCATION_SITES); 8499 DISABLE_ALLOCATION_SITES);
8449 HValue* new_object; 8500 HValue* new_object = argument_count == 0
8450 if (argument_count == 0) { 8501 ? array_builder.AllocateEmptyArray()
8451 new_object = array_builder.AllocateEmptyArray(); 8502 : BuildAllocateArrayFromLength(&array_builder, Top());
8452 } else if (argument_count == 1) {
8453 HValue* argument = environment()->Top();
8454 new_object = BuildAllocateArrayFromLength(&array_builder, argument);
8455 } else {
8456 HValue* length = Add<HConstant>(argument_count);
8457 // Smi arrays need to initialize array elements with the hole because
8458 // bailout could occur if the arguments don't fit in a smi.
8459 //
8460 // TODO(mvstanton): If all the arguments are constants in smi range, then
8461 // we could set fill_with_hole to false and save a few instructions.
8462 JSArrayBuilder::FillMode fill_mode = IsFastSmiElementsKind(kind)
8463 ? JSArrayBuilder::FILL_WITH_HOLE
8464 : JSArrayBuilder::DONT_FILL_WITH_HOLE;
8465 new_object = array_builder.AllocateArray(length, length, fill_mode);
8466 HValue* elements = array_builder.GetElementsLocation();
8467 for (int i = 0; i < argument_count; i++) {
8468 HValue* value = environment()->ExpressionStackAt(argument_count - i - 1);
8469 HValue* constant_i = Add<HConstant>(i);
8470 Add<HStoreKeyed>(elements, constant_i, value, kind);
8471 }
8472 }
8473 8503
8474 Drop(argument_count + 1); // drop constructor and args. 8504 int args_to_drop = argument_count + (expression->IsCall() ? 2 : 1);
8505 Drop(args_to_drop);
8475 ast_context()->ReturnValue(new_object); 8506 ast_context()->ReturnValue(new_object);
8476 } 8507 }
8477 8508
8478 8509
8479 // Checks whether allocation using the given constructor can be inlined. 8510 // Checks whether allocation using the given constructor can be inlined.
8480 static bool IsAllocationInlineable(Handle<JSFunction> constructor) { 8511 static bool IsAllocationInlineable(Handle<JSFunction> constructor) {
8481 return constructor->has_initial_map() && 8512 return constructor->has_initial_map() &&
8482 constructor->initial_map()->instance_type() == JS_OBJECT_TYPE && 8513 constructor->initial_map()->instance_type() == JS_OBJECT_TYPE &&
8483 constructor->initial_map()->instance_size() < HAllocate::kMaxInlineSize && 8514 constructor->initial_map()->instance_size() < HAllocate::kMaxInlineSize &&
8484 constructor->initial_map()->InitialPropertiesLength() == 0; 8515 constructor->initial_map()->InitialPropertiesLength() == 0;
8485 } 8516 }
8486 8517
8487 8518
8488 bool HOptimizedGraphBuilder::IsCallNewArrayInlineable(CallNew* expr) { 8519 bool HOptimizedGraphBuilder::IsCallArrayInlineable(
8520 int argument_count,
8521 Handle<AllocationSite> site) {
8489 Handle<JSFunction> caller = current_info()->closure(); 8522 Handle<JSFunction> caller = current_info()->closure();
8490 Handle<JSFunction> target(isolate()->native_context()->array_function(), 8523 Handle<JSFunction> target = array_function();
8491 isolate());
8492 int argument_count = expr->arguments()->length();
8493 // We should have the function plus array arguments on the environment stack. 8524 // We should have the function plus array arguments on the environment stack.
8494 ASSERT(environment()->length() >= (argument_count + 1)); 8525 ASSERT(environment()->length() >= (argument_count + 1));
8495 Handle<AllocationSite> site = expr->allocation_site();
8496 ASSERT(!site.is_null()); 8526 ASSERT(!site.is_null());
8497 8527
8498 bool inline_ok = false; 8528 bool inline_ok = false;
8499 if (site->CanInlineCall()) { 8529 if (site->CanInlineCall()) {
8500 // We also want to avoid inlining in certain 1 argument scenarios. 8530 // We also want to avoid inlining in certain 1 argument scenarios.
8501 if (argument_count == 1) { 8531 if (argument_count == 1) {
8502 HValue* argument = Top(); 8532 HValue* argument = Top();
8503 if (argument->IsConstant()) { 8533 if (argument->IsConstant()) {
8504 // Do not inline if the constant length argument is not a smi or 8534 // Do not inline if the constant length argument is not a smi or
8505 // outside the valid range for a fast array. 8535 // outside the valid range for unrolled loop initialization.
8506 HConstant* constant_argument = HConstant::cast(argument); 8536 HConstant* constant_argument = HConstant::cast(argument);
8507 if (constant_argument->HasSmiValue()) { 8537 if (constant_argument->HasSmiValue()) {
8508 int value = constant_argument->Integer32Value(); 8538 int value = constant_argument->Integer32Value();
8509 inline_ok = value >= 0 && 8539 inline_ok = value >= 0 && value <= kElementLoopUnrollThreshold;
8510 value < JSObject::kInitialMaxFastElementArray;
8511 if (!inline_ok) { 8540 if (!inline_ok) {
8512 TraceInline(target, caller, 8541 TraceInline(target, caller,
8513 "Length outside of valid array range"); 8542 "Constant length outside of valid inlining range.");
8514 } 8543 }
8515 } 8544 }
8516 } else { 8545 } else {
8517 inline_ok = true; 8546 TraceInline(target, caller,
8547 "Dont inline [new] Array(n) where n isn't constant.");
8518 } 8548 }
8549 } else if (argument_count == 0) {
8550 inline_ok = true;
8519 } else { 8551 } else {
8520 inline_ok = true; 8552 TraceInline(target, caller, "Too many arguments to inline.");
8521 } 8553 }
8522 } else { 8554 } else {
8523 TraceInline(target, caller, "AllocationSite requested no inlining."); 8555 TraceInline(target, caller, "AllocationSite requested no inlining.");
8524 } 8556 }
8525 8557
8526 if (inline_ok) { 8558 if (inline_ok) {
8527 TraceInline(target, caller, NULL); 8559 TraceInline(target, caller, NULL);
8528 } 8560 }
8529 return inline_ok; 8561 return inline_ok;
8530 } 8562 }
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
8640 initial_map_value->DeleteAndReplaceWith(NULL); 8672 initial_map_value->DeleteAndReplaceWith(NULL);
8641 receiver->DeleteAndReplaceWith(NULL); 8673 receiver->DeleteAndReplaceWith(NULL);
8642 check->DeleteAndReplaceWith(NULL); 8674 check->DeleteAndReplaceWith(NULL);
8643 environment()->SetExpressionStackAt(receiver_index, function); 8675 environment()->SetExpressionStackAt(receiver_index, function);
8644 HInstruction* call = 8676 HInstruction* call =
8645 PreProcessCall(New<HCallNew>(function, argument_count)); 8677 PreProcessCall(New<HCallNew>(function, argument_count));
8646 return ast_context()->ReturnInstruction(call, expr->id()); 8678 return ast_context()->ReturnInstruction(call, expr->id());
8647 } else { 8679 } else {
8648 // The constructor function is both an operand to the instruction and an 8680 // The constructor function is both an operand to the instruction and an
8649 // argument to the construct call. 8681 // argument to the construct call.
8650 Handle<JSFunction> array_function( 8682 if (TryHandleArrayCallNew(expr, function)) return;
8651 isolate()->native_context()->array_function(), isolate());
8652 bool use_call_new_array = expr->target().is_identical_to(array_function);
8653 if (use_call_new_array && IsCallNewArrayInlineable(expr)) {
8654 // Verify we are still calling the array function for our native context.
8655 Add<HCheckValue>(function, array_function);
8656 BuildInlinedCallNewArray(expr);
8657 return;
8658 }
8659 8683
8660 HBinaryCall* call; 8684 HInstruction* call =
8661 if (use_call_new_array) { 8685 PreProcessCall(New<HCallNew>(function, argument_count));
8662 Add<HCheckValue>(function, array_function);
8663 call = New<HCallNewArray>(function, argument_count,
8664 expr->elements_kind());
8665 } else {
8666 call = New<HCallNew>(function, argument_count);
8667 }
8668 PreProcessCall(call);
8669 return ast_context()->ReturnInstruction(call, expr->id()); 8686 return ast_context()->ReturnInstruction(call, expr->id());
8670 } 8687 }
8671 } 8688 }
8672 8689
8673 8690
8674 // Support for generating inlined runtime functions. 8691 // Support for generating inlined runtime functions.
8675 8692
8676 // Lookup table for generators for runtime calls that are generated inline. 8693 // Lookup table for generators for runtime calls that are generated inline.
8677 // Elements of the table are member pointers to functions of 8694 // Elements of the table are member pointers to functions of
8678 // HOptimizedGraphBuilder. 8695 // HOptimizedGraphBuilder.
(...skipping 3118 matching lines...) Expand 10 before | Expand all | Expand 10 after
11797 if (ShouldProduceTraceOutput()) { 11814 if (ShouldProduceTraceOutput()) {
11798 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 11815 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
11799 } 11816 }
11800 11817
11801 #ifdef DEBUG 11818 #ifdef DEBUG
11802 graph_->Verify(false); // No full verify. 11819 graph_->Verify(false); // No full verify.
11803 #endif 11820 #endif
11804 } 11821 }
11805 11822
11806 } } // namespace v8::internal 11823 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698