form-memset.ll 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. ; RUN: opt < %s -memcpyopt -S | FileCheck %s
  2. ; All the stores in this example should be merged into a single memset.
  3. target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
  4. target triple = "i386-apple-darwin8"
  5. define void @test1(i8 signext %c) nounwind {
  6. entry:
  7. %x = alloca [19 x i8] ; <[19 x i8]*> [#uses=20]
  8. %tmp = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 0 ; <i8*> [#uses=1]
  9. store i8 %c, i8* %tmp, align 1
  10. %tmp5 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 1 ; <i8*> [#uses=1]
  11. store i8 %c, i8* %tmp5, align 1
  12. %tmp9 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 2 ; <i8*> [#uses=1]
  13. store i8 %c, i8* %tmp9, align 1
  14. %tmp13 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 3 ; <i8*> [#uses=1]
  15. store i8 %c, i8* %tmp13, align 1
  16. %tmp17 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 4 ; <i8*> [#uses=1]
  17. store i8 %c, i8* %tmp17, align 1
  18. %tmp21 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 5 ; <i8*> [#uses=1]
  19. store i8 %c, i8* %tmp21, align 1
  20. %tmp25 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 6 ; <i8*> [#uses=1]
  21. store i8 %c, i8* %tmp25, align 1
  22. %tmp29 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 7 ; <i8*> [#uses=1]
  23. store i8 %c, i8* %tmp29, align 1
  24. %tmp33 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 8 ; <i8*> [#uses=1]
  25. store i8 %c, i8* %tmp33, align 1
  26. %tmp37 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 9 ; <i8*> [#uses=1]
  27. store i8 %c, i8* %tmp37, align 1
  28. %tmp41 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 10 ; <i8*> [#uses=1]
  29. store i8 %c, i8* %tmp41, align 1
  30. %tmp45 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 11 ; <i8*> [#uses=1]
  31. store i8 %c, i8* %tmp45, align 1
  32. %tmp49 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 12 ; <i8*> [#uses=1]
  33. store i8 %c, i8* %tmp49, align 1
  34. %tmp53 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 13 ; <i8*> [#uses=1]
  35. store i8 %c, i8* %tmp53, align 1
  36. %tmp57 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 14 ; <i8*> [#uses=1]
  37. store i8 %c, i8* %tmp57, align 1
  38. %tmp61 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 15 ; <i8*> [#uses=1]
  39. store i8 %c, i8* %tmp61, align 1
  40. %tmp65 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 16 ; <i8*> [#uses=1]
  41. store i8 %c, i8* %tmp65, align 1
  42. %tmp69 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 17 ; <i8*> [#uses=1]
  43. store i8 %c, i8* %tmp69, align 1
  44. %tmp73 = getelementptr [19 x i8], [19 x i8]* %x, i32 0, i32 18 ; <i8*> [#uses=1]
  45. store i8 %c, i8* %tmp73, align 1
  46. %tmp76 = call i32 (...) @bar( [19 x i8]* %x ) nounwind
  47. ret void
  48. ; CHECK-LABEL: @test1(
  49. ; CHECK-NOT: store
  50. ; CHECK: call void @llvm.memset.p0i8.i64
  51. ; CHECK-NOT: store
  52. ; CHECK: ret
  53. }
  54. declare i32 @bar(...)
  55. %struct.MV = type { i16, i16 }
  56. define void @test2() nounwind {
  57. entry:
  58. %ref_idx = alloca [8 x i8] ; <[8 x i8]*> [#uses=8]
  59. %left_mvd = alloca [8 x %struct.MV] ; <[8 x %struct.MV]*> [#uses=17]
  60. %up_mvd = alloca [8 x %struct.MV] ; <[8 x %struct.MV]*> [#uses=17]
  61. %tmp20 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 7 ; <i8*> [#uses=1]
  62. store i8 -1, i8* %tmp20, align 1
  63. %tmp23 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 6 ; <i8*> [#uses=1]
  64. store i8 -1, i8* %tmp23, align 1
  65. %tmp26 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 5 ; <i8*> [#uses=1]
  66. store i8 -1, i8* %tmp26, align 1
  67. %tmp29 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 4 ; <i8*> [#uses=1]
  68. store i8 -1, i8* %tmp29, align 1
  69. %tmp32 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 3 ; <i8*> [#uses=1]
  70. store i8 -1, i8* %tmp32, align 1
  71. %tmp35 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 2 ; <i8*> [#uses=1]
  72. store i8 -1, i8* %tmp35, align 1
  73. %tmp38 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 1 ; <i8*> [#uses=1]
  74. store i8 -1, i8* %tmp38, align 1
  75. %tmp41 = getelementptr [8 x i8], [8 x i8]* %ref_idx, i32 0, i32 0 ; <i8*> [#uses=2]
  76. store i8 -1, i8* %tmp41, align 1
  77. %tmp43 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 7, i32 0 ; <i16*> [#uses=1]
  78. store i16 0, i16* %tmp43, align 2
  79. %tmp46 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 7, i32 1 ; <i16*> [#uses=1]
  80. store i16 0, i16* %tmp46, align 2
  81. %tmp57 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 6, i32 0 ; <i16*> [#uses=1]
  82. store i16 0, i16* %tmp57, align 2
  83. %tmp60 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 6, i32 1 ; <i16*> [#uses=1]
  84. store i16 0, i16* %tmp60, align 2
  85. %tmp71 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 5, i32 0 ; <i16*> [#uses=1]
  86. store i16 0, i16* %tmp71, align 2
  87. %tmp74 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 5, i32 1 ; <i16*> [#uses=1]
  88. store i16 0, i16* %tmp74, align 2
  89. %tmp85 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 4, i32 0 ; <i16*> [#uses=1]
  90. store i16 0, i16* %tmp85, align 2
  91. %tmp88 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 4, i32 1 ; <i16*> [#uses=1]
  92. store i16 0, i16* %tmp88, align 2
  93. %tmp99 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 3, i32 0 ; <i16*> [#uses=1]
  94. store i16 0, i16* %tmp99, align 2
  95. %tmp102 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 3, i32 1 ; <i16*> [#uses=1]
  96. store i16 0, i16* %tmp102, align 2
  97. %tmp113 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 2, i32 0 ; <i16*> [#uses=1]
  98. store i16 0, i16* %tmp113, align 2
  99. %tmp116 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 2, i32 1 ; <i16*> [#uses=1]
  100. store i16 0, i16* %tmp116, align 2
  101. %tmp127 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 1, i32 0 ; <i16*> [#uses=1]
  102. store i16 0, i16* %tmp127, align 2
  103. %tmp130 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 1, i32 1 ; <i16*> [#uses=1]
  104. store i16 0, i16* %tmp130, align 2
  105. %tmp141 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 0, i32 0 ; <i16*> [#uses=1]
  106. store i16 0, i16* %tmp141, align 8
  107. %tmp144 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 0, i32 1 ; <i16*> [#uses=1]
  108. store i16 0, i16* %tmp144, align 2
  109. %tmp148 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 7, i32 0 ; <i16*> [#uses=1]
  110. store i16 0, i16* %tmp148, align 2
  111. %tmp151 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 7, i32 1 ; <i16*> [#uses=1]
  112. store i16 0, i16* %tmp151, align 2
  113. %tmp162 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 6, i32 0 ; <i16*> [#uses=1]
  114. store i16 0, i16* %tmp162, align 2
  115. %tmp165 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 6, i32 1 ; <i16*> [#uses=1]
  116. store i16 0, i16* %tmp165, align 2
  117. %tmp176 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 5, i32 0 ; <i16*> [#uses=1]
  118. store i16 0, i16* %tmp176, align 2
  119. %tmp179 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 5, i32 1 ; <i16*> [#uses=1]
  120. store i16 0, i16* %tmp179, align 2
  121. %tmp190 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 4, i32 0 ; <i16*> [#uses=1]
  122. store i16 0, i16* %tmp190, align 2
  123. %tmp193 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 4, i32 1 ; <i16*> [#uses=1]
  124. store i16 0, i16* %tmp193, align 2
  125. %tmp204 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 3, i32 0 ; <i16*> [#uses=1]
  126. store i16 0, i16* %tmp204, align 2
  127. %tmp207 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 3, i32 1 ; <i16*> [#uses=1]
  128. store i16 0, i16* %tmp207, align 2
  129. %tmp218 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 2, i32 0 ; <i16*> [#uses=1]
  130. store i16 0, i16* %tmp218, align 2
  131. %tmp221 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 2, i32 1 ; <i16*> [#uses=1]
  132. store i16 0, i16* %tmp221, align 2
  133. %tmp232 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 1, i32 0 ; <i16*> [#uses=1]
  134. store i16 0, i16* %tmp232, align 2
  135. %tmp235 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 1, i32 1 ; <i16*> [#uses=1]
  136. store i16 0, i16* %tmp235, align 2
  137. %tmp246 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 0, i32 0 ; <i16*> [#uses=1]
  138. store i16 0, i16* %tmp246, align 8
  139. %tmp249 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 0, i32 1 ; <i16*> [#uses=1]
  140. store i16 0, i16* %tmp249, align 2
  141. %up_mvd252 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %up_mvd, i32 0, i32 0 ; <%struct.MV*> [#uses=1]
  142. %left_mvd253 = getelementptr [8 x %struct.MV], [8 x %struct.MV]* %left_mvd, i32 0, i32 0 ; <%struct.MV*> [#uses=1]
  143. call void @foo( %struct.MV* %up_mvd252, %struct.MV* %left_mvd253, i8* %tmp41 ) nounwind
  144. ret void
  145. ; CHECK-LABEL: @test2(
  146. ; CHECK-NOT: store
  147. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %tmp41, i8 -1, i64 8, i32 1, i1 false)
  148. ; CHECK-NOT: store
  149. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %0, i8 0, i64 32, i32 8, i1 false)
  150. ; CHECK-NOT: store
  151. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %1, i8 0, i64 32, i32 8, i1 false)
  152. ; CHECK-NOT: store
  153. ; CHECK: ret
  154. }
  155. declare void @foo(%struct.MV*, %struct.MV*, i8*)
  156. ; Store followed by memset.
  157. define void @test3(i32* nocapture %P) nounwind ssp {
  158. entry:
  159. %arrayidx = getelementptr inbounds i32, i32* %P, i64 1
  160. store i32 0, i32* %arrayidx, align 4
  161. %add.ptr = getelementptr inbounds i32, i32* %P, i64 2
  162. %0 = bitcast i32* %add.ptr to i8*
  163. tail call void @llvm.memset.p0i8.i64(i8* %0, i8 0, i64 11, i32 1, i1 false)
  164. ret void
  165. ; CHECK-LABEL: @test3(
  166. ; CHECK-NOT: store
  167. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %1, i8 0, i64 15, i32 4, i1 false)
  168. }
  169. ; store followed by memset, different offset scenario
  170. define void @test4(i32* nocapture %P) nounwind ssp {
  171. entry:
  172. store i32 0, i32* %P, align 4
  173. %add.ptr = getelementptr inbounds i32, i32* %P, i64 1
  174. %0 = bitcast i32* %add.ptr to i8*
  175. tail call void @llvm.memset.p0i8.i64(i8* %0, i8 0, i64 11, i32 1, i1 false)
  176. ret void
  177. ; CHECK-LABEL: @test4(
  178. ; CHECK-NOT: store
  179. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %1, i8 0, i64 15, i32 4, i1 false)
  180. }
  181. declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) nounwind
  182. ; Memset followed by store.
  183. define void @test5(i32* nocapture %P) nounwind ssp {
  184. entry:
  185. %add.ptr = getelementptr inbounds i32, i32* %P, i64 2
  186. %0 = bitcast i32* %add.ptr to i8*
  187. tail call void @llvm.memset.p0i8.i64(i8* %0, i8 0, i64 11, i32 1, i1 false)
  188. %arrayidx = getelementptr inbounds i32, i32* %P, i64 1
  189. store i32 0, i32* %arrayidx, align 4
  190. ret void
  191. ; CHECK-LABEL: @test5(
  192. ; CHECK-NOT: store
  193. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %1, i8 0, i64 15, i32 4, i1 false)
  194. }
  195. ;; Memset followed by memset.
  196. define void @test6(i32* nocapture %P) nounwind ssp {
  197. entry:
  198. %0 = bitcast i32* %P to i8*
  199. tail call void @llvm.memset.p0i8.i64(i8* %0, i8 0, i64 12, i32 1, i1 false)
  200. %add.ptr = getelementptr inbounds i32, i32* %P, i64 3
  201. %1 = bitcast i32* %add.ptr to i8*
  202. tail call void @llvm.memset.p0i8.i64(i8* %1, i8 0, i64 12, i32 1, i1 false)
  203. ret void
  204. ; CHECK-LABEL: @test6(
  205. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %2, i8 0, i64 24, i32 1, i1 false)
  206. }
  207. ; More aggressive heuristic
  208. ; rdar://9892684
  209. define void @test7(i32* nocapture %c) nounwind optsize {
  210. store i32 -1, i32* %c, align 4
  211. %1 = getelementptr inbounds i32, i32* %c, i32 1
  212. store i32 -1, i32* %1, align 4
  213. %2 = getelementptr inbounds i32, i32* %c, i32 2
  214. store i32 -1, i32* %2, align 4
  215. %3 = getelementptr inbounds i32, i32* %c, i32 3
  216. store i32 -1, i32* %3, align 4
  217. %4 = getelementptr inbounds i32, i32* %c, i32 4
  218. store i32 -1, i32* %4, align 4
  219. ; CHECK-LABEL: @test7(
  220. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %5, i8 -1, i64 20, i32 4, i1 false)
  221. ret void
  222. }
  223. %struct.test8 = type { [4 x i32] }
  224. define void @test8() {
  225. entry:
  226. %memtmp = alloca %struct.test8, align 16
  227. %0 = bitcast %struct.test8* %memtmp to <4 x i32>*
  228. store <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>, <4 x i32>* %0, align 16
  229. ret void
  230. ; CHECK-LABEL: @test8(
  231. ; CHECK: store <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>, <4 x i32>* %0, align 16
  232. }
  233. @test9buf = internal unnamed_addr global [16 x i64] zeroinitializer, align 16
  234. define void @test9() nounwind {
  235. store i8 -1, i8* bitcast ([16 x i64]* @test9buf to i8*), align 16
  236. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 1), align 1
  237. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 2), align 2
  238. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 3), align 1
  239. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 4), align 4
  240. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 5), align 1
  241. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 6), align 2
  242. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 7), align 1
  243. store i8 -1, i8* bitcast (i64* getelementptr inbounds ([16 x i64], [16 x i64]* @test9buf, i64 0, i64 1) to i8*), align 8
  244. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 9), align 1
  245. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 10), align 2
  246. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 11), align 1
  247. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 12), align 4
  248. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 13), align 1
  249. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 14), align 2
  250. store i8 -1, i8* getelementptr (i8, i8* bitcast ([16 x i64]* @test9buf to i8*), i64 15), align 1
  251. ret void
  252. ; CHECK-LABEL: @test9(
  253. ; CHECK: call void @llvm.memset.p0i8.i64(i8* bitcast ([16 x i64]* @test9buf to i8*), i8 -1, i64 16, i32 16, i1 false)
  254. }
  255. ; PR19092
  256. define void @test10(i8* nocapture %P) nounwind {
  257. tail call void @llvm.memset.p0i8.i64(i8* %P, i8 0, i64 42, i32 1, i1 false)
  258. tail call void @llvm.memset.p0i8.i64(i8* %P, i8 0, i64 23, i32 1, i1 false)
  259. ret void
  260. ; CHECK-LABEL: @test10(
  261. ; CHECK-NOT: memset
  262. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %P, i8 0, i64 42, i32 1, i1 false)
  263. ; CHECK-NOT: memset
  264. ; CHECK: ret void
  265. }
  266. ; Memset followed by odd store.
  267. define void @test11(i32* nocapture %P) nounwind ssp {
  268. entry:
  269. %add.ptr = getelementptr inbounds i32, i32* %P, i64 3
  270. %0 = bitcast i32* %add.ptr to i8*
  271. tail call void @llvm.memset.p0i8.i64(i8* %0, i8 1, i64 11, i32 1, i1 false)
  272. %arrayidx = getelementptr inbounds i32, i32* %P, i64 0
  273. %arrayidx.cast = bitcast i32* %arrayidx to i96*
  274. store i96 310698676526526814092329217, i96* %arrayidx.cast, align 4
  275. ret void
  276. ; CHECK-LABEL: @test11(
  277. ; CHECK-NOT: store
  278. ; CHECK: call void @llvm.memset.p0i8.i64(i8* %1, i8 1, i64 23, i32 4, i1 false)
  279. }