mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
3f38e31261
The BKPT instruction is specified to cause a software breakpoint, and at least on Linux results in a SIGTRAP. This makes it more suitable for implementing debugtrap than TRAP (aka UDF #254), which is specified to cause an undefined instruction exception and results in a SIGILL on Linux. Moreover, BKPT is not marked as a terminator, which is not only consistent with the IR instruction but allows the analyzeBlock function to correctly analyze a basic block containing the instruction, which fixes an assertion failure in the machine block placement pass previously triggered by the included test case. Because BKPT is only supported starting with ARMv5T, we continue to use UDF #254 when targeting v4T. Differential Revision: https://reviews.llvm.org/D53614 llvm-svn: 345171
22 lines
765 B
LLVM
22 lines
765 B
LLVM
; This test ensures the @llvm.debugtrap() call is not removed when generating
|
|
; the 'pop' instruction to restore the callee saved registers on ARM.
|
|
|
|
; RUN: llc < %s -mtriple=armv4 -O0 -filetype=asm | FileCheck --check-prefixes=CHECK,V4 %s
|
|
; RUN: llc < %s -mtriple=armv5 -O0 -filetype=asm | FileCheck --check-prefixes=CHECK,V5 %s
|
|
; RUN: llc < %s -mtriple=thumbv4 -O0 -filetype=asm | FileCheck --check-prefixes=CHECK,V4 %s
|
|
; RUN: llc < %s -mtriple=thumbv5 -O0 -filetype=asm | FileCheck --check-prefixes=CHECK,V5 %s
|
|
|
|
declare void @llvm.debugtrap() nounwind
|
|
declare void @foo() nounwind
|
|
|
|
define void @test() nounwind {
|
|
entry:
|
|
; CHECK: bl foo
|
|
; V4-NEXT: udf #254
|
|
; V5-NEXT: bkpt #0
|
|
; CHECK-NEXT: pop
|
|
call void @foo()
|
|
call void @llvm.debugtrap()
|
|
ret void
|
|
}
|