| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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/isolate.h" | 8 #include "vm/isolate.h" |
| 9 #include "vm/dart_entry.h" | 9 #include "vm/dart_entry.h" |
| 10 #include "vm/native_entry.h" | 10 #include "vm/native_entry.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 return &function; | 37 return &function; |
| 38 } | 38 } |
| 39 | 39 |
| 40 | 40 |
| 41 // Test calls to stub code which calls into the runtime. | 41 // Test calls to stub code which calls into the runtime. |
| 42 static void GenerateCallToCallRuntimeStub(Assembler* assembler, | 42 static void GenerateCallToCallRuntimeStub(Assembler* assembler, |
| 43 int value1, int value2) { | 43 int value1, int value2) { |
| 44 const int argc = 2; | 44 const int argc = 2; |
| 45 const Smi& smi1 = Smi::ZoneHandle(Smi::New(value1)); | 45 const Smi& smi1 = Smi::ZoneHandle(Smi::New(value1)); |
| 46 const Smi& smi2 = Smi::ZoneHandle(Smi::New(value2)); | 46 const Smi& smi2 = Smi::ZoneHandle(Smi::New(value2)); |
| 47 const Context& context = Context::ZoneHandle(Context::New(0, Heap::kOld)); | |
| 48 __ EnterDartFrame(0); | 47 __ EnterDartFrame(0); |
| 49 __ LoadObject(CTX, context); | |
| 50 __ PushObject(Object::null_object()); // Push Null object for return value. | 48 __ PushObject(Object::null_object()); // Push Null object for return value. |
| 51 __ PushObject(smi1); // Push argument 1 smi1. | 49 __ PushObject(smi1); // Push argument 1 smi1. |
| 52 __ PushObject(smi2); // Push argument 2 smi2. | 50 __ PushObject(smi2); // Push argument 2 smi2. |
| 53 ASSERT(kTestSmiSubRuntimeEntry.argument_count() == argc); | 51 ASSERT(kTestSmiSubRuntimeEntry.argument_count() == argc); |
| 54 __ CallRuntime(kTestSmiSubRuntimeEntry, argc); // Call SmiSub runtime func. | 52 __ CallRuntime(kTestSmiSubRuntimeEntry, argc); // Call SmiSub runtime func. |
| 55 __ AddImmediate(SP, argc * kWordSize); | 53 __ AddImmediate(SP, argc * kWordSize); |
| 56 __ Pop(R0); // Pop return value from return slot. | 54 __ Pop(R0); // Pop return value from return slot. |
| 57 __ LeaveDartFrame(); | 55 __ LeaveDartFrame(); |
| 58 __ Ret(); | 56 __ Ret(); |
| 59 } | 57 } |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 *CreateFunction("Test_CallLeafRuntimeStubCode"), &_assembler_)); | 102 *CreateFunction("Test_CallLeafRuntimeStubCode"), &_assembler_)); |
| 105 const Function& function = RegisterFakeFunction(kName, code); | 103 const Function& function = RegisterFakeFunction(kName, code); |
| 106 Smi& result = Smi::Handle(); | 104 Smi& result = Smi::Handle(); |
| 107 result ^= DartEntry::InvokeFunction(function, Object::empty_array()); | 105 result ^= DartEntry::InvokeFunction(function, Object::empty_array()); |
| 108 EXPECT_EQ((value1 + value2), result.Value()); | 106 EXPECT_EQ((value1 + value2), result.Value()); |
| 109 } | 107 } |
| 110 | 108 |
| 111 } // namespace dart | 109 } // namespace dart |
| 112 | 110 |
| 113 #endif // defined TARGET_ARCH_ARM | 111 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |