Lines Matching defs:callee
1123 ir_function_signature *const callee = ir->callee;
1125 if (callee->ir_type != ir_type_function_signature) {
1131 if (ir->return_deref->type != callee->return_type) {
1132 printf("callee type %s does not match return storage type %s\n",
1133 callee->return_type->name, ir->return_deref->type->name);
1136 } else if (callee->return_type != glsl_type::void_type) {
1137 printf("ir_call has non-void callee but no return storage\n");
1141 const exec_node *formal_param_node = callee->parameters.get_head_raw();
1175 printf("callee:\n");
1176 callee->print();