File: opaque-ptr.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 1,998,492 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (34 lines) | stat: -rw-r--r-- 1,225 bytes parent folder | download | duplicates (10)
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
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -S -passes=mergeicmps < %s | FileCheck %s

target triple = "x86_64-unknown-unknown"

%S = type { i32, i32 }

define i1 @test(ptr dereferenceable(8) %a, ptr dereferenceable(8) %b) {
; CHECK-LABEL: @test(
; CHECK-NEXT:  "entry+land.rhs.i":
; CHECK-NEXT:    [[MEMCMP:%.*]] = call i32 @memcmp(ptr [[A:%.*]], ptr [[B:%.*]], i64 8)
; CHECK-NEXT:    [[TMP0:%.*]] = icmp eq i32 [[MEMCMP]], 0
; CHECK-NEXT:    br label [[OPEQ1_EXIT:%.*]]
; CHECK:       opeq1.exit:
; CHECK-NEXT:    ret i1 [[TMP0]]
;
entry:
  %v0 = load i32, ptr %a, align 4
  %v1 = load i32, ptr %b, align 4
  %cmp.i = icmp eq i32 %v0, %v1
  br i1 %cmp.i, label %land.rhs.i, label %opeq1.exit

land.rhs.i:                                       ; preds = %entry
  %second.i = getelementptr inbounds %S, ptr %a, i64 0, i32 1
  %v2 = load i32, ptr %second.i, align 4
  %second2.i = getelementptr inbounds %S, ptr %b, i64 0, i32 1
  %v3 = load i32, ptr %second2.i, align 4
  %cmp3.i = icmp eq i32 %v2, %v3
  br label %opeq1.exit

opeq1.exit:                                       ; preds = %land.rhs.i, %entry
  %phi = phi i1 [ false, %entry ], [ %cmp3.i, %land.rhs.i ]
  ret i1 %phi
}