Index: runtime/vm/code_patcher_ia32.cc |
=================================================================== |
--- runtime/vm/code_patcher_ia32.cc (revision 31757) |
+++ runtime/vm/code_patcher_ia32.cc (working copy) |
@@ -220,7 +220,17 @@ |
} |
+uint32_t CodePatcher::GetPoolOffsetAt(uword return_address) { |
+ UNIMPLEMENTED(); |
Ivan Posva
2014/01/14 22:12:39
This should be UNREACHABLE() as the ia32 assembler
hausner
2014/01/14 22:49:41
Done.
|
+ return 0; |
+} |
+ |
+void CodePatcher::SetPoolOffsetAt(uword return_address, uint32_t offset) { |
+ UNIMPLEMENTED(); |
Ivan Posva
2014/01/14 22:12:39
ditto
hausner
2014/01/14 22:49:41
Done.
|
+} |
+ |
+ |
void CodePatcher::InsertCallAt(uword start, uword target) { |
// The inserted call should not overlap the lazy deopt jump code. |
ASSERT(start + CallPattern::InstructionLength() <= target); |