2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-01-18 13:13:34 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-01-18 13:13:34 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-01-18 13:13:34 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2011-05-12 13:25:35 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-01-18 13:13:34 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// W A R N I N G
|
|
|
|
// -------------
|
|
|
|
//
|
|
|
|
// This file is not part of the Qt API. It exists purely as an
|
|
|
|
// implementation detail. This header file may change from version to
|
|
|
|
// version without notice, or even be removed.
|
|
|
|
//
|
|
|
|
// We mean it.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "qmljsglobal_p.h"
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#include <QtCore/qshareddata.h>
|
|
|
|
#include <QtCore/qdebug.h>
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
#include <cstring>
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
QT_QML_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
namespace QmlJS {
|
|
|
|
|
2016-04-29 11:00:30 +02:00
|
|
|
class Managed;
|
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
class QML_PARSER_EXPORT MemoryPool : public QSharedData
|
|
|
|
{
|
2011-09-13 08:42:52 +02:00
|
|
|
MemoryPool(const MemoryPool &other);
|
|
|
|
void operator =(const MemoryPool &other);
|
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
public:
|
2011-09-13 08:42:52 +02:00
|
|
|
MemoryPool()
|
|
|
|
: _blocks(0),
|
|
|
|
_allocatedBlocks(0),
|
|
|
|
_blockCount(-1),
|
|
|
|
_ptr(0),
|
|
|
|
_end(0)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
~MemoryPool()
|
|
|
|
{
|
|
|
|
if (_blocks) {
|
|
|
|
for (int i = 0; i < _allocatedBlocks; ++i) {
|
|
|
|
if (char *b = _blocks[i])
|
2012-07-31 10:12:26 +02:00
|
|
|
free(b);
|
2011-09-13 08:42:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
free(_blocks);
|
2011-09-13 08:42:52 +02:00
|
|
|
}
|
2010-01-18 13:13:34 +01:00
|
|
|
}
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
inline void *allocate(size_t size)
|
|
|
|
{
|
|
|
|
size = (size + 7) & ~7;
|
|
|
|
if (_ptr && (_ptr + size < _end)) {
|
|
|
|
void *addr = _ptr;
|
|
|
|
_ptr += size;
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
return allocate_helper(size);
|
|
|
|
}
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
_blockCount = -1;
|
|
|
|
_ptr = _end = 0;
|
2010-01-18 13:13:34 +01:00
|
|
|
}
|
|
|
|
|
2016-04-29 11:00:30 +02:00
|
|
|
template <typename Tp> Tp *New() { return new (this->allocate(sizeof(Tp))) Tp(); }
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
private:
|
|
|
|
void *allocate_helper(size_t size)
|
|
|
|
{
|
|
|
|
Q_ASSERT(size < BLOCK_SIZE);
|
|
|
|
|
|
|
|
if (++_blockCount == _allocatedBlocks) {
|
|
|
|
if (! _allocatedBlocks)
|
|
|
|
_allocatedBlocks = DEFAULT_BLOCK_COUNT;
|
|
|
|
else
|
|
|
|
_allocatedBlocks *= 2;
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2012-07-31 10:12:26 +02:00
|
|
|
_blocks = (char **) realloc(_blocks, sizeof(char *) * _allocatedBlocks);
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
for (int index = _blockCount; index < _allocatedBlocks; ++index)
|
|
|
|
_blocks[index] = 0;
|
2010-01-18 13:13:34 +01:00
|
|
|
}
|
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
char *&block = _blocks[_blockCount];
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
if (! block)
|
2012-07-31 10:12:26 +02:00
|
|
|
block = (char *) malloc(BLOCK_SIZE);
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
_ptr = block;
|
|
|
|
_end = _ptr + BLOCK_SIZE;
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
void *addr = _ptr;
|
|
|
|
_ptr += size;
|
|
|
|
return addr;
|
2010-01-18 13:13:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2011-09-13 08:42:52 +02:00
|
|
|
char **_blocks;
|
|
|
|
int _allocatedBlocks;
|
|
|
|
int _blockCount;
|
|
|
|
char *_ptr;
|
|
|
|
char *_end;
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
BLOCK_SIZE = 8 * 1024,
|
|
|
|
DEFAULT_BLOCK_COUNT = 8
|
|
|
|
};
|
|
|
|
};
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2011-09-13 08:42:52 +02:00
|
|
|
class QML_PARSER_EXPORT Managed
|
|
|
|
{
|
|
|
|
Managed(const Managed &other);
|
|
|
|
void operator = (const Managed &other);
|
|
|
|
|
|
|
|
public:
|
|
|
|
Managed() {}
|
|
|
|
~Managed() {}
|
|
|
|
|
|
|
|
void *operator new(size_t size, MemoryPool *pool) { return pool->allocate(size); }
|
|
|
|
void operator delete(void *) {}
|
|
|
|
void operator delete(void *, MemoryPool *) {}
|
2010-01-18 13:13:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace QmlJS
|
|
|
|
|
|
|
|
QT_QML_END_NAMESPACE
|