Files
sdk/runtime/vm/runtime_entry.h
T

74 lines
2.9 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.
#ifndef VM_RUNTIME_ENTRY_H_
#define VM_RUNTIME_ENTRY_H_
#include "vm/allocation.h"
#include "vm/assembler.h"
#include "vm/flags.h"
#include "vm/native_arguments.h"
namespace dart {
DECLARE_FLAG(bool, trace_runtime_calls);
typedef void (*RuntimeFunction)(NativeArguments arguments);
// Class RuntimeEntry is used to encapsulate runtime functions, it includes
// the entry point for the runtime function and the number of arguments expected
// by the function.
class RuntimeEntry : public ValueObject {
public:
RuntimeEntry(const char* name, RuntimeFunction function, int argument_count)
: name_(name),
function_(function),
argument_count_(argument_count) { }
~RuntimeEntry() {}
const char* name() const { return name_; }
RuntimeFunction function() const { return function_; }
int argument_count() const { return argument_count_; }
uword GetEntryPoint() const { return reinterpret_cast<uword>(function()); }
// Generate code to call the runtime entry.
void Call(Assembler* assembler) const;
private:
const char* name_;
RuntimeFunction function_;
int argument_count_;
DISALLOW_COPY_AND_ASSIGN(RuntimeEntry);
};
// Helper macros for declaring and defining runtime entries.
#define DEFINE_RUNTIME_ENTRY(name, argument_count) \
extern void DRT_##name(NativeArguments arguments); \
extern const RuntimeEntry k##name##RuntimeEntry( \
"DRT_"#name, &DRT_##name, argument_count); \
static void DRT_Helper##name(Isolate* isolate, NativeArguments arguments); \
void DRT_##name(NativeArguments arguments) { \
CHECK_STACK_ALIGNMENT; \
VERIFY_ON_TRANSITION; \
if (FLAG_trace_runtime_calls) OS::Print("Runtime call: %s\n", ""#name); \
{ \
Zone zone(arguments.isolate()); \
HANDLESCOPE(arguments.isolate()); \
DRT_Helper##name(arguments.isolate(), arguments); \
} \
VERIFY_ON_TRANSITION; \
} \
static void DRT_Helper##name(Isolate* isolate, NativeArguments arguments)
#define DECLARE_RUNTIME_ENTRY(name) \
extern const RuntimeEntry k##name##RuntimeEntry
} // namespace dart
#endif // VM_RUNTIME_ENTRY_H_