895d074386
After this CL, we will enable cpplint checks for this directory on presubmit: https://chromium-review.googlesource.com/647807 R=mstarzinger@chromium.org Change-Id: Ie85e876a7245cc5c8d5bf9348c8841040a8edbe9 Reviewed-on: https://chromium-review.googlesource.com/647552 Reviewed-by: Michael Starzinger <mstarzinger@chromium.org> Commit-Queue: Clemens Hammacher <clemensh@chromium.org> Cr-Commit-Position: refs/heads/master@{#47791}
40 lines
1016 B
C++
40 lines
1016 B
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 FuzzerSupport* Get();
|
|
|
|
v8::Isolate* GetIsolate() const;
|
|
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&);
|
|
|
|
|
|
v8::Platform* platform_;
|
|
v8::ArrayBuffer::Allocator* allocator_;
|
|
v8::Isolate* isolate_;
|
|
v8::Global<v8::Context> context_;
|
|
};
|
|
|
|
} // namespace v8_fuzzer
|
|
|
|
#endif // TEST_FUZZER_FUZZER_SUPPORT_H_
|