Lines Matching defs:first
296 // Make a copy of the first input's checks and merge with the checks
309 Node* const first = NodeProperties::GetValueInput(node, 0);
310 Type const first_type = NodeProperties::GetType(first);
325 // Don't bother trying to find a CheckBounds for the {first} input
330 if (Node* check = checks->LookupBoundsCheckFor(first)) {
332 // Replace the {first} input with the {check}. This is safe,
374 Node* const first = NodeProperties::GetValueInput(node, 0);
381 // Check if there's a CheckBounds operation on {first}
385 if (Node* check = checks->LookupBoundsCheckFor(first)) {
387 // than the type of the {first} node, otherwise we
390 if (!NodeProperties::GetType(first).Is(NodeProperties::GetType(check))) {