Deleted Added
sdiff udiff text old ( 4635:fc0a386440e4 ) new ( 5004:7d94cedab264 )
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;

--- 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
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;
63}
64
65#endif