Lines Matching refs:ValueMatcher
48 struct ValueMatcher : public NodeMatcher { struct
51 explicit ValueMatcher(Node* node) in ValueMatcher() argument
71 inline ValueMatcher<uint32_t, IrOpcode::kInt32Constant>::ValueMatcher( in ValueMatcher() argument
83 inline ValueMatcher<int64_t, IrOpcode::kInt64Constant>::ValueMatcher(Node* node) in ValueMatcher() function
96 inline ValueMatcher<uint64_t, IrOpcode::kInt64Constant>::ValueMatcher( in ValueMatcher() function
111 struct IntMatcher final : public ValueMatcher<T, kOpcode> {
112 explicit IntMatcher(Node* node) : ValueMatcher<T, kOpcode>(node) {} in IntMatcher()
148 struct FloatMatcher final : public ValueMatcher<T, kOpcode> {
149 explicit FloatMatcher(Node* node) : ValueMatcher<T, kOpcode>(node) {} in FloatMatcher()
171 : public ValueMatcher<Handle<HeapObject>, IrOpcode::kHeapConstant> {
173 : ValueMatcher<Handle<HeapObject>, IrOpcode::kHeapConstant>(node) {} in HeapObjectMatcher()
179 : public ValueMatcher<ExternalReference, IrOpcode::kExternalConstant> {
181 : ValueMatcher<ExternalReference, IrOpcode::kExternalConstant>(node) {} in ExternalReferenceMatcher()