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

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

Issue 251083007: Removes loads from PP from stubs on arm64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
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
« no previous file with comments | « runtime/vm/flow_graph_compiler_arm64.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 26 matching lines...) Expand all
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(name(), entry); 42 ExternalLabel label(name(), entry);
43 __ BranchLink(&label, PP); 43 __ BranchLink(&label, PP);
44 } else { 44 } else {
45 // Argument count is not checked here, but in the runtime entry for a more 45 // Argument count is not checked here, but in the runtime entry for a more
46 // informative error message. 46 // informative error message.
47 __ LoadImmediate(R5, entry, PP); 47 __ LoadImmediate(R5, entry, kNoRegister);
48 __ LoadImmediate(R4, argument_count, PP); 48 __ LoadImmediate(R4, argument_count, kNoRegister);
49 __ BranchLink(&StubCode::CallToRuntimeLabel(), PP); 49 __ BranchLink(&StubCode::CallToRuntimeLabel(), PP);
50 } 50 }
51 } 51 }
52 52
53 } // namespace dart 53 } // namespace dart
54 54
55 #endif // defined TARGET_ARCH_ARM64 55 #endif // defined TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler_arm64.cc ('k') | runtime/vm/stub_code_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698