diff options
| author | Dale Johannesen <dalej@apple.com> | 2008-02-08 19:48:20 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2008-02-08 19:48:20 +0000 |
| commit | 36c2967d8924d77a43ae697ee03bbb73139e9233 (patch) | |
| tree | f0f388a47f21c7c940f86c6d02fdadc79d5718ba /llvm/lib/Target | |
| parent | d74057fa87f93c5c7c2d4de317686b2cb59ffbdc (diff) | |
| download | bcm5719-llvm-36c2967d8924d77a43ae697ee03bbb73139e9233.tar.gz bcm5719-llvm-36c2967d8924d77a43ae697ee03bbb73139e9233.zip | |
64-bit (MMX) vectors do not need restrictive alignment.
128-bit vectors need it only when SSE is on.
llvm-svn: 46890
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index de1a648b083..e4454709ae8 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -704,9 +704,6 @@ static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) { if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) { if (VTy->getBitWidth() == 128) MaxAlign = 16; - else if (VTy->getBitWidth() == 64) - if (MaxAlign < 8) - MaxAlign = 8; } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) { unsigned EltAlign = 0; getMaxByValAlign(ATy->getElementType(), EltAlign); @@ -727,13 +724,14 @@ static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) { /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate /// function arguments in the caller parameter area. For X86, aggregates -/// that contains are placed at 16-byte boundaries while the rest are at -/// 4-byte boundaries. +/// that contain SSE vectors are placed at 16-byte boundaries while the rest +/// are at 4-byte boundaries. unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const { if (Subtarget->is64Bit()) return getTargetData()->getABITypeAlignment(Ty); unsigned Align = 4; - getMaxByValAlign(Ty, Align); + if (Subtarget->hasSSE1()) + getMaxByValAlign(Ty, Align); return Align; } |

