[ELF] Reorder SectionBase/InputSectionBase members
[llvm-project.git] / llvm / test / CodeGen / SPARC / LeonCASAInstructionUT.ll
blob740c17be4365848006ec5cd519f16a6330c658dd
1 ; RUN: llc %s -O0 -march=sparc -mcpu=leon3 -mattr=+hasleoncasa -o - | FileCheck %s
2 ; RUN: llc %s -O0 -march=sparc -mcpu=gr712rc -o - | FileCheck %s
3 ; RUN: llc %s -O0 -march=sparc -mcpu=leon4 -o - | FileCheck %s
4 ; RUN: llc %s -O0 -march=sparc -mcpu=gr740 -o - | FileCheck %s
5 ; RUN: llc %s -O0 -march=sparc -mcpu=myriad2 -o - | FileCheck %s
6 ; RUN: llc %s -O0 -march=sparc -mcpu=myriad2.1 -o - | FileCheck %s
7 ; RUN: llc %s -O0 -march=sparc -mcpu=myriad2.2 -o - | FileCheck %s
8 ; RUN: llc %s -O0 -march=sparc -mcpu=myriad2.3 -o - | FileCheck %s
9 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2100 -o - | FileCheck %s
10 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2150 -o - | FileCheck %s
11 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2155 -o - | FileCheck %s
12 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2450 -o - | FileCheck %s
13 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2455 -o - | FileCheck %s
14 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2x5x -o - | FileCheck %s
15 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2080 -o - | FileCheck %s
16 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2085 -o - | FileCheck %s
17 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2480 -o - | FileCheck %s
18 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2485 -o - | FileCheck %s
19 ; RUN: llc %s -O0 -march=sparc -mcpu=ma2x8x -o - | FileCheck %s
21 ; CHECK-LABEL: casa_test
22 ; CHECK-DAG:   mov 1, [[R0:%[a-z0-9]+]]
23 ; CHECK-DAG:   mov %g0, [[R1:%[a-z0-9]+]]
24 ; CHECK:       casa [{{%[a-z0-9]+}}] 10, [[R1]], [[R0]]
25 define void @casa_test(ptr %ptr) {
26   %pair = cmpxchg ptr %ptr, i32 0, i32 1 monotonic monotonic
27   %r = extractvalue { i32, i1 } %pair, 0
28   %stored1  = icmp eq i32 %r, 0
30   ret void