blob: 9be0d4b7011c7909ab969163cb91389501b05764 [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 Murdoch4a90d5f2016-03-22 12:00:34 +00008#include "include/v8.h"
9#include "src/utils.h"
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080010
11namespace v8 {
12namespace internal {
13
14class GCExtension : public v8::Extension {
15 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +000016 explicit GCExtension(const char* fun_name)
17 : v8::Extension("v8/gc",
18 BuildSource(buffer_, sizeof(buffer_), fun_name)) {}
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000019 virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
20 v8::Isolate* isolate, v8::Local<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
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000033} // namespace internal
34} // namespace v8
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -080035
36#endif // V8_EXTENSIONS_GC_EXTENSION_H_