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

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

Issue 288213002: Refactor MacroAssembler::Prologue. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 "v8.h" 5 #include "v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "code-stubs.h" 9 #include "code-stubs.h"
10 #include "codegen.h" 10 #include "codegen.h"
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 // The MANUAL indicates that the scope shouldn't actually generate code 164 // The MANUAL indicates that the scope shouldn't actually generate code
165 // to set up the frame because we do it manually below. 165 // to set up the frame because we do it manually below.
166 FrameScope frame_scope(masm_, StackFrame::MANUAL); 166 FrameScope frame_scope(masm_, StackFrame::MANUAL);
167 167
168 // This call emits the following sequence in a way that can be patched for 168 // This call emits the following sequence in a way that can be patched for
169 // code ageing support: 169 // code ageing support:
170 // Push(lr, fp, cp, x1); 170 // Push(lr, fp, cp, x1);
171 // Add(fp, jssp, 2 * kPointerSize); 171 // Add(fp, jssp, 2 * kPointerSize);
172 info->set_prologue_offset(masm_->pc_offset()); 172 info->set_prologue_offset(masm_->pc_offset());
173 ASSERT(!info->IsStub()); 173 ASSERT(!info->IsStub());
174 __ Prologue(info); 174 __ Prologue(info->IsCodePreAgingActive());
175 info->AddNoFrameRange(0, masm_->pc_offset()); 175 info->AddNoFrameRange(0, masm_->pc_offset());
176 176
177 // Reserve space on the stack for locals. 177 // Reserve space on the stack for locals.
178 { Comment cmnt(masm_, "[ Allocate locals"); 178 { Comment cmnt(masm_, "[ Allocate locals");
179 int locals_count = info->scope()->num_stack_slots(); 179 int locals_count = info->scope()->num_stack_slots();
180 // Generators allocate locals, if any, in context slots. 180 // Generators allocate locals, if any, in context slots.
181 ASSERT(!info->function()->is_generator() || locals_count == 0); 181 ASSERT(!info->function()->is_generator() || locals_count == 0);
182 182
183 if (locals_count > 0) { 183 if (locals_count > 0) {
184 if (locals_count >= 128) { 184 if (locals_count >= 128) {
(...skipping 4702 matching lines...) Expand 10 before | Expand all | Expand 10 after
4887 return previous_; 4887 return previous_;
4888 } 4888 }
4889 4889
4890 4890
4891 #undef __ 4891 #undef __
4892 4892
4893 4893
4894 } } // namespace v8::internal 4894 } } // namespace v8::internal
4895 4895
4896 #endif // V8_TARGET_ARCH_ARM64 4896 #endif // V8_TARGET_ARCH_ARM64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698