2013-06-05 15:43:53 +00:00
|
|
|
// Copyright 2013 the V8 project authors. All rights reserved.
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * 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.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#include "types.h"
|
2013-07-10 11:20:00 +00:00
|
|
|
#include "string-stream.h"
|
2013-06-05 15:43:53 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
int TypeImpl<Config>::NumClasses() {
|
|
|
|
if (this->IsClass()) {
|
2013-06-12 17:20:37 +00:00
|
|
|
return 1;
|
2014-01-10 12:19:01 +00:00
|
|
|
} else if (this->IsUnion()) {
|
|
|
|
UnionedHandle unioned = this->AsUnion();
|
2013-06-12 17:20:37 +00:00
|
|
|
int result = 0;
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
if (Config::union_get(unioned, i)->IsClass()) ++result;
|
2013-06-12 17:20:37 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
int TypeImpl<Config>::NumConstants() {
|
|
|
|
if (this->IsConstant()) {
|
2013-06-12 17:20:37 +00:00
|
|
|
return 1;
|
2014-01-10 12:19:01 +00:00
|
|
|
} else if (this->IsUnion()) {
|
|
|
|
UnionedHandle unioned = this->AsUnion();
|
2013-06-12 17:20:37 +00:00
|
|
|
int result = 0;
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
if (Config::union_get(unioned, i)->IsConstant()) ++result;
|
2013-06-12 17:20:37 +00:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config> template<class T>
|
|
|
|
typename TypeImpl<Config>::TypeHandle
|
|
|
|
TypeImpl<Config>::Iterator<T>::get_type() {
|
2013-06-12 17:20:37 +00:00
|
|
|
ASSERT(!Done());
|
2014-01-10 12:19:01 +00:00
|
|
|
return type_->IsUnion() ? Config::union_get(type_->AsUnion(), index_) : type_;
|
2013-06-12 17:20:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
// C++ cannot specialise nested templates, so we have to go through this
|
|
|
|
// contortion with an auxiliary template to simulate it.
|
|
|
|
template<class Config, class T>
|
|
|
|
struct TypeImplIteratorAux {
|
|
|
|
static bool matches(typename TypeImpl<Config>::TypeHandle type);
|
|
|
|
static i::Handle<T> current(typename TypeImpl<Config>::TypeHandle type);
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class Config>
|
|
|
|
struct TypeImplIteratorAux<Config, i::Map> {
|
|
|
|
static bool matches(typename TypeImpl<Config>::TypeHandle type) {
|
|
|
|
return type->IsClass();
|
|
|
|
}
|
|
|
|
static i::Handle<i::Map> current(typename TypeImpl<Config>::TypeHandle type) {
|
|
|
|
return type->AsClass();
|
|
|
|
}
|
|
|
|
};
|
2013-06-12 17:20:37 +00:00
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
struct TypeImplIteratorAux<Config, i::Object> {
|
|
|
|
static bool matches(typename TypeImpl<Config>::TypeHandle type) {
|
|
|
|
return type->IsConstant();
|
|
|
|
}
|
|
|
|
static i::Handle<i::Object> current(
|
|
|
|
typename TypeImpl<Config>::TypeHandle type) {
|
|
|
|
return type->AsConstant();
|
|
|
|
}
|
|
|
|
};
|
2013-06-12 17:20:37 +00:00
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config> template<class T>
|
|
|
|
bool TypeImpl<Config>::Iterator<T>::matches(TypeHandle type) {
|
|
|
|
return TypeImplIteratorAux<Config, T>::matches(type);
|
2013-06-12 17:20:37 +00:00
|
|
|
}
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config> template<class T>
|
|
|
|
i::Handle<T> TypeImpl<Config>::Iterator<T>::Current() {
|
|
|
|
return TypeImplIteratorAux<Config, T>::current(get_type());
|
2013-06-12 17:20:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config> template<class T>
|
|
|
|
void TypeImpl<Config>::Iterator<T>::Advance() {
|
2013-06-12 17:20:37 +00:00
|
|
|
++index_;
|
2014-01-10 12:19:01 +00:00
|
|
|
if (type_->IsUnion()) {
|
|
|
|
UnionedHandle unioned = type_->AsUnion();
|
2014-01-10 14:43:48 +00:00
|
|
|
for (; index_ < Config::union_length(unioned); ++index_) {
|
2014-01-10 12:19:01 +00:00
|
|
|
if (matches(Config::union_get(unioned, index_))) return;
|
2013-06-12 17:20:37 +00:00
|
|
|
}
|
|
|
|
} else if (index_ == 0 && matches(type_)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
index_ = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-05 15:43:53 +00:00
|
|
|
// Get the smallest bitset subsuming this type.
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
int TypeImpl<Config>::LubBitset() {
|
|
|
|
if (this->IsBitset()) {
|
|
|
|
return this->AsBitset();
|
|
|
|
} else if (this->IsUnion()) {
|
|
|
|
UnionedHandle unioned = this->AsUnion();
|
2013-06-05 15:43:53 +00:00
|
|
|
int bitset = kNone;
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
bitset |= Config::union_get(unioned, i)->LubBitset();
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
return bitset;
|
2014-01-10 12:19:01 +00:00
|
|
|
} else if (this->IsClass()) {
|
|
|
|
return LubBitset(*this->AsClass());
|
2013-06-05 15:43:53 +00:00
|
|
|
} else {
|
2014-01-10 12:19:01 +00:00
|
|
|
return LubBitset(*this->AsConstant());
|
2013-11-15 15:14:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
int TypeImpl<Config>::LubBitset(i::Object* value) {
|
2013-11-15 15:14:09 +00:00
|
|
|
if (value->IsSmi()) return kSmi;
|
|
|
|
i::Map* map = i::HeapObject::cast(value)->map();
|
|
|
|
if (map->instance_type() == HEAP_NUMBER_TYPE) {
|
|
|
|
int32_t i;
|
|
|
|
uint32_t u;
|
|
|
|
if (value->ToInt32(&i)) return Smi::IsValid(i) ? kSmi : kOtherSigned32;
|
|
|
|
if (value->ToUint32(&u)) return kUnsigned32;
|
|
|
|
return kDouble;
|
|
|
|
}
|
|
|
|
if (map->instance_type() == ODDBALL_TYPE) {
|
|
|
|
if (value->IsUndefined()) return kUndefined;
|
|
|
|
if (value->IsNull()) return kNull;
|
|
|
|
if (value->IsBoolean()) return kBoolean;
|
|
|
|
if (value->IsTheHole()) return kAny; // TODO(rossberg): kNone?
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
return LubBitset(map);
|
2013-11-15 15:14:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
int TypeImpl<Config>::LubBitset(i::Map* map) {
|
2013-11-15 15:14:09 +00:00
|
|
|
switch (map->instance_type()) {
|
|
|
|
case STRING_TYPE:
|
|
|
|
case ASCII_STRING_TYPE:
|
|
|
|
case CONS_STRING_TYPE:
|
|
|
|
case CONS_ASCII_STRING_TYPE:
|
|
|
|
case SLICED_STRING_TYPE:
|
|
|
|
case SLICED_ASCII_STRING_TYPE:
|
|
|
|
case EXTERNAL_STRING_TYPE:
|
|
|
|
case EXTERNAL_ASCII_STRING_TYPE:
|
|
|
|
case EXTERNAL_STRING_WITH_ONE_BYTE_DATA_TYPE:
|
|
|
|
case SHORT_EXTERNAL_STRING_TYPE:
|
|
|
|
case SHORT_EXTERNAL_ASCII_STRING_TYPE:
|
|
|
|
case SHORT_EXTERNAL_STRING_WITH_ONE_BYTE_DATA_TYPE:
|
|
|
|
case INTERNALIZED_STRING_TYPE:
|
|
|
|
case ASCII_INTERNALIZED_STRING_TYPE:
|
|
|
|
case CONS_INTERNALIZED_STRING_TYPE:
|
|
|
|
case CONS_ASCII_INTERNALIZED_STRING_TYPE:
|
|
|
|
case EXTERNAL_INTERNALIZED_STRING_TYPE:
|
|
|
|
case EXTERNAL_ASCII_INTERNALIZED_STRING_TYPE:
|
|
|
|
case EXTERNAL_INTERNALIZED_STRING_WITH_ONE_BYTE_DATA_TYPE:
|
|
|
|
case SHORT_EXTERNAL_INTERNALIZED_STRING_TYPE:
|
|
|
|
case SHORT_EXTERNAL_ASCII_INTERNALIZED_STRING_TYPE:
|
|
|
|
case SHORT_EXTERNAL_INTERNALIZED_STRING_WITH_ONE_BYTE_DATA_TYPE:
|
|
|
|
return kString;
|
|
|
|
case SYMBOL_TYPE:
|
|
|
|
return kSymbol;
|
|
|
|
case ODDBALL_TYPE:
|
|
|
|
return kOddball;
|
|
|
|
case HEAP_NUMBER_TYPE:
|
|
|
|
return kDouble;
|
|
|
|
case JS_VALUE_TYPE:
|
|
|
|
case JS_DATE_TYPE:
|
|
|
|
case JS_OBJECT_TYPE:
|
|
|
|
case JS_CONTEXT_EXTENSION_OBJECT_TYPE:
|
|
|
|
case JS_GENERATOR_OBJECT_TYPE:
|
|
|
|
case JS_MODULE_TYPE:
|
|
|
|
case JS_GLOBAL_OBJECT_TYPE:
|
|
|
|
case JS_BUILTINS_OBJECT_TYPE:
|
|
|
|
case JS_GLOBAL_PROXY_TYPE:
|
|
|
|
case JS_ARRAY_BUFFER_TYPE:
|
|
|
|
case JS_TYPED_ARRAY_TYPE:
|
|
|
|
case JS_DATA_VIEW_TYPE:
|
|
|
|
case JS_SET_TYPE:
|
|
|
|
case JS_MAP_TYPE:
|
|
|
|
case JS_WEAK_MAP_TYPE:
|
|
|
|
case JS_WEAK_SET_TYPE:
|
|
|
|
if (map->is_undetectable()) return kUndetectable;
|
|
|
|
return kOtherObject;
|
|
|
|
case JS_ARRAY_TYPE:
|
|
|
|
return kArray;
|
|
|
|
case JS_FUNCTION_TYPE:
|
|
|
|
return kFunction;
|
|
|
|
case JS_REGEXP_TYPE:
|
|
|
|
return kRegExp;
|
|
|
|
case JS_PROXY_TYPE:
|
|
|
|
case JS_FUNCTION_PROXY_TYPE:
|
|
|
|
return kProxy;
|
|
|
|
case MAP_TYPE:
|
|
|
|
// When compiling stub templates, the meta map is used as a place holder
|
|
|
|
// for the actual map with which the template is later instantiated.
|
|
|
|
// We treat it as a kind of type variable whose upper bound is Any.
|
|
|
|
// TODO(rossberg): for caching of CompareNilIC stubs to work correctly,
|
|
|
|
// we must exclude Undetectable here. This makes no sense, really,
|
|
|
|
// because it means that the template isn't actually parametric.
|
|
|
|
// Also, it doesn't apply elsewhere. 8-(
|
|
|
|
// We ought to find a cleaner solution for compiling stubs parameterised
|
|
|
|
// over type or class variables, esp ones with bounds...
|
|
|
|
return kDetectable;
|
|
|
|
case DECLARED_ACCESSOR_INFO_TYPE:
|
|
|
|
case EXECUTABLE_ACCESSOR_INFO_TYPE:
|
|
|
|
case ACCESSOR_PAIR_TYPE:
|
|
|
|
case FIXED_ARRAY_TYPE:
|
|
|
|
return kInternal;
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
return kNone;
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Get the largest bitset subsumed by this type.
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
int TypeImpl<Config>::GlbBitset() {
|
|
|
|
if (this->IsBitset()) {
|
|
|
|
return this->AsBitset();
|
|
|
|
} else if (this->IsUnion()) {
|
2013-06-05 15:43:53 +00:00
|
|
|
// All but the first are non-bitsets and thus would yield kNone anyway.
|
2014-01-10 12:19:01 +00:00
|
|
|
return Config::union_get(this->AsUnion(), 0)->GlbBitset();
|
2013-06-05 15:43:53 +00:00
|
|
|
} else {
|
|
|
|
return kNone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-15 15:14:09 +00:00
|
|
|
// Most precise _current_ type of a value (usually its class).
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
typename TypeImpl<Config>::TypeHandle TypeImpl<Config>::OfCurrently(
|
|
|
|
i::Handle<i::Object> value, Region* region) {
|
|
|
|
if (value->IsSmi()) return Smi(region);
|
2013-11-15 15:14:09 +00:00
|
|
|
i::Map* map = i::HeapObject::cast(*value)->map();
|
|
|
|
if (map->instance_type() == HEAP_NUMBER_TYPE ||
|
|
|
|
map->instance_type() == ODDBALL_TYPE) {
|
2014-01-10 12:19:01 +00:00
|
|
|
return Of(value, region);
|
2013-11-15 15:14:09 +00:00
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
return Class(i::handle(map), region);
|
2013-11-15 15:14:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-05 15:43:53 +00:00
|
|
|
// Check this <= that.
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
bool TypeImpl<Config>::SlowIs(TypeImpl* that) {
|
2013-06-05 15:43:53 +00:00
|
|
|
// Fast path for bitsets.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (this->IsNone()) return true;
|
|
|
|
if (that->IsBitset()) {
|
|
|
|
return (this->LubBitset() | that->AsBitset()) == that->AsBitset();
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
if (that->IsClass()) {
|
|
|
|
return this->IsClass() && *this->AsClass() == *that->AsClass();
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
if (that->IsConstant()) {
|
|
|
|
return this->IsConstant() && *this->AsConstant() == *that->AsConstant();
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// (T1 \/ ... \/ Tn) <= T <=> (T1 <= T) /\ ... /\ (Tn <= T)
|
2014-01-10 12:19:01 +00:00
|
|
|
if (this->IsUnion()) {
|
|
|
|
UnionedHandle unioned = this->AsUnion();
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle this_i = Config::union_get(unioned, i);
|
2013-06-05 15:43:53 +00:00
|
|
|
if (!this_i->Is(that)) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// T <= (T1 \/ ... \/ Tn) <=> (T <= T1) \/ ... \/ (T <= Tn)
|
|
|
|
// (iff T is not a union)
|
2014-01-10 12:19:01 +00:00
|
|
|
ASSERT(!this->IsUnion());
|
|
|
|
if (that->IsUnion()) {
|
|
|
|
UnionedHandle unioned = that->AsUnion();
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle that_i = Config::union_get(unioned, i);
|
2013-06-05 15:43:53 +00:00
|
|
|
if (this->Is(that_i)) return true;
|
2014-01-10 12:19:01 +00:00
|
|
|
if (this->IsBitset()) break; // Fast fail, only first field is a bitset.
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
bool TypeImpl<Config>::IsCurrently(TypeImpl* that) {
|
2013-11-22 13:16:40 +00:00
|
|
|
return this->Is(that) ||
|
2014-01-10 12:19:01 +00:00
|
|
|
(this->IsConstant() && that->IsClass() &&
|
|
|
|
this->AsConstant()->IsHeapObject() &&
|
|
|
|
i::HeapObject::cast(*this->AsConstant())->map() == *that->AsClass());
|
2013-11-22 13:16:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-05 15:43:53 +00:00
|
|
|
// Check this overlaps that.
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
bool TypeImpl<Config>::Maybe(TypeImpl* that) {
|
2013-06-05 15:43:53 +00:00
|
|
|
// Fast path for bitsets.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (this->IsBitset()) {
|
|
|
|
return (this->AsBitset() & that->LubBitset()) != 0;
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
if (that->IsBitset()) {
|
|
|
|
return (this->LubBitset() & that->AsBitset()) != 0;
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// (T1 \/ ... \/ Tn) overlaps T <=> (T1 overlaps T) \/ ... \/ (Tn overlaps T)
|
2014-01-10 12:19:01 +00:00
|
|
|
if (this->IsUnion()) {
|
|
|
|
UnionedHandle unioned = this->AsUnion();
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle this_i = Config::union_get(unioned, i);
|
2013-06-05 15:43:53 +00:00
|
|
|
if (this_i->Maybe(that)) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// T overlaps (T1 \/ ... \/ Tn) <=> (T overlaps T1) \/ ... \/ (T overlaps Tn)
|
2014-01-10 12:19:01 +00:00
|
|
|
if (that->IsUnion()) {
|
|
|
|
UnionedHandle unioned = that->AsUnion();
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle that_i = Config::union_get(unioned, i);
|
2013-06-05 15:43:53 +00:00
|
|
|
if (this->Maybe(that_i)) return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
ASSERT(!this->IsUnion() && !that->IsUnion());
|
|
|
|
if (this->IsClass()) {
|
|
|
|
return that->IsClass() && *this->AsClass() == *that->AsClass();
|
2013-06-20 09:10:10 +00:00
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
if (this->IsConstant()) {
|
|
|
|
return that->IsConstant() && *this->AsConstant() == *that->AsConstant();
|
2013-06-20 09:10:10 +00:00
|
|
|
}
|
|
|
|
|
2013-06-05 15:43:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
bool TypeImpl<Config>::InUnion(UnionedHandle unioned, int current_size) {
|
|
|
|
ASSERT(!this->IsUnion());
|
2013-06-05 15:43:53 +00:00
|
|
|
for (int i = 0; i < current_size; ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle type = Config::union_get(unioned, i);
|
2013-06-20 09:10:10 +00:00
|
|
|
if (this->Is(type)) return true;
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-07-05 09:52:11 +00:00
|
|
|
|
2013-06-20 09:10:10 +00:00
|
|
|
// Get non-bitsets from this which are not subsumed by union, store at unioned,
|
2013-06-05 15:43:53 +00:00
|
|
|
// starting at index. Returns updated index.
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
2014-01-10 14:43:48 +00:00
|
|
|
int TypeImpl<Config>::ExtendUnion(
|
|
|
|
UnionedHandle result, TypeHandle type, int current_size) {
|
2013-06-05 15:43:53 +00:00
|
|
|
int old_size = current_size;
|
2014-01-10 14:43:48 +00:00
|
|
|
if (type->IsClass() || type->IsConstant()) {
|
|
|
|
if (!type->InUnion(result, old_size)) {
|
|
|
|
Config::union_set(result, current_size++, type);
|
|
|
|
}
|
|
|
|
} else if (type->IsUnion()) {
|
|
|
|
UnionedHandle unioned = type->AsUnion();
|
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle type = Config::union_get(unioned, i);
|
|
|
|
ASSERT(i == 0 ||
|
|
|
|
!(type->IsBitset() || type->Is(Config::union_get(unioned, 0))));
|
|
|
|
if (!type->IsBitset() && !type->InUnion(result, old_size)) {
|
2014-01-10 14:43:48 +00:00
|
|
|
Config::union_set(result, current_size++, type);
|
2014-01-10 12:19:01 +00:00
|
|
|
}
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return current_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Union is O(1) on simple bit unions, but O(n*m) on structured unions.
|
|
|
|
// TODO(rossberg): Should we use object sets somehow? Is it worth it?
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
typename TypeImpl<Config>::TypeHandle TypeImpl<Config>::Union(
|
|
|
|
TypeHandle type1, TypeHandle type2, Region* region) {
|
2013-06-05 15:43:53 +00:00
|
|
|
// Fast case: bit sets.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (type1->IsBitset() && type2->IsBitset()) {
|
|
|
|
return Config::from_bitset(type1->AsBitset() | type2->AsBitset(), region);
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
|
2013-06-21 11:10:06 +00:00
|
|
|
// Fast case: top or bottom types.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (type1->IsAny()) return type1;
|
|
|
|
if (type2->IsAny()) return type2;
|
|
|
|
if (type1->IsNone()) return type2;
|
|
|
|
if (type2->IsNone()) return type1;
|
2013-06-21 11:10:06 +00:00
|
|
|
|
2013-06-05 15:43:53 +00:00
|
|
|
// Semi-fast case: Unioned objects are neither involved nor produced.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (!(type1->IsUnion() || type2->IsUnion())) {
|
|
|
|
if (type1->Is(type2)) return type2;
|
|
|
|
if (type2->Is(type1)) return type1;
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Slow case: may need to produce a Unioned object.
|
2014-01-10 12:19:01 +00:00
|
|
|
int size = type1->IsBitset() || type2->IsBitset() ? 1 : 0;
|
|
|
|
if (!type1->IsBitset()) {
|
2014-01-10 14:43:48 +00:00
|
|
|
size += (type1->IsUnion() ? Config::union_length(type1->AsUnion()) : 1);
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
if (!type2->IsBitset()) {
|
2014-01-10 14:43:48 +00:00
|
|
|
size += (type2->IsUnion() ? Config::union_length(type2->AsUnion()) : 1);
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
ASSERT(size >= 2);
|
2014-01-10 12:19:01 +00:00
|
|
|
UnionedHandle unioned = Config::union_create(size, region);
|
2013-06-05 15:43:53 +00:00
|
|
|
size = 0;
|
|
|
|
|
|
|
|
int bitset = type1->GlbBitset() | type2->GlbBitset();
|
2014-01-10 14:43:48 +00:00
|
|
|
if (bitset != kNone) {
|
|
|
|
Config::union_set(unioned, size++, Config::from_bitset(bitset, region));
|
|
|
|
}
|
|
|
|
size = ExtendUnion(unioned, type1, size);
|
|
|
|
size = ExtendUnion(unioned, type2, size);
|
2013-06-05 15:43:53 +00:00
|
|
|
|
|
|
|
if (size == 1) {
|
2014-01-10 12:19:01 +00:00
|
|
|
return Config::union_get(unioned, 0);
|
2014-01-10 14:43:48 +00:00
|
|
|
} else {
|
|
|
|
Config::union_shrink(unioned, size);
|
2014-01-10 12:19:01 +00:00
|
|
|
return Config::from_union(unioned);
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 14:43:48 +00:00
|
|
|
// Get non-bitsets from type which are also in other, store at unioned,
|
2013-06-20 09:10:10 +00:00
|
|
|
// starting at index. Returns updated index.
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
int TypeImpl<Config>::ExtendIntersection(
|
2014-01-10 14:43:48 +00:00
|
|
|
UnionedHandle result, TypeHandle type, TypeHandle other, int current_size) {
|
2013-06-20 09:10:10 +00:00
|
|
|
int old_size = current_size;
|
2014-01-10 14:43:48 +00:00
|
|
|
if (type->IsClass() || type->IsConstant()) {
|
|
|
|
if (type->Is(other) && !type->InUnion(result, old_size)) {
|
|
|
|
Config::union_set(result, current_size++, type);
|
|
|
|
}
|
|
|
|
} else if (type->IsUnion()) {
|
|
|
|
UnionedHandle unioned = type->AsUnion();
|
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle type = Config::union_get(unioned, i);
|
|
|
|
ASSERT(i == 0 ||
|
|
|
|
!(type->IsBitset() || type->Is(Config::union_get(unioned, 0))));
|
2014-01-10 14:43:48 +00:00
|
|
|
if (!type->IsBitset() && type->Is(other) &&
|
2014-01-10 12:19:01 +00:00
|
|
|
!type->InUnion(result, old_size)) {
|
2014-01-10 14:43:48 +00:00
|
|
|
Config::union_set(result, current_size++, type);
|
2014-01-10 12:19:01 +00:00
|
|
|
}
|
2013-06-20 09:10:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return current_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Intersection is O(1) on simple bit unions, but O(n*m) on structured unions.
|
|
|
|
// TODO(rossberg): Should we use object sets somehow? Is it worth it?
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
typename TypeImpl<Config>::TypeHandle TypeImpl<Config>::Intersect(
|
|
|
|
TypeHandle type1, TypeHandle type2, Region* region) {
|
2013-06-20 09:10:10 +00:00
|
|
|
// Fast case: bit sets.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (type1->IsBitset() && type2->IsBitset()) {
|
|
|
|
return Config::from_bitset(type1->AsBitset() & type2->AsBitset(), region);
|
2013-06-20 09:10:10 +00:00
|
|
|
}
|
|
|
|
|
2013-06-21 11:10:06 +00:00
|
|
|
// Fast case: top or bottom types.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (type1->IsNone()) return type1;
|
|
|
|
if (type2->IsNone()) return type2;
|
|
|
|
if (type1->IsAny()) return type2;
|
|
|
|
if (type2->IsAny()) return type1;
|
2013-06-21 11:10:06 +00:00
|
|
|
|
2013-06-20 09:10:10 +00:00
|
|
|
// Semi-fast case: Unioned objects are neither involved nor produced.
|
2014-01-10 12:19:01 +00:00
|
|
|
if (!(type1->IsUnion() || type2->IsUnion())) {
|
|
|
|
if (type1->Is(type2)) return type1;
|
|
|
|
if (type2->Is(type1)) return type2;
|
2013-06-20 09:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Slow case: may need to produce a Unioned object.
|
|
|
|
int size = 0;
|
2014-01-10 12:19:01 +00:00
|
|
|
if (!type1->IsBitset()) {
|
2014-01-10 14:43:48 +00:00
|
|
|
size = (type1->IsUnion() ? Config::union_length(type1->AsUnion()) : 2);
|
2013-06-20 09:10:10 +00:00
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
if (!type2->IsBitset()) {
|
2014-01-10 14:43:48 +00:00
|
|
|
int size2 = (type2->IsUnion() ? Config::union_length(type2->AsUnion()) : 2);
|
2013-06-20 09:10:10 +00:00
|
|
|
size = (size == 0 ? size2 : Min(size, size2));
|
|
|
|
}
|
|
|
|
ASSERT(size >= 2);
|
2014-01-10 12:19:01 +00:00
|
|
|
UnionedHandle unioned = Config::union_create(size, region);
|
2013-06-20 09:10:10 +00:00
|
|
|
size = 0;
|
|
|
|
|
|
|
|
int bitset = type1->GlbBitset() & type2->GlbBitset();
|
2014-01-10 14:43:48 +00:00
|
|
|
if (bitset != kNone) {
|
|
|
|
Config::union_set(unioned, size++, Config::from_bitset(bitset, region));
|
|
|
|
}
|
|
|
|
size = ExtendIntersection(unioned, type1, type2, size);
|
|
|
|
size = ExtendIntersection(unioned, type2, type1, size);
|
2013-06-20 09:10:10 +00:00
|
|
|
|
|
|
|
if (size == 0) {
|
2014-01-10 12:19:01 +00:00
|
|
|
return None(region);
|
2013-06-20 09:10:10 +00:00
|
|
|
} else if (size == 1) {
|
2014-01-10 12:19:01 +00:00
|
|
|
return Config::union_get(unioned, 0);
|
2014-01-10 14:43:48 +00:00
|
|
|
} else {
|
|
|
|
Config::union_shrink(unioned, size);
|
2014-01-10 12:19:01 +00:00
|
|
|
return Config::from_union(unioned);
|
2013-06-20 09:10:10 +00:00
|
|
|
}
|
2013-06-05 15:43:53 +00:00
|
|
|
}
|
|
|
|
|
2013-07-05 09:26:22 +00:00
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
// TODO(rossberg): this does not belong here.
|
2013-07-05 09:26:22 +00:00
|
|
|
Representation Representation::FromType(Handle<Type> type) {
|
|
|
|
if (type->Is(Type::None())) return Representation::None();
|
2013-07-25 11:53:38 +00:00
|
|
|
if (type->Is(Type::Smi())) return Representation::Smi();
|
2013-07-05 09:26:22 +00:00
|
|
|
if (type->Is(Type::Signed32())) return Representation::Integer32();
|
|
|
|
if (type->Is(Type::Number())) return Representation::Double();
|
|
|
|
return Representation::Tagged();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-10 11:20:00 +00:00
|
|
|
#ifdef OBJECT_PRINT
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
void TypeImpl<Config>::TypePrint() {
|
2013-07-10 11:20:00 +00:00
|
|
|
TypePrint(stdout);
|
|
|
|
PrintF(stdout, "\n");
|
|
|
|
Flush(stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
const char* TypeImpl<Config>::bitset_name(int bitset) {
|
2013-11-22 12:38:49 +00:00
|
|
|
switch (bitset) {
|
|
|
|
#define PRINT_COMPOSED_TYPE(type, value) case k##type: return #type;
|
|
|
|
BITSET_TYPE_LIST(PRINT_COMPOSED_TYPE)
|
|
|
|
#undef PRINT_COMPOSED_TYPE
|
|
|
|
default:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template<class Config>
|
|
|
|
void TypeImpl<Config>::TypePrint(FILE* out) {
|
|
|
|
if (this->IsBitset()) {
|
|
|
|
int bitset = this->AsBitset();
|
2013-11-22 12:38:49 +00:00
|
|
|
const char* name = bitset_name(bitset);
|
|
|
|
if (name != NULL) {
|
|
|
|
PrintF(out, "%s", name);
|
|
|
|
} else {
|
|
|
|
bool is_first = true;
|
|
|
|
PrintF(out, "(");
|
|
|
|
for (int mask = 1; mask != 0; mask = mask << 1) {
|
|
|
|
if ((bitset & mask) != 0) {
|
|
|
|
if (!is_first) PrintF(out, " | ");
|
|
|
|
is_first = false;
|
|
|
|
PrintF(out, "%s", bitset_name(mask));
|
|
|
|
}
|
2013-07-10 11:20:00 +00:00
|
|
|
}
|
2013-11-22 12:38:49 +00:00
|
|
|
PrintF(out, ")");
|
2013-07-10 11:20:00 +00:00
|
|
|
}
|
2014-01-10 12:19:01 +00:00
|
|
|
} else if (this->IsConstant()) {
|
|
|
|
PrintF(out, "Constant(%p : ", static_cast<void*>(*this->AsConstant()));
|
|
|
|
Config::from_bitset(this->LubBitset())->TypePrint(out);
|
2013-10-14 12:14:42 +00:00
|
|
|
PrintF(")");
|
2014-01-10 12:19:01 +00:00
|
|
|
} else if (this->IsClass()) {
|
|
|
|
PrintF(out, "Class(%p < ", static_cast<void*>(*this->AsClass()));
|
|
|
|
Config::from_bitset(this->LubBitset())->TypePrint(out);
|
2013-10-14 12:14:42 +00:00
|
|
|
PrintF(")");
|
2014-01-10 12:19:01 +00:00
|
|
|
} else if (this->IsUnion()) {
|
2013-11-22 12:38:49 +00:00
|
|
|
PrintF(out, "(");
|
2014-01-10 12:19:01 +00:00
|
|
|
UnionedHandle unioned = this->AsUnion();
|
2014-01-10 14:43:48 +00:00
|
|
|
for (int i = 0; i < Config::union_length(unioned); ++i) {
|
2014-01-10 12:19:01 +00:00
|
|
|
TypeHandle type_i = Config::union_get(unioned, i);
|
2013-11-22 12:38:49 +00:00
|
|
|
if (i > 0) PrintF(out, " | ");
|
2013-07-10 11:20:00 +00:00
|
|
|
type_i->TypePrint(out);
|
|
|
|
}
|
2013-11-22 12:38:49 +00:00
|
|
|
PrintF(out, ")");
|
2013-07-10 11:20:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2014-01-10 14:43:48 +00:00
|
|
|
template class TypeImpl<ZoneTypeConfig>;
|
|
|
|
template class TypeImpl<ZoneTypeConfig>::Iterator<i::Map>;
|
|
|
|
template class TypeImpl<ZoneTypeConfig>::Iterator<i::Object>;
|
|
|
|
|
2014-01-10 12:19:01 +00:00
|
|
|
template class TypeImpl<HeapTypeConfig>;
|
|
|
|
template class TypeImpl<HeapTypeConfig>::Iterator<i::Map>;
|
|
|
|
template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>;
|
|
|
|
|
|
|
|
|
2013-06-05 15:43:53 +00:00
|
|
|
} } // namespace v8::internal
|