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/runtime_entry.h" | 5 #include "vm/runtime_entry.h" |
6 | 6 |
| 7 #include "vm/code_index_table.h" |
7 #include "vm/object.h" | 8 #include "vm/object.h" |
8 #include "vm/verifier.h" | 9 #include "vm/verifier.h" |
9 | 10 |
10 namespace dart { | 11 namespace dart { |
11 | 12 |
| 13 // Add function to a class and that class to the class dictionary so that |
| 14 // frame walking can be used. |
| 15 const Function& RuntimeEntry::RegisterFakeFunction(const char* name, |
| 16 const Code& code) { |
| 17 const String& function_name = String::ZoneHandle(String::NewSymbol(name)); |
| 18 const Function& function = Function::ZoneHandle( |
| 19 Function::New(function_name, RawFunction::kFunction, true, false, 0)); |
| 20 Class& cls = Class::ZoneHandle(); |
| 21 const Script& script = Script::Handle(); |
| 22 cls = Class::New(function_name, script); |
| 23 const Array& functions = Array::Handle(Array::New(1)); |
| 24 functions.SetAt(0, function); |
| 25 cls.SetFunctions(functions); |
| 26 Library& lib = Library::Handle(Library::CoreLibrary()); |
| 27 lib.AddClass(cls); |
| 28 function.SetCode(code); |
| 29 CodeIndexTable* code_index_table = Isolate::Current()->code_index_table(); |
| 30 ASSERT(code_index_table != NULL); |
| 31 code_index_table->AddFunction(function); |
| 32 return function; |
| 33 } |
| 34 |
| 35 |
12 // A runtime call for test purposes. | 36 // A runtime call for test purposes. |
13 // Arg0: a smi. | 37 // Arg0: a smi. |
14 // Arg1: a smi. | 38 // Arg1: a smi. |
15 // Result: a smi representing arg0 - arg1. | 39 // Result: a smi representing arg0 - arg1. |
16 DEFINE_RUNTIME_ENTRY(TestSmiSub, 2) { | 40 DEFINE_RUNTIME_ENTRY(TestSmiSub, 2) { |
17 ASSERT(arguments.Count() == kTestSmiSubRuntimeEntry.argument_count()); | 41 ASSERT(arguments.Count() == kTestSmiSubRuntimeEntry.argument_count()); |
18 const Smi& left = Smi::CheckedHandle(arguments.At(0)); | 42 const Smi& left = Smi::CheckedHandle(arguments.At(0)); |
19 const Smi& right = Smi::CheckedHandle(arguments.At(1)); | 43 const Smi& right = Smi::CheckedHandle(arguments.At(1)); |
20 // Ignoring overflow in the calculation below. | 44 // Ignoring overflow in the calculation below. |
21 intptr_t result = left.Value() - right.Value(); | 45 intptr_t result = left.Value() - right.Value(); |
22 arguments.SetReturn(Smi::Handle(Smi::New(result))); | 46 arguments.SetReturn(Smi::Handle(Smi::New(result))); |
23 } | 47 } |
24 | 48 |
25 } // namespace dart | 49 } // namespace dart |
OLD | NEW |