32 lines · plain
1; RUN: llc %s -O0 -mtriple=sparc -mcpu=leon3 -mattr=+hasleoncasa -o - | FileCheck %s2; RUN: llc %s -O0 -mtriple=sparc -mcpu=gr712rc -o - | FileCheck %s3; RUN: llc %s -O0 -mtriple=sparc -mcpu=leon4 -o - | FileCheck %s4; RUN: llc %s -O0 -mtriple=sparc -mcpu=gr740 -o - | FileCheck %s5; RUN: llc %s -O0 -mtriple=sparc -mcpu=myriad2 -o - | FileCheck %s6; RUN: llc %s -O0 -mtriple=sparc -mcpu=myriad2.1 -o - | FileCheck %s7; RUN: llc %s -O0 -mtriple=sparc -mcpu=myriad2.2 -o - | FileCheck %s8; RUN: llc %s -O0 -mtriple=sparc -mcpu=myriad2.3 -o - | FileCheck %s9; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2100 -o - | FileCheck %s10; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2150 -o - | FileCheck %s11; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2155 -o - | FileCheck %s12; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2450 -o - | FileCheck %s13; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2455 -o - | FileCheck %s14; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2x5x -o - | FileCheck %s15; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2080 -o - | FileCheck %s16; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2085 -o - | FileCheck %s17; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2480 -o - | FileCheck %s18; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2485 -o - | FileCheck %s19; RUN: llc %s -O0 -mtriple=sparc -mcpu=ma2x8x -o - | FileCheck %s20 21; CHECK-LABEL: casa_test22; 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]]25define void @casa_test(ptr %ptr) {26 %pair = cmpxchg ptr %ptr, i32 0, i32 1 monotonic monotonic27 %r = extractvalue { i32, i1 } %pair, 028 %stored1 = icmp eq i32 %r, 029 30 ret void31}32