[PATCH] D90258: [InstCombine] Do not introduce bitcasts for swifterror arguments.

Florian Hahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 27 12:29:37 PDT 2020


fhahn updated this revision to Diff 301083.
fhahn added a comment.

Add proper RUN & CHECK lines to test.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D90258/new/

https://reviews.llvm.org/D90258

Files:
  llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
  llvm/test/Transforms/InstCombine/swifterror-argument-bitcast-fold.ll


Index: llvm/test/Transforms/InstCombine/swifterror-argument-bitcast-fold.ll
===================================================================
--- /dev/null
+++ llvm/test/Transforms/InstCombine/swifterror-argument-bitcast-fold.ll
@@ -0,0 +1,18 @@
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
+; RUN: opt -instcombine -S %s | FileCheck %s
+
+; The swifterror value can only be loaded, stored or used as swifterror
+; argument. Make sure we do not try to turn the function bitcast into an
+; argument bitcast.
+define swiftcc void @spam(i32** swifterror %arg) {
+; CHECK-LABEL: @spam(
+; CHECK-NEXT:  bb:
+; CHECK-NEXT:    call swiftcc void bitcast (void (i64**)* @widget to void (i32**)*)(i32** swifterror [[ARG:%.*]])
+; CHECK-NEXT:    ret void
+;
+bb:
+  call swiftcc void bitcast (void (i64**)* @widget to void (i32**)*)(i32** swifterror %arg)
+  ret void
+}
+
+declare swiftcc void @widget(i64**)
Index: llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
===================================================================
--- llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
+++ llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
@@ -2126,6 +2126,9 @@
     if (Call.isInAllocaArgument(i))
       return false;   // Cannot transform to and from inalloca.
 
+    if (CallerPAL.hasParamAttribute(i, Attribute::SwiftError))
+      return false;
+
     // If the parameter is passed as a byval argument, then we have to have a
     // sized type and the sized type has to have the same size as the old type.
     if (ParamTy != ActTy && CallerPAL.hasParamAttribute(i, Attribute::ByVal)) {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D90258.301083.patch
Type: text/x-patch
Size: 1627 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20201027/a7c63b2b/attachment.bin>


More information about the llvm-commits mailing list