2016-05-18 19:58:50 +08:00
|
|
|
# RUN: not llvm-mc %s -arch=mips -mcpu=mips32 --position-independent -filetype=obj \
|
2016-05-11 20:48:19 +08:00
|
|
|
# RUN: -o /dev/null 2>&1 | FileCheck %s -check-prefix=O32
|
|
|
|
|
2016-05-18 19:58:50 +08:00
|
|
|
# RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 \
|
2016-05-11 20:48:19 +08:00
|
|
|
# RUN: -filetype=obj -o /dev/null 2>&1 | FileCheck %s -allow-empty -check-prefix=N32
|
|
|
|
|
2016-05-18 19:58:50 +08:00
|
|
|
# RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 -target-abi=n32 \
|
2016-05-11 20:48:19 +08:00
|
|
|
# RUN: -filetype=obj -o /dev/null 2>&1 | FileCheck %s -allow-empty -check-prefix=N64
|
|
|
|
|
2016-05-18 19:58:50 +08:00
|
|
|
# RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 -target-abi=n32 \
|
2016-05-11 20:48:19 +08:00
|
|
|
# RUN: -filetype=obj -o - | llvm-objdump -d -r - | \
|
|
|
|
# RUN: FileCheck %s -check-prefix=NO-STORE
|
|
|
|
|
2016-05-18 19:58:50 +08:00
|
|
|
# RUN: llvm-mc %s -arch=mips64 -mcpu=mips64 -filetype=obj -o - | \
|
2016-06-16 17:17:03 +08:00
|
|
|
# RUN: llvm-objdump -d -r - | FileCheck %s -check-prefix=NO-STORE
|
2016-05-11 20:48:19 +08:00
|
|
|
|
|
|
|
.text
|
|
|
|
.ent foo
|
|
|
|
foo:
|
|
|
|
.frame $sp, 0, $ra
|
|
|
|
.set noreorder
|
|
|
|
.set noat
|
|
|
|
|
|
|
|
.cpload $25
|
|
|
|
.cprestore 8
|
2016-05-12 22:01:50 +08:00
|
|
|
# O32-NOT: error: pseudo-instruction requires $at, which is not available
|
2016-05-11 20:48:19 +08:00
|
|
|
# N32-NOT: error: pseudo-instruction requires $at, which is not available
|
|
|
|
# N64-NOT: error: pseudo-instruction requires $at, which is not available
|
|
|
|
# NO-STORE-NOT: sw $gp, 8($sp)
|
|
|
|
|
|
|
|
jal $25
|
|
|
|
jal $4, $25
|
|
|
|
jal foo
|
|
|
|
|
|
|
|
.end foo
|
2016-05-12 22:01:50 +08:00
|
|
|
|
|
|
|
.ent bar
|
|
|
|
bar:
|
|
|
|
.frame $sp, 0, $ra
|
|
|
|
.set noreorder
|
|
|
|
.set noat
|
|
|
|
|
|
|
|
.cpload $25
|
|
|
|
.cprestore 65536
|
|
|
|
# O32: :[[@LINE-1]]:3: error: pseudo-instruction requires $at, which is not available
|
|
|
|
# N32-NOT: error: pseudo-instruction requires $at, which is not available
|
|
|
|
# N64-NOT: error: pseudo-instruction requires $at, which is not available
|
|
|
|
# NO-STORE-NOT: sw $gp,
|
|
|
|
|
|
|
|
jal $25
|
|
|
|
jal $4, $25
|
|
|
|
jal bar
|
|
|
|
|
|
|
|
.end bar
|