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

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

Issue 164793003: A64: Use a scope utility to allocate scratch registers. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove Include() and Release(). 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
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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 Address entry = deopt_jump_table_[i].address; 841 Address entry = deopt_jump_table_[i].address;
842 Deoptimizer::BailoutType type = deopt_jump_table_[i].bailout_type; 842 Deoptimizer::BailoutType type = deopt_jump_table_[i].bailout_type;
843 int id = Deoptimizer::GetDeoptimizationId(isolate(), entry, type); 843 int id = Deoptimizer::GetDeoptimizationId(isolate(), entry, type);
844 if (id == Deoptimizer::kNotDeoptimizationEntry) { 844 if (id == Deoptimizer::kNotDeoptimizationEntry) {
845 Comment(";;; jump table entry %d.", i); 845 Comment(";;; jump table entry %d.", i);
846 } else { 846 } else {
847 Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id); 847 Comment(";;; jump table entry %d: deoptimization bailout %d.", i, id);
848 } 848 }
849 if (deopt_jump_table_[i].needs_frame) { 849 if (deopt_jump_table_[i].needs_frame) {
850 ASSERT(!info()->saves_caller_doubles()); 850 ASSERT(!info()->saves_caller_doubles());
851 __ Mov(__ Tmp0(), Operand(ExternalReference::ForDeoptEntry(entry))); 851
852 UseScratchRegisterScope temps(masm());
853 Register stub_deopt_entry = temps.AcquireX();
854 Register stub_marker = temps.AcquireX();
855
856 __ Mov(stub_deopt_entry,
857 Operand(ExternalReference::ForDeoptEntry(entry)));
852 if (needs_frame.is_bound()) { 858 if (needs_frame.is_bound()) {
853 __ B(&needs_frame); 859 __ B(&needs_frame);
854 } else { 860 } else {
855 __ Bind(&needs_frame); 861 __ Bind(&needs_frame);
856 // This variant of deopt can only be used with stubs. Since we don't 862 // This variant of deopt can only be used with stubs. Since we don't
857 // have a function pointer to install in the stack frame that we're 863 // have a function pointer to install in the stack frame that we're
858 // building, install a special marker there instead. 864 // building, install a special marker there instead.
859 // TODO(jochen): Revisit the use of TmpX().
860 ASSERT(info()->IsStub()); 865 ASSERT(info()->IsStub());
861 __ Mov(__ Tmp1(), Operand(Smi::FromInt(StackFrame::STUB))); 866 __ Mov(stub_marker, Operand(Smi::FromInt(StackFrame::STUB)));
862 __ Push(lr, fp, cp, __ Tmp1()); 867 __ Push(lr, fp, cp, stub_marker);
863 __ Add(fp, __ StackPointer(), 2 * kPointerSize); 868 __ Add(fp, __ StackPointer(), 2 * kPointerSize);
864 __ Call(__ Tmp0()); 869 __ Call(stub_deopt_entry);
865 } 870 }
866 } else { 871 } else {
867 if (info()->saves_caller_doubles()) { 872 if (info()->saves_caller_doubles()) {
868 ASSERT(info()->IsStub()); 873 ASSERT(info()->IsStub());
869 RestoreCallerDoubles(); 874 RestoreCallerDoubles();
870 } 875 }
871 __ Call(entry, RelocInfo::RUNTIME_ENTRY); 876 __ Call(entry, RelocInfo::RUNTIME_ENTRY);
872 } 877 }
873 masm()->CheckConstPool(false, false); 878 masm()->CheckConstPool(false, false);
874 } 879 }
(...skipping 4787 matching lines...) Expand 10 before | Expand all | Expand 10 after
5662 __ Bind(&out_of_object); 5667 __ Bind(&out_of_object);
5663 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset)); 5668 __ Ldr(result, FieldMemOperand(object, JSObject::kPropertiesOffset));
5664 // Index is equal to negated out of object property index plus 1. 5669 // Index is equal to negated out of object property index plus 1.
5665 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2)); 5670 __ Sub(result, result, Operand::UntagSmiAndScale(index, kPointerSizeLog2));
5666 __ Ldr(result, FieldMemOperand(result, 5671 __ Ldr(result, FieldMemOperand(result,
5667 FixedArray::kHeaderSize - kPointerSize)); 5672 FixedArray::kHeaderSize - kPointerSize));
5668 __ Bind(&done); 5673 __ Bind(&done);
5669 } 5674 }
5670 5675
5671 } } // namespace v8::internal 5676 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/a64/ic-a64.cc ('k') | src/a64/macro-assembler-a64.h » ('j') | src/a64/macro-assembler-a64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698