HomeSort by relevance Sort by last modified time
    Searched refs:Lub (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/v8/src/
types.cc 114 // Glb and lub computation.
137 TypeImpl<Config>::BitsetType::Lub(TypeImpl* type) {
149 return Config::is_class(type) ? Lub(*Config::as_class(type)) :
164 TypeImpl<Config>::BitsetType::Lub(i::Map* map) {
262 TypeImpl<Config>::BitsetType::Lub(i::Object* value) {
265 return Lub(value->Number()) & (value->IsSmi() ? kTaggedInt : kTaggedPtr);
267 return Lub(i::HeapObject::cast(value)->map());
273 TypeImpl<Config>::BitsetType::Lub(double value) {
277 if (IsUint32Double(value)) return Lub(FastD2UI(value));
278 if (IsInt32Double(value)) return Lub(FastD2I(value))
341 int lub = kNone; local
    [all...]
types.h 377 return Config::from_bitset(BitsetType::Lub(value), region);
380 return Config::from_bitset(BitsetType::Lub(value), region);
517 bitset BitsetLub() { return BitsetType::Lub(this); }
600 static bitset Lub(TypeImpl* type); // least upper bound that's a bitset
601 static bitset Lub(i::Object* value);
602 static bitset Lub(double value);
603 static bitset Lub(int32_t value);
604 static bitset Lub(uint32_t value);
605 static bitset Lub(i::Map* map);
606 static bitset Lub(Limits lim)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 44 using Type::BitsetType::Lub;
71 using HeapType::BitsetType::Lub;
74 static bitset Lub(Handle<HeapType> type) { return Lub(*type); }
844 TypeHandle lub = local
845 Rep::BitsetType::New(Rep::BitsetType::Lub(type), T.region());
846 CHECK(type->Is(lub));
855 Rep::BitsetType::New(Rep::BitsetType::Lub(type1), T.region());
866 Rep::BitsetType::New(Rep::BitsetType::Lub(type1), T.region());
868 Rep::BitsetType::New(Rep::BitsetType::Lub(type2), T.region())
    [all...]

Completed in 171 milliseconds