vote up 0 vote down star

I'm looking at a core dump of a (Xenon) PowerPC executable compiled with MSVC. The function I'm debugging has an op that the MSVC disassembler calls mtmsree r13. mtmsree isn't in the IBM docs for the PPC; what does this op do?

It immediately follows a mfmsr and obviously it's moving something to the machine state register, but I don't know what that ee suffix is supposed to mean. It must be some sort of cutesy Microsoft nickname for an op the PPC docs call something different.

flag

2 Answers

vote up 0 vote down

Bits 21:30 of the mtmsr instruction are 0010010010, not 0010110010.

My guess is that mtmsree is a Xenon-specific instruction that sets only the EE bit in the MSR. The Book E machines have the wrtee and wrteei instructions to do that. I wish I knew where to find a PEM for Xenon.

link|flag
My bad -- 0010110010 is mtmsrd, not mtmsr (that is, the 64-bit version). But if you search for mtmsrd in the IBM docs it just takes you to MTMSR. – Crashworks Sep 28 at 23:48
The relevant PEM, so far as I can tell, is just IBM's "PowerPC Microprocessor Family: Programming Environments Manual for 64 and 32-Bit Microprocessors." But MSFT loves to invent its own quirky little codenames for things. – Crashworks Sep 28 at 23:50
vote up 0 vote down check

I picked apart the machine code for the instruction ( 011111 01101 00001 00000 0010110010 0 ) and it turns out that mtmsree is what everyone else just calls mtmsrd.

Who knows what the hell Microsoft was thinking by tacking on an 'ee' at the end for no reason whatsoever.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.