blob: 789354597e5ffdea6b1124274ede4b3e40b1c732 [file] [log] [blame]
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08001// Copyright 2010 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08004
5#ifndef V8_EXTENSIONS_GC_EXTENSION_H_
6#define V8_EXTENSIONS_GC_EXTENSION_H_
7
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include "src/v8.h"
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08009
10namespace v8 {
11namespace internal {
12
13class GCExtension : public v8::Extension {
14 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +000015 explicit GCExtension(const char* fun_name)
16 : v8::Extension("v8/gc",
17 BuildSource(buffer_, sizeof(buffer_), fun_name)) {}
18 virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
19 v8::Isolate* isolate,
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080020 v8::Handle<v8::String> name);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000021 static void GC(const v8::FunctionCallbackInfo<v8::Value>& args);
22
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080023 private:
Ben Murdochb8a8cc12014-11-26 15:28:44 +000024 static const char* BuildSource(char* buf, size_t size, const char* fun_name) {
25 SNPrintF(Vector<char>(buf, static_cast<int>(size)),
26 "native function %s();", fun_name);
27 return buf;
28 }
29
30 char buffer_[50];
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080031};
32
33} } // namespace v8::internal
34
35#endif // V8_EXTENSIONS_GC_EXTENSION_H_