Home | History | Annotate | Download | only in CellSPU

Lines Matching defs:even

33     bool isEvenPlace;  // the instruction slot (mem address) at hand is even/odd
59 even = 2,
69 // In the assebly we align the functions to 'even' adresses, but
71 // basic blocks to have the same, even, alignment.
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){
136 // Figure out if 'instr' is executed in the even or odd pipeline
147 case 2: retval = even; break;