Select @llvm.trap to the special B with 1111 condition (i.e. trap) instruction.

llvm-svn: 103459
This commit is contained in:
Evan Cheng 2010-05-11 07:26:32 +00:00
parent 10dc8aa581
commit 2fa5a7e7e4
5 changed files with 31 additions and 4 deletions

View File

@ -384,6 +384,8 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM)
setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
setOperationAction(ISD::BlockAddress, MVT::i32, Custom);
setOperationAction(ISD::TRAP, MVT::Other, Legal);
// Use the default implementation.
setOperationAction(ISD::VASTART, MVT::Other, Custom);
setOperationAction(ISD::VAARG, MVT::Other, Expand);

View File

@ -791,8 +791,8 @@ def DBG : AI<(outs), (ins i32imm:$opt), MiscFrm, NoItinerary, "dbg", "\t$opt",
}
// A5.4 Permanently UNDEFINED instructions.
def TRAP : AI<(outs), (ins), MiscFrm, NoItinerary, "trap", "",
[/* For disassembly only; pattern left blank */]>,
let isBarrier = 1, isTerminator = 1 in
def TRAP : AXI<(outs), (ins), MiscFrm, NoItinerary, "trap", [(trap)]>,
Requires<[IsARM]> {
let Inst{27-25} = 0b011;
let Inst{24-20} = 0b11111;

View File

@ -417,9 +417,10 @@ def tSVC : T1pI<(outs), (ins i32imm:$svc), IIC_Br, "svc", "\t$svc", []>,
}
}
// A8.6.16 B: Encoding T1 -- for disassembly only
// A8.6.16 B: Encoding T1
// If Inst{11-8} == 0b1110 then UNDEFINED
def tTRAP : T1I<(outs), (ins), IIC_Br, "trap", []>, Encoding16 {
let isBarrier = 1, isTerminator = 1 in
def tTRAP : TI<(outs), (ins), IIC_Br, "trap", [(trap)]>, Encoding16 {
let Inst{15-12} = 0b1101;
let Inst{11-8} = 0b1110;
}

View File

@ -0,0 +1,12 @@
; RUN: llc < %s -march=arm | FileCheck %s
; rdar://7961298
define arm_apcscc void @t() nounwind {
entry:
; CHECK: t:
; CHECK: trap
call void @llvm.trap()
unreachable
}
declare void @llvm.trap() nounwind

View File

@ -0,0 +1,12 @@
; RUN: llc < %s -march=thumb | FileCheck %s
; rdar://7961298
define arm_apcscc void @t() nounwind {
entry:
; CHECK: t:
; CHECK: trap
call void @llvm.trap()
unreachable
}
declare void @llvm.trap() nounwind