Lines Matching refs:node
18 #include "src/compiler/node-matchers.h"
19 #include "src/compiler/node.h"
147 bool IsMapOffsetConstant(Node* node) {
148 Int64Matcher m(node);
150 // Test if `node` is a `Phi(Int64Constant(0))`
151 if (node->opcode() == IrOpcode::kPhi) {
152 for (Node* input : node->inputs()) {
159 bool IsMapOffsetConstantMinusTag(Node* node) {
160 Int64Matcher m(node);
935 Node* StoreToPointer(void* address, MachineRepresentation rep, Node* node) {
936 return Store(rep, PointerConstant(address), node, kNoWriteBarrier);
943 Node* node) {
944 return UnalignedStore(rep, PointerConstant(address), node);
1050 // in a potentially throwing call node.
1068 // The following generic node creation methods can be used for operators that