]>
git.saurik.com Git - apple/javascriptcore.git/blob - dfg/DFGLazyJSValue.cpp
2 * Copyright (C) 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.
27 #include "DFGLazyJSValue.h"
31 #include "JSCInlines.h"
33 namespace JSC
{ namespace DFG
{
35 JSValue
LazyJSValue::getValue(VM
& vm
) const
39 return value()->value();
40 case SingleCharacterString
:
41 return jsSingleCharacterString(&vm
, u
.character
);
43 return jsString(&vm
, u
.stringImpl
);
45 RELEASE_ASSERT_NOT_REACHED();
49 static TriState
equalToSingleCharacter(JSValue value
, UChar character
)
51 if (!value
.isString())
54 JSString
* jsString
= asString(value
);
55 if (jsString
->length() != 1)
58 const StringImpl
* string
= jsString
->tryGetValueImpl();
62 return triState(string
->at(0) == character
);
65 static TriState
equalToStringImpl(JSValue value
, StringImpl
* stringImpl
)
67 if (!value
.isString())
70 JSString
* jsString
= asString(value
);
71 const StringImpl
* string
= jsString
->tryGetValueImpl();
75 return triState(WTF::equal(stringImpl
, string
));
78 TriState
LazyJSValue::strictEqual(const LazyJSValue
& other
) const
82 switch (other
.m_kind
) {
84 return JSValue::pureStrictEqual(value()->value(), other
.value()->value());
85 case SingleCharacterString
:
86 return equalToSingleCharacter(value()->value(), other
.character());
88 return equalToStringImpl(value()->value(), other
.stringImpl());
91 case SingleCharacterString
:
92 switch (other
.m_kind
) {
93 case SingleCharacterString
:
94 return triState(character() == other
.character());
96 if (other
.stringImpl()->length() != 1)
98 return triState(other
.stringImpl()->at(0) == character());
100 return other
.strictEqual(*this);
103 case KnownStringImpl
:
104 switch (other
.m_kind
) {
105 case KnownStringImpl
:
106 return triState(WTF::equal(stringImpl(), other
.stringImpl()));
108 return other
.strictEqual(*this);
112 RELEASE_ASSERT_NOT_REACHED();
113 return FalseTriState
;
116 uintptr_t LazyJSValue::switchLookupValue(SwitchKind kind
) const
118 // NB. Not every kind of JSValue will be able to give you a switch lookup
119 // value, and this method will assert, or do bad things, if you use it
120 // for a kind of value that can't.
125 return value()->value().asInt32();
127 return bitwise_cast
<uintptr_t>(value()->value().asCell());
129 RELEASE_ASSERT_NOT_REACHED();
132 case SingleCharacterString
:
137 RELEASE_ASSERT_NOT_REACHED();
141 RELEASE_ASSERT_NOT_REACHED();
146 void LazyJSValue::dumpInContext(PrintStream
& out
, DumpContext
* context
) const
150 value()->dumpInContext(out
, context
);
152 case SingleCharacterString
:
153 out
.print("Lazy:SingleCharacterString(");
154 out
.printf("%04X", static_cast<unsigned>(character()));
155 out
.print(" / ", StringImpl::utf8ForCharacters(&u
.character
, 1), ")");
157 case KnownStringImpl
:
158 out
.print("Lazy:String(", stringImpl(), ")");
161 RELEASE_ASSERT_NOT_REACHED();
164 void LazyJSValue::dump(PrintStream
& out
) const
166 dumpInContext(out
, 0);
169 } } // namespace JSC::DFG
171 #endif // ENABLE(DFG_JIT)