types.hh (5251:8de83cada19d) 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;

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

46 typedef uint64_t FloatRegBits;
47 typedef union
48 {
49 IntReg intReg;
50 FloatReg fpreg;
51 MiscReg ctrlreg;
52 } AnyReg;
53
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;

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

46 typedef uint64_t FloatRegBits;
47 typedef union
48 {
49 IntReg intReg;
50 FloatReg fpreg;
51 MiscReg ctrlreg;
52 } AnyReg;
53
54 enum RegContextParam
55 {
56 CONTEXT_CWP,
57 CONTEXT_GLOBALS
58 };
59
60 typedef int RegContextVal;
61
62 typedef uint16_t RegIndex;
63
64 struct CoreSpecific {
65 int core_type;
66 };
67}
68
69#endif
54 typedef uint16_t RegIndex;
55
56 struct CoreSpecific {
57 int core_type;
58 };
59}
60
61#endif