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" |
11 #include "vm/native_entry_test.h" | 11 #include "vm/native_entry_test.h" |
12 #include "vm/object.h" | 12 #include "vm/object.h" |
13 #include "vm/runtime_entry.h" | 13 #include "vm/runtime_entry.h" |
14 #include "vm/stub_code.h" | 14 #include "vm/stub_code.h" |
15 #include "vm/symbols.h" | 15 #include "vm/symbols.h" |
16 #include "vm/unit_test.h" | 16 #include "vm/unit_test.h" |
17 | 17 |
18 #define __ assembler-> | 18 #define __ assembler-> |
19 | 19 |
20 namespace dart { | 20 namespace dart { |
21 | 21 |
22 static Function* CreateFunction(const char* name) { | 22 static Function* CreateFunction(const char* name) { |
23 const String& class_name = String::Handle(Symbols::New(Thread::Current(), | 23 const String& class_name = String::Handle(Symbols::New(Thread::Current(), |
24 "ownerClass")); | 24 "ownerClass")); |
25 const Script& script = Script::Handle(); | 25 const Script& script = Script::Handle(); |
| 26 const Library& lib = Library::Handle(Library::New(class_name)); |
26 const Class& owner_class = Class::Handle( | 27 const Class& owner_class = Class::Handle( |
27 Class::New(class_name, script, TokenPosition::kNoSource)); | 28 Class::New(lib, class_name, script, TokenPosition::kNoSource)); |
28 const Library& lib = Library::Handle(Library::New(class_name)); | |
29 owner_class.set_library(lib); | |
30 const String& function_name = String::ZoneHandle( | 29 const String& function_name = String::ZoneHandle( |
31 Symbols::New(Thread::Current(), name)); | 30 Symbols::New(Thread::Current(), name)); |
32 Function& function = Function::ZoneHandle( | 31 Function& function = Function::ZoneHandle( |
33 Function::New(function_name, RawFunction::kRegularFunction, | 32 Function::New(function_name, RawFunction::kRegularFunction, |
34 true, false, false, false, false, owner_class, | 33 true, false, false, false, false, owner_class, |
35 TokenPosition::kNoSource)); | 34 TokenPosition::kNoSource)); |
36 return &function; | 35 return &function; |
37 } | 36 } |
38 | 37 |
39 | 38 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 *CreateFunction("Test_CallLeafRuntimeStubCode"), &_assembler_)); | 101 *CreateFunction("Test_CallLeafRuntimeStubCode"), &_assembler_)); |
103 const Function& function = RegisterFakeFunction(kName, code); | 102 const Function& function = RegisterFakeFunction(kName, code); |
104 Smi& result = Smi::Handle(); | 103 Smi& result = Smi::Handle(); |
105 result ^= DartEntry::InvokeFunction(function, Object::empty_array()); | 104 result ^= DartEntry::InvokeFunction(function, Object::empty_array()); |
106 EXPECT_EQ(1, result.Value()); | 105 EXPECT_EQ(1, result.Value()); |
107 } | 106 } |
108 | 107 |
109 } // namespace dart | 108 } // namespace dart |
110 | 109 |
111 #endif // defined TARGET_ARCH_ARM | 110 #endif // defined TARGET_ARCH_ARM |
OLD | NEW |