qmalloc.cpp

Absolute File Name:/home/qt/qt5_coco/qt5/qtbase/src/corelib/global/qmalloc.cpp
Source codeSwitch to Preprocessed file
LineSourceCount
1/****************************************************************************-
2**-
3** Copyright (C) 2015 The Qt Company Ltd.-
4** Contact: http://www.qt.io/licensing/-
5**-
6** This file is part of the QtCore module of the Qt Toolkit.-
7**-
8** $QT_BEGIN_LICENSE:LGPL21$-
9** Commercial License Usage-
10** Licensees holding valid commercial Qt licenses may use this file in-
11** accordance with the commercial license agreement provided with the-
12** Software or, alternatively, in accordance with the terms contained in-
13** a written agreement between you and The Qt Company. For licensing terms-
14** and conditions see http://www.qt.io/terms-conditions. For further-
15** information use the contact form at http://www.qt.io/contact-us.-
16**-
17** GNU Lesser General Public License Usage-
18** Alternatively, this file may be used under the terms of the GNU Lesser-
19** General Public License version 2.1 or version 3 as published by the Free-
20** Software Foundation and appearing in the file LICENSE.LGPLv21 and-
21** LICENSE.LGPLv3 included in the packaging of this file. Please review the-
22** following information to ensure the GNU Lesser General Public License-
23** requirements will be met: https://www.gnu.org/licenses/lgpl.html and-
24** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.-
25**-
26** As a special exception, The Qt Company gives you certain additional-
27** rights. These rights are described in The Qt Company LGPL Exception-
28** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.-
29**-
30** $QT_END_LICENSE$-
31**-
32****************************************************************************/-
33-
34#include "qplatformdefs.h"-
35-
36#include <stdlib.h>-
37-
38/*-
39 Define the container allocation functions in a separate file, so that our-
40 users can easily override them.-
41*/-
42-
43QT_BEGIN_NAMESPACE-
44-
45#if !QT_DEPRECATED_SINCE(5, 0)-
46// Make sure they're defined to be exported-
47Q_CORE_EXPORT void *qMalloc(size_t size) Q_ALLOC_SIZE(1);-
48Q_CORE_EXPORT void qFree(void *ptr);-
49Q_CORE_EXPORT void *qRealloc(void *ptr, size_t size) Q_ALLOC_SIZE(2);-
50#endif-
51-
52-
53void *qMalloc(size_t size)-
54{-
55 return ::malloc(size);
never executed: return ::malloc(size);
0
56}-
57-
58void qFree(void *ptr)-
59{-
60 ::free(ptr);-
61}
never executed: end of block
0
62-
63void *qRealloc(void *ptr, size_t size)-
64{-
65 return ::realloc(ptr, size);
never executed: return ::realloc(ptr, size);
0
66}-
67-
68void *qMallocAligned(size_t size, size_t alignment)-
69{-
70 return qReallocAligned(0, size, 0, alignment);
executed 1462 times by 4 tests: return qReallocAligned(0, size, 0, alignment);
Executed by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
1462
71}-
72-
73void *qReallocAligned(void *oldptr, size_t newsize, size_t oldsize, size_t alignment)-
74{-
75 // fake an aligned allocation-
76 Q_UNUSED(oldsize);-
77-
78 void *actualptr = oldptr ? static_cast<void **>(oldptr)[-1] : 0;
oldptrDescription
TRUEnever evaluated
FALSEevaluated 1462 times by 4 tests
Evaluated by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
0-1462
79 if (alignment <= sizeof(void*)) {
alignment <= sizeof(void*)Description
TRUEevaluated 261 times by 4 tests
Evaluated by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
FALSEevaluated 1201 times by 1 test
Evaluated by:
  • tst_Collections
261-1201
80 // special, fast case-
81 void **newptr = static_cast<void **>(realloc(actualptr, newsize + sizeof(void*)));-
82 if (!newptr)
!newptrDescription
TRUEnever evaluated
FALSEevaluated 261 times by 4 tests
Evaluated by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
0-261
83 return 0;
never executed: return 0;
0
84 if (newptr == actualptr) {
newptr == actualptrDescription
TRUEnever evaluated
FALSEevaluated 261 times by 4 tests
Evaluated by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
0-261
85 // realloc succeeded without reallocating-
86 return oldptr;
never executed: return oldptr;
0
87 }-
88-
89 *newptr = newptr;-
90 return newptr + 1;
executed 261 times by 4 tests: return newptr + 1;
Executed by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
261
91 }-
92-
93 // malloc returns pointers aligned at least at sizeof(size_t) boundaries-
94 // but usually more (8- or 16-byte boundaries).-
95 // So we overallocate by alignment-sizeof(size_t) bytes, so we're guaranteed to find a-
96 // somewhere within the first alignment-sizeof(size_t) that is properly aligned.-
97-
98 // However, we need to store the actual pointer, so we need to allocate actually size +-
99 // alignment anyway.-
100-
101 void *real = realloc(actualptr, newsize + alignment);-
102 if (!real)
!realDescription
TRUEnever evaluated
FALSEevaluated 1201 times by 1 test
Evaluated by:
  • tst_Collections
0-1201
103 return 0;
never executed: return 0;
0
104-
105 quintptr faked = reinterpret_cast<quintptr>(real) + alignment;-
106 faked &= ~(alignment - 1);-
107-
108 void **faked_ptr = reinterpret_cast<void **>(faked);-
109-
110 // now save the value of the real pointer at faked-sizeof(void*)-
111 // by construction, alignment > sizeof(void*) and is a power of 2, so-
112 // faked-sizeof(void*) is properly aligned for a pointer-
113 faked_ptr[-1] = real;-
114-
115 return faked_ptr;
executed 1201 times by 1 test: return faked_ptr;
Executed by:
  • tst_Collections
1201
116}-
117-
118void qFreeAligned(void *ptr)-
119{-
120 if (!ptr)
!ptrDescription
TRUEevaluated 2 times by 1 test
Evaluated by:
  • tst_QMetaType
FALSEevaluated 1459 times by 4 tests
Evaluated by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
2-1459
121 return;
executed 2 times by 1 test: return;
Executed by:
  • tst_QMetaType
2
122 void **ptr2 = static_cast<void **>(ptr);-
123 free(ptr2[-1]);-
124}
executed 1459 times by 4 tests: end of block
Executed by:
  • tst_Collections
  • tst_QContiguousCache
  • tst_QGuiMetaType
  • tst_QMetaType
1459
125-
126QT_END_NAMESPACE-
127-
Source codeSwitch to Preprocessed file

Generated by Squish Coco Non-Commercial 4.3.0-BETA-master-30-08-2018-4cb69e9