diff options
author | Aditya Nandakumar <aditya_nandakumar@apple.com> | 2017-04-19 20:48:50 +0000 |
---|---|---|
committer | Aditya Nandakumar <aditya_nandakumar@apple.com> | 2017-04-19 20:48:50 +0000 |
commit | 75ad9ccbfafdf7ddfebe3b7afee6e5458f13b939 (patch) | |
tree | 98ee3376224b8e7498033c98ed0a9d2a0728d27d /llvm/lib/CodeGen/GlobalISel/Utils.cpp | |
parent | 19a6dddd6de7a1f4aecaad954765f8cbf561fcdc (diff) | |
download | bcm5719-llvm-75ad9ccbfafdf7ddfebe3b7afee6e5458f13b939.tar.gz bcm5719-llvm-75ad9ccbfafdf7ddfebe3b7afee6e5458f13b939.zip |
[GISEL]: Move getConstantVReg to Utils
NFCI
llvm-svn: 300751
Diffstat (limited to 'llvm/lib/CodeGen/GlobalISel/Utils.cpp')
-rw-r--r-- | llvm/lib/CodeGen/GlobalISel/Utils.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/Utils.cpp b/llvm/lib/CodeGen/GlobalISel/Utils.cpp index 606a59680a3..3c93f8123b0 100644 --- a/llvm/lib/CodeGen/GlobalISel/Utils.cpp +++ b/llvm/lib/CodeGen/GlobalISel/Utils.cpp @@ -18,6 +18,7 @@ #include "llvm/CodeGen/MachineOptimizationRemarkEmitter.h" #include "llvm/CodeGen/MachineRegisterInfo.h" #include "llvm/CodeGen/TargetPassConfig.h" +#include "llvm/IR/Constants.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetRegisterInfo.h" @@ -93,3 +94,19 @@ void llvm::reportGISelFailure(MachineFunction &MF, const TargetPassConfig &TPC, R << Msg << ": " << ore::MNV("Inst", MI); reportGISelFailure(MF, TPC, MORE, R); } + +Optional<int64_t> llvm::getConstantVRegVal(unsigned VReg, + const MachineRegisterInfo &MRI) { + MachineInstr *MI = MRI.getVRegDef(VReg); + if (MI->getOpcode() != TargetOpcode::G_CONSTANT) + return None; + + if (MI->getOperand(1).isImm()) + return MI->getOperand(1).getImm(); + + if (MI->getOperand(1).isCImm() && + MI->getOperand(1).getCImm()->getBitWidth() <= 64) + return MI->getOperand(1).getCImm()->getSExtValue(); + + return None; +} |