diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-24 20:01:50 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-24 20:01:50 +0000 |
| commit | 0a500af186d9f4b512d8777f94197cef97c2dc68 (patch) | |
| tree | 894cb8a2e814402b2188c5210babc1505b6bb1a2 /clang | |
| parent | c6326a46eaefbb0854a958843346ce120c882f84 (diff) | |
| download | bcm5719-llvm-0a500af186d9f4b512d8777f94197cef97c2dc68.tar.gz bcm5719-llvm-0a500af186d9f4b512d8777f94197cef97c2dc68.zip | |
Correctly Load Mixed FP-GP Variadic Arguments for x86-64.
According to the x86-64 ABI, structures with both floating point and
integer members are split between floating-point and general purpose
registers, and consecutive 32-bit floats can be packed into a single
floating point register.
In the case of variadic functions these are stored to memory and the position
recorded in the va_list. This was already correctly implemented in
llvm.va_start.
The problem is that the code in clang for implementing va_arg was reading
floating point registers from the wrong location.
Patch by Thomas Jablin.
Fixes PR20018.
llvm-svn: 211626
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/lib/CodeGen/TargetInfo.cpp | 4 | ||||
| -rw-r--r-- | clang/test/CodeGen/variadic-gpfp-x86.c | 15 |
2 files changed, 17 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp index 3a7ca335be7..29899eec2e1 100644 --- a/clang/lib/CodeGen/TargetInfo.cpp +++ b/clang/lib/CodeGen/TargetInfo.cpp @@ -2590,8 +2590,8 @@ llvm::Value *X86_64ABIInfo::EmitVAArg(llvm::Value *VAListAddr, QualType Ty, llvm::Type *PTyHi = llvm::PointerType::getUnqual(TyHi); llvm::Value *GPAddr = CGF.Builder.CreateGEP(RegAddr, gp_offset); llvm::Value *FPAddr = CGF.Builder.CreateGEP(RegAddr, fp_offset); - llvm::Value *RegLoAddr = TyLo->isFloatingPointTy() ? FPAddr : GPAddr; - llvm::Value *RegHiAddr = TyLo->isFloatingPointTy() ? GPAddr : FPAddr; + llvm::Value *RegLoAddr = TyLo->isFPOrFPVectorTy() ? FPAddr : GPAddr; + llvm::Value *RegHiAddr = TyLo->isFPOrFPVectorTy() ? GPAddr : FPAddr; llvm::Value *V = CGF.Builder.CreateLoad(CGF.Builder.CreateBitCast(RegLoAddr, PTyLo)); CGF.Builder.CreateStore(V, CGF.Builder.CreateStructGEP(Tmp, 0)); diff --git a/clang/test/CodeGen/variadic-gpfp-x86.c b/clang/test/CodeGen/variadic-gpfp-x86.c new file mode 100644 index 00000000000..735c4beea03 --- /dev/null +++ b/clang/test/CodeGen/variadic-gpfp-x86.c @@ -0,0 +1,15 @@ +// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s + +struct Bar { + float f1; + float f2; + unsigned u; +}; + +struct Bar foo(__builtin_va_list ap) { + return __builtin_va_arg(ap, struct Bar); +// CHECK: [[FPOP:%.*]] = getelementptr inbounds %struct.__va_list_tag* {{.*}}, i32 0, i32 1 +// CHECK: [[FPO:%.*]] = load i32* [[FPOP]] +// CHECK: [[FPVEC:%.*]] = getelementptr i8* {{.*}}, i32 [[FPO]] +// CHECK: bitcast i8* [[FPVEC]] to <2 x float>* +} |

