File: LeonCASAInstructionUT.ll

package info (click to toggle)
llvm-toolchain-16 1%3A16.0.6-15~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,634,792 kB
  • sloc: cpp: 6,179,261; ansic: 1,216,205; asm: 741,319; python: 196,614; objc: 75,325; f90: 49,640; lisp: 32,396; pascal: 12,286; sh: 9,394; perl: 7,442; ml: 5,494; awk: 3,523; makefile: 2,723; javascript: 1,206; xml: 886; fortran: 581; cs: 573
file content (31 lines) | stat: -rw-r--r-- 1,593 bytes parent folder | download | duplicates (16)
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
; RUN: llc %s -O0 -march=sparc -mcpu=leon3 -mattr=+hasleoncasa -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=gr712rc -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=leon4 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=gr740 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=myriad2 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=myriad2.1 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=myriad2.2 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=myriad2.3 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2100 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2150 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2155 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2450 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2455 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2x5x -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2080 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2085 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2480 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2485 -o - | FileCheck %s
; RUN: llc %s -O0 -march=sparc -mcpu=ma2x8x -o - | FileCheck %s

; CHECK-LABEL: casa_test
; CHECK-DAG:   mov 1, [[R0:%[a-z0-9]+]]
; CHECK-DAG:   mov %g0, [[R1:%[a-z0-9]+]]
; CHECK:       casa [{{%[a-z0-9]+}}] 10, [[R1]], [[R0]]
define void @casa_test(i32* %ptr) {
  %pair = cmpxchg i32* %ptr, i32 0, i32 1 monotonic monotonic
  %r = extractvalue { i32, i1 } %pair, 0
  %stored1  = icmp eq i32 %r, 0

  ret void
}