File: umulo-128-legalisation-lowering.ll

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (48 lines) | stat: -rw-r--r-- 1,682 bytes parent folder | download | duplicates (2)
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
46
47
48
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=aarch64-unknown-linux-gnu | FileCheck %s --check-prefixes=AARCH

define { i128, i8 } @muloti_test(i128 %l, i128 %r) unnamed_addr #0 {
; AARCH-LABEL: muloti_test:
; AARCH:       // %bb.0: // %start
; AARCH-NEXT:    mul x8, x3, x0
; AARCH-NEXT:    umulh x9, x0, x2
; AARCH-NEXT:    madd x11, x1, x2, x8
; AARCH-NEXT:    add x8, x9, x11
; AARCH-NEXT:    cmp x8, x9
; AARCH-NEXT:    cset w9, lo
; AARCH-NEXT:    cmp x11, #0 // =0
; AARCH-NEXT:    csel w9, wzr, w9, eq
; AARCH-NEXT:    cmp x3, #0 // =0
; AARCH-NEXT:    umulh x10, x1, x2
; AARCH-NEXT:    cset w12, ne
; AARCH-NEXT:    cmp x1, #0 // =0
; AARCH-NEXT:    umulh x11, x3, x0
; AARCH-NEXT:    cset w13, ne
; AARCH-NEXT:    cmp xzr, x10
; AARCH-NEXT:    and w10, w13, w12
; AARCH-NEXT:    cset w12, ne
; AARCH-NEXT:    cmp xzr, x11
; AARCH-NEXT:    orr w10, w10, w12
; AARCH-NEXT:    cset w11, ne
; AARCH-NEXT:    orr w10, w10, w11
; AARCH-NEXT:    orr w9, w10, w9
; AARCH-NEXT:    mul x0, x0, x2
; AARCH-DAG:    mov x1, x8
; AARCH-DAG:    mov w2, w9
; AARCH-NEXT:    ret
start:
  %0 = tail call { i128, i1 } @llvm.umul.with.overflow.i128(i128 %l, i128 %r) #2
  %1 = extractvalue { i128, i1 } %0, 0
  %2 = extractvalue { i128, i1 } %0, 1
  %3 = zext i1 %2 to i8
  %4 = insertvalue { i128, i8 } undef, i128 %1, 0
  %5 = insertvalue { i128, i8 } %4, i8 %3, 1
  ret { i128, i8 } %5
}

; Function Attrs: nounwind readnone speculatable
declare { i128, i1 } @llvm.umul.with.overflow.i128(i128, i128) #1

attributes #0 = { nounwind readnone uwtable }
attributes #1 = { nounwind readnone speculatable }
attributes #2 = { nounwind }