2 * Copyright (C) 2012 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
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 DFGVariableEvent_h
27 #define DFGVariableEvent_h
31 #include "DFGCommon.h"
32 #include "DFGMinifiedID.h"
33 #include "DataFormat.h"
34 #include "MacroAssembler.h"
37 namespace JSC
{ namespace DFG
{
39 enum VariableEventKind
{
40 // Marks the beginning of a checkpoint. If you interpret the variable
41 // events starting at a Reset point then you'll get everything you need.
44 // Node births. Points in the code where a node becomes relevant for OSR.
45 // It may be the point where it is actually born (i.e. assigned) or it may
46 // be a later point, if it's only later in the sequence of instructions
47 // that we start to care about this node.
51 // Events related to how a node is represented.
55 // Death of a node - after this we no longer care about this node.
58 // A MovHintEvent means that a node is being associated with a bytecode operand,
59 // but that it has not been stored into that operand.
62 // A SetLocalEvent means that a node's value has been stored into the stack.
65 // Used to indicate an uninitialized VariableEvent. Don't use for other
70 union VariableRepresentation
{
71 MacroAssembler::RegisterID gpr
;
72 MacroAssembler::FPRegisterID fpr
;
75 MacroAssembler::RegisterID tagGPR
;
76 MacroAssembler::RegisterID payloadGPR
;
85 : m_kind(InvalidEventKind
)
89 static VariableEvent
reset()
96 static VariableEvent
fillGPR(VariableEventKind kind
, MinifiedID id
, MacroAssembler::RegisterID gpr
, DataFormat dataFormat
)
98 ASSERT(kind
== BirthToFill
|| kind
== Fill
);
99 ASSERT(dataFormat
!= DataFormatDouble
);
100 #if USE(JSVALUE32_64)
101 ASSERT(!(dataFormat
& DataFormatJS
));
104 event
.m_which
.id
= id
.bits();
105 event
.m_representation
.gpr
= gpr
;
107 event
.m_dataFormat
= dataFormat
;
111 #if USE(JSVALUE32_64)
112 static VariableEvent
fillPair(VariableEventKind kind
, MinifiedID id
, MacroAssembler::RegisterID tagGPR
, MacroAssembler::RegisterID payloadGPR
)
114 ASSERT(kind
== BirthToFill
|| kind
== Fill
);
116 event
.m_which
.id
= id
.bits();
117 event
.m_representation
.pair
.tagGPR
= tagGPR
;
118 event
.m_representation
.pair
.payloadGPR
= payloadGPR
;
120 event
.m_dataFormat
= DataFormatJS
;
123 #endif // USE(JSVALUE32_64)
125 static VariableEvent
fillFPR(VariableEventKind kind
, MinifiedID id
, MacroAssembler::FPRegisterID fpr
)
127 ASSERT(kind
== BirthToFill
|| kind
== Fill
);
129 event
.m_which
.id
= id
.bits();
130 event
.m_representation
.fpr
= fpr
;
132 event
.m_dataFormat
= DataFormatDouble
;
136 static VariableEvent
spill(VariableEventKind kind
, MinifiedID id
, VirtualRegister virtualRegister
, DataFormat format
)
138 ASSERT(kind
== BirthToSpill
|| kind
== Spill
);
140 event
.m_which
.id
= id
.bits();
141 event
.m_representation
.virtualReg
= virtualRegister
.offset();
143 event
.m_dataFormat
= format
;
147 static VariableEvent
death(MinifiedID id
)
150 event
.m_which
.id
= id
.bits();
151 event
.m_kind
= Death
;
155 static VariableEvent
setLocal(
156 VirtualRegister bytecodeReg
, VirtualRegister machineReg
, DataFormat format
)
159 event
.m_which
.virtualReg
= machineReg
.offset();
160 event
.m_representation
.virtualReg
= bytecodeReg
.offset();
161 event
.m_kind
= SetLocalEvent
;
162 event
.m_dataFormat
= format
;
166 static VariableEvent
movHint(MinifiedID id
, VirtualRegister bytecodeReg
)
169 event
.m_which
.id
= id
.bits();
170 event
.m_representation
.virtualReg
= bytecodeReg
.offset();
171 event
.m_kind
= MovHintEvent
;
175 VariableEventKind
kind() const
177 return static_cast<VariableEventKind
>(m_kind
);
180 MinifiedID
id() const
182 ASSERT(m_kind
== BirthToFill
|| m_kind
== Fill
183 || m_kind
== BirthToSpill
|| m_kind
== Spill
184 || m_kind
== Death
|| m_kind
== MovHintEvent
);
185 return MinifiedID::fromBits(m_which
.id
);
188 DataFormat
dataFormat() const
190 ASSERT(m_kind
== BirthToFill
|| m_kind
== Fill
191 || m_kind
== BirthToSpill
|| m_kind
== Spill
192 || m_kind
== SetLocalEvent
);
193 return static_cast<DataFormat
>(m_dataFormat
);
196 MacroAssembler::RegisterID
gpr() const
198 ASSERT(m_kind
== BirthToFill
|| m_kind
== Fill
);
199 ASSERT(m_dataFormat
);
200 ASSERT(m_dataFormat
!= DataFormatDouble
);
201 #if USE(JSVALUE32_64)
202 ASSERT(!(m_dataFormat
& DataFormatJS
));
204 return m_representation
.gpr
;
207 #if USE(JSVALUE32_64)
208 MacroAssembler::RegisterID
tagGPR() const
210 ASSERT(m_kind
== BirthToFill
|| m_kind
== Fill
);
211 ASSERT(m_dataFormat
& DataFormatJS
);
212 return m_representation
.pair
.tagGPR
;
214 MacroAssembler::RegisterID
payloadGPR() const
216 ASSERT(m_kind
== BirthToFill
|| m_kind
== Fill
);
217 ASSERT(m_dataFormat
& DataFormatJS
);
218 return m_representation
.pair
.payloadGPR
;
220 #endif // USE(JSVALUE32_64)
222 MacroAssembler::FPRegisterID
fpr() const
224 ASSERT(m_kind
== BirthToFill
|| m_kind
== Fill
);
225 ASSERT(m_dataFormat
== DataFormatDouble
);
226 return m_representation
.fpr
;
229 VirtualRegister
spillRegister() const
231 ASSERT(m_kind
== BirthToSpill
|| m_kind
== Spill
);
232 return VirtualRegister(m_representation
.virtualReg
);
235 VirtualRegister
bytecodeRegister() const
237 ASSERT(m_kind
== SetLocalEvent
|| m_kind
== MovHintEvent
);
238 return VirtualRegister(m_representation
.virtualReg
);
241 VirtualRegister
machineRegister() const
243 ASSERT(m_kind
== SetLocalEvent
);
244 return VirtualRegister(m_which
.virtualReg
);
247 const VariableRepresentation
& variableRepresentation() const { return m_representation
; }
249 void dump(PrintStream
&) const;
252 void dumpFillInfo(const char* name
, PrintStream
&) const;
253 void dumpSpillInfo(const char* name
, PrintStream
&) const;
260 // For BirthToFill, Fill:
261 // - The GPR or FPR, or a GPR pair.
262 // For BirthToSpill, Spill:
263 // - The virtual register.
264 // For MovHintEvent, SetLocalEvent:
265 // - The bytecode operand.
268 VariableRepresentation m_representation
;
274 } } // namespace JSC::DFG
276 #endif // ENABLE(DFG_JIT)
278 #endif // DFGVariableEvent_h