2016-04-07 14:06:55 -07:00
|
|
|
// 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_
|
|
|
|
|
2019-11-08 15:39:11 +01:00
|
|
|
#include <memory>
|
|
|
|
|
2017-09-12 11:34:59 +02:00
|
|
|
#include "include/libplatform/libplatform.h"
|
2021-10-10 11:10:43 +02:00
|
|
|
#include "include/v8-array-buffer.h"
|
|
|
|
#include "include/v8-local-handle.h"
|
|
|
|
#include "include/v8-persistent-handle.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
class Context;
|
|
|
|
class Isolate;
|
|
|
|
} // namespace v8
|
2016-04-07 14:06:55 -07:00
|
|
|
|
|
|
|
namespace v8_fuzzer {
|
|
|
|
|
|
|
|
class FuzzerSupport {
|
|
|
|
public:
|
|
|
|
FuzzerSupport(int* argc, char*** argv);
|
2021-10-10 11:10:43 +02:00
|
|
|
FuzzerSupport(const FuzzerSupport&) = delete;
|
|
|
|
FuzzerSupport& operator=(const FuzzerSupport&) = delete;
|
2018-01-24 20:16:06 +01:00
|
|
|
|
2016-04-07 14:06:55 -07:00
|
|
|
~FuzzerSupport();
|
|
|
|
|
2018-01-24 20:16:06 +01:00
|
|
|
static void InitializeFuzzerSupport(int* argc, char*** argv);
|
|
|
|
|
2016-04-07 14:06:55 -07:00
|
|
|
static FuzzerSupport* Get();
|
|
|
|
|
2018-01-24 20:16:06 +01:00
|
|
|
v8::Isolate* GetIsolate() const { return isolate_; }
|
|
|
|
|
2016-04-07 14:06:55 -07:00
|
|
|
v8::Local<v8::Context> GetContext();
|
2018-01-24 20:16:06 +01:00
|
|
|
|
2017-09-12 11:34:59 +02:00
|
|
|
bool PumpMessageLoop(v8::platform::MessageLoopBehavior =
|
|
|
|
v8::platform::MessageLoopBehavior::kDoNotWait);
|
2016-04-07 14:06:55 -07:00
|
|
|
|
|
|
|
private:
|
2018-01-24 20:16:06 +01:00
|
|
|
static std::unique_ptr<FuzzerSupport> fuzzer_support_;
|
|
|
|
std::unique_ptr<v8::Platform> platform_;
|
2016-09-06 22:49:51 +02:00
|
|
|
v8::ArrayBuffer::Allocator* allocator_;
|
2016-04-07 14:06:55 -07:00
|
|
|
v8::Isolate* isolate_;
|
|
|
|
v8::Global<v8::Context> context_;
|
|
|
|
};
|
|
|
|
|
2017-12-05 16:41:55 +01:00
|
|
|
} // namespace v8_fuzzer
|
2016-04-07 14:06:55 -07:00
|
|
|
|
|
|
|
#endif // TEST_FUZZER_FUZZER_SUPPORT_H_
|