Searched defs:mod_reg_rm (Results 1 - 2 of 2) sorted by relevance

/external/valgrind/main/VEX/priv/
H A Dguest_x86_toIR.c347 static Int gregOfRM ( UChar mod_reg_rm )
349 return (Int)( (mod_reg_rm >> 3) & 7 );
355 static Bool epartIsReg ( UChar mod_reg_rm )
357 return toBool(0xC0 == (mod_reg_rm & 0xC0));
361 static Int eregOfRM ( UChar mod_reg_rm )
363 return (Int)(mod_reg_rm & 0x7);
1503 UChar mod_reg_rm = getIByte(delta); local
1508 /* squeeze out the reg field from mod_reg_rm, since a 256-entry
1511 mod_reg_rm &= 0xC7; /* is now XX000YYY */
1512 mod_reg_rm
1738 UChar mod_reg_rm = getIByte(delta); delta++; local
[all...]
H A Dguest_amd64_toIR.c499 static Bool epartIsReg ( UChar mod_reg_rm )
501 return toBool(0xC0 == (mod_reg_rm & 0xC0));
508 static Int gregLO3ofRM ( UChar mod_reg_rm )
510 return (Int)( (mod_reg_rm >> 3) & 7 );
515 static Int eregLO3ofRM ( UChar mod_reg_rm )
517 return (Int)(mod_reg_rm & 0x7);
1224 static UInt gregOfRexRM ( Prefix pfx, UChar mod_reg_rm )
1226 Int reg = (Int)( (mod_reg_rm >> 3) & 7 );
1236 static UInt eregOfRexRM ( Prefix pfx, UChar mod_reg_rm )
1239 vassert(epartIsReg(mod_reg_rm));
1277 putIRegG( Int sz, Prefix pfx, UChar mod_reg_rm, IRExpr* e ) argument
1324 putIRegE( Int sz, Prefix pfx, UChar mod_reg_rm, IRExpr* e ) argument
2413 UChar mod_reg_rm = getUChar(delta); local
2683 UChar mod_reg_rm = getUChar(delta); local
[all...]

Completed in 144 milliseconds