]> granicus.if.org Git - clang/commit
Enhance the init generation logic to emit a memset followed by a few stores when
authorChris Lattner <sabre@nondot.org>
Thu, 2 Dec 2010 01:58:41 +0000 (01:58 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 2 Dec 2010 01:58:41 +0000 (01:58 +0000)
commit70b02943ddee9ee31e9641ab3f5eb0dc874b7e03
tree2760abcbc7e87c11467fd322819f5850dbae0125
parent12f78a6741a4cb3d904340f8d3d2714568b50e7a
Enhance the init generation logic to emit a memset followed by a few stores when
a global is larger than 32 bytes and has fewer than 6 non-zero values in the
initializer.  Previously we'd turn something like this:

char test8(int X) {
  char str[10000] = "abc";

into a 10K global variable which we then memcpy'd from.  Now we generate:

  %str = alloca [10000 x i8], align 16
  %tmp = getelementptr inbounds [10000 x i8]* %str, i64 0, i64 0
  call void @llvm.memset.p0i8.i64(i8* %tmp, i8 0, i64 10000, i32 16, i1 false)
  store i8 97, i8* %tmp, align 16
  %0 = getelementptr [10000 x i8]* %str, i64 0, i64 1
  store i8 98, i8* %0, align 1
  %1 = getelementptr [10000 x i8]* %str, i64 0, i64 2
  store i8 99, i8* %1, align 2

Which is much smaller in space and also likely faster.

This is part of PR279

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@120645 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/CGDecl.cpp
test/CodeGen/init.c