[llvm] r213891 - Replace an assertion with a fatal error

Reid Kleckner reid at kleckner.net
Thu Jul 24 12:53:34 PDT 2014


Author: rnk
Date: Thu Jul 24 14:53:33 2014
New Revision: 213891

URL: http://llvm.org/viewvc/llvm-project?rev=213891&view=rev
Log:
Replace an assertion with a fatal error

Frontends are responsible for putting inalloca on parameters that would
be passed in memory and not registers.

Added:
    llvm/trunk/test/CodeGen/X86/inalloca-regparm.ll
Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=213891&r1=213890&r2=213891&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Thu Jul 24 14:53:33 2014
@@ -2680,8 +2680,12 @@ X86TargetLowering::LowerCall(TargetLower
   // arguments passed in memory when using inalloca.
   if (!Outs.empty() && Outs.back().Flags.isInAlloca()) {
     NumBytesToPush = 0;
-    assert(ArgLocs.back().getLocMemOffset() == 0 &&
-           "an inalloca argument must be the only memory argument");
+    if (!ArgLocs.back().isMemLoc())
+      report_fatal_error("cannot use inalloca attribute on a register "
+                         "parameter");
+    if (ArgLocs.back().getLocMemOffset() != 0)
+      report_fatal_error("any parameter with the inalloca attribute must be "
+                         "the only memory argument");
   }
 
   if (!IsSibcall)

Added: llvm/trunk/test/CodeGen/X86/inalloca-regparm.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/inalloca-regparm.ll?rev=213891&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/X86/inalloca-regparm.ll (added)
+++ llvm/trunk/test/CodeGen/X86/inalloca-regparm.ll Thu Jul 24 14:53:33 2014
@@ -0,0 +1,15 @@
+; RUN: llc -mtriple=i686-windows-msvc < %s -o /dev/null
+; RUN: not llc -mtriple=x86_64-windows-msvc %s -o /dev/null 2>&1 | FileCheck %s
+
+; This will compile successfully on x86 but not x86_64, because %b will become a
+; register parameter.
+
+declare x86_thiscallcc i32 @f(i32 %a, i32* inalloca %b)
+define void @g() {
+  %b = alloca inalloca i32
+  store i32 2, i32* %b
+  call x86_thiscallcc i32 @f(i32 0, i32* inalloca %b)
+  ret void
+}
+
+; CHECK: cannot use inalloca attribute on a register parameter





More information about the llvm-commits mailing list