mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-25 05:34:59 +00:00
397ed3e704
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244250 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
938 B
C++
33 lines
938 B
C++
//===- FuzzerInterface.cpp - Mutate a test input --------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// Parts of public interface for libFuzzer.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
#include "FuzzerInterface.h"
|
|
#include "FuzzerInternal.h"
|
|
|
|
namespace fuzzer {
|
|
|
|
void FuzzerRandomLibc::ResetSeed(int seed) { srand(seed); }
|
|
|
|
size_t FuzzerRandomLibc::Rand() { return rand(); }
|
|
|
|
UserSuppliedFuzzer::UserSuppliedFuzzer()
|
|
: OwnRand(true), Rand(new FuzzerRandomLibc(0)) {}
|
|
|
|
UserSuppliedFuzzer::UserSuppliedFuzzer(FuzzerRandomBase *Rand) : Rand(Rand) {}
|
|
|
|
UserSuppliedFuzzer::~UserSuppliedFuzzer() {
|
|
if (OwnRand)
|
|
delete Rand;
|
|
}
|
|
|
|
} // namespace fuzzer.
|