Home | History | Annotate | Download | only in src

Lines Matching defs:parameter

1760 // given as a parameter. The value is asked to infer its representation type
1792 // given as the parameter has a benefit in terms of less necessary type
2645 // parameter index 0.
2649 HInstruction* parameter = AddInstruction(new(zone()) HParameter(i));
2650 environment()->Bind(i, parameter);
3621 case Variable::PARAMETER:
4225 case Variable::PARAMETER:
4234 // Bail out if we try to mutate a parameter value in a function
4239 // direct way to detect that the variable is a parameter so we do
4240 // a linear search of the parameter variables.
4243 if (var == info()->scope()->parameter(i)) {
4245 "assignment to parameter, function uses arguments object");
4408 case Variable::PARAMETER:
4428 // Bail out if we try to mutate a parameter value in a function using
4433 // to detect that the variable is a parameter.
4436 if (var == info()->scope()->parameter(i)) {
4437 return Bailout("assignment to parameter in arguments object");
6355 case Variable::PARAMETER:
6361 // Bail out if we try to mutate a parameter value in a function
6366 // way to detect that the variable is a parameter so we use a
6367 // linear search of the parameter list.
6370 if (var == info()->scope()->parameter(i)) {
6371 return Bailout("assignment to parameter in arguments object");
7041 case Variable::PARAMETER:
8175 // phase name matches the command line parameter FLAG_trace_phase.