Home
last modified time | relevance | path

Searched refs:LessGeneral (Results 1 - 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/compiler/
H A Drepresentation-change.h55 return LessGeneral(kind_, TruncationKind::kBool); in IsUsedAsBool()
58 return LessGeneral(kind_, TruncationKind::kWord32); in IsUsedAsWord32()
61 return LessGeneral(kind_, TruncationKind::kWord64); in IsUsedAsWord64()
64 return LessGeneral(kind_, TruncationKind::kOddballAndBigIntToNumber); in TruncatesOddballAndBigIntToNumber()
67 return LessGeneral(kind_, TruncationKind::kWord32) || in IdentifiesUndefinedAndZero()
68 LessGeneral(kind_, TruncationKind::kBool); in IdentifiesUndefinedAndZero()
83 return LessGeneral(kind(), other.kind()) && in IsLessGeneralThan()
111 static bool LessGeneral(TruncationKind rep1, TruncationKind rep2);
H A Drepresentation-change.cc77 if (LessGeneral(rep1, rep2)) return rep2; in Generalize()
78 if (LessGeneral(rep2, rep1)) return rep1; in Generalize()
80 if (LessGeneral(rep1, TruncationKind::kOddballAndBigIntToNumber) && in Generalize()
81 LessGeneral(rep2, TruncationKind::kOddballAndBigIntToNumber)) { in Generalize()
85 if (LessGeneral(rep1, TruncationKind::kAny) && in Generalize()
86 LessGeneral(rep2, TruncationKind::kAny)) { in Generalize()
104 bool Truncation::LessGeneral(TruncationKind rep1, TruncationKind rep2) { in LessGeneral() function in v8::internal::compiler::Truncation

Completed in 3 milliseconds