Lines Matching defs:condition
1849 "condition", &error_emitted);
3735 * Generate a compiler error if above condition is not met by the
6579 * going to be placed. Same goes for the condition for a do-while
6658 ir_rvalue *const condition = this->condition->hir(instructions, state);
6669 if (!condition->type->is_boolean() || !condition->type->is_scalar()) {
6670 YYLTYPE loc = this->condition->get_location();
6672 _mesa_glsl_error(& loc, state, "if-statement condition must be scalar "
6676 ir_if *const stmt = new(ctx) ir_if(condition);
7116 /* Set fallthru condition on 'run_default' bool. */
7132 if (condition != NULL) {
7134 condition->hir(instructions, state);
7138 YYLTYPE loc = condition->get_location();
7141 "loop condition must be scalar boolean");
7144 * like 'if (!condition) break;' as the loop termination condition.