types.hh (5569:baeee670d4ce) types.hh (5668:5b5a9f4203d1)
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;

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

52
53union AnyReg
54{
55 IntReg intreg;
56 FloatReg fpreg;
57 MiscReg ctrlreg;
58};
59
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;

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

52
53union AnyReg
54{
55 IntReg intreg;
56 FloatReg fpreg;
57 MiscReg ctrlreg;
58};
59
60enum RegContextParam
61{
62 CONTEXT_PALMODE
63};
64
65typedef bool RegContextVal;
66
67enum annotes
68{
69 ANNOTE_NONE = 0,
70 // An impossible number for instruction annotations
71 ITOUCH_ANNOTE = 0xffffffff,
72};
73
74struct CoreSpecific
75{
76 int core_type;
77};
78
79} // namespace AlphaISA
80
81#endif // __ARCH_ALPHA_TYPES_HH__
60enum annotes
61{
62 ANNOTE_NONE = 0,
63 // An impossible number for instruction annotations
64 ITOUCH_ANNOTE = 0xffffffff,
65};
66
67struct CoreSpecific
68{
69 int core_type;
70};
71
72} // namespace AlphaISA
73
74#endif // __ARCH_ALPHA_TYPES_HH__