bf67f24098
The purpose of this change is twofold: 1. Source in the bin directory can now use the same assertions as source in the vm directory. The ASSERT macro used by the code in runtime/bin was just defined to use assert from the standard C library. 2. Moving other implementation parts from runtime/vm to runtime/platform (e.g. classes Monitor and Mutex) for sharing between runtime/bin and runtime/vm will be easier as these implementations rely on these assertion macros. Created two gypi files for the platform directory. One for the headers and one for the source. The source one is only included when building the VM library and will be present in libdart.a when the dart executable is linked. All the code for asserts is still in the dart namespace. Also re-arranged the order of includes to be alphabetically in the files touched. R=ager@google.com, iposva@google.com BUG= TEST= Review URL: http://codereview.chromium.org//9189003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@3335 260f80e4-7a28-3924-810f-c04153c831b5
182 lines
5.4 KiB
C++
182 lines
5.4 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/stub_code.h"
|
|
|
|
#include "platform/assert.h"
|
|
#include "vm/assembler.h"
|
|
#include "vm/disassembler.h"
|
|
#include "vm/flags.h"
|
|
#include "vm/virtual_memory.h"
|
|
#include "vm/visitor.h"
|
|
|
|
namespace dart {
|
|
|
|
DEFINE_FLAG(bool, disassemble_stubs, false, "Disassemble generated stubs.");
|
|
|
|
#define STUB_CODE_DECLARE(name) \
|
|
StubEntry* StubCode::name##_entry_ = NULL;
|
|
VM_STUB_CODE_LIST(STUB_CODE_DECLARE);
|
|
#undef STUB_CODE_DECLARE
|
|
|
|
|
|
StubEntry::StubEntry(const char* name, const Code& code)
|
|
: code_(code.raw()),
|
|
entry_point_(code.EntryPoint()),
|
|
size_(code.Size()),
|
|
label_(name, code.EntryPoint()) {
|
|
}
|
|
|
|
|
|
// Visit all object pointers.
|
|
void StubEntry::VisitObjectPointers(ObjectPointerVisitor* visitor) {
|
|
ASSERT(visitor != NULL);
|
|
visitor->VisitPointer(reinterpret_cast<RawObject**>(&code_));
|
|
}
|
|
|
|
|
|
StubCode::~StubCode() {
|
|
#define STUB_CODE_DELETER(name) \
|
|
delete name##_entry_;
|
|
STUB_CODE_LIST(STUB_CODE_DELETER);
|
|
#undef STUB_CODE_DELETER
|
|
}
|
|
|
|
|
|
#define STUB_CODE_GENERATE(name) \
|
|
code ^= Generate("_stub_"#name, StubCode::Generate##name##Stub); \
|
|
name##_entry_ = new StubEntry("_stub_"#name, code);
|
|
|
|
|
|
void StubCode::InitOnce() {
|
|
// TODO(regis): Re-enable this after we are able to generate arm code.
|
|
#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
|
|
// Generate all the stubs.
|
|
Code& code = Code::Handle();
|
|
VM_STUB_CODE_LIST(STUB_CODE_GENERATE);
|
|
#endif
|
|
}
|
|
|
|
|
|
void StubCode::GenerateFor(Isolate* init) {
|
|
// TODO(regis): Re-enable this after we are able to generate arm code.
|
|
#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
|
|
// Generate all the stubs.
|
|
Code& code = Code::Handle();
|
|
STUB_CODE_LIST(STUB_CODE_GENERATE);
|
|
#endif
|
|
}
|
|
|
|
#undef STUB_CODE_GENERATE
|
|
|
|
|
|
void StubCode::Init(Isolate* isolate) {
|
|
StubCode* stubs = new StubCode();
|
|
isolate->set_stub_code(stubs);
|
|
stubs->GenerateFor(isolate);
|
|
}
|
|
|
|
|
|
void StubCode::VisitObjectPointers(ObjectPointerVisitor* visitor) {
|
|
// The current isolate is needed as part of the macro.
|
|
Isolate* isolate = Isolate::Current();
|
|
StubCode* stubs = isolate->stub_code();
|
|
if (stubs == NULL) return;
|
|
StubEntry* entry;
|
|
#define STUB_CODE_VISIT_OBJECT_POINTER(name) \
|
|
entry = stubs->name##_entry(); \
|
|
if (entry != NULL) { \
|
|
entry->VisitObjectPointers(visitor); \
|
|
}
|
|
|
|
STUB_CODE_LIST(STUB_CODE_VISIT_OBJECT_POINTER);
|
|
#undef STUB_CODE_VISIT_OBJECT_POINTER
|
|
}
|
|
|
|
|
|
bool StubCode::InInvocationStub(uword pc) {
|
|
return ((pc >= InvokeDartCodeEntryPoint()) &&
|
|
(pc < (InvokeDartCodeEntryPoint() + InvokeDartCodeSize())));
|
|
}
|
|
|
|
|
|
bool StubCode::InStubCallToRuntimeStubCode(uword pc) {
|
|
if ((pc >= StubCallToRuntimeEntryPoint()) &&
|
|
(pc < (StubCallToRuntimeEntryPoint() + StubCallToRuntimeSize()))) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
|
|
RawCode* StubCode::GetAllocationStubForClass(const Class& cls) {
|
|
Code& stub = Code::Handle(cls.allocation_stub());
|
|
if (stub.IsNull()) {
|
|
Assembler assembler;
|
|
const char* name = cls.ToCString();
|
|
StubCode::GenerateAllocationStubForClass(&assembler, cls);
|
|
stub ^= Code::FinalizeCode(name, &assembler);
|
|
cls.set_allocation_stub(stub);
|
|
if (FLAG_disassemble_stubs) {
|
|
OS::Print("Code for allocation stub '%s': {\n", name);
|
|
Disassembler::Disassemble(stub.EntryPoint(),
|
|
stub.EntryPoint() + assembler.CodeSize());
|
|
OS::Print("}\n");
|
|
}
|
|
}
|
|
return stub.raw();
|
|
}
|
|
|
|
|
|
RawCode* StubCode::GetAllocationStubForClosure(const Function& func) {
|
|
Code& stub = Code::Handle(func.closure_allocation_stub());
|
|
if (stub.IsNull()) {
|
|
Assembler assembler;
|
|
const char* name = func.ToCString();
|
|
StubCode::GenerateAllocationStubForClosure(&assembler, func);
|
|
stub ^= Code::FinalizeCode(name, &assembler);
|
|
func.set_closure_allocation_stub(stub);
|
|
if (FLAG_disassemble_stubs) {
|
|
OS::Print("Code for closure allocation stub '%s': {\n", name);
|
|
Disassembler::Disassemble(stub.EntryPoint(),
|
|
stub.EntryPoint() + assembler.CodeSize());
|
|
OS::Print("}\n");
|
|
}
|
|
}
|
|
return stub.raw();
|
|
}
|
|
|
|
|
|
RawCode* StubCode::Generate(const char* name,
|
|
void (*GenerateStub)(Assembler* assembler)) {
|
|
Assembler assembler;
|
|
GenerateStub(&assembler);
|
|
const Code& code = Code::Handle(Code::FinalizeCode(name, &assembler));
|
|
if (FLAG_disassemble_stubs) {
|
|
OS::Print("Code for stub '%s': {\n", name);
|
|
Disassembler::Disassemble(code.EntryPoint(),
|
|
code.EntryPoint() + assembler.CodeSize());
|
|
OS::Print("}\n");
|
|
}
|
|
return code.raw();
|
|
}
|
|
|
|
|
|
const char* StubCode::NameOfStub(uword entry_point) {
|
|
#define STUB_CODE_TESTER(name) \
|
|
if ((name##_entry() != NULL) && (entry_point == name##EntryPoint())) { \
|
|
return ""#name; \
|
|
}
|
|
|
|
VM_STUB_CODE_LIST(STUB_CODE_TESTER);
|
|
Isolate* isolate = Isolate::Current();
|
|
if ((isolate != NULL) && (isolate->stub_code() != NULL)) {
|
|
STUB_CODE_LIST(STUB_CODE_TESTER);
|
|
}
|
|
#undef STUB_CODE_TESTER
|
|
return NULL;
|
|
}
|
|
|
|
} // namespace dart
|