reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
39 auto RS = makeSampler<Function *>(IB.Rand); 47 mutate(*makeSampler(IB.Rand, make_pointer_range(F)).getSelection(), IB); 51 mutate(*makeSampler(IB.Rand, make_pointer_range(BB)).getSelection(), IB); 61 auto RS = makeSampler<IRMutationStrategy *>(IB.Rand); 100 auto RS = makeSampler(IB.Rand, make_filter_range(Operations, OpMatchesPred)); 114 size_t IP = uniform<size_t>(IB.Rand, 0, Insts.size() - 1); 154 auto RS = makeSampler<Instruction *>(IB.Rand); 185 auto RS = makeSampler<Value *>(IB.Rand);lib/FuzzMutate/RandomIRBuilder.cpp
33 auto RS = makeSampler(Rand, make_filter_range(Insts, MatchesPred)); 44 auto RS = makeSampler<Value *>(Rand); 97 auto RS = makeSampler<Use *>(Rand); 124 if (uniform(Rand, 0, 1)) 153 if (auto RS = makeSampler(Rand, make_filter_range(Insts, IsMatchingPtr)))