Skip to content

Commit

Permalink
[ARM] Emit trap instruction using .inst directive
Browse files Browse the repository at this point in the history
The trap instruction is emitted as a data-in-text rather
than an instruction. This patch uses the .inst directive
for emitting trap.

Differential Revision: http://reviews.llvm.org/D16684

llvm-svn: 259182
  • Loading branch information
labrinea committed Jan 29, 2016
1 parent 36175cc commit 8c26e7c
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 26 deletions.
11 changes: 5 additions & 6 deletions llvm/lib/Target/ARM/ARMAsmPrinter.cpp
Expand Up @@ -1243,6 +1243,8 @@ void ARMAsmPrinter::EmitUnwindingInstruction(const MachineInstr *MI) {

void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
const DataLayout &DL = getDataLayout();
MCTargetStreamer &TS = *OutStreamer->getTargetStreamer();
ARMTargetStreamer &ATS = static_cast<ARMTargetStreamer &>(TS);

// If we just ended a constant pool, mark it as such.
if (InConstantPool && MI->getOpcode() != ARM::CONSTPOOL_ENTRY) {
Expand Down Expand Up @@ -1659,29 +1661,26 @@ void ARMAsmPrinter::EmitInstruction(const MachineInstr *MI) {
// Non-Darwin binutils don't yet support the "trap" mnemonic.
// FIXME: Remove this special case when they do.
if (!Subtarget->isTargetMachO()) {
//.long 0xe7ffdefe @ trap
uint32_t Val = 0xe7ffdefeUL;
OutStreamer->AddComment("trap");
OutStreamer->EmitIntValue(Val, 4);
ATS.emitInst(Val);
return;
}
break;
}
case ARM::TRAPNaCl: {
//.long 0xe7fedef0 @ trap
uint32_t Val = 0xe7fedef0UL;
OutStreamer->AddComment("trap");
OutStreamer->EmitIntValue(Val, 4);
ATS.emitInst(Val);
return;
}
case ARM::tTRAP: {
// Non-Darwin binutils don't yet support the "trap" mnemonic.
// FIXME: Remove this special case when they do.
if (!Subtarget->isTargetMachO()) {
//.short 57086 @ trap
uint16_t Val = 0xdefe;
OutStreamer->AddComment("trap");
OutStreamer->EmitIntValue(Val, 2);
ATS.emitInst(Val, 'n');
return;
}
break;
Expand Down
2 changes: 1 addition & 1 deletion llvm/test/CodeGen/ARM/debugtrap.ll
Expand Up @@ -10,7 +10,7 @@ define void @test() nounwind {
entry:
; CHECK: bl foo
; CHECK-NEXT: pop
; CHECK-NEXT: trap
; CHECK-NEXT: .inst 0xe7ffdefe
call void @foo()
call void @llvm.debugtrap()
ret void
Expand Down
67 changes: 48 additions & 19 deletions llvm/test/CodeGen/ARM/trap.ll
@@ -1,54 +1,83 @@
; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s -check-prefix=INSTR
; RUN: llc < %s -mtriple=arm-apple-darwin | FileCheck %s -check-prefix=DARWIN
; RUN: llc < %s -mtriple=arm-apple-darwin -trap-func=_trap | FileCheck %s -check-prefix=FUNC
; RUN: llc < %s -mtriple=arm-apple-darwin -trap-func=_trap -O0 | FileCheck %s -check-prefix=FUNC
; RUN: llc -mtriple=armv7-unknown-nacl -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7-unknown-nacl - \
; RUN: | FileCheck %s -check-prefix=ENCODING-NACL
; RUN: llc -mtriple=armv7-unknown-nacl -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 -mattr=+nacl-trap - \
; RUN: | FileCheck %s -check-prefix=ENCODING-NACL
; RUN: llc < %s -mtriple=armv7 -mattr=+nacl-trap | FileCheck %s -check-prefix=NACL
; RUN: llc < %s -mtriple=armv7 | FileCheck %s -check-prefix=ARM
; RUN: llc < %s -mtriple=thumbv7 | FileCheck %s -check-prefix=THUMB

; RUN: llc -mtriple=armv7 -mattr=+nacl-trap -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 -mattr=+nacl-trap - \
; RUN: | FileCheck %s -check-prefix=ENCODING-NACL
; RUN: llc -verify-machineinstrs -fast-isel -mtriple=armv7-unknown-nacl -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7-unknown-nacl - \
; RUN: llc -verify-machineinstrs -fast-isel -mtriple=armv7 -mattr=+nacl-trap -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 -mattr=+nacl-trap - \
; RUN: | FileCheck %s -check-prefix=ENCODING-NACL

; RUN: llc -mtriple=armv7 -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 - \
; RUN: | FileCheck %s -check-prefix=ENCODING-ALL
; RUN: | FileCheck %s -check-prefix=ENCODING-ARM
; RUN: llc -verify-machineinstrs -fast-isel -mtriple=armv7 -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple armv7 - \
; RUN: | FileCheck %s -check-prefix=ENCODING-ALL
; RUN: | FileCheck %s -check-prefix=ENCODING-ARM

; RUN: llc -mtriple=thumbv7 -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple thumbv7 - \
; RUN: | FileCheck %s -check-prefix=ENCODING-THUMB
; RUN: llc -verify-machineinstrs -fast-isel -mtriple=thumbv7 -filetype=obj %s -o - \
; RUN: | llvm-objdump -disassemble -triple thumbv7 - \
; RUN: | FileCheck %s -check-prefix=ENCODING-THUMB

; rdar://7961298
; rdar://9249183

define void @t() nounwind {
entry:
; INSTR-LABEL: t:
; INSTR: trap
; DARWIN-LABEL: t:
; DARWIN: trap

; FUNC-LABEL: t:
; FUNC: bl __trap

; ENCODING-NACL: f0 de fe e7
; NACL-LABEL: t:
; NACL: .inst 0xe7fedef0

; ENCODING-ALL: fe de ff e7
; ARM-LABEL: t:
; ARM: .inst 0xe7ffdefe

; THUMB-LABEL: t:
; THUMB: .inst.n 0xdefe

; ENCODING-NACL: f0 de fe e7 trap

; ENCODING-ARM: fe de ff e7 trap

; ENCODING-THUMB: fe de trap

call void @llvm.trap()
unreachable
}

define void @t2() nounwind {
entry:
; INSTR-LABEL: t2:
; INSTR: trap
; DARWIN-LABEL: t2:
; DARWIN: trap

; FUNC-LABEL: t2:
; FUNC: bl __trap

; ENCODING-NACL: f0 de fe e7
; NACL-LABEL: t2:
; NACL: .inst 0xe7fedef0

; ARM-LABEL: t2:
; ARM: .inst 0xe7ffdefe

; THUMB-LABEL: t2:
; THUMB: .inst.n 0xdefe

; ENCODING-NACL: f0 de fe e7 trap

; ENCODING-ARM: fe de ff e7 trap

; ENCODING-ALL: fe de ff e7
; ENCODING-THUMB: fe de trap

call void @llvm.debugtrap()
unreachable
Expand Down

0 comments on commit 8c26e7c

Please sign in to comment.