Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Unified Diff: dart/runtime/vm/code_patcher_x64.cc

Issue 138543003: Version 1.1.1 (stable channel) (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.1/
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/runtime/vm/code_patcher_mips.cc ('k') | dart/runtime/vm/debugger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/code_patcher_x64.cc
===================================================================
--- dart/runtime/vm/code_patcher_x64.cc (revision 31821)
+++ dart/runtime/vm/code_patcher_x64.cc (working copy)
@@ -142,6 +142,43 @@
};
+// The expected pattern of a call where the target is loaded from
+// the object pool:
+// 00: 4d 8b 9f imm32 mov R11, [PP + off]
+// 07: 41 ff d3 call R11
+// 10 <- return address
+class PoolPointerCall : public ValueObject {
+ public:
+ explicit PoolPointerCall(uword return_address)
+ : start_(return_address - kCallPatternSize) {
+ ASSERT(IsValid(return_address));
+ }
+
+ static bool IsValid(uword return_address) {
+ uint8_t* code_bytes =
+ reinterpret_cast<uint8_t*>(return_address - kCallPatternSize);
+ return (code_bytes[0] == 0x4D) && (code_bytes[1] == 0x8B) &&
+ (code_bytes[2] == 0x9F) &&
+ (code_bytes[7] == 0x41) && (code_bytes[8] == 0xFF) &&
+ (code_bytes[9] == 0xD3);
+ }
+
+ int32_t pp_offset() const {
+ return *reinterpret_cast<int32_t*>(start_ + 3);
+ }
+
+ void set_pp_offset(int32_t offset) const {
+ *reinterpret_cast<int32_t*>(start_ + 3) = offset;
+ CPU::FlushICache(start_, kCallPatternSize);
+ }
+
+ private:
+ static const int kCallPatternSize = 7 + 3;
+ uword start_;
+ DISALLOW_IMPLICIT_CONSTRUCTORS(PoolPointerCall);
+};
+
+
// The expected code pattern of a Dart closure call:
// 00: 49 ba imm64 mov R10, immediate 2 ; 10 bytes
// 10: 4d 8b 9f imm32 mov R11, [PP + off]
@@ -200,6 +237,18 @@
}
+int32_t CodePatcher::GetPoolOffsetAt(uword return_address) {
+ PoolPointerCall call(return_address);
+ return call.pp_offset();
+}
+
+
+void CodePatcher::SetPoolOffsetAt(uword return_address, int32_t offset) {
+ PoolPointerCall call(return_address);
+ call.set_pp_offset(offset);
+}
+
+
void CodePatcher::PatchInstanceCallAt(uword return_address,
const Code& code,
uword new_target) {
« no previous file with comments | « dart/runtime/vm/code_patcher_mips.cc ('k') | dart/runtime/vm/debugger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698