5d433b2d65
The FuzzerSupport was keeping a single instance of itself. With this CL, this instance is now stored in a unique_ptr. Therefore it is not necessary to register an onExit callback to delete the FuzzerSupport instance. Drive-by changes: Some cleanup with the FuzzerSupport. R=clemensh@chromium.org Bug: chromium:787723 Change-Id: I5188c7aa7e778ccd45fc80ed0115c947d23a0dee Reviewed-on: https://chromium-review.googlesource.com/792949 Reviewed-by: Clemens Hammacher <clemensh@chromium.org> Commit-Queue: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/master@{#49723}
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
// 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/libplatform/libplatform.h"
|
|
#include "include/v8.h"
|
|
|
|
namespace v8_fuzzer {
|
|
|
|
class FuzzerSupport {
|
|
public:
|
|
FuzzerSupport(int* argc, char*** argv);
|
|
|
|
~FuzzerSupport();
|
|
|
|
static void InitializeFuzzerSupport(int* argc, char*** argv);
|
|
|
|
static FuzzerSupport* Get();
|
|
|
|
v8::Isolate* GetIsolate() const { return isolate_; }
|
|
|
|
v8::Local<v8::Context> GetContext();
|
|
|
|
bool PumpMessageLoop(v8::platform::MessageLoopBehavior =
|
|
v8::platform::MessageLoopBehavior::kDoNotWait);
|
|
|
|
private:
|
|
// Prevent copying. Not implemented.
|
|
FuzzerSupport(const FuzzerSupport&);
|
|
FuzzerSupport& operator=(const FuzzerSupport&);
|
|
|
|
static std::unique_ptr<FuzzerSupport> fuzzer_support_;
|
|
std::unique_ptr<v8::Platform> platform_;
|
|
v8::ArrayBuffer::Allocator* allocator_;
|
|
v8::Isolate* isolate_;
|
|
v8::Global<v8::Context> context_;
|
|
};
|
|
|
|
} // namespace v8_fuzzer
|
|
|
|
#endif // TEST_FUZZER_FUZZER_SUPPORT_H_
|