From 10fde8b13b099edd8d1a7c5e2e9d027d9b5a9555 Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Fri, 10 Feb 2017 19:10:38 +0000 Subject: [PATCH] GlobalISel: drop lifetime intrinsics during translation. We don't use them yet and they just cause problems. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294770 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/GlobalISel/IRTranslator.cpp | 8 ++++++++ test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll | 11 +++++++++++ 2 files changed, 19 insertions(+) diff --git a/lib/CodeGen/GlobalISel/IRTranslator.cpp b/lib/CodeGen/GlobalISel/IRTranslator.cpp index 361efe6c1d6..97292dc5bd7 100644 --- a/lib/CodeGen/GlobalISel/IRTranslator.cpp +++ b/lib/CodeGen/GlobalISel/IRTranslator.cpp @@ -555,6 +555,14 @@ bool IRTranslator::translateKnownIntrinsic(const CallInst &CI, Intrinsic::ID ID, switch (ID) { default: break; + case Intrinsic::lifetime_start: + case Intrinsic::lifetime_end: + // Stack coloring is not enabled in O0 (which we care about now) so we can + // drop these. Make sure someone notices when we start compiling at higher + // opts though. + if (MF->getTarget().getOptLevel() != CodeGenOpt::None) + return false; + return true; case Intrinsic::dbg_declare: { const DbgDeclareInst &DI = cast(CI); assert(DI.getVariable() && "Missing variable"); diff --git a/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll b/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll index e658a09858d..acb342af9a5 100644 --- a/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll +++ b/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll @@ -1144,3 +1144,14 @@ define float @test_pow_intrin(float %l, float %r) { %res = call float @llvm.pow.f32(float %l, float %r) ret float %res } + +declare void @llvm.lifetime.start(i64, i8*) +declare void @llvm.lifetime.end(i64, i8*) +define void @test_lifetime_intrin() { +; CHECK-LABEL: name: test_lifetime_intrin +; CHECK: RET_ReallyLR + %slot = alloca i8, i32 4 + call void @llvm.lifetime.start(i64 0, i8* %slot) + call void @llvm.lifetime.end(i64 0, i8* %slot) + ret void +} -- 2.11.0