From 19c2b9a66fa05fc6b945697919e97f52bc5a0c75 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Fri, 26 Oct 2007 16:31:40 +0000 Subject: [PATCH] Codegen global array initializers. llvm-svn: 43383 --- clang/CodeGen/CodeGenModule.cpp | 36 ++++++++++++++++++++++++++++++++- clang/test/CodeGen/globalinit.c | 4 ++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 clang/test/CodeGen/globalinit.c diff --git a/clang/CodeGen/CodeGenModule.cpp b/clang/CodeGen/CodeGenModule.cpp index 8cb138ebff53..00c262167c67 100644 --- a/clang/CodeGen/CodeGenModule.cpp +++ b/clang/CodeGen/CodeGenModule.cpp @@ -72,7 +72,41 @@ void CodeGenModule::EmitGlobalVar(const FileVarDecl *D) { if (D->getInit()->isIntegerConstantExpr(Value, Context)) Init = llvm::ConstantInt::get(Value); } - assert(Init && "FIXME: Global variable initializers unimp!"); + + if (!Init) { + if (const InitListExpr *ILE = dyn_cast(D->getInit())) { + + unsigned NumInitElements = ILE->getNumInits(); + + assert ( ILE->getType()->isArrayType() + && "FIXME: Only Array initializers are supported"); + + std::vector ArrayElts; + const llvm::PointerType *APType = cast(GV->getType()); + const llvm::ArrayType *AType = cast(APType->getElementType()); + + // Copy initializer elements. + unsigned i = 0; + for (i = 0; i < NumInitElements; ++i) { + assert (ILE->getInit(i)->getType()->isIntegerType() + && "Only IntegerType global array initializers are supported"); + llvm::APSInt Value(static_cast( + getContext().getTypeSize(ILE->getInit(i)->getType(), SourceLocation()))); + if (ILE->getInit(i)->isIntegerConstantExpr(Value, Context)) { + llvm::Constant *C = llvm::ConstantInt::get(Value); + ArrayElts.push_back(C); + } + } + + // Initialize remaining array elements. + unsigned NumArrayElements = AType->getNumElements(); + for (; i < NumArrayElements; ++i) + ArrayElts.push_back(llvm::Constant::getNullValue(AType->getElementType())); + + Init = llvm::ConstantArray::get(AType, ArrayElts); + } else + assert(Init && "FIXME: Global variable initializers unimp!"); + } GV->setInitializer(Init); diff --git a/clang/test/CodeGen/globalinit.c b/clang/test/CodeGen/globalinit.c new file mode 100644 index 000000000000..7087669cbd13 --- /dev/null +++ b/clang/test/CodeGen/globalinit.c @@ -0,0 +1,4 @@ +// RUN: clang -emit-llvm %s + +int A[10] = { 1,2,3,4,5 }; +