| 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 DECLARE_RUNTIME_ENTRY(TestSmiSub); | 22 DECLARE_RUNTIME_ENTRY(TestSmiSub); |
| 23 DECLARE_LEAF_RUNTIME_ENTRY(RawObject*, TestLeafSmiAdd, RawObject*, RawObject*); | 23 DECLARE_LEAF_RUNTIME_ENTRY(RawObject*, TestLeafSmiAdd, RawObject*, RawObject*); |
| 24 | 24 |
| 25 | 25 |
| 26 static Function* CreateFunction(const char* name) { | 26 static Function* CreateFunction(const char* name) { |
| 27 const String& class_name = String::Handle(Symbols::New("ownerClass")); | 27 const String& class_name = String::Handle(Symbols::New("ownerClass")); |
| 28 const Script& script = Script::Handle(); | 28 const Script& script = Script::Handle(); |
| 29 const Class& owner_class = | 29 const Class& owner_class = |
| 30 Class::Handle(Class::New(class_name, script, Scanner::kDummyTokenIndex)); | 30 Class::Handle(Class::New(class_name, script, Scanner::kDummyTokenIndex)); |
| 31 const Library& lib = Library::Handle(Library::New(class_name)); |
| 32 owner_class.set_library(lib); |
| 31 const String& function_name = String::ZoneHandle(Symbols::New(name)); | 33 const String& function_name = String::ZoneHandle(Symbols::New(name)); |
| 32 Function& function = Function::ZoneHandle( | 34 Function& function = Function::ZoneHandle( |
| 33 Function::New(function_name, RawFunction::kRegularFunction, | 35 Function::New(function_name, RawFunction::kRegularFunction, |
| 34 true, false, false, false, owner_class, 0)); | 36 true, false, false, false, owner_class, 0)); |
| 35 return &function; | 37 return &function; |
| 36 } | 38 } |
| 37 | 39 |
| 38 | 40 |
| 39 // Test calls to stub code which calls into the runtime. | 41 // Test calls to stub code which calls into the runtime. |
| 40 static void GenerateCallToCallRuntimeStub(Assembler* assembler, | 42 static void GenerateCallToCallRuntimeStub(Assembler* assembler, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 *CreateFunction("Test_CallLeafRuntimeStubCode"), &_assembler_)); | 106 *CreateFunction("Test_CallLeafRuntimeStubCode"), &_assembler_)); |
| 105 const Function& function = RegisterFakeFunction(kName, code); | 107 const Function& function = RegisterFakeFunction(kName, code); |
| 106 Smi& result = Smi::Handle(); | 108 Smi& result = Smi::Handle(); |
| 107 result ^= DartEntry::InvokeFunction(function, Object::empty_array()); | 109 result ^= DartEntry::InvokeFunction(function, Object::empty_array()); |
| 108 EXPECT_EQ((value1 + value2), result.Value()); | 110 EXPECT_EQ((value1 + value2), result.Value()); |
| 109 } | 111 } |
| 110 | 112 |
| 111 } // namespace dart | 113 } // namespace dart |
| 112 | 114 |
| 113 #endif // defined TARGET_ARCH_ARM | 115 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |