diff options
author | David Majnemer <david.majnemer@gmail.com> | 2016-05-12 03:51:52 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2016-05-12 03:51:52 +0000 |
commit | 7f980d842cf9e89185fdedfd7e0c9ec279b775f5 (patch) | |
tree | fe6b7d11c344a551fa8b341a44c1b90763fa845a /clang/lib/CodeGen/CGExprCXX.cpp | |
parent | ab83dc646d3eaa4f17a188b8a91c7d271ebf062e (diff) | |
download | bcm5719-llvm-7f980d842cf9e89185fdedfd7e0c9ec279b775f5.tar.gz bcm5719-llvm-7f980d842cf9e89185fdedfd7e0c9ec279b775f5.zip |
[MS ABI] Don't crash when zero-initializing a vbase which contains a vbase
Bases can be zero-initialized: the storage is zero-initialized before
the base constructor is run.
The MS ABI has a quirk where base VBPtrs are not installed by the
base constructor but by the most derived class. In particular, they are
installed before the base constructor is run.
The derived constructor must be careful to zero-initialize only the bits
of the class which haven't already been populated by virtual base
pointers.
While we correctly avoided this scenario, we didn't handle the case
where the base class has virtual bases which have virtual bases.
llvm-svn: 269271
Diffstat (limited to 'clang/lib/CodeGen/CGExprCXX.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprCXX.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGExprCXX.cpp b/clang/lib/CodeGen/CGExprCXX.cpp index c6f46c3969b..7e17c55ee60 100644 --- a/clang/lib/CodeGen/CGExprCXX.cpp +++ b/clang/lib/CodeGen/CGExprCXX.cpp @@ -370,6 +370,9 @@ static void EmitNullBaseClassInitialization(CodeGenFunction &CGF, std::vector<CharUnits> VBPtrOffsets = CGF.CGM.getCXXABI().getVBPtrOffsets(Base); for (CharUnits VBPtrOffset : VBPtrOffsets) { + // Stop before we hit any virtual base pointers located in virtual bases. + if (VBPtrOffset >= NVSize) + break; std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val(); CharUnits LastStoreOffset = LastStore.first; CharUnits LastStoreSize = LastStore.second; |