forked from OSchip/llvm-project
AMDGPU: Use an ABS32_LO relocation for SCRATCH_RSRC_DWORD1
Summary: Using HI here makes no logical sense, since the dword is only 32 bits to begin with. Current Mesa master does not look at the relocation type at all, so this change is fine. Future Mesa will rely on this, however. Change-Id: I91085707834c4ac0370926602b93c94b90e44cb1 Reviewers: arsenm, rampitec, mareko Subscribers: kzhuravl, jvesely, wdng, yaxunl, dstuttard, tpr, t-tye, llvm-commits Differential Revision: https://reviews.llvm.org/D55369 llvm-svn: 349620
This commit is contained in:
parent
342d03e71f
commit
8d5e974076
|
@ -46,11 +46,9 @@ unsigned AMDGPUELFObjectWriter::getRelocType(MCContext &Ctx,
|
|||
if (const auto *SymA = Target.getSymA()) {
|
||||
// SCRATCH_RSRC_DWORD[01] is a special global variable that represents
|
||||
// the scratch buffer.
|
||||
if (SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD0")
|
||||
if (SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD0" ||
|
||||
SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD1")
|
||||
return ELF::R_AMDGPU_ABS32_LO;
|
||||
|
||||
if (SymA->getSymbol().getName() == "SCRATCH_RSRC_DWORD1")
|
||||
return ELF::R_AMDGPU_ABS32_HI;
|
||||
}
|
||||
|
||||
switch (Target.getAccessVariant()) {
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
; RUN: llc -march=amdgcn -mtriple=amdgcn-- -mcpu=verde -verify-machineinstrs < %s | FileCheck --check-prefix=GCN --check-prefix=SI %s
|
||||
; RUN: llc -march=amdgcn -mtriple=amdgcn-- -mcpu=gfx803 -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck --check-prefix=GCN --check-prefix=SI %s
|
||||
; RUN: llc -march=amdgcn -mtriple=amdgcn-- -mcpu=gfx900 -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck --check-prefix=GCN --check-prefix=GFX9 %s
|
||||
; RUN: llc -march=amdgcn -mtriple=amdgcn-- -mcpu=gfx900 -filetype=obj < %s | llvm-readobj -relocations | FileCheck --check-prefix=RELS %s
|
||||
|
||||
; RELS: R_AMDGPU_ABS32_LO SCRATCH_RSRC_DWORD0 0x0
|
||||
; RELS: R_AMDGPU_ABS32_LO SCRATCH_RSRC_DWORD1 0x0
|
||||
|
||||
; This used to fail due to a v_add_i32 instruction with an illegal immediate
|
||||
; operand that was created during Local Stack Slot Allocation. Test case derived
|
||||
|
|
Loading…
Reference in New Issue