]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/MC/Mips/mips_abi_flags_xx.s
Vendor import of llvm RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
[FreeBSD/FreeBSD.git] / test / MC / Mips / mips_abi_flags_xx.s
1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32 | \
2 # RUN:   FileCheck %s -check-prefix=CHECK-ASM
3 #
4 # RUN: llvm-mc %s -arch=mips -mcpu=mips32 -filetype=obj -o - | \
5 # RUN:   llvm-readobj -sections -section-data -section-relocations - | \
6 # RUN:     FileCheck %s -check-prefix=CHECK-OBJ -check-prefix=CHECK-OBJ-R1
7
8 # RUN: llvm-mc /dev/null -arch=mips -mcpu=mips32 -mattr=fpxx -filetype=obj -o - | \
9 # RUN:   llvm-readobj -sections -section-data -section-relocations - | \
10 # RUN:     FileCheck %s -check-prefix=CHECK-OBJ -check-prefix=CHECK-OBJ-R1
11
12 # RUN: llvm-mc /dev/null -arch=mips -mcpu=mips32r6 -mattr=fpxx -filetype=obj -o - | \
13 # RUN:   llvm-readobj -sections -section-data -section-relocations - | \
14 # RUN:     FileCheck %s -check-prefix=CHECK-OBJ -check-prefix=CHECK-OBJ-R6
15
16 # CHECK-ASM: .module fp=xx
17
18 # Checking if the Mips.abiflags were correctly emitted.
19 # CHECK-OBJ:       Section {
20 # CHECK-OBJ:         Index: 5
21 # CHECK-OBJ-LABEL:   Name: .MIPS.abiflags (12)
22 # CHECK-OBJ:         Type: SHT_MIPS_ABIFLAGS (0x7000002A)
23 # CHECK-OBJ:          Flags [ (0x2)
24 # CHECK-OBJ:           SHF_ALLOC (0x2)
25 # CHECK-OBJ:         ]
26 # CHECK-OBJ:         Address: 0x0
27 # CHECK-OBJ:         Size: 24
28 # CHECK-OBJ:         Link: 0
29 # CHECK-OBJ:         Info: 0
30 # CHECK-OBJ:         AddressAlignment: 8
31 # CHECK-OBJ:         EntrySize: 24
32 # CHECK-OBJ:         Relocations [
33 # CHECK-OBJ:         ]
34 # CHECK-OBJ:         SectionData (
35 # CHECK-OBJ-R1:        0000: 00002001 01010005 00000000 00000000  |.. .............|
36 # CHECK-OBJ-R6:        0000: 00002006 01010005 00000000 00000000  |.. .............|
37 # CHECK-OBJ:           0010: 00000001 00000000                    |........|
38 # CHECK-OBJ:         )
39 # CHECK-OBJ-LABEL: }
40
41         .module fp=xx
42
43 # FIXME: Test should include gnu_attributes directive when implemented.
44 #        An explicit .gnu_attribute must be checked against the effective
45 #        command line options and any inconsistencies reported via a warning.