const llvm::Type *LElemPtrTy =
llvm::PointerType::get(LElemTy, D.getType().getAddressSpace());
- llvm::Value *VLASize = GetVLASize(VAT);
+ llvm::Value *VLASize = EmitVLASize(VAT);
// Allocate memory for the array.
llvm::Value *VLA = Builder.CreateAlloca(llvm::Type::Int8Ty, VLASize, "vla");
return AddrTyped;
}
+
llvm::Value *CodeGenFunction::GetVLASize(const VariableArrayType *VAT)
{
llvm::Value *&SizeEntry = VLASizeMap[VAT];
-
- if (!SizeEntry) {
- // Get the element size;
- llvm::Value *ElemSize;
- QualType ElemTy = VAT->getElementType();
-
- if (const VariableArrayType *ElemVAT =
- getContext().getAsVariableArrayType(ElemTy))
- ElemSize = GetVLASize(ElemVAT);
- else {
- // FIXME: We use Int32Ty here because the alloca instruction takes a
- // 32-bit integer. What should we do about overflow?
- ElemSize = llvm::ConstantInt::get(llvm::Type::Int32Ty,
- getContext().getTypeSize(ElemTy) / 8);
- }
+ assert(SizeEntry && "Did not emit size for type");
+ return SizeEntry;
+}
- llvm::Value *NumElements = EmitScalarExpr(VAT->getSizeExpr());
+llvm::Value *CodeGenFunction::EmitVLASize(const VariableArrayType *VAT)
+{
+ llvm::Value *&SizeEntry = VLASizeMap[VAT];
- SizeEntry = Builder.CreateMul(ElemSize, NumElements);
+ assert(!SizeEntry && "Must not emit the same VLA size more than once!");
+ // Get the element size;
+ llvm::Value *ElemSize;
+
+ QualType ElemTy = VAT->getElementType();
+
+ if (const VariableArrayType *ElemVAT =
+ getContext().getAsVariableArrayType(ElemTy))
+ ElemSize = EmitVLASize(ElemVAT);
+ else {
+ // FIXME: We use Int32Ty here because the alloca instruction takes a
+ // 32-bit integer. What should we do about overflow?
+ ElemSize = llvm::ConstantInt::get(llvm::Type::Int32Ty,
+ getContext().getTypeSize(ElemTy) / 8);
}
+ llvm::Value *NumElements = EmitScalarExpr(VAT->getSizeExpr());
+
+ SizeEntry = Builder.CreateMul(ElemSize, NumElements);
+
return SizeEntry;
}
// FIXME: We should be able to get rid of this method and use the va_arg
// instruction in LLVM instead once it works well enough.
llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty);
-
+
+ // EmitVLASize - Generate code for the VLA type. Returns an
+ // lLVM value that corresponds to the size in bytes of the
+ llvm::Value *EmitVLASize(const VariableArrayType *);
+
// GetVLASize - Returns an LLVM value that corresponds to the size in bytes
// of a variable length array type.
llvm::Value *GetVLASize(const VariableArrayType *);