Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
| 7 | 7 |
| 8 #include "vm/runtime_entry.h" | 8 #include "vm/runtime_entry.h" |
| 9 | 9 |
| 10 #include "vm/assembler.h" | |
| 11 #include "vm/simulator.h" | |
| 12 #include "vm/stub_code.h" | |
| 13 | |
| 10 namespace dart { | 14 namespace dart { |
| 11 | 15 |
| 16 #define __ assembler-> | |
| 17 | |
| 18 | |
| 19 // Generate code to call into the stub which will call the runtime | |
| 20 // function. Input for the stub is as follows: | |
| 21 // SP : points to the arguments and return value array. | |
| 22 // R5 : address of the runtime function to call. | |
| 23 // R4 : number of arguments to the call. | |
| 12 void RuntimeEntry::Call(Assembler* assembler) const { | 24 void RuntimeEntry::Call(Assembler* assembler) const { |
| 13 UNIMPLEMENTED(); | 25 // Compute the effective address. When running under the simulator, |
| 26 // this is a redirection address that forces the simulator to call | |
| 27 // into the runtime system. | |
| 28 uword entry = GetEntryPoint(); | |
| 29 #if defined(USING_SIMULATOR) | |
| 30 entry = Simulator::RedirectExternalReference(entry, argument_count()); | |
| 31 #endif | |
| 32 if (!is_leaf()) { | |
| 33 __ LoadImmediate(R5, entry); | |
| 34 __ LoadImmediate(R4, argument_count()); | |
| 35 __ BranchLink(&StubCode::CallToRuntimeLabel()); | |
| 36 } else { | |
| 37 ExternalLabel label(name(), entry); | |
| 38 __ BranchLink(&label); | |
|
srdjan
2013/03/01 17:46:28
Think positive:
if (leaf) {
} else {
}
regis
2013/03/04 17:52:18
Done.
| |
| 39 } | |
| 14 } | 40 } |
| 15 | 41 |
| 16 } // namespace dart | 42 } // namespace dart |
| 17 | 43 |
| 18 #endif // defined TARGET_ARCH_ARM | 44 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |