| Index: third_party/tcmalloc/chromium/src/windows/mini_disassembler_types.h
|
| ===================================================================
|
| --- third_party/tcmalloc/chromium/src/windows/mini_disassembler_types.h (revision 126022)
|
| +++ third_party/tcmalloc/chromium/src/windows/mini_disassembler_types.h (working copy)
|
| @@ -143,16 +143,6 @@
|
| OT_ADDRESS_MODE_M = 0x80000000
|
| };
|
|
|
| -// Flag that indicates if an immediate operand is 64-bits.
|
| -//
|
| -// The Intel 64 and IA-32 Architecture Software Developer's Manual currently
|
| -// defines MOV as the only instruction supporting a 64-bit immediate operand.
|
| -enum ImmediateOperandSize {
|
| - IOS_MASK = 0x0000F000,
|
| - IOS_DEFAULT = 0x0,
|
| - IOS_64 = 0x00001000
|
| -};
|
| -
|
| // Everything that's in an Opcode (see below) except the three
|
| // alternative opcode structs for different prefixes.
|
| struct SpecificOpcode {
|
| @@ -164,8 +154,8 @@
|
| InstructionType type_;
|
|
|
| // Description of the type of the dest, src and aux operands,
|
| - // put together from enOperandType, enAddressingMethod and
|
| - // enImmediateOperandSize flags.
|
| + // put together from an enOperandType flag and an enAddressingMethod
|
| + // flag.
|
| int flag_dest_;
|
| int flag_source_;
|
| int flag_aux_;
|
|
|