Searched refs:Lub (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/compiler/
H A Dtypes.h245 static bitset Lub(Type* type); // least upper bound that's a bitset
246 static bitset Lub(i::Map* map);
247 static bitset Lub(i::Object* value);
248 static bitset Lub(double value);
249 static bitset Lub(double min, double max);
339 BitsetType::bitset Lub() { return BitsetType::kOtherNumber; } function in class:v8::internal::compiler::BitsetType::OtherNumberConstantType
353 BitsetType::bitset bitset = BitsetType::Lub(*value);
365 BitsetType::bitset Lub() { return bitset_; } function in class:v8::internal::compiler::BitsetType::HeapConstantType
406 BitsetType::bitset bits = BitsetType::Lub(lim.min, lim.max);
419 BitsetType::bitset Lub() { retur function in class:v8::internal::compiler::BitsetType::RangeType
[all...]
H A Dtypes.cc126 Type::bitset BitsetType::Lub(Type* type) { function in class:v8::internal::compiler::BitsetType
139 if (type->IsHeapConstant()) return type->AsHeapConstant()->Lub();
141 return type->AsOtherNumberConstant()->Lub();
142 if (type->IsRange()) return type->AsRange()->Lub();
148 Type::bitset BitsetType::Lub(i::Map* map) { function in class:v8::internal::compiler::BitsetType
337 Type::bitset BitsetType::Lub(i::Object* value) { function in class:v8::internal::compiler::BitsetType
340 return Lub(value->Number());
342 return Lub(i::HeapObject::cast(value)->map());
345 Type::bitset BitsetType::Lub(double value) { function in class:v8::internal::compiler::BitsetType
349 if (IsUint32Double(value) || IsInt32Double(value)) return Lub(valu
382 Type::bitset BitsetType::Lub(double min, double max) { function in class:v8::internal::compiler::BitsetType
[all...]
/external/v8/src/ast/
H A Dast-types.h317 static bitset Lub(AstType* type); // least upper bound that's a bitset
318 static bitset Lub(i::Map* map);
319 static bitset Lub(i::Object* value);
320 static bitset Lub(double value);
321 static bitset Lub(double min, double max);
406 AstClassType(AstBitsetType::Lub(*map), map));
417 AstBitsetType::bitset Lub() { return bitset_; } function in class:v8::internal::AstBitsetType::AstClassType
435 AstBitsetType::bitset bitset = AstBitsetType::Lub(*value);
448 AstBitsetType::bitset Lub() { return bitset_; } function in class:v8::internal::AstBitsetType::AstConstantType
496 AST_SEMANTIC(AstBitsetType::Lub(li
510 AstBitsetType::bitset Lub() { return bitset_; } function in class:v8::internal::AstBitsetType::AstRangeType
[all...]
H A Dast-types.cc129 AstType::bitset AstBitsetType::Lub(AstType* type) { function in class:v8::internal::AstBitsetType
142 if (type->IsClass()) return type->AsClass()->Lub();
143 if (type->IsConstant()) return type->AsConstant()->Lub();
144 if (type->IsRange()) return type->AsRange()->Lub();
153 AstType::bitset AstBitsetType::Lub(i::Map* map) { function in class:v8::internal::AstBitsetType
328 AstType::bitset AstBitsetType::Lub(i::Object* value) { function in class:v8::internal::AstBitsetType
331 return Lub(value->Number()) &
334 return Lub(i::HeapObject::cast(value)->map());
337 AstType::bitset AstBitsetType::Lub(double value) { function in class:v8::internal::AstBitsetType
341 if (IsUint32Double(value) || IsInt32Double(value)) return Lub(valu
377 AstType::bitset AstBitsetType::Lub(double min, double max) { function in class:v8::internal::AstBitsetType
[all...]

Completed in 142 milliseconds