reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97
   98
   99
  100
  101
  102
  103
  104
  105
  106
  107
  108
  109
  110
  111
  112
  113
  114
  115
  116
  117
  118
  119
  120
  121
  122
@ RUN: not llvm-mc -triple armv7-linux-eabi -filetype asm -o /dev/null %s 2>&1  \
@ RUN:   | FileCheck %s

	.syntax unified
	.thumb

	.global function
	.type function,%function
	.thumb_func
function:
	.personalityindex 0

@ CHECK: error: .fnstart must precede .personalityindex directive
@ CHECK: 	.personalityindex 0
@ CHECK:        ^

	.global ununwindable
	.type ununwindable,%function
	.thumb_func
ununwindable:
	.fnstart
	.cantunwind
	.personalityindex 0
	.fnend

@ CHECK: error: .personalityindex cannot be used with .cantunwind
@ CHECK: 	.personalityindex 0
@ CHECK:        ^
@ CHECK: note: .cantunwind was specified here
@ CHECK: 	.cantunwind
@ CHECK:        ^

	.global nodata
	.type nodata,%function
	.thumb_func
nodata:
	.fnstart
	.handlerdata
	.personalityindex 0
	.fnend

@ CHECK: error: .personalityindex must precede .handlerdata directive
@ CHECK: 	.personalityindex 0
@ CHECK:        ^
@ CHECK: note: .handlerdata was specified here
@ CHECK: 	.handlerdata
@ CHECK:        ^

	.global multiple_personality
	.type multiple_personality,%function
	.thumb_func
multiple_personality:
	.fnstart
	.personality __aeabi_personality_pr0
	.personalityindex 0
	.fnend

@ CHECK: error: multiple personality directives
@ CHECK: 	.personalityindex 0
@ CHECK:        ^
@ CHECK: note: .personality was specified here
@ CHECK: 	.personality __aeabi_personality_pr0
@ CHECK:        ^
@ CHECK: note: .personalityindex was specified here
@ CHECK: 	.personalityindex 0
@ CHECK:       ^

	.global multiple_personality_indicies
	.type multiple_personality_indicies,%function
	.thumb_func
multiple_personality_indicies:
	.fnstart
	.personalityindex 0
	.personalityindex 1
	.fnend

@ CHECK: error: multiple personality directives
@ CHECK: 	.personalityindex 1
@ CHECK:        ^
@ CHECK: note: .personalityindex was specified here
@ CHECK: 	.personalityindex 0
@ CHECK:        ^
@ CHECK: note: .personalityindex was specified here
@ CHECK: 	.personalityindex 1
@ CHECK:        ^

	.global invalid_expression
	.type invalid_expression,%function
	.thumb_func
invalid_expression:
	.fnstart
	.personalityindex <expression>
	.fnend

@ CHECK: error: unknown token in expression
@ CHECK: 	.personalityindex <expression>
@ CHECK:                          ^

	.global nonconstant_expression
	.type nonconstant_expression,%function
	.thumb_func
nonconstant_expression:
	.fnstart
	.personalityindex nonconstant_expression
	.fnend

@ CHECK: error: index must be a constant number
@ CHECK: 	.personalityindex nonconstant_expression
@ CHECK:                          ^

	.global bad_index
	.type bad_index,%function
	.thumb_func
bad_index:
	.fnstart
	.personalityindex 42
	.fnend

@ CHECK: error: personality routine index should be in range [0-3]
@ CHECK: 	.personalityindex 42
@ CHECK:                          ^