bac82e2592
Instead of calling code object directly, call indirectly and pass the code object in a register. The object pool is then loaded from the code object. This is another preparation step for making generated code relocatable. All non-ia32 platforms: No entry patching. ARM: PC marker (now code object) moves to the same place as on x64 (below saved PP, above saved FP). R9 is now used as PP, R10 as CODE_REG. BUG= R=koda@google.com, rmacnak@google.com Committed: https://github.com/dart-lang/sdk/commit/1d343e5a7b75168fb6c9f86b64c55173cdbdc9b2 Review URL: https://codereview.chromium.org//1192103004 .
60 lines
1.9 KiB
C++
60 lines
1.9 KiB
C++
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/code_patcher.h"
|
|
#include "vm/cpu.h"
|
|
#include "vm/instructions.h"
|
|
#include "vm/object.h"
|
|
#include "vm/virtual_memory.h"
|
|
|
|
namespace dart {
|
|
|
|
DEFINE_FLAG(bool, write_protect_code, true, "Write protect jitted code");
|
|
|
|
|
|
WritableInstructionsScope::WritableInstructionsScope(uword address,
|
|
intptr_t size)
|
|
: address_(address), size_(size) {
|
|
if (FLAG_write_protect_code) {
|
|
bool status = VirtualMemory::Protect(reinterpret_cast<void*>(address),
|
|
size,
|
|
VirtualMemory::kReadWrite);
|
|
ASSERT(status);
|
|
}
|
|
}
|
|
|
|
|
|
WritableInstructionsScope::~WritableInstructionsScope() {
|
|
if (FLAG_write_protect_code) {
|
|
bool status = VirtualMemory::Protect(reinterpret_cast<void*>(address_),
|
|
size_,
|
|
VirtualMemory::kReadExecute);
|
|
ASSERT(status);
|
|
}
|
|
}
|
|
|
|
|
|
// The patch code buffer contains the jmp code which will be inserted at
|
|
// entry point.
|
|
void CodePatcher::PatchEntry(const Code& code, const Code& new_code) {
|
|
ASSERT(code.instructions() == code.active_instructions());
|
|
code.set_active_instructions(new_code.instructions());
|
|
}
|
|
|
|
|
|
// The entry point is a jmp instruction, the patch code buffer contains
|
|
// original code, the entry point contains the jump instruction.
|
|
void CodePatcher::RestoreEntry(const Code& code) {
|
|
if (!IsEntryPatched(code)) return;
|
|
ASSERT(code.instructions() != code.active_instructions());
|
|
code.set_active_instructions(code.instructions());
|
|
}
|
|
|
|
|
|
bool CodePatcher::IsEntryPatched(const Code& code) {
|
|
return code.instructions() != code.active_instructions();
|
|
}
|
|
|
|
} // namespace dart
|