comparison graal/com.oracle.max.asm/src/com/oracle/max/asm/target/amd64/X86InstructionDecoder.java @ 5056:2f2c6347fce4

comments cleanup/retagging
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 08 Mar 2012 15:01:19 +0100
parents 1aaf3592e516
children
comparison
equal deleted inserted replaced
5053:c53115427ff9 5056:2f2c6347fce4
428 default: 428 default:
429 throw new InternalError("should not reach here"); 429 throw new InternalError("should not reach here");
430 } 430 }
431 } 431 }
432 432
433 assert hasDisp32 : "(tw) not sure if this holds: instruction has no disp32 field"; 433 assert hasDisp32 : "(thomaswue) not sure if this holds: instruction has no disp32 field";
434 434
435 // parse the output of emitOperand 435 // parse the output of emitOperand
436 int op2 = 0xFF & code[ip++]; 436 int op2 = 0xFF & code[ip++];
437 int base = op2 & 0x07; 437 int base = op2 & 0x07;
438 int op3 = -1; 438 int op3 = -1;