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

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

Issue 261253005: Clean up debugger flags. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase 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
« no previous file with comments | « src/arm64/full-codegen-arm64.cc ('k') | src/arm64/macro-assembler-arm64.h » ('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 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 "v8.h" 5 #include "v8.h"
6 6
7 #include "arm64/lithium-codegen-arm64.h" 7 #include "arm64/lithium-codegen-arm64.h"
8 #include "arm64/lithium-gap-resolver-arm64.h" 8 #include "arm64/lithium-gap-resolver-arm64.h"
9 #include "code-stubs.h" 9 #include "code-stubs.h"
10 #include "stub-cache.h" 10 #include "stub-cache.h"
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 __ Ldr(x10, FieldMemOperand(x10, GlobalObject::kGlobalReceiverOffset)); 664 __ Ldr(x10, FieldMemOperand(x10, GlobalObject::kGlobalReceiverOffset));
665 __ Poke(x10, receiver_offset); 665 __ Poke(x10, receiver_offset);
666 666
667 __ Bind(&ok); 667 __ Bind(&ok);
668 } 668 }
669 } 669 }
670 670
671 ASSERT(__ StackPointer().Is(jssp)); 671 ASSERT(__ StackPointer().Is(jssp));
672 info()->set_prologue_offset(masm_->pc_offset()); 672 info()->set_prologue_offset(masm_->pc_offset());
673 if (NeedsEagerFrame()) { 673 if (NeedsEagerFrame()) {
674 __ Prologue(info()->IsStub() ? BUILD_STUB_FRAME : BUILD_FUNCTION_FRAME); 674 __ Prologue(info());
675 frame_is_built_ = true; 675 frame_is_built_ = true;
676 info_->AddNoFrameRange(0, masm_->pc_offset()); 676 info_->AddNoFrameRange(0, masm_->pc_offset());
677 } 677 }
678 678
679 // Reserve space for the stack slots needed by the code. 679 // Reserve space for the stack slots needed by the code.
680 int slots = GetStackSlotCount(); 680 int slots = GetStackSlotCount();
681 if (slots > 0) { 681 if (slots > 0) {
682 __ Claim(slots, kPointerSize); 682 __ Claim(slots, kPointerSize);
683 } 683 }
684 684
(...skipping 5316 matching lines...) Expand 10 before | Expand all | Expand 10 after
6001 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset)); 6001 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset));
6002 // Index is equal to negated out of object property index plus 1. 6002 // Index is equal to negated out of object property index plus 1.
6003 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2)); 6003 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2));
6004 __ Ldr(result, FieldMemOperand(result, 6004 __ Ldr(result, FieldMemOperand(result,
6005 FixedArray::kHeaderSize - kPointerSize)); 6005 FixedArray::kHeaderSize - kPointerSize));
6006 __ Bind(deferred->exit()); 6006 __ Bind(deferred->exit());
6007 __ Bind(&done); 6007 __ Bind(&done);
6008 } 6008 }
6009 6009
6010 } } // namespace v8::internal 6010 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm64/full-codegen-arm64.cc ('k') | src/arm64/macro-assembler-arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698