Deleted Added
sdiff udiff text old ( 13611:c8b7847b4171 ) new ( 13614:52c5311db96b )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

41namespace AlphaISA {
42
43using AlphaISAInst::MaxInstSrcRegs;
44using AlphaISAInst::MaxInstDestRegs;
45
46// Locked read/write flags are can't be detected by the ISA parser
47const int MaxMiscDestRegs = AlphaISAInst::MaxMiscDestRegs + 1;
48
49// dummy typedef since we don't have CC regs
50typedef uint8_t CCReg;
51
52// Not applicable to Alpha
53using VecElem = ::DummyVecElem;
54using VecReg = ::DummyVecReg;
55using ConstVecReg = ::DummyConstVecReg;
56using VecRegContainer = ::DummyVecRegContainer;

--- 54 unchanged lines hidden ---