[llvm-exegesis] Fix missing std::move.
[llvm-complete.git] / lib / CodeGen / GlobalISel / LegalizeMutations.cpp
bloba29b32ecdc03a2b50d852c8d7a14174c3e925b79
1 //===- lib/CodeGen/GlobalISel/LegalizerMutations.cpp - Mutations ----------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // A library of mutation factories to use for LegalityMutation.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/CodeGen/GlobalISel/LegalizerInfo.h"
16 using namespace llvm;
18 LegalizeMutation LegalizeMutations::changeTo(unsigned TypeIdx, LLT Ty) {
19 return
20 [=](const LegalityQuery &Query) { return std::make_pair(TypeIdx, Ty); };
23 LegalizeMutation LegalizeMutations::changeTo(unsigned TypeIdx,
24 unsigned FromTypeIdx) {
25 return [=](const LegalityQuery &Query) {
26 return std::make_pair(TypeIdx, Query.Types[FromTypeIdx]);
30 LegalizeMutation LegalizeMutations::widenScalarToNextPow2(unsigned TypeIdx,
31 unsigned Min) {
32 return [=](const LegalityQuery &Query) {
33 unsigned NewSizeInBits =
34 1 << Log2_32_Ceil(Query.Types[TypeIdx].getSizeInBits());
35 if (NewSizeInBits < Min)
36 NewSizeInBits = Min;
37 return std::make_pair(TypeIdx, LLT::scalar(NewSizeInBits));
41 LegalizeMutation LegalizeMutations::moreElementsToNextPow2(unsigned TypeIdx,
42 unsigned Min) {
43 return [=](const LegalityQuery &Query) {
44 const LLT &VecTy = Query.Types[TypeIdx];
45 unsigned NewNumElements = 1 << Log2_32_Ceil(VecTy.getNumElements());
46 if (NewNumElements < Min)
47 NewNumElements = Min;
48 return std::make_pair(
49 TypeIdx, LLT::vector(NewNumElements, VecTy.getScalarSizeInBits()));