mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 18:33:22 +00:00
Summary: Also did some minor reformatting in the resulting test. Reviewers: dsanders Reviewed By: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D9702 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237242 91177308-0d34-0410-b5e6-96231b3b80d8
45 lines
2.3 KiB
ArmAsm
45 lines
2.3 KiB
ArmAsm
# RUN: llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 -show-encoding | \
|
|
# RUN: FileCheck %s --check-prefix=32R2-EL
|
|
# RUN: llvm-mc %s -triple=mipsel-unknown-linux -mcpu=mips32r2 -mattr=micromips -show-encoding | \
|
|
# RUN: FileCheck %s --check-prefix=MM-32R2-EL
|
|
|
|
# Check that the assembler can handle the expressions as operands.
|
|
# 32R2-EL: .text
|
|
# 32R2-EL: .globl foo
|
|
# 32R2-EL: foo:
|
|
# 32R2-EL: lw $4, %lo(foo)($4) # encoding: [A,A,0x84,0x8c]
|
|
# 32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_Mips_LO16
|
|
# 32R2-EL: lw $4, 56($4) # encoding: [0x38,0x00,0x84,0x8c]
|
|
# 32R2-EL: lw $4, %lo(foo+8)($4) # encoding: [0x08'A',A,0x84,0x8c]
|
|
# 32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_Mips_LO16
|
|
# 32R2-EL: lw $4, %lo(foo+8)($4) # encoding: [0x08'A',A,0x84,0x8c]
|
|
# 32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_Mips_LO16
|
|
# 32R2-EL: lw $4, %lo(foo+8)($4) # encoding: [0x08'A',A,0x84,0x8c]
|
|
# 32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_Mips_LO16
|
|
# 32R2-EL: .space 64
|
|
|
|
# MM-32R2-EL: .text
|
|
# MM-32R2-EL: .globl foo
|
|
# MM-32R2-EL: foo:
|
|
# MM-32R2-EL: lw $4, %lo(foo)($4) # encoding: [0x84'A',0xfc'A',0x00,0x00]
|
|
# MM-32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_MICROMIPS_LO16
|
|
# MM-32R2-EL: lw $4, 56($4) # encoding: [0x84,0xfc,0x38,0x00]
|
|
# MM-32R2-EL: lw $4, %lo(foo+8)($4) # encoding: [0x84'A',0xfc'A',0x08,0x00]
|
|
# MM-32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_MICROMIPS_LO16
|
|
# MM-32R2-EL: lw $4, %lo(foo+8)($4) # encoding: [0x84'A',0xfc'A',0x08,0x00]
|
|
# MM-32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_MICROMIPS_LO16
|
|
# MM-32R2-EL: lw $4, %lo(foo+8)($4) # encoding: [0x84'A',0xfc'A',0x08,0x00]
|
|
# MM-32R2-EL: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_MICROMIPS_LO16
|
|
# MM-32R2-EL: .space 64
|
|
|
|
.globl foo
|
|
.ent foo
|
|
foo:
|
|
lw $4,%lo(foo)($4)
|
|
lw $4,((10 + 4) * 4)($4)
|
|
lw $4,%lo (2 * 4) + foo($4)
|
|
lw $4,%lo((2 * 4) + foo)($4)
|
|
lw $4,(((%lo ((2 * 4) + foo))))($4)
|
|
.space 64
|
|
.end foo
|