Searched defs:BinaryOperationHints (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/compiler/
H A Dtype-hints.h16 class BinaryOperationHints final {
20 BinaryOperationHints() : BinaryOperationHints(kNone, kNone, kNone) {} function in class:v8::internal::compiler::final
21 BinaryOperationHints(Hint left, Hint right, Hint result) function in class:v8::internal::compiler::final
25 static BinaryOperationHints Any() {
26 return BinaryOperationHints(kAny, kAny, kAny);
33 bool operator==(BinaryOperationHints const& that) const {
36 bool operator!=(BinaryOperationHints const& that) const {
40 friend size_t hash_value(BinaryOperationHints const& hints) {
52 std::ostream& operator<<(std::ostream&, BinaryOperationHints
[all...]

Completed in 134 milliseconds