1 //===- llvm/ADT/SmallVector.cpp - 'Normally small' vectors ----------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the SmallVector class.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/ADT/SmallVector.h"
17 // Check that no bytes are wasted.
18 static_assert(sizeof(SmallVector
<void *, 1>) == sizeof(void *) * 4,
19 "wasted space in SmallVector size 1; missing EBO?");
21 /// grow_pod - This is an implementation of the grow() method which only works
22 /// on POD-like datatypes and is out of line to reduce code duplication.
23 void SmallVectorBase::grow_pod(void *FirstEl
, size_t MinSizeInBytes
,
25 size_t CurSizeBytes
= size_in_bytes();
26 size_t NewCapacityInBytes
= 2 * capacity_in_bytes() + TSize
; // Always grow.
27 if (NewCapacityInBytes
< MinSizeInBytes
)
28 NewCapacityInBytes
= MinSizeInBytes
;
31 if (BeginX
== FirstEl
) {
32 NewElts
= safe_malloc(NewCapacityInBytes
);
34 // Copy the elements over. No need to run dtors on PODs.
35 memcpy(NewElts
, this->BeginX
, CurSizeBytes
);
37 // If this wasn't grown from the inline copy, grow the allocated space.
38 NewElts
= safe_realloc(this->BeginX
, NewCapacityInBytes
);
41 this->EndX
= (char*)NewElts
+CurSizeBytes
;
42 this->BeginX
= NewElts
;
43 this->CapacityX
= (char*)this->BeginX
+ NewCapacityInBytes
;