File: nosimplifylatch.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-6~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,418,812 kB
  • sloc: cpp: 5,290,827; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,900; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,892; xml: 953; cs: 573; fortran: 539
file content (34 lines) | stat: -rw-r--r-- 1,569 bytes parent folder | download | duplicates (22)
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
; RUN: opt -S < %s -loop-rotate -licm -verify-dom-info -verify-loop-info | FileCheck %s
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
target triple = "arm64-apple-ios8.0.0"

;CHECK: for.inc:
;CHECK-NEXT: %incdec.ptr.i = getelementptr 

; Function Attrs: alwaysinline inlinehint nounwind readonly ssp
define linkonce_odr hidden i64 @_ZNSt3__14findINS_11__wrap_iterIPiEEiEET_S4_S4_RKT0_(i64 %__first.coerce, i64 %__last.coerce, i32* nocapture readonly dereferenceable(4) %__value_) {
entry:
  %coerce.val.ip = inttoptr i64 %__first.coerce to i32*
  %coerce.val.ip2 = inttoptr i64 %__last.coerce to i32*
  br label %for.cond

for.cond:                                         ; preds = %for.inc, %entry
  %coerce.val.ip9 = phi i32* [ %incdec.ptr.i, %for.inc ], [ %coerce.val.ip, %entry ]
  %lnot.i = icmp eq i32* %coerce.val.ip9, %coerce.val.ip2
  br i1 %lnot.i, label %for.end, label %for.body

for.body:                                         ; preds = %for.cond
  %0 = load i32, i32* %coerce.val.ip9, align 4
  %1 = load i32, i32* %__value_, align 4
  %cmp = icmp eq i32 %0, %1
  br i1 %cmp, label %for.end, label %for.inc

for.inc:                                          ; preds = %for.body
  %incdec.ptr.i = getelementptr inbounds i32, i32* %coerce.val.ip9, i64 1
  br label %for.cond

for.end:                                          ; preds = %for.cond, %for.body
  %coerce.val.ip9.lcssa = phi i32* [ %coerce.val.ip9, %for.cond ], [ %coerce.val.ip9, %for.body ]
  %coerce.val.pi = ptrtoint i32* %coerce.val.ip9.lcssa to i64
  ret i64 %coerce.val.pi
}