types.hh (4635:fc0a386440e4) types.hh (5004:7d94cedab264)
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;

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

28 * Authors: Gabe Black
29 */
30
31#ifndef __ARCH_SPARC_TYPES_HH__
32#define __ARCH_SPARC_TYPES_HH__
33
34#include <inttypes.h>
35#include "base/bigint.hh"
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;

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

28 * Authors: Gabe Black
29 */
30
31#ifndef __ARCH_SPARC_TYPES_HH__
32#define __ARCH_SPARC_TYPES_HH__
33
34#include <inttypes.h>
35#include "base/bigint.hh"
36#include "mem/page_table.hh"
36
37namespace SparcISA
38{
39 typedef uint32_t MachInst;
40 typedef uint64_t ExtMachInst;
41
42 typedef uint64_t IntReg;
43 typedef Twin64_t LargestRead;

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

55 {
56 CONTEXT_CWP,
57 CONTEXT_GLOBALS
58 };
59
60 typedef int RegContextVal;
61
62 typedef uint16_t RegIndex;
37
38namespace SparcISA
39{
40 typedef uint32_t MachInst;
41 typedef uint64_t ExtMachInst;
42
43 typedef uint64_t IntReg;
44 typedef Twin64_t LargestRead;

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

56 {
57 CONTEXT_CWP,
58 CONTEXT_GLOBALS
59 };
60
61 typedef int RegContextVal;
62
63 typedef uint16_t RegIndex;
64
65 typedef ::PageTable<> PageTable;
63}
64
65#endif
66}
67
68#endif