mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
745fff806d
IMAGE_REL_ARM_MOV32T relocations require that the movw/movt pair-wise relocation is not split up and reordered. When expanding the mov32imm pseudo-instruction, create a bundle if the machine operand is referencing an address. This helps ensure that the relocatable address load is not reordered by subsequent passes. Unfortunately, this only partially handles the case as the Constant Island Pass occurs after the instructions are unbundled and does not properly handle bundles. That is a more fundamental issue with the pass itself and beyond the scope of this change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207608 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
818 B
LLVM
28 lines
818 B
LLVM
; RUN: llc -mtriple=thumbv7-windows -o - %s \
|
|
; RUN: | FileCheck %s -check-prefix CHECK-WINDOWS
|
|
|
|
; RUN: llc -mtriple=thumbv7-eabi -o - %s \
|
|
; RUN: | FileCheck %s -check-prefix CHECK-EABI
|
|
|
|
@i = common global i32 0, align 4
|
|
@j = common global i32 0, align 4
|
|
|
|
; Function Attrs: nounwind optsize readonly
|
|
define i32 @relocation(i32 %j, i32 %k) {
|
|
entry:
|
|
%0 = load i32* @i, align 4
|
|
%1 = load i32* @j, align 4
|
|
%add = add nsw i32 %1, %0
|
|
ret i32 %add
|
|
}
|
|
|
|
; CHECK-WINDOWS: movw r[[i:[0-4]]], :lower16:i
|
|
; CHECK-WINDOWS-NEXT: movt r[[i]], :upper16:i
|
|
; CHECK-WINDOWS: movw r[[j:[0-4]]], :lower16:j
|
|
; CHECK-WINDOWS-NEXT: movt r[[j]], :upper16:j
|
|
|
|
; CHECK-EABI: movw r[[i:[0-4]]], :lower16:i
|
|
; CHECK-EABI: movw r[[j:[0-4]]], :lower16:j
|
|
; CHECK-EABI-NEXT: movt r[[i]], :upper16:i
|
|
; CHECK-EABI-NEXT: movt r[[j]], :upper16:j
|