2 * Copyright (C) 2011, 2013, 2014 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 DFGValueSource_h
27 #define DFGValueSource_h
31 #include "DFGCommon.h"
32 #include "DFGFlushFormat.h"
33 #include "DFGMinifiedID.h"
34 #include "DataFormat.h"
35 #include "SpeculatedType.h"
36 #include "ValueRecovery.h"
38 namespace JSC
{ namespace DFG
{
40 enum ValueSourceKind
{
53 static inline ValueSourceKind
dataFormatToValueSourceKind(DataFormat dataFormat
)
57 return Int32InJSStack
;
59 return Int52InJSStack
;
60 case DataFormatDouble
:
61 return DoubleInJSStack
;
62 case DataFormatBoolean
:
63 return BooleanInJSStack
;
68 case DataFormatArguments
:
69 return ArgumentsSource
;
71 RELEASE_ASSERT(dataFormat
& DataFormatJS
);
72 return ValueInJSStack
;
76 static inline DataFormat
valueSourceKindToDataFormat(ValueSourceKind kind
)
82 return DataFormatInt32
;
84 return DataFormatInt52
;
86 return DataFormatCell
;
87 case BooleanInJSStack
:
88 return DataFormatBoolean
;
90 return DataFormatDouble
;
92 return DataFormatArguments
;
94 return DataFormatDead
;
96 return DataFormatNone
;
100 static inline bool isInJSStack(ValueSourceKind kind
)
102 DataFormat format
= valueSourceKindToDataFormat(kind
);
103 return format
!= DataFormatNone
&& format
< DataFormatOSRMarker
;
106 // Can this value be recovered without having to look at register allocation state or
107 // DFG node liveness?
108 static inline bool isTriviallyRecoverable(ValueSourceKind kind
)
110 return valueSourceKindToDataFormat(kind
) != DataFormatNone
;
116 : m_kind(SourceNotSet
)
120 explicit ValueSource(ValueSourceKind valueSourceKind
)
121 : m_kind(valueSourceKind
)
123 ASSERT(kind() == ArgumentsSource
|| kind() == SourceIsDead
|| kind() == ArgumentsSource
);
126 explicit ValueSource(MinifiedID id
)
131 ASSERT(kind() == HaveNode
);
134 ValueSource(ValueSourceKind valueSourceKind
, VirtualRegister where
)
135 : m_kind(valueSourceKind
)
136 , m_value(static_cast<intptr_t>(where
.offset()))
138 ASSERT(kind() != SourceNotSet
);
139 ASSERT(kind() != HaveNode
);
142 static ValueSource
forFlushFormat(VirtualRegister where
, FlushFormat format
)
146 case ConflictingFlush
:
147 return ValueSource(SourceIsDead
);
149 return ValueSource(ValueInJSStack
, where
);
151 return ValueSource(DoubleInJSStack
, where
);
153 return ValueSource(Int32InJSStack
, where
);
155 return ValueSource(Int52InJSStack
, where
);
157 return ValueSource(CellInJSStack
, where
);
159 return ValueSource(BooleanInJSStack
, where
);
160 case FlushedArguments
:
161 return ValueSource(ArgumentsSource
);
163 RELEASE_ASSERT_NOT_REACHED();
164 return ValueSource();
167 static ValueSource
forDataFormat(VirtualRegister where
, DataFormat dataFormat
)
169 return ValueSource(dataFormatToValueSourceKind(dataFormat
), where
);
174 return kind() != SourceNotSet
;
177 bool operator!() const { return !isSet(); }
179 ValueSourceKind
kind() const
184 bool isInJSStack() const { return JSC::DFG::isInJSStack(kind()); }
185 bool isTriviallyRecoverable() const { return JSC::DFG::isTriviallyRecoverable(kind()); }
187 DataFormat
dataFormat() const
189 return valueSourceKindToDataFormat(kind());
192 ValueRecovery
valueRecovery() const
194 ASSERT(isTriviallyRecoverable());
197 return ValueRecovery::constant(jsUndefined());
199 case ArgumentsSource
:
200 return ValueRecovery::argumentsThatWereNotCreated();
203 return ValueRecovery::displacedInJSStack(virtualRegister(), dataFormat());
207 MinifiedID
id() const
209 ASSERT(kind() == HaveNode
);
210 return MinifiedID::fromBits(m_value
);
213 VirtualRegister
virtualRegister() const
215 ASSERT(isInJSStack());
216 return VirtualRegister(m_value
);
219 void dump(PrintStream
&) const;
220 void dumpInContext(PrintStream
&, DumpContext
*) const;
223 ValueSourceKind m_kind
;
227 } } // namespace JSC::DFG
229 #endif // ENABLE(DFG_JIT)
231 #endif // DFGValueSource_h