Files
sdk/runtime/vm/code_patcher.h
T
hausner@google.com b7cf1328a1 Very first steps for a debugger
- Introduce Debugger class.
- Each isolate has a debugger object.
- Introduce stubs that can be put in place of static or dynamic
  Dart function calls.
- Very rudimentary command line option to place a breakpoint
  at the beginning of a function.
Review URL: http://codereview.chromium.org//8687037

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@1928 260f80e4-7a28-3924-810f-c04153c831b5
2011-11-30 17:04:45 +00:00

68 lines
2.1 KiB
C++

// Copyright (c) 2011, 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.
// Class for patching compiled code.
#ifndef VM_CODE_PATCHER_H_
#define VM_CODE_PATCHER_H_
#include "vm/allocation.h"
namespace dart {
// Forward declaration.
class Array;
class Code;
class ExternalLabel;
class Function;
class RawArray;
class String;
class CodePatcher : public AllStatic {
public:
// Dart static calls have a distinct, machine-dependent code pattern.
// Patch static call to the new target.
static void PatchStaticCallAt(uword addr, uword new_target_address);
// Patch instance call to the new target.
static void PatchInstanceCallAt(uword addr, uword new_target_address);
// Patch entry point with a jump as specified in the code's patch region.
static void PatchEntry(const Code& code);
// Restore entry point with original code (i.e., before patching).
static void RestoreEntry(const Code& code);
// Returns true if the code can be patched with a jump at beginnning (checks
// that there are no conflicts with object pointers).
static bool CodeIsPatchable(const Code& code);
// Returns true if the code before return_address is a static
// or dynamic Dart call.
static bool IsDartCall(uword return_address);
// Get static call information.
static void GetStaticCallAt(uword return_address,
Function* function,
uword* target);
// Get instance call information.
static void GetInstanceCallAt(uword return_address,
String* function_name,
int* num_arguments,
int* num_named_arguments,
uword* target);
static RawArray* GetInstanceCallIcDataAt(uword return_address);
static void SetInstanceCallIcDataAt(uword return_address,
const Array& ic_data);
static intptr_t InstanceCallSizeInBytes();
};
} // namespace dart
#endif // VM_CODE_PATCHER_H_