Deleted Added
sdiff udiff text old ( 7678:f19b6a3a8cec ) new ( 8442:b1f3dfae06f1 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 83 unchanged lines hidden (view full) ---

92 assert(_segment.idx < NUM_SEGMENTREGS);
93 foldOBit = (dataSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
94 foldABit =
95 (addressSize == 1 && !_machInst.rex.present) ? 1 << 6 : 0;
96 }
97
98 std::string generateDisassembly(Addr pc,
99 const SymbolTable *symtab) const;
100 };
101}
102
103#endif //__ARCH_X86_INSTS_MICROLDSTOP_HH__