CodeGen: ConstStructBuilder must verify packed constraints after padding
authorDavid Majnemer <david.majnemer@gmail.com>
Sun, 19 Oct 2014 23:40:06 +0000 (23:40 +0000)
committerDavid Majnemer <david.majnemer@gmail.com>
Sun, 19 Oct 2014 23:40:06 +0000 (23:40 +0000)
commit8e133965c8ff3063a50c118c3797a5d7bb4fc75f
tree26366f3cc049f98621e3189eb5d9af0ed1e5cdd3
parentc4df33be5af658c3ef5316bb6dc4cb370ec9a138
CodeGen: ConstStructBuilder must verify packed constraints after padding

This reverts commit r220169 which reverted r220153.  However, it also
contains additional changes:
- We may need to add padding *after* we've packed the struct.  This
  occurs when the aligned next field offset is greater than the new
  field's offset.  When this occurs, we make the struct packed.
  *However*, once packed the next field offset might be less than the
  new feild's offset.  It is in this case that we might further pad the
  struct.
- We would pad structs which were perfectly sized!  This behavior is
  immensely old.  This behavior came from blindly subtracting
  NextFieldOffsetInChars from RecordSize.  This doesn't take into
  account the fact that the struct might have a greater overall
  alignment than the last field.

llvm-svn: 220175
clang/lib/CodeGen/CGExprConstant.cpp
clang/test/CodeGen/2008-07-22-bitfield-init-after-zero-len-array.c
clang/test/CodeGen/const-init.c
clang/test/CodeGenCXX/atomicinit.cpp
clang/test/CodeGenCXX/debug-info-template.cpp
clang/test/Modules/templates.mm