Home | History | Annotate | Download | only in compiler

Lines Matching refs:hints

5 #include "src/compiler/type-hints.h"
30 std::ostream& operator<<(std::ostream& os, BinaryOperationHints hints) {
31 return os << hints.left() << "*" << hints.right() << "->" << hints.result();
59 std::ostream& operator<<(std::ostream& os, CompareOperationHints hints) {
60 return os << hints.left() << "*" << hints.right() << " (" << hints.combined()
93 std::ostream& operator<<(std::ostream& os, ToBooleanHints hints) {
94 if (hints == ToBooleanHint::kAny) return os << "Any";
95 if (hints == ToBooleanHint::kNone) return os << "None";
99 if (hints & hint) {