LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 16537 - ABI issue with the C++11 definition of POD and tail padding
Summary: ABI issue with the C++11 definition of POD and tail padding
Status: RESOLVED FIXED
Alias: None
Product: clang
Classification: Unclassified
Component: -New Bugs (show other bugs)
Version: 3.2
Hardware: PC Linux
: P normal
Assignee: Unassigned Clang Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-07-03 21:23 PDT by Josh Magee
Modified: 2013-07-19 20:49 PDT (History)
5 users (show)

See Also:
Fixed By Commit(s):


Attachments
Reproducable test case (880 bytes, text/x-c++src)
2013-07-03 21:23 PDT, Josh Magee
Details
Sample / incomplete patch (503 bytes, patch)
2013-07-03 21:24 PDT, Josh Magee
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Josh Magee 2013-07-03 21:23:07 PDT
Created attachment 10817 [details]
Reproducable test case

The attached testcase will or will not use tail padding depending on the
language mode (C++03 versus C++11).  The test uses a class that is POD in C++11
but non-POD in C++03.  Using a recent TOT of compiler (clang r185419), the
compiler will use the tail padding in C++03 mode but will not use it in C++11
mode.

The Itanium C++ ABI (http://mentorembedded.github.io/cxx-abi/abi.html) has a
clause which states that for the purpose of layout the C++03 definition of POD
should be used:

" POD for the purpose of layout

  ...

  There have been multiple published revisions to the ISO C++ standard,
  and each one has included a different definition of POD. To ensure
  interoperation of code compiled according to different revisions of
  the standard, it is necessary to settle on a single definition for a
  platform. A platform vendor may choose to follow a different revision
  of the standard, but by default, the definition of POD under this ABI
  is the definition from the 2003 revision (TC1).
"

Furthermore, r173744 refactored the RecordLayoutBuilder code and added comments
which suggest that Clang should be following the Itanium ABI with respect
towards the above POD layout rules:
"
// To preserve binary compatibility, the generic Itanium ABI has                 
// permanently locked the definition of POD to the rules of C++ TR1,             
// and that trickles down to all the derived ABIs.
"

Given this, I would expect the attached testcase to use the tail padding even
in C++11 mode.  It seems that code responsible for determining if tail padding
should be used (mustSkipTailPadding) expects that isPOD() checks the C++ TR1
(2003) definition of POD, however the behaviour with this testcase shows that
isPOD is not using the TR1 definition in all cases.

This problem showed up in Clang 3.2  (Clang 3.1 worked correctly).  The
specific revision that introduces the problem was r155756 which made isPODType
decide which POD rules (C++98 or C++11) rules to use depending on the
LangOptions.
The result is that this bug introduced ABI incompatibility between 3.1 and 3.2
when using C++11.
Comment 1 Josh Magee 2013-07-03 21:24:30 PDT
Created attachment 10818 [details]
Sample / incomplete patch

This is a small sample patch that at least superficially fixes the
problem by explicitly calling isCXX98PODType() instead of isPODType() when
setting data().PlainOldData (which is what isPOD() returns.)  The patch is not
presented as a real fix, but just to help demonstrate why isPOD() is not
consistently using the TR1 definition of POD.
Comment 2 jonathan.sauer 2013-07-04 10:09:25 PDT
See also Bug 13329 where clang's handling of tail padding of non-PODs was changed (between 3.1 and 3.2).
Comment 3 Josh Magee 2013-07-19 20:49:51 PDT
Fixed in r186741.