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

  /external/v8/src/
types.h 438 BitsetType::Lub(value)), region);
442 BitsetType::Lub(value)), region);
596 bitset BitsetLub() { return BitsetType::Lub(this); }
683 static bitset Lub(TypeImpl* type); // least upper bound that's a bitset
684 static bitset Lub(i::Map* map);
685 static bitset Lub(i::Object* value);
686 static bitset Lub(double value);
687 static bitset Lub(double min, double max);
802 type->Set(0, BitsetType::New(BitsetType::Lub(*map), region));
815 bitset Lub() {
    [all...]
types.cc 130 // Glb and lub computation.
158 TypeImpl<Config>::BitsetType::Lub(TypeImpl* type) {
171 if (type->IsClass()) return type->AsClass()->Lub();
172 if (type->IsConstant()) return type->AsConstant()->Lub();
173 if (type->IsRange()) return type->AsRange()->Lub();
184 TypeImpl<Config>::BitsetType::Lub(i::Map* map) {
325 TypeImpl<Config>::BitsetType::Lub(i::Object* value) {
328 return Lub(value->Number()) &
331 return Lub(i::HeapObject::cast(value)->map());
337 TypeImpl<Config>::BitsetType::Lub(double value)
393 int lub = kNone; local
    [all...]
  /external/v8/test/cctest/
test-types.cc 59 using Type::BitsetType::Lub;
87 using HeapType::BitsetType::Lub;
90 static bitset Lub(Handle<HeapType> type) { return Lub(*type); }
718 // Lub(Range(x,y))->Min() <= x and y <= Lub(Range(x,y))->Max()
722 TypeHandle lub = Rep::BitsetType::New( local
723 Rep::BitsetType::Lub(type), T.region());
724 CHECK(lub->Min() <= type->Min() && type->Max() <= lub->Max())
775 TypeHandle lub = local
989 TypeHandle lub = Rep::BitsetType::New( local
    [all...]

Completed in 205 milliseconds