summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/FuzzerInterface.cpp
blob: 231e757c8b26a7d6aca9ec09f517e19f09b92085 (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
//===- 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)), MD(*Rand) {}

UserSuppliedFuzzer::UserSuppliedFuzzer(FuzzerRandomBase *Rand)
    : Rand(Rand), MD(*Rand) {}

UserSuppliedFuzzer::~UserSuppliedFuzzer() {
  if (OwnRand)
    delete Rand;
}

}  // namespace fuzzer.
OpenPOWER on IntegriCloud