Searched refs:Mutator (Results 1 - 6 of 6) sorted by relevance

/openbsd-current/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DSpeculation.cpp79 IRBuilder<> Mutator(MContext);
108 Mutator.SetInsertPoint(SpeculateDecisionBlock);
111 Mutator.CreateLoad(LoadValueTy, SpeculatorGuard, "guard.value");
114 Mutator.CreateICmpEQ(LoadGuard, ConstantInt::get(LoadValueTy, 0),
116 Mutator.CreateCondBr(CanSpeculate, SpeculateBlock, &ProgramEntry);
118 Mutator.SetInsertPoint(SpeculateBlock);
120 Mutator.CreatePtrToInt(&Fn, Type::getInt64Ty(MContext));
121 Mutator.CreateCall(RuntimeCallTy, RuntimeCall,
123 Mutator.CreateStore(ConstantInt::get(LoadValueTy, 1),
125 Mutator
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerMutate.h99 struct Mutator { struct in class:fuzzer::MutationDispatcher
107 std::vector<Mutator> &Mutators);
149 std::vector<Mutator> Mutators;
150 std::vector<Mutator> DefaultMutators;
151 std::vector<Mutator> CurrentMutatorSequence;
H A DFuzzerMutate.cpp543 std::vector<Mutator> &Mutators) {
/openbsd-current/gnu/llvm/llvm/tools/llvm-isel-fuzzer/
H A Dllvm-isel-fuzzer.cpp51 static std::unique_ptr<IRMutator> Mutator; variable
76 Mutator->mutateModule(*M, Seed, Size, MaxSize);
165 Mutator = createISelMutator();
/openbsd-current/gnu/llvm/llvm/tools/llvm-opt-fuzzer/
H A Dllvm-opt-fuzzer.cpp40 static std::unique_ptr<IRMutator> Mutator; variable
62 assert(Mutator &&
72 Mutator->mutateModule(*M, Seed, Size, MaxSize);
251 Mutator = createOptMutator();
/openbsd-current/gnu/llvm/compiler-rt/lib/fuzzer/tests/
H A DFuzzerUnittest.cpp115 typedef size_t (MutationDispatcher::*Mutator)(uint8_t *Data, size_t Size, typedef
118 void TestEraseBytes(Mutator M, int NumIter) {
172 void TestInsertByte(Mutator M, int NumIter) {
208 void TestInsertRepeatedBytes(Mutator M, int NumIter) {
253 void TestChangeByte(Mutator M, int NumIter) {
289 void TestChangeBit(Mutator M, int NumIter) {
325 void TestShuffleBytes(Mutator M, int NumIter) {
355 void TestCopyPart(Mutator M, int NumIter) {
418 void TestAddWordFromDictionary(Mutator M, int NumIter) {
460 void TestChangeASCIIInteger(Mutator
[all...]

Completed in 227 milliseconds