summaryrefslogtreecommitdiff
path: root/deps/v8/test/fuzzer/fuzzer-support.h
blob: c941c9c052041878552470f54d3d21af2ccbfdba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef TEST_FUZZER_FUZZER_SUPPORT_H_
#define TEST_FUZZER_FUZZER_SUPPORT_H_

#include "include/v8.h"

namespace v8_fuzzer {

class FuzzerSupport {
 public:
  FuzzerSupport(int* argc, char*** argv);
  ~FuzzerSupport();

  static FuzzerSupport* Get();

  v8::Isolate* GetIsolate();
  v8::Local<v8::Context> GetContext();

 private:
  // Prevent copying. Not implemented.
  FuzzerSupport(const FuzzerSupport&);
  FuzzerSupport& operator=(const FuzzerSupport&);


  v8::Platform* platform_;
  v8::ArrayBuffer::Allocator* allocator_;
  v8::Isolate* isolate_;
  v8::Global<v8::Context> context_;
};

}  // namespace

#endif  //  TEST_FUZZER_FUZZER_SUPPORT_H_