hotspot/src/cpu/x86/vm/bytecodeInterpreter_x86.inline.hpp
changeset 23203 76c2a23e2537
parent 7397 5b173b4ca846
equal deleted inserted replaced
23202:aa644a5335f4 23203:76c2a23e2537
   248 
   248 
   249 inline jint BytecodeInterpreter::VMintSub(jint op1, jint op2) {
   249 inline jint BytecodeInterpreter::VMintSub(jint op1, jint op2) {
   250   return op1 - op2;
   250   return op1 - op2;
   251 }
   251 }
   252 
   252 
   253 inline jint BytecodeInterpreter::VMintUshr(jint op1, jint op2) {
   253 inline juint BytecodeInterpreter::VMintUshr(jint op1, jint op2) {
   254   return ((juint) op1) >> (op2 & 0x1f);
   254   return ((juint) op1) >> (op2 & 0x1f);
   255 }
   255 }
   256 
   256 
   257 inline jint BytecodeInterpreter::VMintXor(jint op1, jint op2) {
   257 inline jint BytecodeInterpreter::VMintXor(jint op1, jint op2) {
   258   return op1 ^ op2;
   258   return op1 ^ op2;