Home
last modified time | relevance | path

Searched refs:IsBitset (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/
Dtypes.cc96 if (this->IsBitset()) return BitsetType::Min(this->AsBitset()); in Min()
114 if (this->IsBitset()) return BitsetType::Max(this->AsBitset()); in Max()
139 if (type->IsBitset()) { in Glb()
160 if (type->IsBitset()) return type->AsBitset(); in Lub()
525 if (that->IsBitset()) { in SlowIs()
529 if (this->IsBitset()) { in SlowIs()
551 if (that->IsBitset()) { in SemanticIs()
554 if (this->IsBitset()) { in SemanticIs()
650 if (this->IsBitset() && that->IsBitset()) return true; in SemanticMaybe()
661 if (that->IsBitset()) { in SemanticMaybe()
[all …]
Dtypes.h535 if (this->IsBitset()) return Iterator<i::Map>(); in Classes()
539 if (this->IsBitset()) return Iterator<i::Object>(); in Constants()
581 bool IsBitset() { return Config::is_bitset(this); } in IsBitset() function
585 DCHECK(this->IsBitset()); in AsBitset()
Dtypes-inl.h45 DCHECK(t->IsBitset() || t->IsClass() || t->IsConstant() || t->IsRange() || in SIMD128_TYPES()
/external/v8/test/cctest/
Dtest-types.cc35 return !IsBitset(t) && reinterpret_cast<intptr_t>(AsStruct(t)[0]) == tag; in IsStruct()
37 static bool IsBitset(Type* t) { return reinterpret_cast<uintptr_t>(t) & 1; } in IsBitset() function
71 static bool IsBitset(Handle<HeapType> t) { return t->IsSmi(); } in IsBitset() function
117 this->IsBitset(type1) == this->IsBitset(type2) && in Equal()
121 (!this->IsBitset(type1) || in Equal()
135 if (this->IsBitset(type1) && this->IsBitset(type2)) { in CheckSub()
142 if (this->IsBitset(type1) && this->IsBitset(type2)) { in CheckSubOrEqual()
151 if (this->IsBitset(type1) && this->IsBitset(type2)) { in CheckUnordered()
172 this->IsBitset(t) + t->IsClass() + t->IsConstant() + t->IsRange() + in IsSomeType()
179 CHECK(this->IsBitset(T.None)); in Bitset()
[all …]