aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGExprCXX.cpp
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-08-26 15:23:38 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2010-08-26 15:23:38 +0000
commite7ab92e1d62f9c243bbd1f42f72a7b3c2666d33e (patch)
tree137bf3b0c827e263eba9997fc7d59f2e72942044 /lib/CodeGen/CGExprCXX.cpp
parentf0a5d6fe7d16b9374598c0430585d28dc5c55362 (diff)
Fix miscompilation. The cookie was not used when new'ing arrays with multiple dimensions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprCXX.cpp')
-rw-r--r--lib/CodeGen/CGExprCXX.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/lib/CodeGen/CGExprCXX.cpp b/lib/CodeGen/CGExprCXX.cpp
index 7fb6b3edc2..97ee76cebd 100644
--- a/lib/CodeGen/CGExprCXX.cpp
+++ b/lib/CodeGen/CGExprCXX.cpp
@@ -296,6 +296,7 @@ CodeGenFunction::EmitCXXConstructExpr(llvm::Value *Dest,
}
static CharUnits CalculateCookiePadding(ASTContext &Ctx, QualType ElementType) {
+ ElementType = Ctx.getBaseElementType(ElementType);
const RecordType *RT = ElementType->getAs<RecordType>();
if (!RT)
return CharUnits::Zero();
@@ -376,18 +377,29 @@ static llvm::Value *EmitCXXNewAllocSize(ASTContext &Context,
const CXXNewExpr *E,
llvm::Value *&NumElements,
llvm::Value *&SizeWithoutCookie) {
- QualType Type = E->getAllocatedType();
- CharUnits TypeSize = CGF.getContext().getTypeSizeInChars(Type);
- const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
+ QualType ElemType = E->getAllocatedType();
if (!E->isArray()) {
+ CharUnits TypeSize = CGF.getContext().getTypeSizeInChars(ElemType);
+ const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
SizeWithoutCookie = llvm::ConstantInt::get(SizeTy, TypeSize.getQuantity());
return SizeWithoutCookie;
}
// Emit the array size expression.
+ // We multiply the size of all dimensions for NumElements.
+ // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
NumElements = CGF.EmitScalarExpr(E->getArraySize());
-
+ while (const ConstantArrayType *CAT
+ = CGF.getContext().getAsConstantArrayType(ElemType)) {
+ ElemType = CAT->getElementType();
+ llvm::Value *ArraySize
+ = llvm::ConstantInt::get(CGF.CGM.getLLVMContext(), CAT->getSize());
+ NumElements = CGF.Builder.CreateMul(NumElements, ArraySize);
+ }
+
+ CharUnits TypeSize = CGF.getContext().getTypeSizeInChars(ElemType);
+ const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType());
llvm::Value *Size = llvm::ConstantInt::get(SizeTy, TypeSize.getQuantity());
// If someone is doing 'new int[42]' there is no need to do a dynamic check.