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

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h329 LegalizeMutation Mutation;
333 LegalizeMutation Mutation = nullptr)
334 : Predicate(Predicate), Action(Action), Mutation(Mutation) {}
345 if (Mutation)
346 return Mutation(Query);
417 LegalizeMutation Mutation) {
418 add({Predicate, Action, Mutation});
432 LegalizeMutation Mutation) {
434 return actionIf(Action, typeInSet(typeIdx(0), Types), Mutation);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DDFAPacketizer.cpp118 /// DefaultVLIWScheduler takes ownership of the Mutation object.
119 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { argument
120 Mutations.push_back(std::move(Mutation));
316 std::unique_ptr<ScheduleDAGMutation> Mutation) {
317 VLIWScheduler->addMutation(std::move(Mutation));
315 addMutation( std::unique_ptr<ScheduleDAGMutation> Mutation) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerInfo.cpp106 const std::pair<unsigned, LLT> &Mutation) {
114 return Q.Types[Mutation.first] != Mutation.second;
122 std::pair<unsigned, LLT> Mutation) {
128 const unsigned TypeIdx = Mutation.first;
130 const LLT NewTy = Mutation.second;
198 std::pair<unsigned, LLT> Mutation = Rule.determineMutation(Query); local
200 << Mutation.first << ", " << Mutation.second << "\n");
201 assert(mutationIsSane(Rule, Query, Mutation)
105 hasNoSimpleLoops(const LegalizeRule &Rule, const LegalityQuery &Q, const std::pair<unsigned, LLT> &Mutation) argument
120 mutationIsSane(const LegalizeRule &Rule, const LegalityQuery &Q, std::pair<unsigned, LLT> Mutation) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DDFAPacketizer.h188 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation);
H A DMachineScheduler.h316 /// ScheduleDAGMI takes ownership of the Mutation object.
317 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { argument
318 if (Mutation)
319 Mutations.push_back(std::move(Mutation));
H A DMachinePipeliner.h281 void addMutation(std::unique_ptr<ScheduleDAGMutation> Mutation) { argument
282 Mutations.push_back(std::move(Mutation));

Completed in 266 milliseconds