Chromium Code Reviews| OLD | NEW |
|---|---|
| 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" |
| 11 #include "vm/simulator.h" | 11 #include "vm/simulator.h" |
| 12 #include "vm/stub_code.h" | 12 #include "vm/stub_code.h" |
| 13 | 13 |
| 14 namespace dart { | 14 namespace dart { |
| 15 | 15 |
| 16 #define __ assembler-> | 16 #define __ assembler-> |
| 17 | 17 |
| 18 // Generate code to call into the stub which will call the runtime | |
| 19 // function. Input for the stub is as follows: | |
| 20 // SP : points to the arguments and return value array. | |
| 21 // R5 : address of the runtime function to call. | |
| 22 // R4 : number of arguments to the call. | |
| 18 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const { | 23 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const { |
| 19 UNIMPLEMENTED(); | 24 // Compute the effective address. When running under the simulator, |
| 25 // this is a redirection address that forces the simulator to call | |
| 26 // into the runtime system. | |
| 27 uword entry = GetEntryPoint(); | |
| 28 #if defined(USING_SIMULATOR) | |
| 29 // Redirection to leaf runtime calls supports a maximum of 4 arguments passed | |
| 30 // in registers (maximum 2 double arguments for leaf float runtime calls). | |
|
regis
2014/04/18 22:15:30
Di you verify this comment? The ARM64 ABI may be d
zra
2014/04/18 23:24:21
The ABI allows 8 register arguments for both integ
| |
| 31 ASSERT(argument_count >= 0); | |
| 32 ASSERT(!is_leaf() || | |
| 33 (!is_float() && (argument_count <= 4)) || | |
| 34 (argument_count <= 2)); | |
| 35 Simulator::CallKind call_kind = | |
| 36 is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall | |
| 37 : Simulator::kLeafRuntimeCall) | |
| 38 : Simulator::kRuntimeCall; | |
| 39 entry = | |
| 40 Simulator::RedirectExternalReference(entry, call_kind, argument_count); | |
| 41 #endif | |
| 42 if (is_leaf()) { | |
| 43 ASSERT(argument_count == this->argument_count()); | |
| 44 ExternalLabel label(name(), entry); | |
| 45 __ BranchLink(&label, PP); | |
| 46 } else { | |
| 47 // Argument count is not checked here, but in the runtime entry for a more | |
| 48 // informative error message. | |
| 49 __ LoadImmediate(R5, entry, PP); | |
| 50 __ LoadImmediate(R4, argument_count, PP); | |
| 51 __ BranchLink(&StubCode::CallToRuntimeLabel(), PP); | |
| 52 } | |
| 20 } | 53 } |
| 21 | 54 |
| 22 } // namespace dart | 55 } // namespace dart |
| 23 | 56 |
| 24 #endif // defined TARGET_ARCH_ARM64 | 57 #endif // defined TARGET_ARCH_ARM64 |
| OLD | NEW |