Lines Matching defs:callee
1117 ir_function_signature *const callee = ir->callee;
1119 if (callee->ir_type != ir_type_function_signature) {
1125 if (ir->return_deref->type != callee->return_type) {
1126 printf("callee type %s does not match return storage type %s\n",
1127 callee->return_type->name, ir->return_deref->type->name);
1130 } else if (callee->return_type != glsl_type::void_type) {
1131 printf("ir_call has non-void callee but no return storage\n");
1135 const exec_node *formal_param_node = callee->parameters.get_head_raw();
1169 printf("callee:\n");
1170 callee->print();