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

Side by Side Diff: runtime/vm/runtime_entry_arm64.cc

Issue 311413002: Changes for running tests on arm64 hardware. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 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
« no previous file with comments | « runtime/vm/profiler.cc ('k') | runtime/vm/stub_code_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 (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" 5 #include "vm/globals.h"
6 #if defined(TARGET_ARCH_ARM64) 6 #if defined(TARGET_ARCH_ARM64)
7 7
8 #include "vm/runtime_entry.h" 8 #include "vm/runtime_entry.h"
9 9
10 #include "vm/assembler.h" 10 #include "vm/assembler.h"
(...skipping 22 matching lines...) Expand all
33 Simulator::CallKind call_kind = 33 Simulator::CallKind call_kind =
34 is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall 34 is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall
35 : Simulator::kLeafRuntimeCall) 35 : Simulator::kLeafRuntimeCall)
36 : Simulator::kRuntimeCall; 36 : Simulator::kRuntimeCall;
37 entry = 37 entry =
38 Simulator::RedirectExternalReference(entry, call_kind, argument_count); 38 Simulator::RedirectExternalReference(entry, call_kind, argument_count);
39 #endif 39 #endif
40 if (is_leaf()) { 40 if (is_leaf()) {
41 ASSERT(argument_count == this->argument_count()); 41 ASSERT(argument_count == this->argument_count());
42 ExternalLabel label(entry); 42 ExternalLabel label(entry);
43 // Cache the stack pointer in a callee-saved register. 43 // Since we are entering C++ code, we must restore the C stack pointer from
44 // the stack limit to an aligned value nearer to the top of the stack.
45 // We cache the Dart stack pointer and the stack limit in callee-saved
46 // registers, then align and call, restoring CSP and SP on return from the
47 // call.
48 __ mov(R25, CSP);
44 __ mov(R26, SP); 49 __ mov(R26, SP);
regis 2014/06/05 17:55:34 R25 and R26 are callee-saved and will thus be pres
zra 2014/06/05 18:35:53 Before IL instructions with a kCall LocationSummar
50 __ ReserveAlignedFrameSpace(0);
51 __ mov(CSP, SP);
45 __ BranchLink(&label, kNoPP); 52 __ BranchLink(&label, kNoPP);
46 __ mov(SP, R26); 53 __ mov(SP, R26);
54 __ mov(CSP, R25);
47 } else { 55 } else {
48 // Argument count is not checked here, but in the runtime entry for a more 56 // Argument count is not checked here, but in the runtime entry for a more
49 // informative error message. 57 // informative error message.
50 __ LoadImmediate(R5, entry, kNoPP); 58 __ LoadImmediate(R5, entry, kNoPP);
51 __ LoadImmediate(R4, argument_count, kNoPP); 59 __ LoadImmediate(R4, argument_count, kNoPP);
52 __ BranchLink(&StubCode::CallToRuntimeLabel(), PP); 60 __ BranchLink(&StubCode::CallToRuntimeLabel(), PP);
53 } 61 }
54 } 62 }
55 63
56 } // namespace dart 64 } // namespace dart
57 65
58 #endif // defined TARGET_ARCH_ARM64 66 #endif // defined TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « runtime/vm/profiler.cc ('k') | runtime/vm/stub_code_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698