Lines Matching refs:NewNode
90 counters_array = graph->NewNode(common.HeapConstant(Handle<HeapObject>::New( in Instrument()
93 counters_array = graph->NewNode(PointerConstant(&common, data->counts())); in Instrument()
95 Node* zero = graph->NewNode(common.Int32Constant(0)); in Instrument()
96 Node* one = graph->NewNode(common.Int32Constant(1)); in Instrument()
113 graph->NewNode(IntPtrConstant(&common, offset_to_counter_value)); in Instrument()
115 graph->NewNode(machine.Load(MachineType::Uint32()), counters_array, in Instrument()
117 Node* inc = graph->NewNode(machine.Int32Add(), load, one); in Instrument()
121 Node* overflow = graph->NewNode(machine.Uint32LessThan(), inc, load); in Instrument()
122 Node* overflow_mask = graph->NewNode(machine.Int32Sub(), zero, overflow); in Instrument()
124 graph->NewNode(machine.Word32Or(), inc, overflow_mask); in Instrument()
127 graph->NewNode(machine.Store(StoreRepresentation( in Instrument()