comparison src/cpu/x86/vm/assembler_x86.hpp @ 13561:4fc8c8bb4c32

removed Assembler::no_operand alias
author Doug Simon <doug.simon@oracle.com>
date Wed, 08 Jan 2014 22:59:53 +0100
parents d49f00604347
children b51e29501f30 03eda0a202e9
comparison
equal deleted inserted replaced
13560:5252d833945d 13561:4fc8c8bb4c32
525 }; 525 };
526 526
527 enum WhichOperand { 527 enum WhichOperand {
528 // input to locate_operand, and format code for relocations 528 // input to locate_operand, and format code for relocations
529 imm_operand = 0, // embedded 32-bit|64-bit immediate operand 529 imm_operand = 0, // embedded 32-bit|64-bit immediate operand
530 #ifdef GRAAL
531 no_operand = imm_operand, // format value for relocations at instructions with no operand
532 #endif
533 disp32_operand = 1, // embedded 32-bit displacement or address 530 disp32_operand = 1, // embedded 32-bit displacement or address
534 call32_operand = 2, // embedded 32-bit self-relative displacement 531 call32_operand = 2, // embedded 32-bit self-relative displacement
535 #ifndef _LP64 532 #ifndef _LP64
536 _WhichOperand_limit = 3 533 _WhichOperand_limit = 3
537 #else 534 #else