mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 15:17:25 +00:00
R600/SI: Avoid generating S_MOVs with 64-bit immediates v2
SITargetLowering::analyzeImmediate() was converting the 64-bit values to 32-bit and then checking if they were an inline immediate. Some of these conversions caused this check to succeed and produced S_MOV instructions with 64-bit immediates, which are illegal. v2: - Clean up logic Reviewed-by: Christian König <christian.koenig@amd.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178927 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -424,9 +424,12 @@ int32_t SITargetLowering::analyzeImmediate(const SDNode *N) const {
|
||||
float F;
|
||||
} Imm;
|
||||
|
||||
if (const ConstantSDNode *Node = dyn_cast<ConstantSDNode>(N))
|
||||
if (const ConstantSDNode *Node = dyn_cast<ConstantSDNode>(N)) {
|
||||
if (Node->getZExtValue() >> 32) {
|
||||
return -1;
|
||||
}
|
||||
Imm.I = Node->getSExtValue();
|
||||
else if (const ConstantFPSDNode *Node = dyn_cast<ConstantFPSDNode>(N))
|
||||
} else if (const ConstantFPSDNode *Node = dyn_cast<ConstantFPSDNode>(N))
|
||||
Imm.F = Node->getValueAPF().convertToFloat();
|
||||
else
|
||||
return -1; // It isn't an immediate
|
||||
|
||||
Reference in New Issue
Block a user