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

Side by Side Diff: src/arm64/debug-arm64.cc

Issue 1144063002: Cleanup interface descriptors to reflect that vectors are part of loads. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes for test failures. Created 5 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
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/arm64/full-codegen-arm64.cc » ('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 "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "src/codegen.h" 9 #include "src/codegen.h"
10 #include "src/debug.h" 10 #include "src/debug.h"
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 // -- x3 : slot in feedback array 200 // -- x3 : slot in feedback array
201 // ----------------------------------- 201 // -----------------------------------
202 Generate_DebugBreakCallHelper(masm, x1.Bit() | x3.Bit(), 0, x10); 202 Generate_DebugBreakCallHelper(masm, x1.Bit() | x3.Bit(), 0, x10);
203 } 203 }
204 204
205 205
206 void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) { 206 void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) {
207 // Calling convention for IC load (from ic-arm.cc). 207 // Calling convention for IC load (from ic-arm.cc).
208 Register receiver = LoadDescriptor::ReceiverRegister(); 208 Register receiver = LoadDescriptor::ReceiverRegister();
209 Register name = LoadDescriptor::NameRegister(); 209 Register name = LoadDescriptor::NameRegister();
210 RegList regs = receiver.Bit() | name.Bit() | 210 Register slot = LoadDescriptor::SlotRegister();
211 VectorLoadICTrampolineDescriptor::SlotRegister().Bit(); 211 RegList regs = receiver.Bit() | name.Bit() | slot.Bit();
212 Generate_DebugBreakCallHelper(masm, regs, 0, x10); 212 Generate_DebugBreakCallHelper(masm, regs, 0, x10);
213 } 213 }
214 214
215 215
216 void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) { 216 void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) {
217 // Calling convention for IC store (from ic-arm64.cc). 217 // Calling convention for IC store (from ic-arm64.cc).
218 Register receiver = StoreDescriptor::ReceiverRegister(); 218 Register receiver = StoreDescriptor::ReceiverRegister();
219 Register name = StoreDescriptor::NameRegister(); 219 Register name = StoreDescriptor::NameRegister();
220 Register value = StoreDescriptor::ValueRegister(); 220 Register value = StoreDescriptor::ValueRegister();
221 Generate_DebugBreakCallHelper( 221 Generate_DebugBreakCallHelper(
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 // Re-run JSFunction, x1 is function, cp is context. 340 // Re-run JSFunction, x1 is function, cp is context.
341 __ Br(scratch); 341 __ Br(scratch);
342 } 342 }
343 343
344 344
345 const bool LiveEdit::kFrameDropperSupported = true; 345 const bool LiveEdit::kFrameDropperSupported = true;
346 346
347 } } // namespace v8::internal 347 } } // namespace v8::internal
348 348
349 #endif // V8_TARGET_ARCH_ARM64 349 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/arm64/full-codegen-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698