diff options
author | Chris Lattner <sabre@nondot.org> | 2009-05-08 18:23:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-05-08 18:23:14 +0000 |
commit | d73ba7fb6603a7783ffd8864234ed4b98d53f152 (patch) | |
tree | 332aa99786f8c6b1307eadf0aa0f9eb9baa53f89 | |
parent | 5174111aac9275bef805c20922ecabd6b5b3f900 (diff) | |
download | external_llvm-d73ba7fb6603a7783ffd8864234ed4b98d53f152.zip external_llvm-d73ba7fb6603a7783ffd8864234ed4b98d53f152.tar.gz external_llvm-d73ba7fb6603a7783ffd8864234ed4b98d53f152.tar.bz2 |
Fix PR4152: asm constraint validation happens before dag combine, so we
need to work a bit to combine things like (x+c1+c2) into x+c3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71232 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelLowering.cpp | 57 | ||||
-rw-r--r-- | test/CodeGen/X86/2009-05-08-InlineAsmIOffset.ll | 17 |
2 files changed, 45 insertions, 29 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 72aadef..9ac59df 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -8519,40 +8519,39 @@ void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op, // If we are in non-pic codegen mode, we allow the address of a global (with // an optional displacement) to be used with 'i'. - GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op); + GlobalAddressSDNode *GA = 0; int64_t Offset = 0; - // Match either (GA) or (GA+C) - if (GA) { - Offset = GA->getOffset(); - } else if (Op.getOpcode() == ISD::ADD) { - ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1)); - GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0)); - if (C && GA) { - Offset = GA->getOffset()+C->getZExtValue(); - } else { - C = dyn_cast<ConstantSDNode>(Op.getOperand(1)); - GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0)); - if (C && GA) - Offset = GA->getOffset()+C->getZExtValue(); - else - C = 0, GA = 0; + // Match either (GA), (GA+C), (GA+C1+C2), etc. + while (1) { + if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) { + Offset += GA->getOffset(); + break; + } else if (Op.getOpcode() == ISD::ADD) { + if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { + Offset += C->getZExtValue(); + Op = Op.getOperand(0); + continue; + } + } else if (Op.getOpcode() == ISD::SUB) { + if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { + Offset += -C->getZExtValue(); + Op = Op.getOperand(0); + continue; + } } + + // Otherwise, this isn't something we can handle, reject it. + return; } - if (GA) { - if (hasMemory) - Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(), - Offset, DAG); - else - Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0), - Offset); - Result = Op; - break; - } - - // Otherwise, not valid for this mode. - return; + if (hasMemory) + Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(), Offset, DAG); + else + Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0), + Offset); + Result = Op; + break; } } diff --git a/test/CodeGen/X86/2009-05-08-InlineAsmIOffset.ll b/test/CodeGen/X86/2009-05-08-InlineAsmIOffset.ll new file mode 100644 index 0000000..284c6e2 --- /dev/null +++ b/test/CodeGen/X86/2009-05-08-InlineAsmIOffset.ll @@ -0,0 +1,17 @@ +; RUN: llvm-as < %s | llc -relocation-model=static > %t +; RUN: grep "1: ._pv_cpu_ops+8" %t +; RUN: grep "2: ._G" %t +; PR4152 + +target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128" +target triple = "i386-apple-darwin9.6" + %struct.pv_cpu_ops = type { i32, [2 x i32] } +@pv_cpu_ops = external global %struct.pv_cpu_ops ; <%struct.pv_cpu_ops*> [#uses=1] +@G = external global i32 ; <i32*> [#uses=1] + +define void @x() nounwind { +entry: + tail call void asm sideeffect "1: $0", "i,~{dirflag},~{fpsr},~{flags}"(i32* getelementptr (%struct.pv_cpu_ops* @pv_cpu_ops, i32 0, i32 1, i32 1)) nounwind + tail call void asm sideeffect "2: $0", "i,~{dirflag},~{fpsr},~{flags}"(i32* @G) nounwind + ret void +} |