Lines Matching defs:check
740 Node* check = SetEffect(graph()->NewNode(
746 BranchExpectTrue(check, &if_true, &if_false);
749 // Build and cache the stack check call operator and the constant
750 // representing the stack check code.
784 Node* ephi_inputs[] = {check, effect(), merge};
808 // Place a stack check which uses a dummy node as control and effect.
811 // The function-prologue stack check is associated with position 0, which
1511 // Add a check that traps if {node} is equal to {val}.
1524 // Add a check that traps if {node} is zero.
1530 // Add a check that traps if {node} is equal to {val}.
1539 // Add a check that traps if {node} is zero.
2132 Node* check = builder->Unop(ConvertBackOp(opcode), converted_value);
2133 return builder->Binop(NeOp(float_ty), trunc, check);
2870 // Explicit check for x % 0.
2882 // Explicit check for x % 0.
3211 // Bounds check against the table size.
3505 Node* check = gasm_->Uint32LessThanOrEqual(value, max);
3508 Diamond d(graph(), mcgraph()->common(), check, BranchHint::kTrue);
3779 // Don't emit an alignment check if the index is a constant.
3803 // Insert code to bounds check a memory access if necessary. Return the
3828 // succeed the bounds check.
3835 // Only use the low word for the following bounds check.
3871 // Dynamically check the end offset against the dynamic memory size.
3879 // Introduce the actual bounds check.
4073 // Wasm semantics throw on OOB. Introduce explicit bounds check and
4113 // Wasm semantics throw on OOB. Introduce explicit bounds check and
4235 // Note that we check against the memory size ignoring the size of the
4279 // Note that we check against the memory size ignoring the size of the
5639 // before the check/trap above.
5658 Node* check = gasm_->Uint32LessThan(offset, end_offset);
5659 gasm_->GotoIfNot(check, &done);
5797 // First, check if types happen to be equal. This has been shown to give large
6589 Node* check = BuildChangeSmiToInt32(BuildCallToRuntimeWithContext(
6592 Diamond type_check(graph(), mcgraph()->common(), check, BranchHint::kTrue);
6625 // if it is null (given the check just above).
6721 Node* check =
6724 Diamond flag_check(graph(), mcgraph()->common(), check,
6796 // Since we don't check that args will fit in an array,
7716 // TODO(wasm): CFunctionInfo* signature check.
7828 // Assuming we are calling to JS, check whether this would be a runtime error.