int.isa (8588:ef28ed90449d) int.isa (12616:4b463b4dc098)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2003-2005 The Regents of The University of Michigan
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

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

44 uint8_t imm;
45
46 /// Constructor
47 IntegerImm(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
48 : AlphaStaticInst(mnem, _machInst, __opClass), imm(INTIMM)
49 {
50 }
51
1// -*- mode:c++ -*-
2
3// Copyright (c) 2003-2005 The Regents of The University of Michigan
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

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

44 uint8_t imm;
45
46 /// Constructor
47 IntegerImm(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
48 : AlphaStaticInst(mnem, _machInst, __opClass), imm(INTIMM)
49 {
50 }
51
52 std::string
53 generateDisassembly(Addr pc, const SymbolTable *symtab) const;
52 std::string generateDisassembly(
53 Addr pc, const SymbolTable *symtab) const override;
54 };
55}};
56
57output decoder {{
58 std::string
59 IntegerImm::generateDisassembly(Addr pc, const SymbolTable *symtab) const
60 {
61 std::stringstream ss;

--- 72 unchanged lines hidden ---
54 };
55}};
56
57output decoder {{
58 std::string
59 IntegerImm::generateDisassembly(Addr pc, const SymbolTable *symtab) const
60 {
61 std::stringstream ss;

--- 72 unchanged lines hidden ---