Home
last modified time | relevance | path

Searched refs:Mutation (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/
Dmutation.cc25 Mutation::~Mutation() = default;
27 std::unique_ptr<Mutation> Mutation::FromMessage( in FromMessage()
28 const protobufs::Mutation& message) { in FromMessage()
30 case protobufs::Mutation::kReplaceIdentifier: in FromMessage()
33 case protobufs::Mutation::MUTATION_NOT_SET: in FromMessage()
Dmutation.h37 class Mutation {
40 virtual ~Mutation();
70 virtual protobufs::Mutation ToMessage() const = 0;
76 static std::unique_ptr<Mutation> FromMessage(
77 const protobufs::Mutation& message);
80 using MutationList = std::vector<std::unique_ptr<Mutation>>;
Dmutator.cc57 const Mutation& mutation, in MaybeApplyMutation()
98 auto mutation = Mutation::FromMessage(mutation_message); in Replay()
Dmutator.h55 const Mutation& mutation,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
DLegalizerInfo.h296 LegalizeMutation Mutation; variable
300 LegalizeMutation Mutation = nullptr)
301 : Predicate(Predicate), Action(Action), Mutation(Mutation) {} in Predicate()
312 if (Mutation) in determineMutation()
313 return Mutation(Query); in determineMutation()
384 LegalizeMutation Mutation) { in actionIf() argument
385 add({Predicate, Action, Mutation}); in actionIf()
399 LegalizeMutation Mutation) { in actionFor() argument
401 return actionIf(Action, typeInSet(typeIdx(0), Types), Mutation); in actionFor()
416 LegalizeMutation Mutation) { in actionFor() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DLegalizerInfo.cpp103 const std::pair<unsigned, LLT> &Mutation) { in hasNoSimpleLoops() argument
111 return Q.Types[Mutation.first] != Mutation.second; in hasNoSimpleLoops()
119 std::pair<unsigned, LLT> Mutation) { in mutationIsSane() argument
125 const unsigned TypeIdx = Mutation.first; in mutationIsSane()
127 const LLT NewTy = Mutation.second; in mutationIsSane()
192 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); in apply() local
194 << Mutation.first << ", " << Mutation.second << "\n"); in apply()
195 assert(mutationIsSane(Rule, Query, Mutation) && in apply()
197 assert(hasNoSimpleLoops(Rule, Query, Mutation) && "Simple loop detected"); in apply()
198 return {Rule.getAction(), Mutation.first, Mutation.second}; in apply()
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/mutations/
Dreplace_identifier.h27 class MutationReplaceIdentifier : public Mutation {
67 protobufs::Mutation ToMessage() const override;
Dreplace_identifier.cc98 protobufs::Mutation MutationReplaceIdentifier::ToMessage() const { in ToMessage()
99 protobufs::Mutation mutation; in ToMessage()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DDFAPacketizer.cpp119 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
120 Mutations.push_back(std::move(Mutation)); in addMutation()
316 std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
317 VLIWScheduler->addMutation(std::move(Mutation)); in addMutation()
/third_party/skia/third_party/externals/tint/fuzzers/tint_ast_fuzzer/protobufs/
Dtint_ast_fuzzer.proto19 message Mutation { message
24 repeated Mutation mutation = 1;
/third_party/protobuf/objectivec/Tests/
DGPBWellKnownTypesTest.m85 // Test Mutation - date.
99 // Test Mutation - timeIntervalSince1970.
140 // Test Mutation.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DDFAPacketizer.h188 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
DMachineScheduler.h314 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
315 if (Mutation) in addMutation()
316 Mutations.push_back(std::move(Mutation)); in addMutation()
DMachinePipeliner.h278 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
279 Mutations.push_back(std::move(Mutation)); in addMutation()
/third_party/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc1513 TEST_F(RepeatedFieldIteratorTest, Mutation) { in TEST_F() argument
1640 TEST_F(RepeatedPtrFieldIteratorTest, Mutation) { in TEST_F() argument