summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/bytecompiler/RegisterID.h
diff options
context:
space:
mode:
authorKonstantin Tokarev <annulen@yandex.ru>2016-08-25 19:20:41 +0300
committerKonstantin Tokarev <annulen@yandex.ru>2017-02-02 12:30:55 +0000
commit6882a04fb36642862b11efe514251d32070c3d65 (patch)
treeb7959826000b061fd5ccc7512035c7478742f7b0 /Source/JavaScriptCore/bytecompiler/RegisterID.h
parentab6df191029eeeb0b0f16f127d553265659f739e (diff)
downloadqtwebkit-6882a04fb36642862b11efe514251d32070c3d65.tar.gz
Imported QtWebKit TP3 (git b57bc6801f1876c3220d5a4bfea33d620d477443)
Change-Id: I3b1d8a2808782c9f34d50240000e20cb38d3680f Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
Diffstat (limited to 'Source/JavaScriptCore/bytecompiler/RegisterID.h')
-rw-r--r--Source/JavaScriptCore/bytecompiler/RegisterID.h29
1 files changed, 23 insertions, 6 deletions
diff --git a/Source/JavaScriptCore/bytecompiler/RegisterID.h b/Source/JavaScriptCore/bytecompiler/RegisterID.h
index 78d49d290..688c8b9c8 100644
--- a/Source/JavaScriptCore/bytecompiler/RegisterID.h
+++ b/Source/JavaScriptCore/bytecompiler/RegisterID.h
@@ -10,7 +10,7 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
+ * 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
@@ -29,6 +29,8 @@
#ifndef RegisterID_h
#define RegisterID_h
+#include "VirtualRegister.h"
+
#include <wtf/Assertions.h>
#include <wtf/VectorTraits.h>
@@ -46,9 +48,19 @@ namespace JSC {
{
}
+ RegisterID(VirtualRegister virtualRegister)
+ : m_refCount(0)
+ , m_virtualRegister(virtualRegister)
+ , m_isTemporary(false)
+#ifndef NDEBUG
+ , m_didSetIndex(true)
+#endif
+ {
+ }
+
explicit RegisterID(int index)
: m_refCount(0)
- , m_index(index)
+ , m_virtualRegister(VirtualRegister(index))
, m_isTemporary(false)
#ifndef NDEBUG
, m_didSetIndex(true)
@@ -58,11 +70,10 @@ namespace JSC {
void setIndex(int index)
{
- ASSERT(!m_refCount);
#ifndef NDEBUG
m_didSetIndex = true;
#endif
- m_index = index;
+ m_virtualRegister = VirtualRegister(index);
}
void setTemporary()
@@ -73,7 +84,13 @@ namespace JSC {
int index() const
{
ASSERT(m_didSetIndex);
- return m_index;
+ return m_virtualRegister.offset();
+ }
+
+ VirtualRegister virtualRegister() const
+ {
+ ASSERT(m_virtualRegister.isValid());
+ return m_virtualRegister;
}
bool isTemporary()
@@ -100,7 +117,7 @@ namespace JSC {
private:
int m_refCount;
- int m_index;
+ VirtualRegister m_virtualRegister;
bool m_isTemporary;
#ifndef NDEBUG
bool m_didSetIndex;