mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
a933ce4caa
It is only supported for ARM code. Normally Thumb2 code would use DMB instead, but depending on how the compiler is invoked (e.g., -mattr=-db) that might be disabled. This prevents a "cannot select MEMBARRIER_MCR" error in that situation. Radar 8644195 llvm-svn: 118642
26 lines
676 B
LLVM
26 lines
676 B
LLVM
; RUN: llc < %s -mtriple=thumbv6-apple-darwin | FileCheck %s -check-prefix=V6
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin -mattr=-db | FileCheck %s -check-prefix=V6
|
|
; RUN: llc < %s -march=thumb -mattr=+v6m | FileCheck %s -check-prefix=V6M
|
|
|
|
declare void @llvm.memory.barrier(i1 , i1 , i1 , i1 , i1)
|
|
|
|
define void @t1() {
|
|
; V6: t1:
|
|
; V6: blx {{_*}}sync_synchronize
|
|
|
|
; V6M: t1:
|
|
; V6M: dmb st
|
|
call void @llvm.memory.barrier(i1 false, i1 false, i1 false, i1 true, i1 true)
|
|
ret void
|
|
}
|
|
|
|
define void @t2() {
|
|
; V6: t2:
|
|
; V6: blx {{_*}}sync_synchronize
|
|
|
|
; V6M: t2:
|
|
; V6M: dmb ish
|
|
call void @llvm.memory.barrier(i1 true, i1 false, i1 false, i1 true, i1 false)
|
|
ret void
|
|
}
|