Home | History | Annotate | Download | only in CellSPU

Lines Matching defs:odd

33     bool isEvenPlace;  // the instruction slot (mem address) at hand is even/odd
60 odd = 3 } SPUOpPlace;
75 assert( isEvenPlace && "basic block start from odd address");
91 // padd: odd(wrong), even(wrong), ...
92 // to: nop(corr), odd(corr), even(corr)...
93 if( isEvenPlace && this_optype == odd && next_optype == even ) {
100 // padd: even(wrong), odd(wrong), ...
101 // to: lnop(corr), even(corr), odd(corr)...
102 else if ( !isEvenPlace && this_optype == even && next_optype == odd){
119 if (getOpPlacement( *J ) == odd) {
136 // Figure out if 'instr' is executed in the even or odd pipeline
146 case 1: retval = odd; break;