aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/mips64vr5900el-elf/t-macros.i
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1997-09-23 21:45:43 +0000
committerJeff Law <law@redhat.com>1997-09-23 21:45:43 +0000
commitc118539e6be4c36de37308946279d39da612b58f (patch)
treeb478aa8c26b93c5ab32bbea7d92974b06e07705f /sim/testsuite/mips64vr5900el-elf/t-macros.i
parent595256693507ff15bd54656992ebcffb1f29c2a7 (diff)
downloadgdb-c118539e6be4c36de37308946279d39da612b58f.zip
gdb-c118539e6be4c36de37308946279d39da612b58f.tar.gz
gdb-c118539e6be4c36de37308946279d39da612b58f.tar.bz2
mips64vr5900el-elf -> mips64r5900-elf.
Diffstat (limited to 'sim/testsuite/mips64vr5900el-elf/t-macros.i')
-rw-r--r--sim/testsuite/mips64vr5900el-elf/t-macros.i108
1 files changed, 0 insertions, 108 deletions
diff --git a/sim/testsuite/mips64vr5900el-elf/t-macros.i b/sim/testsuite/mips64vr5900el-elf/t-macros.i
deleted file mode 100644
index 5129781..0000000
--- a/sim/testsuite/mips64vr5900el-elf/t-macros.i
+++ /dev/null
@@ -1,108 +0,0 @@
-# NB: In the below, the 64bit values are embeded into the
-# machine code. The address of which being determined
-# by a jal (after a jump to an aligned address).
-
- .macro load reg hi lo
- j 1f
- nop
- .align 3
-1: jal 2f
- nop
- .quad \hi
- .quad \lo
-2:
- ld \reg, 0($31)
- pcpyld \reg, \reg, $0
- ld \reg, 8($31)
- .endm
-
- .macro check10 hi lo
- j 1f
- nop
- .align 3
-1: jal 2f
- nop
- .quad \hi
- .quad \lo
-2: pcpyud $11, $10, $0
- ld $5, 0($31)
- beq $11, $5, 3f
- nop
- li $4, 47
- break 1023
- nop
-3: nop
- ld $5, 8($31)
- beq $10, $5, 3f
- nop
- li $4, 47
- break 1023
- nop
-3: nop
- .endm
-
- .macro checkHI hi lo
- j 1f
- nop
- .align 3
-1: jal 2f
- nop
- .quad \hi
- .quad \lo
-2: mfhi1 $11
- ld $5, 0($31)
- beq $11, $5, 3f
- nop
- li $4, 47
- break 1023
- nop
-3: nop
- mfhi $11
- ld $5, 8($31)
- beq $11, $5, 3f
- nop
- li $4, 47
- break 1023
- nop
-3: nop
- .endm
-
-
- .macro checkLO hi lo
- j 1f
- nop
- .align 3
-1: jal 2f
- nop
- .quad \hi
- .quad \lo
-2: mflo1 $11
- ld $5, 0($31)
- beq $11, $5, 3f
- nop
- li $4, 47
- break 1023
- nop
-3: nop
- mflo $11
- ld $5, 8($31)
- beq $11, $5, 3f
- nop
- li $4, 47
- break 1023
- nop
-3: nop
- .endm
-
- .macro start
- .text
- .globl _start
- .set noreorder
-_start:
- .endm
-
- .macro exit0
- li $4, 0
- break 1023
- nop
- .endm