diff options
author | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2017-03-07 20:53:09 +0000 |
---|---|---|
committer | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2017-03-07 20:53:09 +0000 |
commit | 55d10423a6a1f8286be05651b9c7143ef4e58b22 (patch) | |
tree | 8c70e722e9867bedf2b18445d688095cce13784a /llvm/lib/CodeGen | |
parent | 5c7924fca51e0580bba5d9103b43558889a149bb (diff) | |
download | bcm5719-llvm-55d10423a6a1f8286be05651b9c7143ef4e58b22.tar.gz bcm5719-llvm-55d10423a6a1f8286be05651b9c7143ef4e58b22.zip |
[GlobalISel] Don't translate intrinsics with metadata parameters.
Some intrinsics take metadata parameters. These all need custom
handling of some form, and cannot possibly be lowered generically to
G_INTRINSIC calls with vreg operands.
Reject them, instead of hitting an assert later in getOrCreateVReg.
llvm-svn: 297209
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp b/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp index 1a70947a4aa..869589b9aa7 100644 --- a/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp +++ b/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp @@ -745,6 +745,9 @@ bool IRTranslator::translateCall(const User &U, MachineIRBuilder &MIRBuilder) { MIRBuilder.buildIntrinsic(ID, Res, !CI.doesNotAccessMemory()); for (auto &Arg : CI.arg_operands()) { + // Some intrinsics take metadata parameters. Reject them. + if (isa<MetadataAsValue>(Arg)) + return false; if (ConstantInt *CI = dyn_cast<ConstantInt>(Arg)) MIB.addImm(CI->getSExtValue()); else |