| 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" // Needed here to get TARGET_ARCH_MIPS. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. |
| 6 #if defined(TARGET_ARCH_MIPS) | 6 #if defined(TARGET_ARCH_MIPS) |
| 7 | 7 |
| 8 #include "vm/code_patcher.h" | 8 #include "vm/code_patcher.h" |
| 9 | 9 |
| 10 #include "vm/instructions.h" | 10 #include "vm/instructions.h" |
| 11 #include "vm/object.h" | 11 #include "vm/object.h" |
| 12 | 12 |
| 13 namespace dart { | 13 namespace dart { |
| 14 | 14 |
| 15 RawArray* CodePatcher::GetClosureArgDescAt(uword return_address, | |
| 16 const Code& code) { | |
| 17 ASSERT(code.ContainsInstructionAt(return_address)); | |
| 18 CallPattern call(return_address, code); | |
| 19 return call.ClosureArgumentsDescriptor(); | |
| 20 } | |
| 21 | |
| 22 | |
| 23 uword CodePatcher::GetStaticCallTargetAt(uword return_address, | 15 uword CodePatcher::GetStaticCallTargetAt(uword return_address, |
| 24 const Code& code) { | 16 const Code& code) { |
| 25 ASSERT(code.ContainsInstructionAt(return_address)); | 17 ASSERT(code.ContainsInstructionAt(return_address)); |
| 26 CallPattern call(return_address, code); | 18 CallPattern call(return_address, code); |
| 27 return call.TargetAddress(); | 19 return call.TargetAddress(); |
| 28 } | 20 } |
| 29 | 21 |
| 30 | 22 |
| 31 void CodePatcher::PatchStaticCallAt(uword return_address, | 23 void CodePatcher::PatchStaticCallAt(uword return_address, |
| 32 const Code& code, | 24 const Code& code, |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 124 |
| 133 RawObject* CodePatcher::GetEdgeCounterAt(uword pc, const Code& code) { | 125 RawObject* CodePatcher::GetEdgeCounterAt(uword pc, const Code& code) { |
| 134 ASSERT(code.ContainsInstructionAt(pc)); | 126 ASSERT(code.ContainsInstructionAt(pc)); |
| 135 EdgeCounter counter(pc, code); | 127 EdgeCounter counter(pc, code); |
| 136 return counter.edge_counter(); | 128 return counter.edge_counter(); |
| 137 } | 129 } |
| 138 | 130 |
| 139 } // namespace dart | 131 } // namespace dart |
| 140 | 132 |
| 141 #endif // defined TARGET_ARCH_MIPS | 133 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |