e9e54f6af6
R=iposva@google.com, turnidge@google.com Review URL: https://codereview.chromium.org//182703003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@33177 260f80e4-7a28-3924-810f-c04153c831b5
109 lines
3.3 KiB
C++
109 lines
3.3 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.
|
|
|
|
#include "vm/disassembler.h"
|
|
|
|
#include "vm/assembler.h"
|
|
#include "vm/globals.h"
|
|
#include "vm/os.h"
|
|
#include "vm/json_stream.h"
|
|
|
|
namespace dart {
|
|
|
|
void DisassembleToStdout::ConsumeInstruction(char* hex_buffer,
|
|
intptr_t hex_size,
|
|
char* human_buffer,
|
|
intptr_t human_size,
|
|
uword pc) {
|
|
static const int kHexColumnWidth = 23;
|
|
uint8_t* pc_ptr = reinterpret_cast<uint8_t*>(pc);
|
|
OS::Print("%p %s", pc_ptr, hex_buffer);
|
|
int hex_length = strlen(hex_buffer);
|
|
if (hex_length < kHexColumnWidth) {
|
|
for (int i = kHexColumnWidth - hex_length; i > 0; i--) {
|
|
OS::Print(" ");
|
|
}
|
|
}
|
|
OS::Print("%s", human_buffer);
|
|
OS::Print("\n");
|
|
}
|
|
|
|
|
|
void DisassembleToStdout::Print(const char* format, ...) {
|
|
va_list args;
|
|
va_start(args, format);
|
|
OS::VFPrint(stdout, format, args);
|
|
va_end(args);
|
|
}
|
|
|
|
|
|
void DisassembleToJSONStream::ConsumeInstruction(char* hex_buffer,
|
|
intptr_t hex_size,
|
|
char* human_buffer,
|
|
intptr_t human_size,
|
|
uword pc) {
|
|
uint8_t* pc_ptr = reinterpret_cast<uint8_t*>(pc);
|
|
// Instructions are represented as three consecutive values in a JSON array.
|
|
// All three are strings. The first is the address of the instruction,
|
|
// the second is the hex string of the code, and the final is a human
|
|
// readable string.
|
|
jsarr_.AddValueF("%p", pc_ptr);
|
|
jsarr_.AddValue(hex_buffer);
|
|
jsarr_.AddValue(human_buffer);
|
|
}
|
|
|
|
|
|
void DisassembleToJSONStream::Print(const char* format, ...) {
|
|
va_list args;
|
|
va_start(args, format);
|
|
intptr_t len = OS::VSNPrint(NULL, 0, format, args);
|
|
va_end(args);
|
|
char* p = reinterpret_cast<char*>(malloc(len+1));
|
|
va_start(args, format);
|
|
intptr_t len2 = OS::VSNPrint(p, len, format, args);
|
|
va_end(args);
|
|
ASSERT(len == len2);
|
|
for (intptr_t i = 0; i < len; i++) {
|
|
if (p[i] == '\n' || p[i] == '\r') {
|
|
p[i] = ' ';
|
|
}
|
|
}
|
|
// Instructions are represented as three consecutive values in a JSON array.
|
|
// All three are strings. Comments only use the third slot. See above comment
|
|
// for more information.
|
|
jsarr_.AddValue("");
|
|
jsarr_.AddValue("");
|
|
jsarr_.AddValue(p);
|
|
free(p);
|
|
}
|
|
|
|
|
|
class FindAddrVisitor : public FindObjectVisitor {
|
|
public:
|
|
explicit FindAddrVisitor(uword addr)
|
|
: FindObjectVisitor(Isolate::Current()), addr_(addr) { }
|
|
virtual ~FindAddrVisitor() { }
|
|
|
|
virtual uword filter_addr() const { return addr_; }
|
|
|
|
// Check if object matches find condition.
|
|
virtual bool FindObject(RawObject* obj) const {
|
|
return obj == reinterpret_cast<RawObject*>(addr_);
|
|
}
|
|
|
|
private:
|
|
const uword addr_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(FindAddrVisitor);
|
|
};
|
|
|
|
|
|
bool Disassembler::CanFindOldObject(uword addr) {
|
|
FindAddrVisitor visitor(addr);
|
|
NoGCScope no_gc;
|
|
return Isolate::Current()->heap()->FindOldObject(&visitor) != Object::null();
|
|
}
|
|
|
|
} // namespace dart
|