comparison src/cpu/x86/vm/bytecodeInterpreter_x86.inline.hpp @ 14726:92aa6797d639

Backed out merge changeset: b51e29501f30 Backed out merge revision to its first parent (8f483e200405)
author Doug Simon <doug.simon@oracle.com>
date Mon, 24 Mar 2014 21:30:43 +0100
parents d3f14809b051
children
comparison
equal deleted inserted replaced
14719:0bdd0d157040 14726:92aa6797d639
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 juint BytecodeInterpreter::VMintUshr(jint op1, jint op2) { 253 inline jint 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;