Home | History | Annotate | Download | only in compiler

Lines Matching defs:Score

72 	/** This scheduler uses the value of Score to determine which
73 * instruction to schedule. Instructions with a higher value of Score
75 int Score;
189 unsigned score = sinst->Score;
190 fprintf(stderr,"%u (%d) [%u],", ptr->Instruction->IP, score,
233 while(temp && inst->Score <= temp->Score) {
278 sinst->Score = 0;
284 sinst->Score = 0;
291 sinst->Score += 100;
293 sinst->Score += r->Reader->NumDependencies;
313 sinst->Score |= NO_OUTPUT_SCORE;
317 sinst->Score |= NO_OUTPUT_SCORE;
329 sinst->Score = 0;
336 sinst->Score |= PAIRED_SCORE;
341 sinst->Score += sinst->Instruction->U.P.RGB.Src[src_idx].Used +
351 sinst->Score = 0;
353 sinst->Score = sinst->NumReadValues;
355 sinst->Score += sinst->PairedInst->NumReadValues;
358 sinst->Score |= NO_READ_TEX_SCORE;
428 DBG("%i: commit score = %d\n", sinst->Instruction->IP, sinst->Score);
1073 int score;
1075 score = list_ptr->Score;
1076 if (!*max_inst_out || score > *max_score) {
1077 *max_score = score;