On Thu, 2009-08-27 at 14:04 +0900, HongWoo Lee wrote: > And I have a question about bdnz+ instruction. > Through googling, I learned that bdnz does decrement count register > and > branch if it is still nonzero. > But I couldn't find what "bdnz+" is. > Can anybody explain to me what it is ??
On PowerPC, branch instructions can have a "hint" (+ or - added to the mnemonic) which indicates to the processor whether the branch is likely to be taken or not, and overrides the dynamic branch prediction. In most case, it's not necessary though I suppose in the case at hand, we are pretty confident that we're going to loop a lot more times than exit from the loop so it won't hurt to put the hint in there. Note that there have been subtle changes in the way those hints work between earlier and modern PowerPC processors and the way they are encoded will be different depending on what CPU you are building for, but that's an entirely different headache :-) Cheers, Ben. _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev