1// Copyright (c) 2008 The Hewlett-Packard Development Company
2// All rights reserved.
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

40 {
41 public:
42 static const RegIndex foldOBit = 0;
43 /// Constructor
44 CPUIDInst(const char *_mnemonic, ExtMachInst _machInst,
45 OpClass __opClass) :
46 X86ISA::X86StaticInst(_mnemonic, _machInst, __opClass)
47 {
48 flags[IsSerializing] = 1;
49 flags[IsSerializeAfter] = 1;
50 }
51
52 std::string generateDisassembly(Addr pc,
53 const SymbolTable *symtab) const;
54 };
55}};
56
57output decoder {{

--- 37 unchanged lines hidden ---