Home
last modified time | relevance | path

Searched refs:BinopMatcher (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dnode-matchers.h237 struct BinopMatcher : public NodeMatcher { struct
238 explicit BinopMatcher(Node* node) in BinopMatcher() function
242 BinopMatcher(Node* node, bool allow_input_swap) in BinopMatcher() argument
277 typedef BinopMatcher<Int32Matcher, Int32Matcher> Int32BinopMatcher; argument
278 typedef BinopMatcher<Uint32Matcher, Uint32Matcher> Uint32BinopMatcher;
279 typedef BinopMatcher<Int64Matcher, Int64Matcher> Int64BinopMatcher;
280 typedef BinopMatcher<Uint64Matcher, Uint64Matcher> Uint64BinopMatcher;
281 typedef BinopMatcher<IntPtrMatcher, IntPtrMatcher> IntPtrBinopMatcher;
282 typedef BinopMatcher<UintPtrMatcher, UintPtrMatcher> UintPtrBinopMatcher;
283 typedef BinopMatcher<Float32Matcher, Float32Matcher> Float32BinopMatcher;
[all …]
/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc583 template <typename BinopMatcher, int Bits>
587 BinopMatcher m(node); in TryVisitWordShift()