File: ifcvt-regmask-noreturn.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (45 lines) | stat: -rw-r--r-- 1,651 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
; RUN: llc %s -o - -verify-machineinstrs | FileCheck %s

target datalayout = "e-m:o-p:32:32-f64:32:64-v64:32:64-v128:32:128-a:0:32-n32-S32"
target triple = "thumbv7s-apple-ios8.0.0"

@debw = external global i8*, align 4

; This test ensures that the stack_chk call correctly puts implicit uses/defs for the registers
; live across it when if converting.  This will be R0 which is passed to the call to free at the end
; of the function.
; Prior to this change, the stack_chk call (which does not return) would clobber R0 in its regmask,
; leading to verifier errors because the later use of R0 in free() is not live.

; CHECK-LABEL: @test
; CHECK: stack_chk_fail

; Function Attrs: ssp
define void @test(i32 %argc, i8** nocapture readonly %argv, i32* %ptr, i32 %val) #0 {
entry:
  %count.i = alloca [256 x i32], align 4
  %cmp284.i = icmp eq i32 %val, 0
  br i1 %cmp284.i, label %for.end31.i, label %for.body21.i

for.body21.i:                                     ; preds = %entry
  %arrayidx23.i = getelementptr inbounds [256 x i32], [256 x i32]* %count.i, i32 0, i32 1
  %tmp20 = load i32, i32* %arrayidx23.i, align 4, !tbaa !0
  store i32 %tmp20, i32* %ptr, align 4, !tbaa !0
  br label %for.end31.i

for.end31.i:                                      ; preds = %for.body21.i, %entry
  %tmp21 = load i8*, i8** @debw, align 4, !tbaa !4
  tail call void @free(i8* %tmp21)
  ret void
}

declare void @free(i8* nocapture)

attributes #0 = { ssp "stack-protector-buffer-size"="8" }

!0 = !{!1, !1, i64 0}
!1 = !{!"int", !2, i64 0}
!2 = !{!"omnipotent char", !3, i64 0}
!3 = !{!"Simple C/C++ TBAA"}
!4 = !{!5, !5, i64 0}
!5 = !{!"any pointer", !2, i64 0}