mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
37ef805818
Some implementation detail in the forgotten past required the link register to be placed in the GPRC and G8RC register classes. This is just wrong on the face of it, and causes several extra intersection register classes to be generated. I found this was having evil effects on instruction scheduling, by causing the wrong register class to be consulted for register pressure decisions. No code generation changes are expected, other than some minor changes in instruction order. Seven tests in the test bucket required minor tweaks to adjust to the new normal. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178114 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
815 B
LLVM
22 lines
815 B
LLVM
target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64"
|
|
target triple = "powerpc64-unknown-freebsd10.0"
|
|
; RUN: llc -O0 < %s -march=ppc64 | FileCheck -check-prefix=OPT0 %s
|
|
; RUN: llc -O1 < %s -march=ppc64 | FileCheck -check-prefix=OPT1 %s
|
|
|
|
@a = thread_local global i32 0, align 4
|
|
|
|
;OPT0: localexec:
|
|
;OPT1: localexec:
|
|
define i32 @localexec() nounwind {
|
|
entry:
|
|
;OPT0: addis [[REG1:[0-9]+]], 13, a@tprel@ha
|
|
;OPT0-NEXT: li [[REG2:[0-9]+]], 42
|
|
;OPT0-NEXT: addi [[REG1]], [[REG1]], a@tprel@l
|
|
;OPT0: stw [[REG2]], 0([[REG1]])
|
|
;OPT1: addis [[REG1:[0-9]+]], 13, a@tprel@ha
|
|
;OPT1-NEXT: li [[REG2:[0-9]+]], 42
|
|
;OPT1-NEXT: stw [[REG2]], a@tprel@l([[REG1]])
|
|
store i32 42, i32* @a, align 4
|
|
ret i32 0
|
|
}
|