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

Side by Side Diff: src/x64/lithium-codegen-x64.cc

Issue 16381006: Change PC for OSR entries to point to something more sensible (i.e. the first UnknownOsrValue), rem… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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 // 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 ? GetStackSlotCount() : arguments_index + arguments_count; 546 ? GetStackSlotCount() : arguments_index + arguments_count;
547 arguments_count = environment->entry()->arguments_count() + 1; 547 arguments_count = environment->entry()->arguments_count() + 1;
548 if (environment->entry()->arguments_pushed()) { 548 if (environment->entry()->arguments_pushed()) {
549 *pushed_arguments_index = arguments_index; 549 *pushed_arguments_index = arguments_index;
550 *pushed_arguments_count = arguments_count; 550 *pushed_arguments_count = arguments_count;
551 } 551 }
552 } 552 }
553 553
554 for (int i = 0; i < translation_size; ++i) { 554 for (int i = 0; i < translation_size; ++i) {
555 LOperand* value = environment->values()->at(i); 555 LOperand* value = environment->values()->at(i);
556 // spilled_registers_ and spilled_double_registers_ are either
557 // both NULL or both set.
558 if (environment->spilled_registers() != NULL && value != NULL) {
559 if (value->IsRegister() &&
560 environment->spilled_registers()[value->index()] != NULL) {
561 translation->MarkDuplicate();
562 AddToTranslation(translation,
563 environment->spilled_registers()[value->index()],
564 environment->HasTaggedValueAt(i),
565 environment->HasUint32ValueAt(i),
566 arguments_known,
567 arguments_index,
568 arguments_count);
569 } else if (
570 value->IsDoubleRegister() &&
571 environment->spilled_double_registers()[value->index()] != NULL) {
572 translation->MarkDuplicate();
573 AddToTranslation(
574 translation,
575 environment->spilled_double_registers()[value->index()],
576 false,
577 false,
578 arguments_known,
579 arguments_index,
580 arguments_count);
581 }
582 }
583 556
584 AddToTranslation(translation, 557 AddToTranslation(translation,
585 value, 558 value,
586 environment->HasTaggedValueAt(i), 559 environment->HasTaggedValueAt(i),
587 environment->HasUint32ValueAt(i), 560 environment->HasUint32ValueAt(i),
588 arguments_known, 561 arguments_known,
589 arguments_index, 562 arguments_index,
590 arguments_count); 563 arguments_count);
591 } 564 }
592 } 565 }
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); 1006 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr);
1034 break; 1007 break;
1035 } 1008 }
1036 default: 1009 default:
1037 UNREACHABLE(); 1010 UNREACHABLE();
1038 } 1011 }
1039 } 1012 }
1040 1013
1041 1014
1042 void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { 1015 void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) {
1043 // Nothing to do. 1016 // Record the address of the first unknown OSR value as the place to enter.
1017 if (osr_pc_offset_ == -1) osr_pc_offset_ = masm()->pc_offset();
1044 } 1018 }
1045 1019
1046 1020
1047 void LCodeGen::DoModI(LModI* instr) { 1021 void LCodeGen::DoModI(LModI* instr) {
1048 HMod* hmod = instr->hydrogen(); 1022 HMod* hmod = instr->hydrogen();
1049 HValue* left = hmod->left(); 1023 HValue* left = hmod->left();
1050 HValue* right = hmod->right(); 1024 HValue* right = hmod->right();
1051 if (hmod->HasPowerOf2Divisor()) { 1025 if (hmod->HasPowerOf2Divisor()) {
1052 // TODO(svenpanne) We should really do the strength reduction on the 1026 // TODO(svenpanne) We should really do the strength reduction on the
1053 // Hydrogen level. 1027 // Hydrogen level.
(...skipping 4474 matching lines...) Expand 10 before | Expand all | Expand 10 after
5528 // the deferred code. 5502 // the deferred code.
5529 } 5503 }
5530 } 5504 }
5531 5505
5532 5506
5533 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { 5507 void LCodeGen::DoOsrEntry(LOsrEntry* instr) {
5534 // This is a pseudo-instruction that ensures that the environment here is 5508 // This is a pseudo-instruction that ensures that the environment here is
5535 // properly registered for deoptimization and records the assembler's PC 5509 // properly registered for deoptimization and records the assembler's PC
5536 // offset. 5510 // offset.
5537 LEnvironment* environment = instr->environment(); 5511 LEnvironment* environment = instr->environment();
5538 environment->SetSpilledRegisters(instr->SpilledRegisterArray(),
5539 instr->SpilledDoubleRegisterArray());
5540 5512
5541 // If the environment were already registered, we would have no way of 5513 // If the environment were already registered, we would have no way of
5542 // backpatching it with the spill slot operands. 5514 // backpatching it with the spill slot operands.
5543 ASSERT(!environment->HasBeenRegistered()); 5515 ASSERT(!environment->HasBeenRegistered());
5544 RegisterEnvironmentForDeoptimization(environment, Safepoint::kNoLazyDeopt); 5516 RegisterEnvironmentForDeoptimization(environment, Safepoint::kNoLazyDeopt);
5545 ASSERT(osr_pc_offset_ == -1); 5517
5546 osr_pc_offset_ = masm()->pc_offset(); 5518 // Normally we record the first unknown OSR value as the entrypoint to the OSR
5519 // code, but if there were none, record the entrypoint here.
5520 if (osr_pc_offset_ == -1) osr_pc_offset_ = masm()->pc_offset();
5547 } 5521 }
5548 5522
5549 5523
5550 void LCodeGen::DoForInPrepareMap(LForInPrepareMap* instr) { 5524 void LCodeGen::DoForInPrepareMap(LForInPrepareMap* instr) {
5551 __ CompareRoot(rax, Heap::kUndefinedValueRootIndex); 5525 __ CompareRoot(rax, Heap::kUndefinedValueRootIndex);
5552 DeoptimizeIf(equal, instr->environment()); 5526 DeoptimizeIf(equal, instr->environment());
5553 5527
5554 Register null_value = rdi; 5528 Register null_value = rdi;
5555 __ LoadRoot(null_value, Heap::kNullValueRootIndex); 5529 __ LoadRoot(null_value, Heap::kNullValueRootIndex);
5556 __ cmpq(rax, null_value); 5530 __ cmpq(rax, null_value);
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
5634 FixedArray::kHeaderSize - kPointerSize)); 5608 FixedArray::kHeaderSize - kPointerSize));
5635 __ bind(&done); 5609 __ bind(&done);
5636 } 5610 }
5637 5611
5638 5612
5639 #undef __ 5613 #undef __
5640 5614
5641 } } // namespace v8::internal 5615 } } // namespace v8::internal
5642 5616
5643 #endif // V8_TARGET_ARCH_X64 5617 #endif // V8_TARGET_ARCH_X64
OLDNEW
« src/lithium-allocator.cc ('K') | « src/objects.cc ('k') | src/x64/lithium-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698