Lines Matching refs:NewNode

174       Node* top = graph()->NewNode(machine()->IntAdd(), state->top(),  in VisitAllocate()
176 effect = graph()->NewNode( in VisitAllocate()
182 value = graph()->NewNode( in VisitAllocate()
184 graph()->NewNode(machine()->IntAdd(), state->top(), in VisitAllocate()
193 Node* size = graph()->NewNode(common()->Int32Constant(object_size)); in VisitAllocate()
197 graph()->NewNode(machine()->Load(MachineType::Pointer()), top_address, in VisitAllocate()
199 Node* limit = effect = graph()->NewNode( in VisitAllocate()
205 Node* check = graph()->NewNode( in VisitAllocate()
207 graph()->NewNode( in VisitAllocate()
210 ? graph()->NewNode(machine()->ChangeInt32ToInt64(), size) in VisitAllocate()
214 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control); in VisitAllocate()
216 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in VisitAllocate()
220 Node* if_false = graph()->NewNode(common()->IfFalse(), branch); in VisitAllocate()
232 vfalse = efalse = graph()->NewNode(allocate_operator_.get(), target, in VisitAllocate()
234 vfalse = graph()->NewNode(machine()->IntSub(), vfalse, in VisitAllocate()
238 control = graph()->NewNode(common()->Merge(2), if_true, if_false); in VisitAllocate()
239 effect = graph()->NewNode(common()->EffectPhi(2), etrue, efalse, control); in VisitAllocate()
240 value = graph()->NewNode( in VisitAllocate()
245 top = graph()->NewNode(machine()->IntAdd(), value, in VisitAllocate()
247 effect = graph()->NewNode( in VisitAllocate()
253 value = graph()->NewNode( in VisitAllocate()
255 graph()->NewNode(machine()->IntAdd(), value, in VisitAllocate()
266 graph()->NewNode(machine()->Load(MachineType::Pointer()), top_address, in VisitAllocate()
269 graph()->NewNode(machine()->Load(MachineType::Pointer()), limit_address, in VisitAllocate()
273 Node* new_top = graph()->NewNode( in VisitAllocate()
276 ? graph()->NewNode(machine()->ChangeInt32ToInt64(), size) in VisitAllocate()
280 Node* check = graph()->NewNode(machine()->UintLessThan(), new_top, limit); in VisitAllocate()
282 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control); in VisitAllocate()
284 Node* if_true = graph()->NewNode(common()->IfTrue(), branch); in VisitAllocate()
288 etrue = graph()->NewNode( in VisitAllocate()
292 vtrue = graph()->NewNode( in VisitAllocate()
294 graph()->NewNode(machine()->IntAdd(), top, in VisitAllocate()
298 Node* if_false = graph()->NewNode(common()->IfFalse(), branch); in VisitAllocate()
310 vfalse = efalse = graph()->NewNode(allocate_operator_.get(), target, size, in VisitAllocate()
314 control = graph()->NewNode(common()->Merge(2), if_true, if_false); in VisitAllocate()
315 effect = graph()->NewNode(common()->EffectPhi(2), etrue, efalse, control); in VisitAllocate()
316 value = graph()->NewNode( in VisitAllocate()
415 index = graph()->NewNode(machine()->ChangeUint32ToUint64(), key); in ComputeIndex()
422 index = graph()->NewNode(machine()->WordShl(), index, in ComputeIndex()
427 index = graph()->NewNode(machine()->IntAdd(), index, in ComputeIndex()