Lines Matching refs:result

253   // the result has already been wired into the environment just like
1012 Node* result = graph()->NewNode(
1017 return result;
1123 Node* result = NewNode(javascript()->LoadContext(0, index, true));
1124 NodeProperties::ReplaceContextInput(result, native_context_node());
1125 return result;
3259 Node* result = NewNode(simplified()->ReferenceEqual(), left, right);
3260 environment()->BindAccumulator(result);
3293 Node* result = NewNode(simplified()->ReferenceEqual(), object,
3295 environment()->BindAccumulator(result);
3300 Node* result = NewNode(simplified()->ReferenceEqual(), object,
3302 environment()->BindAccumulator(result);
3309 Node* result;
3312 result = NewNode(simplified()->ObjectIsNumber(), object);
3315 result = NewNode(simplified()->ObjectIsString(), object);
3318 result = NewNode(simplified()->ObjectIsSymbol(), object);
3321 result = NewNode(simplified()->ObjectIsBigInt(), object);
3324 result = NewNode(common()->Select(MachineRepresentation::kTagged),
3332 result = graph()->NewNode(
3340 result =
3344 result = graph()->NewNode(
3354 environment()->BindAccumulator(result);
4034 JSTypeHintLowering::LoweringResult result =
4037 ApplyEarlyReduction(result);
4038 return result;
4047 JSTypeHintLowering::LoweringResult result =
4050 ApplyEarlyReduction(result);
4051 return result;
4061 JSTypeHintLowering::LoweringResult result =
4064 ApplyEarlyReduction(result);
4065 return result;
4073 JSTypeHintLowering::LoweringResult result =
4076 ApplyEarlyReduction(result);
4077 return result;
4085 JSTypeHintLowering::LoweringResult result =
4088 ApplyEarlyReduction(result);
4089 return result;
4096 JSTypeHintLowering::LoweringResult result =
4099 ApplyEarlyReduction(result);
4100 return result;
4110 JSTypeHintLowering::LoweringResult result =
4113 ApplyEarlyReduction(result);
4114 return result;
4148 JSTypeHintLowering::LoweringResult result =
4151 ApplyEarlyReduction(result);
4152 return result;
4161 JSTypeHintLowering::LoweringResult result =
4164 ApplyEarlyReduction(result);
4165 return result;
4175 JSTypeHintLowering::LoweringResult result =
4178 ApplyEarlyReduction(result);
4179 return result;
4251 Node* result = nullptr;
4253 result = graph()->NewNode(op, value_input_count, value_inputs, incomplete);
4283 result = graph()->NewNode(op, input_count_with_deps, buffer, incomplete);
4285 if (result->op()->ControlOutputCount() > 0) {
4286 environment()->UpdateControlDependency(result);
4289 if (result->op()->EffectOutputCount() > 0) {
4290 environment()->UpdateEffectDependency(result);
4293 if (!result->op()->HasProperty(Operator::kNoThrow) && inside_handler) {
4300 Node* on_exception = graph()->NewNode(if_exception, effect, result);
4310 if (!result->op()->HasProperty(Operator::kNoThrow) && inside_handler) {
4312 Node* on_success = graph()->NewNode(if_success, result);
4316 if (has_effect && !result->op()->HasProperty(Operator::kNoWrite)) {
4321 return result;