Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp96 const std::pair<unsigned, LLT> &Mutation) { in hasNoSimpleLoops() argument
106 return Q.Types[Mutation.first] != Mutation.second; in hasNoSimpleLoops()
114 std::pair<unsigned, LLT> Mutation) { in mutationIsSane() argument
121 if (!Mutation.second.isValid()) in mutationIsSane()
124 const unsigned TypeIdx = Mutation.first; in mutationIsSane()
126 const LLT NewTy = Mutation.second; in mutationIsSane()
197 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); in apply() local
199 << Mutation.first << ", " << Mutation.second << "\n"); in apply()
200 assert(mutationIsSane(Rule, Query, Mutation) && in apply()
202 assert(hasNoSimpleLoops(Rule, Query, Mutation) && "Simple loop detected"); in apply()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h402 LegalizeMutation Mutation; variable
406 LegalizeMutation Mutation = nullptr)
407 : Predicate(Predicate), Action(Action), Mutation(Mutation) {} in Predicate()
418 if (Mutation) in determineMutation()
419 return Mutation(Query); in determineMutation()
480 LegalizeMutation Mutation) { in actionIf() argument
481 add({Predicate, Action, Mutation}); in actionIf()
495 LegalizeMutation Mutation) { in actionFor() argument
497 return actionIf(Action, typeInSet(typeIdx(0), Types), Mutation); in actionFor()
512 LegalizeMutation Mutation) { in actionFor() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDFAPacketizer.h65 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
66 Mutations.push_back(std::move(Mutation)); in addMutation()
213 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
H A DMachineScheduler.h328 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
329 if (Mutation) in addMutation()
330 Mutations.push_back(std::move(Mutation)); in addMutation()
H A DMachinePipeliner.h289 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
290 Mutations.push_back(std::move(Mutation)); in addMutation()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp287 std::unique_ptr<ScheduleDAGMutation> Mutation) { in addMutation() argument
288 VLIWScheduler->addMutation(std::move(Mutation)); in addMutation()