mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-22 03:35:35 -04:00
e88f2db963
Summary: Also add support for some older Myriad CPUs that were missing. Reviewers: jyknight Subscribers: fedor.sergeev Differential Revision: https://reviews.llvm.org/D37552 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@314705 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
1.5 KiB
LLVM
30 lines
1.5 KiB
LLVM
; 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: casa [%o0] 10, %o3, %o2
|
|
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
|
|
}
|