Rubber-stamped by Brady Eidson.
[webbrowser.git] / JavaScriptCore / assembler / AssemblerBuffer.h
blob073906a526439e7f58fff1e29364d81cca30eb5e
1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef AssemblerBuffer_h
27 #define AssemblerBuffer_h
29 #include <wtf/Platform.h>
31 #if ENABLE(ASSEMBLER)
33 #include "stdint.h"
34 #include <string.h>
35 #include <jit/ExecutableAllocator.h>
36 #include <wtf/Assertions.h>
37 #include <wtf/FastMalloc.h>
39 namespace JSC {
41 class AssemblerBuffer {
42 static const int inlineCapacity = 256;
43 public:
44 AssemblerBuffer()
45 : m_buffer(m_inlineBuffer)
46 , m_capacity(inlineCapacity)
47 , m_size(0)
51 ~AssemblerBuffer()
53 if (m_buffer != m_inlineBuffer)
54 fastFree(m_buffer);
57 void ensureSpace(int space)
59 if (m_size > m_capacity - space)
60 grow();
63 bool isAligned(int alignment) const
65 return !(m_size & (alignment - 1));
68 void putByteUnchecked(int value)
70 ASSERT(!(m_size > m_capacity - 4));
71 m_buffer[m_size] = value;
72 m_size++;
75 void putByte(int value)
77 if (m_size > m_capacity - 4)
78 grow();
79 putByteUnchecked(value);
82 void putShortUnchecked(int value)
84 ASSERT(!(m_size > m_capacity - 4));
85 *reinterpret_cast<short*>(&m_buffer[m_size]) = value;
86 m_size += 2;
89 void putShort(int value)
91 if (m_size > m_capacity - 4)
92 grow();
93 putShortUnchecked(value);
96 void putIntUnchecked(int value)
98 ASSERT(!(m_size > m_capacity - 4));
99 *reinterpret_cast<int*>(&m_buffer[m_size]) = value;
100 m_size += 4;
103 void putInt64Unchecked(int64_t value)
105 ASSERT(!(m_size > m_capacity - 8));
106 *reinterpret_cast<int64_t*>(&m_buffer[m_size]) = value;
107 m_size += 8;
110 void putInt(int value)
112 if (m_size > m_capacity - 4)
113 grow();
114 putIntUnchecked(value);
117 void* data() const
119 return m_buffer;
122 int size() const
124 return m_size;
127 void* executableCopy(ExecutablePool* allocator)
129 if (!m_size)
130 return 0;
132 void* result = allocator->alloc(m_size);
134 if (!result)
135 return 0;
137 ExecutableAllocator::makeWritable(result, m_size);
139 return memcpy(result, m_buffer, m_size);
142 protected:
143 void append(const char* data, int size)
145 if (m_size > m_capacity - size)
146 grow(size);
148 memcpy(m_buffer + m_size, data, size);
149 m_size += size;
152 void grow(int extraCapacity = 0)
154 m_capacity += m_capacity / 2 + extraCapacity;
156 if (m_buffer == m_inlineBuffer) {
157 char* newBuffer = static_cast<char*>(fastMalloc(m_capacity));
158 m_buffer = static_cast<char*>(memcpy(newBuffer, m_buffer, m_size));
159 } else
160 m_buffer = static_cast<char*>(fastRealloc(m_buffer, m_capacity));
163 char m_inlineBuffer[inlineCapacity];
164 char* m_buffer;
165 int m_capacity;
166 int m_size;
169 } // namespace JSC
171 #endif // ENABLE(ASSEMBLER)
173 #endif // AssemblerBuffer_h